/* ============================================================
   Elevated Engagement — Premium Cream & Navy
   Version: 2.0
   ============================================================ */

/* ---- Google Font Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --cream:          #FAF7F2;
  --cream-2:        #F3EDE4;
  --cream-3:        #EAE1D4;
  --cream-4:        #DDD3C2;
  --navy:           #1e3a5f;
  --navy-mid:       #2d5186;
  --navy-light:     #4a7ab5;
  --navy-10:        rgba(30, 58, 95, 0.08);
  --navy-15:        rgba(30, 58, 95, 0.12);
  --navy-20:        rgba(30, 58, 95, 0.16);
  --gold:           #c9a044;
  --gold-light:     #e8c96a;
  --gold-bg:        rgba(201, 160, 68, 0.12);
  --text-primary:   #1e3a5f;
  --text-secondary: #4a5c72;
  --text-muted:     #7a8fa8;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(30, 58, 95, 0.06);
  --shadow-sm:  0 2px 8px rgba(30, 58, 95, 0.08);
  --shadow-md:  0 4px 16px rgba(30, 58, 95, 0.10);
  --shadow-lg:  0 8px 32px rgba(30, 58, 95, 0.12);
  --shadow-xl:  0 16px 48px rgba(30, 58, 95, 0.14);

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Spacing */
  --section-py: 96px;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography Helpers ---- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--cream);
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.25);
}
.btn-primary:hover {
  background-color: var(--navy-mid);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.30);
  transform: translateY(-1px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--navy);
  border: 1.5px solid var(--cream-4);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background-color: var(--navy-10);
}

.btn-cream {
  background-color: var(--cream);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.btn-cream:hover {
  background-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.btn-nav {
  background-color: var(--navy);
  color: var(--cream);
  font-size: 0.875rem;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.btn-nav:hover {
  background-color: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 8px 18px;
}

.btn-lg {
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: var(--radius-md);
}

/* ---- Section Layout ---- */
.section {
  padding: var(--section-py) 0;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-3);
  transition: box-shadow 0.2s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-svg {
  width: auto;
  height: 22px;
}

.logo-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-links a:hover {
  color: var(--navy);
  background-color: var(--navy-10);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--cream-3);
  background-color: rgba(250, 247, 242, 0.98);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.nav-mobile-link:hover {
  color: var(--navy);
  background-color: var(--navy-10);
}

.nav-mobile-cta {
  margin-top: 8px;
  text-align: center;
  width: 100%;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 96px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 20px;
}

.br-desktop { display: block; }

.hero-subhead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.trust-item {
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-sep {
  color: var(--cream-4);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 320px;
}

.hero-graphic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(var(--shadow-lg));
}

.stat-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 3px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-card-1 {
  top: 16px;
  left: -24px;
}
.stat-card-2 {
  top: 44%;
  right: -16px;
}
.stat-card-3 {
  bottom: 16px;
  left: 12px;
}

/* ============================================================
   PROBLEM / PAIN
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-card {
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.pain-icon {
  width: 48px;
  height: 48px;
  background-color: var(--gold-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pain-icon svg {
  width: 24px;
  height: 24px;
}

.pain-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pain-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.solution-text p.section-eyebrow {
  margin-bottom: 12px;
}

.solution-text h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 20px;
}

.solution-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.solution-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
  padding: 24px;
  background-color: var(--cream-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-3);
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-icon {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
}

.pillar div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillar strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}

.pillar span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Solution card stack */
.solution-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sol-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-3);
}

.sol-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sol-card-top .sol-card-label {
  color: var(--text-muted);
}

.sol-card-bottom .sol-card-label {
  color: var(--gold);
}

.sol-card-bottom {
  border-color: var(--navy-15);
  box-shadow: var(--shadow-lg);
}

.sol-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sol-list li {
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.sol-list-bad li {
  color: var(--text-muted);
}

.sol-list-bad li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-size: 0.75rem;
  top: 2px;
}

.sol-list-good li {
  color: var(--text-primary);
  font-weight: 500;
}

.sol-list-good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--navy-mid);
  font-weight: 700;
  font-size: 0.85rem;
  top: 1px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.service-icon-1 { background-color: rgba(30, 58, 95, 0.10); color: var(--navy); }
.service-icon-2 { background-color: rgba(201, 160, 68, 0.14); color: var(--gold); }
.service-icon-3 { background-color: rgba(30, 58, 95, 0.10); color: var(--navy); }
.service-icon-4 { background-color: rgba(201, 160, 68, 0.14); color: var(--gold); }

.service-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.service-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-3);
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-features strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-layout {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--cream-4) 0px,
    var(--cream-4) 6px,
    transparent 6px,
    transparent 12px
  );
  margin-top: 28px;
  align-self: flex-start;
}

.hiw-cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   TESTIMONIALS / RESULTS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  font-size: 0.9375rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-card blockquote::before {
  content: open-quote;
  font-size: 2rem;
  color: var(--cream-4);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-3);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Results Banner */
.results-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.result-stat {
  text-align: center;
  flex: 1;
}

.result-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.result-label {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.65);
  font-weight: 500;
}

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

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.faq-item + .faq-item {
  margin-top: 8px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: background-color 0.15s ease;
}

.faq-question:hover {
  background-color: var(--cream-2);
}

.faq-question[aria-expanded="true"] {
  background-color: var(--cream-2);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--navy);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--cream-3);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-top: 16px;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background-color: var(--cream-2);
}

.cta-box {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  pointer-events: none;
}

.cta-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  opacity: 0.7;
}

.cta-logo svg {
  height: 24px;
  width: auto;
}

.cta-headline {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.0625rem;
  color: rgba(250, 247, 242, 0.72);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-fine {
  font-size: 0.8125rem;
  color: rgba(250, 247, 242, 0.50);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #fff;
  border-top: 1px solid var(--cream-3);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--cream-3);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.footer-brand .logo {
  margin-bottom: 8px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.footer-col ul li a:hover {
  color: var(--navy);
}

.footer-col-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: var(--navy);
}

/* ============================================================
   RESPONSIVE — TABLET (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  :root {
    --section-py: 72px;
  }

  /* Nav */
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { gap: 0; }

  /* Hero */
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    padding: 64px 0 72px;
  }
  .hero-visual {
    height: 260px;
  }
  .stat-card-1 { left: 0; }
  .stat-card-2 { right: 0; }
  .br-desktop { display: inline; }

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

  /* Solution */
  .solution-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* How it works */
  .steps-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: 480px;
  }

  .step {
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--cream-3);
  }

  .step:last-child {
    border-bottom: none;
  }

  .step-number {
    font-size: 2rem;
    margin-bottom: 0;
    min-width: 44px;
    text-align: right;
  }

  .step-connector {
    display: none;
  }

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

  /* Results banner */
  .results-banner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .result-divider { display: none; }

  .result-stat {
    flex: 0 0 calc(50% - 16px);
  }

  /* CTA */
  .cta-box {
    padding: 48px 32px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* ============================================================
   RESPONSIVE — MOBILE (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --section-py: 56px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    height: 220px;
  }

  .stat-card {
    padding: 10px 14px;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .pain-card {
    padding: 24px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .results-banner {
    padding: 28px 20px;
  }

  .result-stat {
    flex: 0 0 100%;
  }

  .result-number {
    font-size: 1.75rem;
  }

  .cta-box {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .cta-headline {
    font-size: 1.625rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .testimonials-grid {
    gap: 16px;
  }

  .faq-question {
    font-size: 0.9375rem;
    padding: 16px 20px;
  }

  .faq-answer {
    padding: 0 20px 16px;
  }
}

/* ============================================================
   UTILITY / MISC
   ============================================================ */

/* Smooth scroll offset for sticky nav */
[id] {
  scroll-margin-top: 80px;
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--navy-mid);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection */
::selection {
  background-color: rgba(30, 58, 95, 0.15);
  color: var(--navy);
}

/* Print: hide nav */
@media print {
  .nav { display: none; }
}
