/* =============================================================
   HeyMrFox — Shared Stylesheet v3.0
   Brand: Syne headings / DM Sans body / Cream + Orange + Navy
   ============================================================= */

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

/* ─── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --orange:       #D4541A;
  --orange-light: #E8651A;
  --orange-glow:  rgba(212, 84, 26, 0.10);
  --navy:         #0D1117;
  --navy-2:       #161B22;
  --navy-3:       #1C2333;
  --ivory:        #F5F0E8;
  --ivory-2:      #EDE8DF;
  --cream:        #FAF7F2;
  --text:         #0D1117;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;
  --border:       rgba(0, 0, 0, 0.07);
  --border-dark:  rgba(255, 255, 255, 0.08);
  --blue:         #4DAAFF;
  --mint:         #3ecf8e;
  --mint-dark:    #2db87a;
  --mint-glow:    rgba(62, 207, 142, 0.12);
  --green:        #22C55E;
  --green-bg:     #DCFCE7;
  --green-border: #86EFAC;
  --green-text:   #166534;
  --red:          #EF4444;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.10);
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --nav-height:   72px;
  --max-w:        1100px;
}

/* ─── BASE ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ─── SKIP LINK ──────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--orange);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  height: var(--nav-height);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 32px; height: 32px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
}
.logo-fox-eye {
  width: 10px; height: 10px;
  background: var(--blue);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--ivory-2); }
.nav-link.active { color: var(--orange); }

.nav-demo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4375rem 0.875rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: white;
  transition: all 0.2s;
  margin-left: 0.25rem;
}
.nav-demo:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
}
.nav-demo-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  background: var(--orange);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,84,26,0.3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text);
}
.mobile-menu .nav-link:hover { background: var(--ivory-2); }

.mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}

.mobile-menu .nav-demo {
  justify-content: center;
  padding: 0.875rem;
  font-size: 0.9375rem;
  margin-left: 0;
}

.mobile-menu .nav-cta {
  justify-content: center;
  padding: 0.875rem;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  margin-left: 0;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: white;
  padding: 4rem 2.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.footer-brand {}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links-list a:hover { color: white; }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 0.875rem;
}
.footer-contact-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-contact-value {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}
.footer-contact-value a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact-value a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── SECTION WRAPPERS ───────────────────────────────────────── */
.section {
  padding: 6rem 2.5rem;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-sm { padding: 4rem 2.5rem; }
.section-lg { padding: 8rem 2.5rem; }

.section-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
}
.section-tag-blue { color: var(--blue); }

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.section-title .accent { color: var(--orange); }
.section-title-white { color: white; }

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 3rem;
}
.section-sub-white { color: rgba(255,255,255,0.55); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  transition: all 0.2s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: white;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,84,26,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(0,0,0,0.15);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.btn-ghost-white:hover {
  border-color: rgba(255,255,255,0.4);
  color: white;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 0.5625rem 1.25rem;
  font-size: 0.8125rem;
}

/* ─── CARDS ──────────────────────────────────────────────────── */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card-dark {
  background: var(--navy);
  border-color: transparent;
}

/* ─── BADGES ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Syne', sans-serif;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
}
.badge-orange {
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(212,84,26,0.2);
}
.badge-navy {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.badge-blue {
  background: rgba(77,170,255,0.1);
  color: var(--blue);
  border: 1px solid rgba(77,170,255,0.2);
}
.badge-mint {
  background: var(--mint-glow);
  color: var(--mint);
  border: 1px solid rgba(62,207,142,0.2);
}
.badge-popular {
  background: var(--orange);
  color: white;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

/* Scroll-triggered fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PAGE HERO (shared across inner pages) ──────────────────── */
.page-hero {
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--text-light); }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* ─── ORANGE STATS STRIP ─────────────────────────────────────── */
.strip {
  background: var(--orange);
  padding: 2rem 2.5rem;
}
.strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.strip-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
}
.strip-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}
.strip-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.25);
}

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212,84,26,0.1) 0%, transparent 70%);
  top: 50%; left: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}
.cta-banner-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: white;
  margin-bottom: 0.75rem;
}
.cta-banner-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  flex-shrink: 0;
}

/* ─── HOME — HERO ────────────────────────────────────────────── */
.home-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  overflow: hidden;
}
.home-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: end;
}
.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  font-family: 'Syne', sans-serif;
}
.home-hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.home-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.home-hero-title .accent { color: var(--orange); }
.home-hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.home-hero-sub strong { color: var(--text); font-weight: 500; }

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.home-hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
}
.trust-check {
  width: 16px; height: 16px;
  background: var(--mint-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem;
  color: var(--mint);
  flex-shrink: 0;
}

.home-hero-img-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}
.home-hero-img-col::before {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 75%; height: 60px;
  background: radial-gradient(ellipse, rgba(212,84,26,0.18) 0%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}
.home-hero-fox {
  width: 100%;
  max-width: 420px;
  height: auto;
  position: relative;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
}

/* ─── HOME — PAIN / STATS ────────────────────────────────────── */
.stats-section {
  background: var(--ivory);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.625rem;
}
.stat-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 300;
}
.stats-copy {
  margin-top: 2.5rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 640px;
}
.stats-copy strong { color: var(--text); font-weight: 500; }

/* ─── HOME — SERVICES OVERVIEW ───────────────────────────────── */
.services-overview {}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top center;
}
.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-card-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.5rem;
}
.service-card-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 8px; }

/* ─── HOME — HOW IT WORKS ────────────────────────────────────── */
.how-it-works {
  background: var(--ivory);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem; left: calc(33.333% + 1rem); right: calc(33.333% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  opacity: 0.3;
}
.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--orange-glow);
  border: 1.5px solid rgba(212,84,26,0.2);
  border-radius: var(--radius-md);
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.625rem;
}
.step-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── HOME — WHO IT'S FOR ────────────────────────────────────── */
.who-section {}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.who-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.who-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.who-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.who-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.who-card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── FEATURES — HERO ────────────────────────────────────────── */
.features-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 4rem) 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.features-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,84,26,0.1) 0%, transparent 70%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}
.features-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: center;
}
.features-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: white;
  margin-bottom: 1.5rem;
}
.features-hero-title .accent { color: var(--orange); }
.features-hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.features-hero-img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* ─── FEATURES — FEATURE BLOCK ──────────────────────────────── */
.feature-block {
  padding: 6rem 2.5rem;
}
.feature-block:nth-child(even) {
  background: var(--ivory);
}
.feature-block-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-block-inner.reverse {
  direction: rtl;
}
.feature-block-inner.reverse > * {
  direction: ltr;
}
.feature-block-text {}
.feature-block-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
}
.feature-block-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.feature-block-copy {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem;
}
.feature-block-copy strong { color: var(--text); font-weight: 500; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.feature-item-check {
  width: 18px; height: 18px;
  background: var(--mint-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.625rem;
  color: var(--mint);
  margin-top: 1px;
}
.feature-item-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 300;
}
.feature-item-text strong { color: var(--text); font-weight: 500; display: block; margin-bottom: 2px; }

.feature-block-img-col {
  position: relative;
}
.feature-block-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.feature-block-img-col::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  background: var(--orange-glow);
  border-radius: var(--radius-xl);
  z-index: -1;
  filter: blur(30px);
}

/* ─── FEATURES — AND THAT'S NOT ALL ─────────────────────────── */
.features-more {
  background: var(--ivory);
}
.features-more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.features-more-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.features-more-icon {
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
}
.features-more-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.features-more-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── FEATURES — FAQ ─────────────────────────────────────────── */
.faq-section {}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-question[aria-expanded="true"] { color: var(--orange); }

.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--ivory-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s, background 0.2s;
  margin-top: 1px;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--orange-glow);
  color: var(--orange);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.faq-answer.open { display: block; }

/* ─── PRICING — HERO ─────────────────────────────────────────── */
.pricing-hero {
  padding: calc(var(--nav-height) + 4rem) 2.5rem 2rem;
  text-align: center;
}
.pricing-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.pricing-hero-title .accent { color: var(--orange); }
.pricing-hero-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* Pricing toggle */
.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.375rem;
  margin-bottom: 3.5rem;
}
.pricing-toggle-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 1.125rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.pricing-toggle-label.active {
  background: var(--navy);
  color: white;
}
.pricing-save-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--mint-glow);
  color: var(--mint);
  border: 1px solid rgba(62,207,142,0.2);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
}

/* Pricing cards */
.pricing-cards-section {
  padding: 0 2.5rem 5rem;
}
.pricing-cards-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--orange);
  background: var(--navy);
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(212,84,26,0.2);
}
.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-3px);
}

.pricing-card-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 1.75rem;
}
.pricing-card-tier {
  font-family: 'Syne', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.625rem;
}
.pricing-card.featured .pricing-card-tier { color: rgba(255,255,255,0.4); }

.pricing-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.pricing-card.featured .pricing-card-name { color: white; }

.pricing-card-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 300;
}
.pricing-card.featured .pricing-card-tagline { color: rgba(255,255,255,0.45); }

.pricing-price-block {
  margin-bottom: 0.625rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-dollar {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}
.pricing-card.featured .pricing-dollar { color: var(--orange-light); }
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.pricing-card.featured .pricing-amount { color: white; }
.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.4); }
.pricing-savings {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mint);
  margin-top: 4px;
  display: none;
}
.pricing-savings.show { display: block; }

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.08); }

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 2rem;
}
.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
  font-weight: 300;
}
.pricing-card.featured .pricing-feature-item { color: rgba(255,255,255,0.6); }
.pricing-check {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-check-icon {
  width: 18px; height: 18px;
  background: var(--mint-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5625rem;
  color: var(--mint);
}
.pricing-card.featured .pricing-check-icon {
  background: rgba(62,207,142,0.12);
}

.pricing-cta {
  margin-top: auto;
}
.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.9375rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}
.pricing-btn-primary {
  background: var(--orange);
  color: white;
  position: relative;
  overflow: hidden;
}
.pricing-btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.pricing-btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,84,26,0.35);
}
.pricing-btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.pricing-btn-outline:hover {
  border-color: rgba(0,0,0,0.15);
  color: var(--text);
  transform: translateY(-1px);
}
.pricing-no-contract {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  font-weight: 300;
}
.pricing-card.featured .pricing-no-contract { color: rgba(255,255,255,0.3); }

/* Add-ons */
.addons-section {
  background: var(--ivory);
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.addon-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.addon-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.addon-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--orange);
  margin-bottom: 0.25rem;
}
.addon-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.625rem;
}
.addon-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}

/* Setup fees */
.setup-section {}
.setup-inner {
  max-width: 640px;
}

/* ─── ABOUT — HERO ───────────────────────────────────────────── */
.about-hero {
  padding: calc(var(--nav-height) + 4rem) 2.5rem 0;
}
.about-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: end;
}
.about-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.about-hero-title .accent { color: var(--orange); }
.about-hero-intro {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2rem;
}
.about-hero-intro strong { color: var(--text); font-weight: 500; }
.about-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.about-location-flag { font-size: 1.25rem; }
.about-location-main {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  display: block;
}
.about-location-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  display: block;
  margin-top: 1px;
}
.about-hero-img-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-hero-img-col::before {
  content: '';
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 60px;
  background: radial-gradient(ellipse, rgba(212,84,26,0.18) 0%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}
.about-hero-fox {
  width: 100%;
  max-width: 380px;
  height: auto;
  position: relative; z-index: 1;
  animation: float 5s ease-in-out infinite;
}

/* Story */
.story-section {
  padding: 6rem 2.5rem;
}
.story-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}
.story-chapter {
  margin-bottom: 3.5rem;
}
.story-chapter:last-child { margin-bottom: 0; }
.chapter-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.875rem;
  font-family: 'Syne', sans-serif;
}
.chapter-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
}
.chapter-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.chapter-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
}
.chapter-body p { margin-bottom: 1.25rem; }
.chapter-body p:last-child { margin-bottom: 0; }
.chapter-body strong { color: var(--text); font-weight: 500; }

.pull-quote {
  border-left: 3px solid var(--orange);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: white;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  font-style: italic;
}

.story-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sidebar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.sidebar-card.dark {
  background: var(--navy);
  border-color: transparent;
}
.sidebar-card-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.875rem;
  font-family: 'Syne', sans-serif;
  display: block;
}
.sidebar-card.dark .sidebar-card-tag { color: var(--blue); }
.sidebar-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
  color: var(--text);
}
.sidebar-card.dark h4 { color: white; }
.sidebar-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}
.sidebar-card.dark p { color: rgba(255,255,255,0.45); }

.sidebar-values {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.75rem;
}
.sv-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  font-weight: 300;
}
.sv-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* Mission section */
.mission-section {
  background: var(--navy);
  padding: 6rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.mission-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,84,26,0.1) 0%, transparent 70%);
  top: 50%; left: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}
.mission-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mission-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
  display: block;
}
.mission-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: white;
  margin-bottom: 1.5rem;
}
.mission-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  font-weight: 300;
}
.mission-body p { margin-bottom: 1.25rem; }
.mission-body p:last-child { margin-bottom: 0; }
.mission-body strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.manifesto-heading {
  font-family: 'Syne', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.manifesto-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.manifesto-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.manifesto-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
  padding-top: 2px;
}
.manifesto-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-weight: 300;
}
.manifesto-text strong { color: rgba(255,255,255,0.85); font-weight: 500; }

/* Services teaser (about page) */
.services-teaser {
  background: var(--ivory);
  padding: 6rem 2.5rem;
}
.services-teaser-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.teaser-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.teaser-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.teaser-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.teaser-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.625rem;
}
.teaser-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.25rem;
}
.teaser-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--orange);
  margin-top: auto;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-page {
  padding: calc(var(--nav-height) + 3.5rem) 2.5rem 6rem;
  min-height: 100vh;
}
.contact-page-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}

.contact-page-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
}
.contact-page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1rem;
}
.contact-page-title .accent { color: var(--orange); }
.contact-page-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.contact-page-sub strong { color: var(--text); font-weight: 500; }

/* Intent selector */
.intent-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: block;
}
.intent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.intent-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.875rem 1rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
}
.intent-btn:hover {
  border-color: rgba(212,84,26,0.3);
  background: var(--orange-glow);
}
.intent-btn.selected {
  border-color: var(--orange);
  background: var(--orange-glow);
}
.intent-icon { font-size: 1.125rem; flex-shrink: 0; }
.intent-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  line-height: 1.2;
}
.intent-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  display: block;
  margin-top: 1px;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
}
.field label .req { color: var(--orange); margin-left: 2px; }

.field input,
.field select,
.field textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'DM Sans', sans-serif;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-light); }
.field select {
  appearance: none;
  cursor: pointer;
  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='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(239,68,68,0.1);
}
.field-error-msg {
  font-size: 0.75rem;
  color: var(--red);
  display: none;
}
.field.error .field-error-msg { display: block; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--orange);
  cursor: pointer;
}
.checkbox-text {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

.submit-wrap { margin-top: 0.5rem; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.btn-submit:hover:not(:disabled) {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,84,26,0.35);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.5);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-label { display: none; }

.form-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
}

.form-legal-links {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
}
.form-legal-links a {
  color: inherit;
  text-decoration: none;
}
.form-legal-links a:hover {
  text-decoration: underline;
}

/* Form success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.form-success.show { display: flex; }
.success-icon {
  width: 72px; height: 72px;
  background: var(--green-bg);
  border: 2px solid var(--green-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.success-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.success-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 2rem;
}
.success-back {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orange);
}
.success-back:hover { text-decoration: underline; }

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.fox-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding-bottom: 1.75rem;
}
.fox-card-img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  height: 200px;
}
.fox-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  padding: 1.25rem 1.5rem 0.5rem;
  letter-spacing: -0.02em;
}
.fox-card-body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-weight: 300;
  padding: 0 1.5rem;
}

.booking-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.booking-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: 'Syne', sans-serif;
  display: block;
  margin-bottom: 0.625rem;
}
.booking-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.625rem;
}
.booking-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.btn-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.875rem;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.btn-booking:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}

.contact-methods-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Syne', sans-serif;
  display: block;
  margin-bottom: 1rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  text-decoration: none;
}
.contact-method:last-child { border-bottom: none; }
.method-icon { font-size: 1.125rem; flex-shrink: 0; }
.method-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}
.method-value {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  margin-top: 1px;
  transition: color 0.2s;
}
.contact-method:hover .method-value { color: var(--orange); }

.expect-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.expect-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1rem;
}
.expect-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 300;
}
.expect-check {
  width: 18px; height: 18px;
  background: var(--mint-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5625rem;
  color: var(--mint);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── LEGAL PAGES (terms / privacy) ─────────────────────────── */
.legal-page {
  padding: calc(var(--nav-height) + 3.5rem) 2.5rem 6rem;
}
.legal-page-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-hero-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
  display: block;
}
.legal-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.legal-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 3rem;
}
.legal-toc {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}
.legal-toc-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1rem;
}
.legal-toc ol {
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem 2rem;
}
.legal-toc li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.legal-toc a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-toc a:hover { color: var(--orange); }

.legal-content { }
.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.legal-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
  scroll-margin-top: calc(var(--nav-height) + 1.5rem);
}
.legal-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-section p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-section li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 0.375rem;
}
.legal-section strong { color: var(--text); font-weight: 500; }
.legal-section a { color: var(--orange); text-decoration: underline; }
.legal-caps {
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* ─── VOICE DEMO SECTION ─────────────────────────────────────── */
.voice-demo-section {
  background: var(--ivory);
}

.voice-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.voice-demo-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.voice-demo-video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #000;
}

.voice-demo-card-info {
  padding: 1.25rem 1.5rem;
}

.voice-demo-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.voice-demo-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 300;
}

.voice-demo-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ─── AI CHAT TABS SECTION ───────────────────────────────────── */
.chat-tabs-section {
  background: var(--navy-3);
  padding: 4.5rem 2.5rem;
}

.chat-tabs-section .section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.chat-tabs-bar {
  position: relative;
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 2rem;
}

.chat-tab-slider {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  background: white;
  border-radius: 100px;
  transition: transform 0.25s ease, width 0.25s ease;
  pointer-events: none;
}

.chat-tab {
  position: relative;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: none;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.chat-tab.active {
  color: var(--text);
}

.chat-tab-panels {
  width: 100%;
}

.chat-tab-panel {
  display: none;
  grid-template-columns: auto auto;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.chat-tab-panel.active {
  display: grid;
}

.chat-panel-video {
  width: auto;
  height: 480px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  background: #000;
  object-fit: contain;
}

.chat-panel-text {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  max-width: 400px;
}

.chat-panel-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}

.chat-panel-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── FEATURES DEMO VIDEO SECTION ───────────────────────────── */
.features-demo-section {
  background: var(--ivory);
  text-align: center;
}

.features-demo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-demo-video-wrap {
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.video-unmute-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 800px;
}

.video-unmute-btn {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 5;
  white-space: nowrap;
}

.video-unmute-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

.video-unmute-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.9);
}

.video-unmute-icon {
  font-size: 1.125rem;
  line-height: 1;
}

.features-demo-video {
  width: 100%;
  display: block;
  background: #000;
}

.features-demo-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.features-demo-cta-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-demo { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-more-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --max-w: 100%; }
  .section { padding: 4rem 1.5rem; }
  .section-sm { padding: 3rem 1.5rem; }
  .section-lg { padding: 5rem 1.5rem; }

  /* Nav */
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .home-hero { padding: calc(var(--nav-height) + 3rem) 1.5rem 0; }
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .home-hero-img-col {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
  }
  .home-hero-fox { max-width: 280px; }
  .home-hero-title { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .home-hero-trust { flex-direction: column; align-items: flex-start; gap: 0.625rem; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

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

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  /* Who */
  .who-grid { grid-template-columns: 1fr; }

  /* CTA Banner */
  .cta-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .cta-banner-actions { align-items: center; }

  /* Strip */
  .strip { padding: 1.5rem; }
  .strip-divider { display: none; }
  .strip-inner { justify-content: center; gap: 2rem; }

  /* Features hero */
  .features-hero { padding: calc(var(--nav-height) + 3rem) 1.5rem 4rem; }
  .features-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-hero-img { max-width: 260px; margin: 0 auto; }

  /* Feature blocks */
  .feature-block { padding: 4rem 1.5rem; }
  .feature-block-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-block-inner.reverse { direction: ltr; }
  .feature-grid { grid-template-columns: 1fr; }

  /* Features more */
  .features-more { padding: 4rem 1.5rem; }
  .features-more-grid { grid-template-columns: 1fr 1fr; }

  /* Pricing */
  .pricing-hero { padding: calc(var(--nav-height) + 3rem) 1.5rem 2rem; }
  .pricing-cards-section { padding: 0 1.5rem 4rem; }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-3px); }
  .addons-section { padding: 4rem 1.5rem; }
  .addons-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* About */
  .about-hero { padding: calc(var(--nav-height) + 3rem) 1.5rem 0; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero-img-col { order: -1; max-width: 260px; margin: 0 auto; }
  .about-hero-fox { max-width: 260px; }

  .story-section { padding: 4rem 1.5rem; }
  .story-section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .story-sidebar { position: static; }

  .mission-section { padding: 4rem 1.5rem; }
  .mission-inner { grid-template-columns: 1fr; gap: 3rem; }

  .services-teaser { padding: 4rem 1.5rem; }
  .teaser-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-page { padding: calc(var(--nav-height) + 2.5rem) 1.5rem 5rem; }
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-sidebar { position: static; order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .intent-grid { grid-template-columns: 1fr 1fr; }

  /* Legal */
  .legal-page { padding: calc(var(--nav-height) + 2.5rem) 1.5rem 5rem; }
  .legal-toc ol { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 3rem 1.5rem 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* Setup section */
  #setup .section-inner > div { grid-template-columns: 1fr !important; }
  #setup .section-inner > div > div:last-child { order: -1; }
  #setup .section-inner > div > div:last-child img { max-width: 280px; margin: 0 auto; }

  /* Voice demo section */
  .voice-demo-grid { grid-template-columns: 1fr; }

  /* AI chat tabs section */
  .chat-tabs-section { padding: 4rem 1.5rem; }
  .chat-tabs-bar { width: 100%; justify-content: space-between; }
  .chat-tab { font-size: 0.75rem; padding: 0.45rem 0.75rem; }
  .chat-tab-panel { grid-template-columns: 1fr; }
  .chat-panel-video { width: 100%; height: auto; max-height: 500px; object-fit: contain; }
  .chat-panel-text { padding: 1.5rem; max-width: none; }

  /* Features demo section */
  .features-demo-section { padding: 4rem 1.5rem; }
  .video-unmute-btn { bottom: 3.5rem; padding: 0.5rem 1rem; font-size: 0.8125rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .features-more-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .intent-grid { grid-template-columns: 1fr; }
  .home-hero-actions { flex-direction: column; align-items: flex-start; }
  .home-hero-actions .btn { width: 100%; justify-content: center; }
}
