/* ================================================
   Agent Harbor — style.css
   Pure CSS3 — no frameworks, no dependencies
   ================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-navy: #022242;
  --color-navy-dark: #011830;
  --color-silver: #A8A9AD;
  --color-white: #FFFFFF;
  --color-light-bg: #F4F6F8;
  --color-text: #111827;
  --color-text-muted: #374151;
  --color-gold: #C9A84C;
  --color-gold-dim: rgba(201, 168, 76, 0.15);
  --color-focus: #1a6fb5;
  --color-error: #c0392b;
  --color-success: #27ae60;

  --font-display: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --header-height: 4rem;
  --container-max: 72rem;
  --container-narrow: 48rem;
  --radius: 0.5rem;
  --transition: 0.25s ease;

  /* ── Privacy & Trust System ─────────────────────────────────── */
  --trust-badge-bg:        rgba(2, 34, 66, 0.08);
  --trust-badge-border:    rgba(2, 34, 66, 0.18);
  --trust-badge-icon:      #022242;
  --trust-badge-text:      #022242;
  --trust-badge-radius:    6px;
  --trust-pillar-gap:      2rem;
  --trust-section-bg:      #F4F6F8;
  --comparison-stripe:     rgba(2, 34, 66, 0.04);
  --comparison-highlight:  rgba(2, 34, 66, 0.10);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Maiden Orange: H1 ONLY */
h1 {
  font-family: 'Maiden Orange', serif;
  font-weight: 400;
}

/* Roboto: all other headings */
h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.wordmark-text,
.nav-wordmark,
.footer-wordmark {
  font-family: 'Maiden Orange', serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Global Table Head — white on navy (WCAG AA) ---------- */
table thead th {
  background-color: #022242 !important;
  color: #FFFFFF !important;
}

/* ---------- Focus Styles (ADA) ---------- */
:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  min-height: 2.75rem;
  min-width: 2.75rem;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #d9b85c;
  border-color: #d9b85c;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--color-white);
  color: var(--color-navy);
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-navy);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px 1.5rem;
  height: auto;
  min-height: 72px;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* Force wordmark white with high specificity — overrides global a{color} */
a.nav-wordmark,
a.nav-wordmark:visited,
a.nav-wordmark:hover,
a.nav-wordmark:focus,
a.nav-wordmark:active,
.site-header a.nav-wordmark,
nav a.nav-wordmark {
  color: #FFFFFF !important;
  text-decoration: none;
}

.nav-wordmark {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-wordmark .wordmark-text,
a.nav-wordmark .wordmark-text,
.site-header .wordmark-text {
  color: #FFFFFF !important;
  font-family: 'Bitter', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

/* Hover state */
.nav-wordmark:hover .wordmark-text,
.nav-wordmark:focus-visible .wordmark-text {
  opacity: 0.8;
}

/* Focus ring */
.nav-wordmark:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Logo image in nav */
.nav-wordmark img {
  height: 48px;
  width: auto;
  display: block;
  max-width: 216px;
}
.footer-wordmark img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: .5rem;
}

/* Keep old wordmark rules but they won't be used */
.wordmark-text { display: none; }

/* Gold accent on "Harbor" in wordmark */
.nav-wordmark .wordmark-harbor {
  color: var(--color-gold);
}

.nav-toggle {
  display: none; /* shown via media query on mobile */
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 44px; /* WCAG touch target */
}

.nav-toggle:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
  border-radius: 4px;
}

/* z-index for mobile toggle handled in the mobile media query */

/* Close icon SVGs hardcoded white */
.nav-toggle .icon-close,
.nav-toggle .icon-menu {
  stroke: #FFFFFF;
  pointer-events: none;
}

/* Default state: show anchor, hide X */
.nav-toggle .icon-close {
  display: none !important;
}
.nav-toggle .icon-menu {
  display: block !important;
}

/* Open state: show X, hide anchor */
.nav-toggle[aria-expanded="true"] .icon-close {
  display: block !important;
}
.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link, .nav-menu a, .btn-nav {
  font-family: 'Roboto', sans-serif;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--color-white);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  min-height: 2.75rem;
  display: flex;
  align-items: center;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-silver);
}

.nav-link.active {
  color: var(--color-silver);
}

.nav-link--cta {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link--cta:hover,
.nav-link--cta:focus-visible {
  background: var(--color-white);
  color: var(--color-navy);
}

/* ── Who We Serve dropdown ───────────────────────────────────── */
.nav-item { position: relative; }
.nav-item--dd { position: relative; }

.nav-link--has-dd::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255,255,255,.5);
  margin-left: .25rem;
  vertical-align: middle;
  transition: transform .15s;
}
.nav-item--dd:hover .nav-link--has-dd::after {
  transform: rotate(180deg);
}

.nav-dd {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: #022242;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 10px;
  padding: 1.5rem 1.25rem 1rem;
  min-width: 560px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  z-index: 500;
  pointer-events: none;
}

/* Invisible bridge between nav item and dropdown to prevent mouseout */
.nav-item--dd::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.nav-item--dd:hover .nav-dd {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Keep dropdown open when hovering inside it */
.nav-dd:hover,
.nav-item--dd:hover .nav-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.25rem;
}
.nav-dd-col {
  display: flex;
  flex-direction: column;
}
.nav-dd-cat {
  font-family: 'Roboto', sans-serif;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #C9A84C;
  padding: .5rem 0 .3rem;
  margin-top: .25rem;
}
.nav-dd a {
  font-family: 'Roboto', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.78);  /* Minimum for WCAG AA on #022242 */
  text-decoration: none;
  padding: .25rem .4rem;
  border-radius: 4px;
  transition: color .12s, background .12s;
  white-space: nowrap;
}
.nav-dd a:hover {
  color: #ffffff;
  background: rgba(255,255,255,.07);
}
.nav-dd-foot {
  margin-top: .75rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.nav-dd-foot a {
  font-size: .78rem;
  color: rgba(201,168,76,.8);
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
}
.nav-dd-foot a:hover { color: #C9A84C; }

/* Mobile: hide dropdown, link goes straight to /who-we-serve */
@media (max-width: 62.5rem) {
  .nav-dd {
    display: none !important;
  }
  /* Hide the hover-bridge pseudo-element */
  .nav-item--dd::after {
    display: none !important;
  }
  /* Hide the chevron arrow on the "Who We Serve" link */
  .nav-link--has-dd::after {
    display: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  color: var(--color-navy);
  padding: 6rem 0 5rem;
  text-align: center;
  border-top: 2px solid var(--color-gold);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  margin: 0 auto;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  white-space: pre-line;
}

@media (max-width: 30rem) {
  .hero-heading br {
    display: none;
  }
}

.hero-subheading {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible {
  background: #d9b85c;
  border-color: #d9b85c;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.hero-actions .btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus-visible {
  background: var(--color-navy);
  color: #FFFFFF;
}

.hero-reassurance {
  font-size: 0.8rem;
  color: var(--color-text-muted, #374151);
  margin-top: 1rem;
  letter-spacing: 0.02em;
  opacity: 0.75;
}

/* ---------- Sections ---------- */
.wv { display: block; line-height: 0; overflow: hidden; }
.wv svg { display: block; width: 200%; }

.section {
  padding: 5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

.section--light {
  background: var(--color-light-bg);
}

.section--dark {
  background: var(--color-navy-dark);
}

.section--navy {
  background: var(--color-navy);
  border-top: 2px solid var(--color-gold);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-navy);
  line-height: 1.2;
}

.section-heading--light {
  color: var(--color-white);
}

.section-intro {
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
  color: var(--color-text-muted);
}

.section-intro--light {
  color: #C5C6CA;
}

/* ---------- Hero Layout ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero {
    position: relative;
    overflow: hidden;
  }
}

/* ===== URGENCY STATS STRIP ===== */
.stats-strip {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 2.5rem 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-block {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  padding: 1rem 2rem;
}

.stat-number {
  font-family: 'Maiden Orange', serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-danger {
  color: #ff6b6b;
}

.stat-positive {
  color: #6bcb77;
}

.stat-label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.stat-sublabel {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.80);
  margin-top: 0.3rem;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@media (max-width: 48rem) {
  .stats-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
  .stat-divider {
    width: 80px;
    height: 1px;
  }
  .stat-number {
    font-size: 2.25rem;
  }
}

/* ---------- Card Grid (What We Do) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--color-navy);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(2, 34, 66, 0.1);
  transform: translateY(-2px);
}

.card-icon {
  color: var(--color-navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}
.card-icon svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.card-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.card-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ---------- Steps Grid (How It Works) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-icon {
  color: #6B6D70; /* Accessible silver — 4.55:1 on white */
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}
.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-number {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.step-title {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #C5C6CA;
}

/* ---------- Audience Grid (Who It's For) ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
}

.audience-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--color-navy);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.audience-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.audience-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ---------- Full-Width Statement ---------- */
.statement-banner {
  background: var(--color-navy);
  padding: 3rem 1.5rem;
  text-align: center;
}

.statement-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.7;
  color: var(--color-white);
  max-width: 42.5rem;
  margin: 0 auto;
}

blockquote.site-quote,
blockquote.site-quote p {
  color: #FFFFFF;
  opacity: 1;
}

/* ---------- Features Grid (Why Agent Harbor) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.feature-icon {
  color: rgba(168,169,173,0.7);
  margin-bottom: 0.75rem;
  display: flex;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #C5C6CA;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

details.faq-item {
  border: 1px solid rgba(2,34,66,0.12);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  background: #FFFFFF;
  overflow: hidden;
}

details.faq-item summary.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--color-navy, #022242);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

details.faq-item summary.faq-question::-webkit-details-marker { display: none; }
details.faq-item summary.faq-question::marker { display: none; }

details.faq-item summary.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-navy, #022242);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

details.faq-item[open] summary.faq-question::after {
  content: '\2212';
}

details.faq-item summary.faq-question:hover {
  background: var(--color-light-bg);
}

details.faq-item > *:not(summary) {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted, #374151);
  font-size: 1.0625rem;
  line-height: 1.7;
}

details.faq-item summary.faq-question:focus-visible {
  outline: 2px solid var(--color-navy, #022242);
  outline-offset: -2px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: no-preference) {
  details.faq-item > *:not(summary) {
    animation: faq-open 0.2s ease;
  }
  @keyframes faq-open {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

.faq-pricing-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--color-navy, #022242);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-pricing-link:hover {
  opacity: 0.7;
}

/* ---------- Contact Form ---------- */
.contact-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-focus);
  box-shadow: 0 0 0 3px rgba(26, 111, 181, 0.25);
}

.form-input.form-input--error {
  border-color: var(--color-error);
}

.form-textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #6B6D70;
}

.form-error {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #ff6b6b;
  min-height: 1.25rem;
}

.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn-submit:hover,
.btn-submit:focus-visible {
  background: var(--color-light-bg);
  border-color: var(--color-light-bg);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  text-align: center;
  display: none;
}

.form-status--success {
  display: block;
  background: var(--color-navy);
  color: var(--color-white);
  border: 1px solid var(--color-navy);
}

.form-status--error {
  display: block;
  background: rgba(192, 57, 43, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(192, 57, 43, 0.3);
}

/* ---------- Contact Info ---------- */
.contact-info {
  margin-top: 2rem;
  text-align: center;
  color: var(--color-silver);
  font-size: 1rem;
}

.contact-info a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-info a:hover {
  color: var(--color-silver);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Light-background form label override */
.section--light .form-label {
  color: var(--color-navy);
}

.section--light .contact-info {
  color: var(--color-text-muted);
}

.section--light .contact-info a {
  color: var(--color-navy);
}

.section--light .contact-info a:hover {
  color: var(--color-focus);
}

.section--light .btn-submit {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.section--light .btn-submit:hover,
.section--light .btn-submit:focus-visible {
  background: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
  box-shadow: 0 4px 16px rgba(2, 34, 66, 0.25);
}

.section--light .form-input {
  border-color: var(--color-silver);
}

/* ---------- Scroll Fade-In ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy-dark, #011830);
  padding: 3.5rem 0 2rem;
}

/* Gold accent on decorative footer SVGs */
.footer-ship .ship-svg {
  stroke: rgba(201, 168, 76, 0.4);
}

.footer-ship .ship-svg path[fill],
.footer-ship .ship-svg [fill]:not([fill="none"]) {
  fill: rgba(201, 168, 76, 0.15);
}

.footer-location svg {
  stroke: var(--color-gold);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-logo-link {
  display: block;
  line-height: 0;
}

.footer-logo {
  width: 140px;
  height: auto;
  max-width: 140px;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.92;
}

.footer-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: .83rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
}

.footer-contact a {
  color: #C5C6CA;
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.4rem 0 0;
  line-height: 1.4;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #FFFFFF;
}

.footer-copy {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  margin: 0;
}

/* Mobile: stack columns */
@media (max-width: 48rem) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto 0.5rem;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-copy {
    text-align: center;
  }
}

/* ── Footer grid layout (pages using footer-grid/footer-links) ── */
.site-footer {
  background: #011830;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(201,168,76,.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.footer-col-title {
  font-family: 'Roboto', sans-serif;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(201,168,76,.85);  /* Gold on dark — passes WCAG AA */
  margin-bottom: .4rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.footer-col a {
  font-family: 'Roboto', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}

.footer-col a:hover {
  color: rgba(255,255,255,.9);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-family: 'Roboto', sans-serif;
  font-size: .77rem;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
  gap: .5rem;
}

/* Footer mobile — grid layout */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ---------- Mobile Nav (under 1000px) ---------- */
@media (max-width: 62.5rem) {
  .nav-toggle {
    display: flex;
    position: fixed;
    top: 14px;
    right: 1.5rem;
    z-index: 1002;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: var(--color-navy);
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1.25rem !important;
    padding-top: 80px !important;
    padding-bottom: 2rem !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu li {
    display: block !important;
    height: auto !important;
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block !important;
    font-size: 1.25rem !important;
    padding: 0.75rem 1.5rem !important;
    text-align: center;
    width: 100%;
  }
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 48rem) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 18rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid .stat-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  body {
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Catch any full-width sections whose inner content bleeds */
  .section > *:not(.container),
  .hero-inner,
  .article-body,
  .article-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .article-body {
    box-sizing: border-box;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 48.0625rem) and (max-width: 64rem) {
  .card-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Visually Hidden (honeypot, sr-only) ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Section Links ---------- */
.section-link {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.section-link:hover { color: var(--color-focus); }
.section-link--light { color: var(--color-white); }
.section-link--light:hover { color: var(--color-silver); }

/* ---------- Active Nav Link ---------- */
.nav-link[aria-current="page"] { color: var(--color-silver); }

/* ---------- Inner Page Styles ---------- */
/* ⚠️ REVIEW THIS DECISION: padding-bottom set to 5.5rem (88px) to give
   the 80px wave clearance without creating a large empty gap */
.inner-hero {
  background: #FFFFFF;
  color: var(--color-navy);
  padding: 4rem 0 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.inner-hero p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Hero — white background, generous padding */
.page-hero,
section.hero,
.hero-section {
  background: #ffffff !important;
  padding: 2.5rem 0 0;
  text-align: center;
  position: relative;
}

.page-hero h1,
section.hero h1 {
  font-family: 'Maiden Orange', serif !important;
  font-weight: 400 !important;
  color: #022242 !important;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.12;
  margin: 0 auto 1rem;
  max-width: 44rem;
}

.page-hero p,
section.hero p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

/* ── Who We Serve page hero — force dark text on white background ── */
.wws-hero,
.wws-hero h1,
.wws-hero p,
.wws-hero ol,
.wws-hero li,
.wws-hero a,
.wws-hero span {
  color: inherit;
}
.wws-hero {
  background: #ffffff !important;
  color: #1a202c !important;
}
.wws-hero h1 {
  color: #022242 !important;
}
.wws-hero p {
  color: #4a5568 !important;
}
.wws-hero .bc-text {
  color: #6b7280 !important;
}

/* Default breadcrumb — top-left, NOT centered */
.breadcrumb,
nav[aria-label="Breadcrumb"] ol,
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .35rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: .78rem;
  font-family: 'Roboto', sans-serif;
}

.breadcrumb a, nav[aria-label="Breadcrumb"] a {
  color: #374151;
  text-decoration: none;
  transition: color .15s;
}

.breadcrumb a:hover, nav[aria-label="Breadcrumb"] a:hover {
  color: #022242;
  text-decoration: underline;
}

.breadcrumb [aria-current="page"],
nav[aria-label="Breadcrumb"] [aria-current="page"] {
  color: #022242;
  font-weight: 500;
}

.breadcrumb .separator,
nav[aria-label="Breadcrumb"] .separator,
.bc-sep {
  color: #9ca3af;
}

.inner-content {
  padding: 3rem 0 4rem;
}

.inner-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-navy);
  margin: 2.5rem 0 0.75rem;
}

.inner-content h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-navy);
  margin: 2rem 0 0.5rem;
}

.inner-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.inner-content ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1.25rem;
}

.inner-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ---------- Bio Photo / Headshot ---------- */
.bio-photo {
  float: right;
  margin: 0 0 1.5rem 2.5rem;
  shape-outside: circle();
}

.headshot {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid rgba(2,34,66,0.12);
  display: block;
}

@media (max-width: 48rem) {
  .bio-photo {
    float: none;
    margin: 0 auto 1.5rem;
    text-align: center;
  }
  .headshot {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }
}

.cta-section {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
  border-top: 2px solid var(--color-gold);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  color: var(--color-white);
}

.cta-section p {
  color: #C5C6CA;
  max-width: 32rem;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

.cta-section .btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.cta-section .btn-primary:hover,
.cta-section .btn-primary:focus-visible {
  background: #d9b85c;
  border-color: #d9b85c;
}

/* ---------- Insights Cards ---------- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
}

.insight-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--color-navy);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.insight-card:hover {
  box-shadow: 0 8px 24px rgba(2, 34, 66, 0.1);
  transform: translateY(-2px);
}

.insight-card h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.insight-card p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.insight-card a {
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.insight-card a:hover {
  color: var(--color-focus);
}

/* ---------- Comparison Table ---------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-light-bg);
}

.comparison-table th {
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 600;
}

.comparison-table td {
  color: var(--color-text-muted);
}

.comparison-table tr:nth-child(even) {
  background: var(--color-light-bg);
}

/* ===== WAVE TRANSITIONS ===== */
.wave-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
  line-height: 0;
}

.wave-transition svg {
  animation: wave-scroll 10s linear infinite;
  display: block;
}

@keyframes wave-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Ensure hero/inner-hero has position:relative and enough bottom
   padding so content never overlaps the wave */
.hero {
  position: relative;
  padding-bottom: 5rem; /* min 80px clearance above wave */
}

.inner-hero {
  position: relative;
  padding: 4rem 0 5.5rem; /* 5.5rem gives wave clearance */
  overflow: hidden;
}

/* Reduce gap between inner-hero wave and first content section */
.inner-hero + .section,
.inner-hero + .section--light,
.inner-hero + div {
  padding-top: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  .wave-transition svg {
    animation: none;
  }
}

/* Mobile: reduce wave height to avoid sharp edges */
@media (max-width: 48rem) {
  .wave-transition {
    height: 50px;
  }
  .wave-transition svg {
    height: 50px;
  }
}

/* Hide legacy wave — superseded by .wave-transition */
.hero-wave {
  display: none !important;
}

/* ════════════════════════════════════════════════════════════════
   ANIMATED WAVES — hero and section dividers
   ════════════════════════════════════════════════════════════════ */

/* Hero wave (6-layer, 280px) */
@keyframes hero-wave-anim {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-wave-container {
  background: #fff;
  line-height: 0;
  overflow: hidden;
  display: block;
  margin: 0;
}
.hero-wave-svg {
  display: block;
  width: 200%;
  height: 280px;
  animation: hero-wave-anim 12s linear infinite;
}

/* Section wave (3-layer, 72px) — 3 independent speeds for parallax */
@keyframes sw-a { to { transform: translateX(-50%); } }
@keyframes sw-b { to { transform: translateX(-50%); } }
@keyframes sw-c { to { transform: translateX(-50%); } }

.section-wave-wrap {
  position: relative;
  height: 72px;
  overflow: hidden;
  display: block;
  margin: 0;
  line-height: 0;
}
.section-wave-wrap svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 72px;
}
.section-wave-wrap .sw-layer-1 { animation: sw-a 22s linear infinite; }
.section-wave-wrap .sw-layer-2 { animation: sw-b 15s linear infinite; }
.section-wave-wrap .sw-layer-3 { animation: sw-c 10s linear infinite; }
.section-wave-wrap .sw-l1 { animation: sw-a 22s linear infinite; }
.section-wave-wrap .sw-l2 { animation: sw-b 15s linear infinite; }
.section-wave-wrap .sw-l3 { animation: sw-c 10s linear infinite; }

.hero-wave-wrap {
  background: #fff; line-height: 0; overflow: hidden; display: block; margin: 0;
}
.hero-wave-wrap svg {
  display: block; width: 200%; height: 280px;
  animation: hero-wave-anim 12s linear infinite;
}

/* Hero wave — consistent height everywhere */
.hero-wave-svg,
section.vhero + div svg,
.vhero ~ div > svg {
  height: 280px !important;
  min-height: 280px;
}

/* ── WCAG AA color fixes ──────────────────────────────────────── */
/* Gold on light backgrounds: #8A6100 (9.7:1), not #C9A84C (2.4:1, fails) */
.pain-card .pstat { color: #8A6100; }
.pain-card { border-top-color: #8A6100; }
.pstat-label { color: #022242; opacity: .6; }

/* pvi items on LIGHT backgrounds (cream/white sections) */
.pvtxt {
  font-size: .875rem;
  line-height: 1.55;
  color: #4a5568;
}
.pvtxt strong {
  color: #022242;
  font-weight: 600;
}
.pvi-ic svg {
  stroke: #8A6100;
}

/* pvi items on DARK backgrounds — override when inside navy section */
.vs--navy .pvtxt,
.vs--dark .pvtxt {
  color: rgba(255,255,255,.72);
}
.vs--navy .pvtxt strong,
.vs--dark .pvtxt strong {
  color: #fff;
  font-weight: 600;
}
.vs--navy .pvi-ic svg,
.vs--dark .pvi-ic svg {
  stroke: #C9A84C;
}
.vs--navy .pvi-ic,
.vs--dark .pvi-ic {
  background: rgba(201,168,76,.12);
}
.vs--navy .prose-vis,
.vs--dark .prose-vis {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.vs--navy .pvi,
.vs--dark .pvi {
  border-bottom-color: rgba(255,255,255,.07);
}

/* Ocean depth strip — navy band immediately below every wave */
.ocean-floor {
  background: var(--color-navy);
  padding: 2.5rem 0;
  margin-top: -2px; /* eliminate any sub-pixel gap between wave and strip */
}

.ocean-floor--spacer {
  background: var(--color-navy);
  height: 40px;
  padding: 0;
  margin-top: -6px; /* generous overlap to kill sub-pixel white line */
}

/* ── First content section after wave = ocean depths ────────────────── */
/*
 * The wave transitions from white (top) to navy (bottom). The first
 * content section after the wave should be navy to continue the
 * "underwater" visual. This is a CSS-only approach that avoids
 * modifying every HTML file.
 */
.ocean-floor--spacer + .section,
.ocean-floor--spacer + .section--light,
.ocean-floor--spacer + section,
.ocean-floor--spacer + article {
  background: var(--color-navy) !important;
  color: var(--color-white) !important;
}

.ocean-floor--spacer + section h1,
.ocean-floor--spacer + section h2,
.ocean-floor--spacer + section h3,
.ocean-floor--spacer + section h4,
.ocean-floor--spacer + article h1,
.ocean-floor--spacer + article h2,
.ocean-floor--spacer + article h3,
.ocean-floor--spacer + article h4 {
  color: var(--color-white) !important;
}

.ocean-floor--spacer + section p,
.ocean-floor--spacer + section li,
.ocean-floor--spacer + article p,
.ocean-floor--spacer + article li {
  color: #C5C6CA !important;
}

.ocean-floor--spacer + section a:not(.btn):not(.btn-primary):not(.btn-secondary),
.ocean-floor--spacer + article a:not(.btn):not(.btn-primary):not(.btn-secondary) {
  color: var(--color-gold) !important;
}

/* Pricing: trust bar is a div immediately after spacer */
.ocean-floor--spacer + .pricing-trust-bar {
  background: var(--color-navy) !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.ocean-floor--spacer + .pricing-trust-bar .pricing-trust-item {
  color: var(--color-white) !important;
}

.ocean-floor--spacer + .pricing-trust-bar .pricing-trust-sep {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Form elements inside the navy first-section-after-wave */
.ocean-floor--spacer + section .form-label {
  color: var(--color-white) !important;
}

.ocean-floor--spacer + section .form-error {
  color: #ff6b6b !important;
}

.ocean-floor--spacer + section .contact-info {
  color: var(--color-silver) !important;
}

.ocean-floor--spacer + section .contact-info a {
  color: var(--color-white) !important;
}

.ocean-floor--spacer + section .btn-submit {
  background: var(--color-white) !important;
  color: var(--color-navy) !important;
  border-color: var(--color-white) !important;
}

.ocean-floor--spacer + section .consult-note {
  color: #C5C6CA !important;
}

.ocean-floor--spacer + section .consult-note strong {
  color: var(--color-white) !important;
}

/* Section headings that use section-heading class */
.ocean-floor--spacer + section .section-heading {
  color: var(--color-white) !important;
}

/* FAQ items inside navy section - keep white cards */
.ocean-floor--spacer + section details.faq-item {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.ocean-floor--spacer + section details.faq-item summary.faq-question {
  color: var(--color-white) !important;
}

.ocean-floor--spacer + section details.faq-item summary.faq-question::after {
  color: var(--color-white) !important;
}

.ocean-floor--spacer + section details.faq-item summary.faq-question:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

.ocean-floor--spacer + section details.faq-item > *:not(summary) {
  color: #C5C6CA !important;
}

/* Article body inside navy section — readable text */
.ocean-floor--spacer + article .article-body {
  color: #C5C6CA !important;
}

.ocean-floor--spacer + article .article-body h2,
.ocean-floor--spacer + article .article-body h3 {
  color: var(--color-white) !important;
}

.ocean-floor--spacer + article .article-body p,
.ocean-floor--spacer + article .article-body li {
  color: #C5C6CA !important;
}

.ocean-floor--spacer + article .article-body strong {
  color: var(--color-white) !important;
}

.ocean-floor--spacer + article .article-body blockquote {
  color: rgba(255, 255, 255, 0.92) !important;
  border-color: var(--color-gold) !important;
}

/* Why-AH grid items (get-started page) */
.ocean-floor--spacer + section .why-ah-item {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.ocean-floor--spacer + section .why-ah-item h3 {
  color: var(--color-white) !important;
}

/* Cards and other white-bg elements inside the navy first section */
.ocean-floor--spacer + section .card,
.ocean-floor--spacer + section .insight-card,
.ocean-floor--spacer + section .audience-card {
  background: var(--color-white) !important;
  border-color: rgba(2, 34, 66, 0.12) !important;
  border-left: 4px solid var(--color-gold) !important;
}

.ocean-floor--spacer + section .card-title,
.ocean-floor--spacer + section .insight-card h2,
.ocean-floor--spacer + section .audience-title {
  color: var(--color-navy) !important;
}

.ocean-floor--spacer + section .card-text,
.ocean-floor--spacer + section .insight-card p,
.ocean-floor--spacer + section .audience-text {
  color: var(--color-text-muted) !important;
}

.ocean-floor--spacer + section .insight-card a {
  color: var(--color-navy) !important;
}

/* REMOVED — visual noise on dark sections */
/*
.water-shimmer {
  position: relative;
}

.water-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0.03) 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.03) 60%,
    rgba(255,255,255,0.08) 100%
  );
  background-size: 200% 100%;
  animation: shimmer-sweep 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes shimmer-sweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.water-shimmer > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .water-shimmer::after {
    animation: none;
    opacity: 0;
  }
}
*/

/* ---------- Hero Anchor Centerpiece (Task 1b) ---------- */
.hero-anchor-drop {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}

/* The anchor bobs gently */
.hero-anchor-drop img {
  width: 180px;
  height: auto;
  display: block;
  animation: anchor-hero-bob 5s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes anchor-hero-bob {
  0%, 100% { transform: translateY(0px)  rotate(-1deg); }
  50%       { transform: translateY(10px) rotate(1deg);  }
}

@media (max-width: 48rem) {
  .hero-anchor-drop {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anchor-drop img {
    animation: none;
    transform: translateY(0) rotate(0deg);
  }
}

/* ---------- Harbor Horizon Effect (Task 2d) ---------- */
/* REMOVED — visual noise on dark sections */
/*
.harbor-horizon {
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(1,24,48,0.95) 0%,
      rgba(2,34,66,0.9) 35%,
      rgba(1,24,48,1) 100%),
    linear-gradient(180deg,
      transparent 0%,
      transparent 60%,
      rgba(1,24,48,0.6) 60%,
      rgba(1,24,48,0.8) 65%,
      transparent 65%),
    linear-gradient(180deg,
      rgba(2,34,66,0.3) 0%,
      rgba(10,30,55,0.5) 50%,
      rgba(1,24,48,0.9) 100%);
}
*/

/* ===== FOOTER SHIP ANIMATION ===== */
.footer-ship-track {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}

.footer-ship {
  position: absolute;
  bottom: 8px;
  left: -130px;
  width: 120px;
  animation: ship-sail 5s linear infinite;
}

.ship-svg {
  width: 120px;
  height: 60px;
  display: block;
}

@keyframes ship-sail {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 130px)); }
}

@media (prefers-reduced-motion: reduce) {
  .footer-ship {
    animation: none;
    display: none;
  }
}

/* ---------- Sticky CTA Bar (Task 7a) ---------- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--color-navy);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

.sticky-cta-bar.is-visible {
  transform: translateY(0);
}

.sticky-cta-bar__text {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.sticky-cta-bar__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.sticky-cta-bar__btn:hover,
.sticky-cta-bar__btn:focus-visible {
  background: var(--color-light-bg);
  box-shadow: 0 2px 8px rgba(255,255,255,0.15);
}

.sticky-cta-bar__dismiss {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-silver);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  border-radius: var(--radius);
  transition: color var(--transition);
}

.sticky-cta-bar__dismiss:hover,
.sticky-cta-bar__dismiss:focus-visible {
  color: var(--color-white);
}

.sticky-cta-bar__dismiss:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta-bar {
    transition: none;
  }
}

@media (max-width: 48rem) {
  .sticky-cta-bar__text {
    font-size: 0.85rem;
  }
  .sticky-cta-bar__btn {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

/* ---------- Related Articles (Task 7c) ---------- */
.related-articles .insights-grid,
.related-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 48rem) {
  .related-articles .insights-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Pricing Preview / Pricing Page ---------- */
.section-subheading {
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1rem;
  color: var(--color-text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem;
  align-items: start;
}

@media (max-width: 62rem) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-card {
  border: 1px solid rgba(2,34,66,0.15);
  border-radius: var(--radius, 12px);
  padding: 2rem 1.5rem;
  background: var(--color-white);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--color-navy);
  border-width: 2px;
  background: var(--color-navy);
  color: var(--color-white);
  border-top: 3px solid var(--color-gold);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.pricing-card--featured .pricing-badge {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

.pricing-tier-name {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.pricing-card--featured .pricing-tier-name {
  color: var(--color-white);
}

.pricing-amount {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: var(--color-navy);
}

.pricing-card--featured .pricing-amount {
  color: var(--color-white);
}

.pricing-dollar {
  font-size: 1.4rem;
  vertical-align: top;
  padding-top: 0.4rem;
  display: inline-block;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.65;
}

.pricing-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.pricing-card--featured .pricing-description {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}

.pricing-card--featured .pricing-features {
  color: var(--color-white);
}

.pricing-features li {
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  border-top: 1px solid rgba(168,169,173,0.15);
}

.pricing-features li::before {
  content: '⚓';
  position: absolute;
  left: 0;
  font-size: 0.65rem;
  top: 0.45rem;
  opacity: 0.6;
}

.pricing-features em {
  font-style: normal;
  opacity: 0.65;
  font-size: 0.8rem;
}

.pricing-footnote {
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-muted, #374151);
  margin-top: 1rem;
}

.pricing-footnote a {
  color: var(--color-navy);
  text-decoration: underline;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--color-navy);
  color: var(--color-white);
}

.pricing-card--featured .btn-outline {
  color: var(--color-white);
  border-color: var(--color-white);
}

.pricing-card--featured .btn-outline:hover,
.pricing-card--featured .btn-outline:focus-visible {
  background: var(--color-white);
  color: var(--color-navy);
}

.pricing-card--featured .btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.pricing-card--featured .btn-primary:hover,
.pricing-card--featured .btn-primary:focus-visible {
  background: #d9b85c;
  border-color: #d9b85c;
}

/* ---------- Comparison Table (Pricing Page) ---------- */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(2,34,66,0.1);
}

.comparison-table th {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--color-navy);
}

.comparison-table thead th {
  border-bottom: 2px solid var(--color-navy);
}

.compare-header-row th,
.compare-header-row td {
  background: #022242 !important;
  color: #FFFFFF !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border: none;
  vertical-align: middle;
}

.compare-col--highlight,
th.compare-col--highlight {
  background: #022242 !important;
  color: #FFFFFF !important;
  border-top: 3px solid rgba(168,169,173,0.6);
  position: relative;
}

.compare-label-col {
  background: #022242 !important;
  color: transparent !important;
  width: 28%;
}

.comparison-table .highlight-col {
  background: rgba(2,34,66,0.04);
}

/* ---------- Pricing FAQ ---------- */
.pricing-faq {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing-faq-item {
  border: 1px solid rgba(2,34,66,0.12);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  background: #FFFFFF;
  overflow: hidden;
}

.pricing-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-navy);
  font-size: 1rem;
  list-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.pricing-faq-item summary::-webkit-details-marker {
  display: none;
}

.pricing-faq-item summary::marker {
  display: none;
}

.pricing-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-navy, #022242);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.pricing-faq-item[open] summary::after {
  content: '\2212';
}

.pricing-faq-item > *:not(summary) {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted, #374151);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.pricing-faq-item summary:focus-visible {
  outline: 2px solid var(--color-navy, #022242);
  outline-offset: -2px;
  border-radius: 8px;
}

/* ---------- Consultation CTA ---------- */
.consultation-cta {
  background: var(--color-navy, #022242);
  padding: 2.5rem 0;
  margin: 2rem 0 0;
}

.consultation-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.consultation-text h3.consultation-heading {
  font-size: 1.3rem;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.consultation-text p {
  color: #C5C6CA;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}

.consultation-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 48rem) {
  .consultation-inner {
    flex-direction: column;
    text-align: center;
  }
  .consultation-text p {
    max-width: 100%;
  }
}

/* ---------- Consult Note (Contact Page) ---------- */
.consult-note {
  background: rgba(2,34,66,0.06);
  border-left: 3px solid var(--color-navy, #022242);
  padding: 0.85rem 1.25rem;
  border-radius: 0 6px 6px 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  color: var(--color-text-muted, #374151);
}

.consult-note strong {
  color: var(--color-navy, #022242);
}

/* ---------- Print ---------- */
@media print {
  .site-header,
  .nav-toggle,
  .hero-actions,
  .contact-form {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section--dark,
  .section--navy {
    background: #fff;
    color: #000;
  }

  .section-heading--light,
  .step-title,
  .feature-title {
    color: #000;
  }

  .section-intro--light,
  .step-text,
  .feature-text {
    color: #333;
  }
}

/* ---------- Inline CTA ---------- */
.inline-cta {
  text-align: center;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(2,34,66,0.12);
  margin-top: 2.5rem;
}

/* ---------- Pricing ROI Bar ---------- */
.pricing-roi-bar {
  background: var(--color-navy, #022242);
  padding: 0.85rem 0;
  text-align: center;
}

.pricing-roi-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  align-items: center;
}

.pricing-roi-stat {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

.pricing-roi-divider {
  color: rgba(168,169,173,0.5);
  font-size: 1rem;
}

@media (max-width: 48rem) {
  .pricing-roi-divider { display: none; }
  .pricing-roi-inner { flex-direction: column; gap: 0.35rem; }
}

/* ---------- ROI Section ---------- */
.roi-section {
  padding: 5rem 0;
  text-align: center;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2rem;
  text-align: left;
}

@media (max-width: 56rem) {
  .roi-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.roi-card {
  background: #FFFFFF;
  border: 1px solid rgba(2,34,66,0.1);
  border-radius: 12px;
  padding: 1.75rem;
  border-top: 3px solid var(--color-navy, #022242);
}

.roi-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-navy, #022242);
  line-height: 1;
  margin-bottom: 0.6rem;
  font-family: 'Bitter', Georgia, serif;
}

.roi-label {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-navy, #022242);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.roi-note {
  font-size: 0.8rem;
  color: var(--color-text-muted, #374151);
  line-height: 1.5;
}

.roi-closer {
  font-size: 1.125rem;
  color: var(--color-text-muted, #374151);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ---------- Agent Customization Section ---------- */
.agent-custom-section {
  padding: 5rem 0;
}

/* Force readable contrast on the section subheading */
.agent-custom-section .section-subheading,
.agent-custom-section > .container > p {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* Also ensure the section-heading is full white */
.agent-custom-section .section-heading,
.agent-custom-section h2 {
  color: #FFFFFF !important;
}

/* Custom closer paragraph */
.custom-closer {
  color: rgba(255, 255, 255, 0.88) !important;
}

/* Center the CTA button */
.agent-custom-section .btn-outline-light,
.agent-custom-section > .container > a {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.custom-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0 2.5rem;
}

@media (max-width: 48rem) {
  .custom-examples {
    grid-template-columns: 1fr;
  }
}

.custom-example-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(168,169,173,0.15);
  border-radius: 12px;
  padding: 1.75rem;
}

.custom-example-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.80) !important;
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.custom-name-list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  padding-left: 0;
}

.agent-name {
  font-weight: 700;
  color: var(--color-gold);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.custom-closer {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1rem;
  line-height: 1.7;
}

.btn-outline-light {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255,255,255,0.6);
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
}

/* ---------- Urgency Section ---------- */
.urgency-section {
  padding: 5rem 0;
  text-align: center;
}

.urgency-inner {
  max-width: 720px;
}

.urgency-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

/* ---------- Pricing Support Note ---------- */
.pricing-support-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted, #374151);
  margin-top: 1rem;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ---------- Reverse Trial Banner ---------- */
.reverse-trial-banner {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 1rem 0;
}

.reverse-trial-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.reverse-trial-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.reverse-trial-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

.reverse-trial-text strong {
  color: var(--color-white);
}

@media (max-width: 48rem) {
  .reverse-trial-text {
    font-size: 0.875rem;
  }
}

/* ---------- Mooring / Free Tier Card ---------- */
.pricing-card--mooring {
  border: 2px dashed rgba(168,169,173,0.7);
  background: var(--color-light-bg, #f8f9fa);
}

.pricing-card--mooring .pricing-tier-name {
  color: var(--color-navy);
}

.pricing-card--mooring .pricing-amount {
  color: var(--color-navy);
}

.pricing-badge--free {
  background: var(--color-silver, #A8A9AD);
  color: var(--color-navy);
}

.pricing-trial-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted, #374151);
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-style: italic;
}

.btn--full {
  display: block;
  width: 100%;
  text-align: center;
}

/* ---------- API Cost Section ---------- */
.api-cost-explainer {
  max-width: 56rem;
  margin: 0 auto;
}

.api-cost-intro {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.api-cost-intro p {
  margin-bottom: 0.75rem;
}

.api-cost-table td:last-child {
  font-weight: 700;
  color: var(--color-navy);
}

.api-cost-footnote {
  font-size: 0.8rem;
  color: var(--color-text-muted, #374151);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ---------- Why Agent Harbor Trust Block ---------- */
.why-ah-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 62rem) {
  .why-ah-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 40rem) {
  .why-ah-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.why-ah-item {
  text-align: center;
}

.why-ah-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.why-ah-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading, 'Roboto', sans-serif);
}

.why-ah-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted, #374151);
}

/* Homepage pricing preview — 3 tiers */
.pricing-preview .pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 62rem) {
  .pricing-preview .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================
   BILLING TOGGLE
   =========================== */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 1.5rem auto 0.5rem;
  background: var(--color-light-bg, #f8f9fa);
  border: 1px solid rgba(2,34,66,0.12);
  border-radius: 2rem;
  padding: 0.25rem;
  width: fit-content;
}

.billing-toggle__btn {
  background: transparent;
  border: none;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted, #374151);
  border-radius: 2rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.billing-toggle__btn--active {
  background: var(--color-navy);
  color: var(--color-white);
}

.billing-toggle__btn:focus-visible {
  outline: 2px solid var(--color-focus, #005fcc);
  outline-offset: 2px;
}

.billing-toggle__save {
  background: #2a9d5c;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
}

.billing-toggle__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted, #374151);
  margin-bottom: 2rem;
}

/* ===========================
   3-COLUMN PRICING GRID
   =========================== */
.pricing-grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin: 0 0 1rem;
}

.pricing-grid--3col .pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-grid--3col .pricing-features {
  flex: 1;
}

.pricing-grid--3col .btn--full {
  margin-top: auto;
}

@media (max-width: 62rem) {
  .pricing-grid--3col {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================
   PRICING BILLING NOTE
   =========================== */
.pricing-billing-note {
  font-size: 0.8rem;
  color: var(--color-text-muted, #374151);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.pricing-card--featured .pricing-billing-note {
  color: rgba(255,255,255,0.85);
}

.pricing-billing-note s {
  opacity: 0.6;
}

/* ===========================
   TRUST BAR
   =========================== */
.pricing-trust-bar {
  background: var(--color-light-bg, #f8f9fa);
  border-top: 1px solid rgba(2,34,66,0.08);
  border-bottom: 1px solid rgba(2,34,66,0.08);
  padding: 0.875rem 0;
}

.pricing-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.pricing-trust-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-navy);
}

.pricing-trust-sep {
  color: rgba(2,34,66,0.3);
  font-size: 1rem;
}

@media (max-width: 48rem) {
  .pricing-trust-sep { display: none; }
  .pricing-trust-inner { gap: 0.35rem 0.75rem; }
}

/* ===========================
   SETUP FEE OPTIONS
   =========================== */
.setup-fee-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 0;
  text-align: left;
}

.setup-fee-option {
  border: 1px solid rgba(2,34,66,0.15);
  border-radius: var(--radius, 12px);
  padding: 1.25rem;
  background: var(--color-white);
}

.setup-fee-option--premium {
  border-color: var(--color-navy);
  border-width: 2px;
}

.setup-fee-option__name {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.setup-fee-option__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.setup-fee-option__price span {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.6;
}

.setup-fee-option__note {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-text-muted, #374151);
}

@media (max-width: 40rem) {
  .setup-fee-options { grid-template-columns: 1fr; }
}

/* ===========================
   PRICING FAQ
   =========================== */
.pricing-faq-item {
  background: var(--color-white);
  border: 1px solid rgba(2, 34, 66, 0.12);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.pricing-faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.pricing-faq-item summary::-webkit-details-marker { display: none; }

.pricing-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
}

.pricing-faq-item[open] summary {
  border-bottom: 1px solid rgba(2, 34, 66, 0.08);
}

.pricing-faq-item[open] summary::after {
  content: '\2212';
}

.pricing-faq-item p {
  padding: 1rem 1.5rem 1.25rem;
  color: var(--color-text-muted, #374151);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-faq-item summary::after { transition: none; }
}

/* ---------- Nav CTA Button ---------- */
.btn-nav {
  background: var(--color-white);
  color: var(--color-navy);
  border: 2px solid var(--color-white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-nav:hover,
.btn-nav:focus-visible {
  background: transparent;
  color: var(--color-white);
}

/* ---------- Guarantee Badge ---------- */
.guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1.5rem auto;
  max-width: 480px;
  text-align: left;
}

.guarantee-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6); /* decorative — aria-hidden */
}

.guarantee-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #FFFFFF;
}

.guarantee-text strong {
  display: block;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-size: 1.0625rem;
}

.guarantee-text span {
  color: #FFFFFF;
}

@media (prefers-reduced-motion: reduce) {
  .guarantee-badge {
    animation: none;
  }
}

/* ===== CREDENTIALS SECTION ===== */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 2rem;
}

@media (max-width: 56rem) {
  .credentials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

.credential-card {
  background: var(--color-white);
  border: 1px solid rgba(2, 34, 66, 0.1);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.credential-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.75rem;
  height: 36px;
}

.credential-icon svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.credential-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.credential-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

.credentials-cta {
  text-align: center;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  margin-top: 1rem;
}

.credentials-cta-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem;
}

.credentials-cta-text strong {
  color: var(--color-white);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

@media (prefers-reduced-motion: reduce) {
  .credential-card {
    transition: none;
  }
}

/* ---------- Founder Promise ---------- */
.founder-promise {
  background: rgba(2, 34, 66, 0.04);
  border-left: 3px solid var(--color-navy);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 1.5rem 0;
}

/* ===== DEPLOYMENT STANDARD / CHECKLIST ===== */
.checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--color-white);
  border: 1px solid rgba(2, 34, 66, 0.08);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}

.checklist-num {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-navy);
  opacity: 0.4;
  flex-shrink: 0;
  padding-top: 0.15rem;
  letter-spacing: 0.05em;
  min-width: 2rem;
}

.checklist-content {
  flex: 1;
}

.checklist-content strong {
  display: block;
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.checklist-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0;
}

.deployment-standard-note {
  font-size: 1rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.85rem 1.25rem;
  background: rgba(2, 34, 66, 0.04);
  border-radius: 8px;
}

.deployment-standard-note strong {
  color: var(--color-navy);
}

/* ===== CLIENT STATUS ===== */
.client-status {
  margin: 1.5rem 0;
}

.client-status-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.client-status-text a {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

/* ===== HERO TRIAL NOTE ===== */
.hero-trial-note {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.hero-trial-note a {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== REVERSE TRIAL BANNER ===== */
.reverse-trial-banner {
  padding: 1.25rem 0;
}

.reverse-trial-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}

.reverse-trial-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75); /* decorative */
}

.reverse-trial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #FFFFFF;
}

.reverse-trial-text strong {
  display: block;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.3rem;
}

/* ===== PAGE TRIAL NOTE ===== */
.page-trial-note {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  text-align: center;
}

/* ===== DATA PRIVACY SECTION ===== */
.privacy-section {
  background: var(--color-navy);
  color: var(--color-white);
}

.privacy-split {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 48rem) {
  .privacy-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .privacy-icon-col {
    display: flex;
    justify-content: center;
  }
}

.privacy-icon-col svg {
  stroke: rgba(168, 169, 173, 0.7);
}

.privacy-heading {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.privacy-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.privacy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

@media (max-width: 48rem) {
  .privacy-badges {
    justify-content: center;
  }
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  letter-spacing: 0.03em;
}

/* ---------- Contact Intro ---------- */
.contact-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* ---------- Call Details ---------- */
.call-details {
  background: rgba(2, 34, 66, 0.04);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.call-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

@media (max-width: 40rem) {
  .call-details-list {
    grid-template-columns: 1fr;
  }
}

.call-details-list li {
  font-size: 1rem;
  color: var(--color-navy);
  font-weight: 500;
}

/* ---------- Landing Page Features Grid ---------- */
.landing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 48rem) {
  .landing-features-grid {
    grid-template-columns: 1fr;
  }
}

.landing-feature-item {
  background: var(--color-white);
  border: 1px solid rgba(2, 34, 66, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.landing-feature-item h3 {
  color: var(--color-navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.landing-feature-item p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0;
}


/* ================================================================
   INTAKE FORM — Agent Blueprint multi-step form
   Self-hosted · no third-party form services
   ================================================================ */

/* Progress bar */
.intake-progress {
  margin: 0 0 2rem;
}

.intake-progress-track {
  height: 4px;
  background: rgba(2, 34, 66, 0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.intake-progress-fill {
  height: 100%;
  background: var(--color-navy);
  border-radius: 2px;
  width: 0%;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .intake-progress-fill {
    transition: none;
  }
}

.intake-progress-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Form wrapper */
.intake-form {
  margin-top: 2rem;
}

/* Fieldset / step */
.intake-step {
  border: none;
  padding: 0;
  margin: 0;
}

.intake-legend {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  padding: 0;
  width: 100%;
  border-bottom: 2px solid rgba(2, 34, 66, 0.1);
  padding-bottom: 0.75rem;
}

/* Field wrapper */
.intake-field {
  margin-bottom: 1.5rem;
}

/* Labels */
.intake-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.375rem;
}

.intake-required {
  color: #c0392b;
  margin-left: 0.2em;
}

.intake-optional {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-left: 0.25em;
}

.intake-hint {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

/* Text inputs */
.intake-input,
.intake-select,
.intake-textarea {
  display: block;
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1.5px solid rgba(2, 34, 66, 0.25);
  border-radius: var(--radius, 6px);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.intake-input:focus,
.intake-select:focus,
.intake-textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(2, 34, 66, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  .intake-input,
  .intake-select,
  .intake-textarea {
    transition: none;
  }
}

.intake-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23022242' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.intake-textarea {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.6;
}

/* Checkbox group */
.intake-checkgroup {
  border: none;
  padding: 0;
  margin: 0;
}

.intake-checkgroup > legend {
  float: left;
  width: 100%;
  margin-bottom: 0.375rem;
}

.intake-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
}

@media (max-width: 600px) {
  .intake-checks {
    grid-template-columns: 1fr;
  }
}

.intake-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-navy);
  cursor: pointer;
  line-height: 1.4;
}

.intake-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.1em;
  accent-color: var(--color-navy);
  cursor: pointer;
}

.intake-check:hover span {
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Error banner */
.intake-error-banner {
  background: #fdecea;
  border: 1.5px solid #c0392b;
  border-radius: var(--radius, 6px);
  padding: 0.875rem 1.125rem;
  margin: 1rem 0;
  color: #7b1a12;
  font-size: 0.9375rem;
}

.intake-error-banner p {
  margin: 0;
}

/* Nav buttons */
.intake-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid rgba(2, 34, 66, 0.1);
}

.intake-btn-back {
  margin-right: auto;
}

/* Success state */
.intake-success {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--color-light-bg);
  border-radius: var(--radius, 6px);
  border: 1.5px solid rgba(2, 34, 66, 0.1);
}

.intake-success-icon {
  margin-bottom: 1.25rem;
}

.intake-success-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 1rem;
}

.intake-success p {
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 auto 0.75rem;
  line-height: 1.65;
}

/* ── Trust Badge Bar ─────────────────────────────────────────── */
.trust-badge-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--trust-badge-bg);
  border: 1px solid var(--trust-badge-border);
  border-radius: var(--trust-badge-radius);
  width: fit-content;
  max-width: 100%;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--trust-badge-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-badge__icon {
  flex-shrink: 0;
  color: var(--trust-badge-icon);
  width: 16px;
  height: 16px;
}

.trust-badge-bar__divider {
  display: block;
  width: 1px;
  height: 1rem;
  background: var(--trust-badge-border);
  flex-shrink: 0;
}

/* ── Light variant — ONLY use on dark navy backgrounds ──────── */
.trust-badge-bar--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.trust-badge-bar--light .trust-badge,
.trust-badge-bar--light .trust-badge__label,
.trust-badge-bar--light .trust-badge__icon {
  color: #FFFFFF;
}

.trust-badge-bar--light .trust-badge-bar__divider {
  background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
  .trust-badge-bar__divider { display: none; }
  .trust-badge-bar { justify-content: flex-start; }
}

/* ── Hero Privacy Additions ──────────────────────────────────── */
.hero__cta-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--color-navy);
  opacity: 0.75;
  margin-top: 0.6rem;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
}

.hero__cta-microcopy svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.hero__trust-bar {
  margin-top: 2rem;
}

/* ── Privacy Pillars Section ─────────────────────────────────── */
.privacy-pillars {
  background: var(--trust-section-bg);
  padding: 5rem 0;
  border-top: 1px solid var(--trust-badge-border);
  border-bottom: 1px solid var(--trust-badge-border);
}

.privacy-pillars__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.privacy-pillars__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.privacy-pillars__heading {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.privacy-pillars__intro {
  color: #444;
  line-height: 1.65;
  font-size: 1rem;
}

.privacy-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--trust-pillar-gap);
  max-width: 1060px;
  margin: 0 auto;
}

.privacy-pillar {
  background: #FFFFFF;
  border: 1px solid var(--trust-badge-border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .privacy-pillar:hover {
    box-shadow: 0 6px 24px rgba(2, 34, 66, 0.10);
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-pillar {
    transition: none;
  }
}

.privacy-pillar__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(2, 34, 66, 0.07);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  color: var(--color-navy);
}

.privacy-pillar__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.privacy-pillar__body {
  font-size: 0.9rem;
  color: #4A4A4A;
  line-height: 1.7;
}

.privacy-pillars__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.privacy-pillars__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-navy);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.privacy-pillars__link:hover,
.privacy-pillars__link:focus-visible {
  text-decoration-color: var(--color-navy);
}

.privacy-pillars__link:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Comparison Table Section ────────────────────────────────── */
.comparison-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.comparison-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.comparison-section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.comparison-section__heading {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.comparison-section__intro {
  color: #444;
  line-height: 1.65;
  font-size: 0.95rem;
}

.comparison-table-wrap {
  max-width: 820px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--trust-badge-border);
  box-shadow: 0 2px 16px rgba(2, 34, 66, 0.07);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  table-layout: fixed;
}

.comparison-table thead {
  background-color: #022242;
}

.comparison-table thead tr {
  background-color: #022242;
}

.comparison-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
}

/* Column widths — fixed layout prevents wrap */
.comparison-table .comparison-table__col-label { width: 30%; }
.comparison-table .comparison-table__col-ah    { width: 38%; }
.comparison-table .comparison-table__col-cloud { width: 32%; }

.comparison-table tbody tr:nth-child(even) {
  background: var(--comparison-stripe);
}

.comparison-table tbody tr:hover {
  background: var(--comparison-highlight);
}

.comparison-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--trust-badge-border);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table__feature {
  font-weight: 600;
  color: var(--color-navy);
  width: 30%;
}

.comparison-table__ah {
  color: #1B6B2F;
  font-weight: 600;
  white-space: normal;
  min-width: 180px;
}

.comparison-table__cloud {
  color: #666;
  width: 32%;
}

.comparison-table__ah svg {
  color: #2E7D32;
  vertical-align: middle;
  margin-right: 0.4rem;
}

/* Accessible focus for table cells in keyboard navigation */
.comparison-table td:focus-visible,
.comparison-table th:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: -2px;
}

/* ── Privacy FAQ Section ─────────────────────────────────────── */
.privacy-faq {
  background: var(--trust-section-bg);
  padding: 5rem 0;
  border-top: 1px solid var(--trust-badge-border);
}

.privacy-faq__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.privacy-faq__heading {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.privacy-faq__intro {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

.privacy-faq__list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--trust-badge-border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  list-style: none;
  transition: background 0.15s ease;
}

/* Remove default marker in Safari */
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::marker { display: none; }

.faq-item__question:hover {
  background: var(--comparison-stripe);
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: -2px;
}

.faq-item__chevron {
  flex-shrink: 0;
  color: #6B6D70; /* Accessible silver — 4.55:1 on white */
  transition: transform 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__chevron { transition: none; }
  .faq-item__question { transition: none; }
  .privacy-pillars__link { transition: none; }
}

details[open] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 1.4rem 1.25rem;
  color: #444;
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item__answer p + p {
  margin-top: 0.75rem;
}

/* ── Pricing Privacy Block ───────────────────────────────────── */
.pricing-privacy-block {
  background: rgba(2, 34, 66, 0.04);
  border: 1px solid var(--trust-badge-border);
  border-radius: 10px;
  padding: 2rem 2.5rem;
  max-width: 720px;
  margin: 3rem auto;
  text-align: center;
}

.pricing-privacy-block__heading {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

.pricing-privacy-block__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.6rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-privacy-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #333;
  font-weight: 500;
}

.pricing-privacy-item svg {
  color: #2E7D32;
  flex-shrink: 0;
}

.pricing-cta-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

/* ── Footer Trust Bar ────────────────────────────────────────── */
.footer-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(168, 169, 173, 0.2);
  margin-bottom: 1rem;
  font-size: 0.78rem;
}

.footer-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-silver);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.15s;
}

.footer-trust-item:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-trust-item:focus-visible {
  outline: 2px solid var(--color-silver);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-trust-item--static {
  cursor: default;
}

.footer-trust-item--static:hover {
  text-decoration: none;
}

.footer-trust-bar__divider {
  color: rgba(168, 169, 173, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .footer-trust-item { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER WAVE — animated wave transition above footer
   ═══════════════════════════════════════════════════════════════════ */

.footer-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  background: transparent;
  margin-bottom: -4px;
  position: relative;
  z-index: 1;
}

.footer-wave svg {
  display: block;
  width: 200%;
  height: auto;
  min-height: 90px;
  overflow: visible;
  position: relative;
}

/* Footer wave layers share the same animation as hero waves */
.footer-wave .wave-g1 { animation: wave-drift 14s linear infinite; }
.footer-wave .wave-g2 { animation: wave-drift 10s linear infinite; animation-direction: reverse; }
.footer-wave .wave-g3 { animation: wave-drift 8s linear infinite; }
.footer-wave .wave-g4 { animation: wave-drift 6s linear infinite; animation-direction: reverse; }
.footer-wave .wave-g5 { animation: wave-drift 4.5s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .footer-wave .wave-g1,
  .footer-wave .wave-g2,
  .footer-wave .wave-g3,
  .footer-wave .wave-g4,
  .footer-wave .wave-g5 { animation: none; }
}

@media (max-width: 48rem) {
  .footer-wave { margin-bottom: -2px; }
  .footer-wave svg { min-height: 60px; }
}
