/* ============================================================
   ReachPT — Main Stylesheet
   Aesthetic: Sport Moderne · Bricolage Grotesque + Figtree
   ============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Palette — cool/neutral base with blue + orange brand accents */
  --cream:        #F4F7FB;
  --cream-alt:    #E8EFF9;
  --cream-cta:    #EDF2FA;
  --dark:         #0C1B3A;
  --dark-surface: #112452;
  --charcoal:     #0F1729;
  --text-muted:   #5B6880;
  --orange:       #E55A2B;
  --orange-dark:  #C44820;
  --orange-light: #FDEEE8;
  --blue:         #1A60C0;
  --blue-dark:    #0D3A78;
  --blue-light:   #EEF3FB;
  --blue-mid:     #2470C8;
  --green:        #1A60C0;
  --border:       #C8D8F0;
  --border-dark:  #1E3360;
  --white:        #FFFFFF;
  --amber:        #F59E0B;

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Figtree', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  /* Spacing (8px base) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --container-max:    1200px;
  --container-narrow: 760px;

  /* Radii */
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(15,23,41,.07);
  --shadow:    0 4px 16px rgba(15,23,41,.1);
  --shadow-lg: 0 12px 40px rgba(15,23,41,.16);
  --shadow-orange: 0 6px 20px rgba(229,90,43,.3);
  --shadow-blue:   0 6px 20px rgba(26,96,192,.2);

  /* Transitions */
  --t-fast:   .15s ease;
  --t-base:   .25s ease;
  --t-slow:   .4s ease;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }


/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--charcoal);
}

p { line-height: 1.7; color: var(--text-muted); }
strong { font-weight: 600; color: var(--charcoal); }
em { font-style: italic; }

blockquote {
  font-family: var(--font-display);
  font-style: italic;
}


/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

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

.section {
  padding: var(--sp-20) 0;
}

.section-alt  { background-color: var(--cream-alt); }
.section-cta  { background-color: var(--cream-cta); }

.section-dark {
  background-color: var(--dark);
  color: var(--cream);
}
.section-dark p { color: rgba(250,247,242,.65); }
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--cream); }


/* ── SECTION LABELS & HEADINGS ──────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-3);
}

.section-label-light { color: rgba(100,160,255,.85); }

.section-heading {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: var(--sp-8);
}

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

.section-intro {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: var(--sp-12);
}


/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  line-height: 1.3;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background var(--t-base), border-color var(--t-base),
              color var(--t-base), box-shadow var(--t-base), transform .1s ease;
  -webkit-user-select: none;
  user-select: none;
}

.btn:active { transform: scale(.98); }

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: var(--shadow-orange);
}

.btn-outline {
  background-color: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-large {
  padding: var(--sp-5) var(--sp-10);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
}

.btn-sub {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: .8;
  letter-spacing: .01em;
}


/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background var(--t-slow), box-shadow var(--t-slow);
}

.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav.scrolled {
  background: rgba(244,247,251,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

/* Nav links — desktop: inline row centered in nav-inner */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
}

.nav-link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity var(--t-base);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible { opacity: 1; }

/* Right-side actions: CTA + hamburger */
.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav-cta {
  background-color: var(--orange);
  color: var(--white);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: background var(--t-base);
  white-space: nowrap;
}
.nav-cta:hover { background-color: var(--orange-dark); }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel — hidden on desktop, slide-in on mobile */
.mobile-menu {
  display: none;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.02em;
  padding: 0.25rem 0;
  transition: color var(--t-fast);
}
.mobile-menu__link:active { color: var(--orange); }

.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  width: 100%;
  max-width: 280px;
  margin-top: var(--sp-3);
  transition: background var(--t-base);
}
.mobile-menu__cta:hover,
.mobile-menu__cta:active { background: var(--orange-dark); }


/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  top: -15%;
  right: -12%;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(26,96,192,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-6);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-4);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  margin-bottom: var(--sp-6);
}

.hero-headline em {
  font-style: italic;
  color: var(--orange);
}

.hero-subline {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 480px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
}

.trust-bar svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream-alt) 0%, var(--border) 100%);
  aspect-ratio: 4 / 3;
  max-height: 500px;
}

.hero-image-wrap picture {
  display: block;
  height: 100%;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 55%;
  background: linear-gradient(145deg, var(--cream-alt), var(--border));
}

.hero-badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-2) var(--sp-3);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  max-width: 200px;
}

.hero-badge-stars {
  color: var(--amber);
  font-size: var(--text-sm);
  letter-spacing: .05em;
  white-space: nowrap;
}

.hero-badge-copy strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.hero-badge-copy span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}


/* ── PAIN POINTS ─────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.pain-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pain-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--sp-4);
  color: var(--orange);
}

.pain-icon svg { width: 100%; height: 100%; }

.pain-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: var(--sp-2);
  color: var(--charcoal);
}

.pain-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.pain-bridge {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-10);
  position: relative;
  overflow: hidden;
}

.pain-bridge::before {
  content: '\201C';
  position: absolute;
  top: -0.1em;
  left: var(--sp-6);
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--orange);
  opacity: .18;
  line-height: 1;
  pointer-events: none;
}

.pain-bridge p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
}

.pain-bridge cite {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(250,247,242,.45);
  font-style: normal;
  position: relative;
  z-index: 1;
}


/* ── USP GRID ────────────────────────────────────────────── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.usp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  transition: box-shadow var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
}

.usp-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.usp-card-featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.usp-card-featured h3 { color: var(--cream); }
.usp-card-featured p  { color: rgba(250,247,242,.75); flex: 1; }

.usp-icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}
.usp-icon svg { width: 100%; height: 100%; }

.usp-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}

.usp-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
  flex: 1;
}

.usp-card .btn-sm { margin-top: auto; align-self: flex-start; }


/* ── HOW IT WORKS (STEPS) ────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--sp-6);
  align-items: start;
  margin-bottom: var(--sp-12);
}

.step {
  text-align: center;
}

.step-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.12);
  line-height: 1;
  margin-bottom: var(--sp-4);
  display: block;
}

.step h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-3);
  letter-spacing: 0;
}

.step p {
  font-size: var(--text-sm);
  color: rgba(250,247,242,.82);
  line-height: 1.65;
}

.step-arrow {
  align-self: center;
  margin-top: -1.5rem;
  color: rgba(26,96,192,.35);
  width: 40px;
  flex-shrink: 0;
}
.step-arrow svg { width: 100%; }

.steps-cta {
  text-align: center;
}

.steps-cta-note {
  margin-top: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(250,247,242,.4);
  font-weight: 500;
}


/* ── PRICING ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  align-items: start;
  margin-bottom: var(--sp-8);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
}

.pricing-card-featured {
  background: var(--dark);
  border-color: var(--blue-dark);
  padding-top: var(--sp-10);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-4);
  border-radius: 0 0 var(--radius) var(--radius);
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.pricing-card-featured .pricing-name { color: var(--cream); }

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.04em;
}
.pricing-card-featured .pricing-price { color: var(--orange); }

.pricing-per {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}
.pricing-card-featured .pricing-per { color: rgba(250,247,242,.45); }

.pricing-period {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: calc(-1 * var(--sp-1));
}
.pricing-card-featured .pricing-period { color: rgba(250,247,242,.35); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
  margin: var(--sp-2) 0;
}

.pricing-features li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-left: var(--sp-5);
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.pricing-card-featured .pricing-features li       { color: rgba(250,247,242,.7); }
.pricing-card-featured .pricing-features li::before { color: var(--orange); }

.pricing-card-featured .btn-outline {
  border-color: rgba(229,90,43,.5);
  color: var(--orange);
}
.pricing-card-featured .btn-outline:hover {
  background-color: var(--orange);
  color: var(--white);
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  background: var(--orange-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
}

.pricing-note svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note p {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin: 0;
}

.pricing-note p strong { color: var(--charcoal); }

.pricing-note a {
  color: var(--orange);
  font-weight: 700;
  margin-left: var(--sp-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ── ABOUT / BIO ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream) 0%, var(--border) 100%);
  aspect-ratio: 4 / 5;
}

.about-image-wrap picture {
  display: block;
  height: 100%;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-intro {
  font-size: var(--text-lg);
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.about-content > p {
  margin-bottom: var(--sp-6);
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}

.cert-badges {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

.cert-badges img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: opacity .2s, filter .2s;
}

.cert-badges img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.credential {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

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

.credential span {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
}


/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.testimonials-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.testimonial-large { padding: var(--sp-8); }

.testimonial-stars {
  color: var(--amber);
  font-size: var(--text-base);
  letter-spacing: .08em;
  line-height: 1;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.65;
  flex: 1;
}

.testimonial-large blockquote { font-size: var(--text-lg); }

.testimonial blockquote strong {
  font-style: normal;
  color: var(--orange);
  font-weight: 700;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-full);
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}


/* ── SERVICE AREA ────────────────────────────────────────── */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.service-area-intro {
  font-size: var(--text-lg);
  color: rgba(250,247,242,.65);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.area-group {
  margin-bottom: var(--sp-6);
}

.area-group h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(250,247,242,.4);
  margin-bottom: var(--sp-3);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
}

.area-tags li {
  background: rgba(250,247,242,.1);
  border: 1px solid rgba(250,247,242,.14);
  color: var(--cream);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
}

.area-tags-muted li {
  background: rgba(250,247,242,.05);
  border-color: rgba(250,247,242,.07);
  color: rgba(250,247,242,.55);
}

.area-note {
  font-size: var(--text-sm);
  color: rgba(250,247,242,.4);
  margin-top: var(--sp-4);
}

.area-note a {
  color: var(--orange);
  font-weight: 600;
}


/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.faq-item[open] {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(229,90,43,.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: color var(--t-base);
  line-height: 1.4;
}

.faq-question:hover { color: var(--orange); }
.faq-item[open] .faq-question { color: var(--orange); }

.faq-question::after {
  content: '+';
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t-base);
}

.faq-item[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 var(--sp-6) var(--sp-5);
  border-top: 1px solid var(--border);
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: var(--sp-4);
}


/* ── FORM SECTION ────────────────────────────────────────── */
.form-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
  justify-content: center;
}

.form-trust-bar span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--green);
}

.form-trust-bar svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.ghl-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow);
}

.ghl-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 385px;
  border: none;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.form-privacy svg {
  flex-shrink: 0;
  color: var(--text-muted);
}


/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: var(--sp-8);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--sp-4);
  line-height: 0;
}

.footer-logo img {
  height: 44px;
  width: auto;
  /* Logo is blue on transparent — add brightness invert for dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(250,247,242,.45);
  line-height: 1.6;
  margin: 0 0 var(--sp-1);
}

.footer-brand .footer-tagline {
  font-size: var(--text-xs);
  color: rgba(250,247,242,.3);
  font-style: italic;
}

.footer-contact h4,
.footer-links h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(250,247,242,.35);
  margin-bottom: var(--sp-4);
}

.footer-contact p,
.footer-contact address,
.footer-links p {
  font-size: var(--text-sm);
  color: rgba(250,247,242,.55);
  margin-bottom: var(--sp-2);
  line-height: 1.6;
}

.footer-contact a,
.footer-links a {
  color: rgba(250,247,242,.6);
  transition: color var(--t-base);
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(250,247,242,.25);
  margin: 0;
}

.footer-bottom a {
  color: rgba(250,247,242,.4);
  transition: color var(--t-base);
}
.footer-bottom a:hover { color: var(--orange); }


/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
/* Only hide elements when JS has confirmed it's running.
   Without JS (or before JS loads) all content is fully visible. */
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1),
              transform .65s cubic-bezier(.22,1,.36,1);
}

.js-ready .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .fade-up-delay-1 { transition-delay: .1s; }
.js-ready .fade-up-delay-2 { transition-delay: .2s; }
.js-ready .fade-up-delay-3 { transition-delay: .3s; }
.js-ready .fade-up-delay-4 { transition-delay: .4s; }
.js-ready .fade-up-delay-5 { transition-delay: .5s; }


/* ── RESPONSIVE: 1024px ──────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card-featured {
    transform: none;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .step-arrow { display: none; }

  .step {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--sp-4);
    align-items: start;
  }

  .step-num {
    font-size: 3rem;
    margin: 0;
  }
}


/* ── RESPONSIVE: 768px ───────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --sp-20: 3.5rem;
    --sp-16: 3rem;
  }

  .container { padding: 0 var(--sp-4); }

  /* Nav bar */
  .nav-inner { padding: 0 var(--sp-5); gap: 0; }
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; gap: var(--sp-2); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav.menu-open {
    background: rgba(244,247,251,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
  }

  /* Mobile menu panel */
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    padding: var(--sp-8) var(--sp-6) var(--sp-16);
    background: var(--cream);
    border-top: 3px solid var(--orange);
    z-index: 199;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-menu.open { transform: translateX(0); }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    padding: var(--sp-12) var(--sp-4);
  }

  .hero-image { order: -1; }

  .hero-image-wrap {
    aspect-ratio: 3 / 2;
    max-height: 300px;
  }

  .hero-headline { font-size: clamp(1.875rem, 8vw, 2.75rem); }

  .btn-large {
    width: 100%;
    font-size: var(--text-base);
    padding: var(--sp-4) var(--sp-6);
  }

  .trust-bar {
    flex-direction: column;
    gap: var(--sp-2);
  }

  /* Pain */
  .pain-grid { grid-template-columns: 1fr; }

  .pain-bridge {
    padding: var(--sp-6) var(--sp-6);
  }
  .pain-bridge p { font-size: var(--text-lg); }

  /* USPs */
  .usp-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .about-image-wrap {
    aspect-ratio: 3 / 2;
    max-height: 280px;
  }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-featured { grid-template-columns: 1fr; }
  .testimonials-secondary { grid-template-columns: 1fr; }

  /* Service area */
  .service-area-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  /* Section headings */
  .section-heading {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }
}


/* ── RESPONSIVE: 480px ───────────────────────────────────── */
@media (max-width: 480px) {
  .hero-badge {
    top: var(--sp-3);
    right: var(--sp-3);
    padding: var(--sp-2) var(--sp-3);
  }

  .form-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
  }

  .steps-grid .step {
    grid-template-columns: auto 1fr;
  }

  .pricing-note {
    flex-direction: column;
    gap: var(--sp-2);
  }
}


/* ── FOCUS STYLES (accessibility) ───────────────────────── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── PRINT ───────────────────────────────────────────────── */
@media print {
  .nav, .hero-bg-circle { display: none; }
  .hero { padding-top: 0; min-height: auto; }
  .fade-up { opacity: 1; transform: none; }
}
