/* ============================================================
   CRAVEOPS DESIGN SYSTEM — Dark Culinary Industrial
   Aesthetic: Charcoal base, amber fire accent, editorial type
   Fonts: Bebas Neue (display) + DM Sans (body)
   ============================================================ */

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

:root {
  /* Color Story */
  --char-950:   #0a0908;
  --char-900:   #111009;
  --char-800:   #1a1810;
  --char-700:   #24211a;
  --char-600:   #302c22;
  --char-500:   #4a4437;
  --char-300:   #8a8070;
  --char-200:   #b5aد9a;
  --char-100:   #ede8df;

  --amber:       #e8860a;
  --amber-light: #f5a63a;
  --amber-glow:  #f5a63a30;
  --amber-deep:  #c06808;

  --sage:        #6b8f71;
  --crimson:     #c0392b;

  /* Neutrals */
  --white:       #fdfaf5;
  --text-main:   #e8e3d8;
  --text-muted:  #9a9080;
  --text-faint:  #5a5248;

  /* Spacing scale */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6.5rem;
  --space-3xl:  10rem;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  /* Shadows */
  --shadow-amber: 0 0 40px var(--amber-glow);
  --shadow-card:  0 4px 32px rgba(0,0,0,0.6);
}

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

body {
  background-color: var(--char-950);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain texture via SVG noise */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--amber {
  background: var(--amber);
  color: #0a0908;
  box-shadow: 0 0 0 0 var(--amber-glow);
}
.btn--amber:hover {
  background: var(--amber-light);
  box-shadow: 0 0 24px var(--amber-glow);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--char-600);
}
.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber-light);
  background: rgba(232, 134, 10, 0.06);
}

.btn--sm  { padding: 0.45rem 1rem;    font-size: 0.85rem; }
.btn--md  { padding: 0.65rem 1.4rem;  font-size: 0.95rem; }
.btn--lg  { padding: 0.85rem 2rem;    font-size: 1rem; }
.btn--xl  { padding: 1rem 2.5rem;     font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ── SECTION TOKENS ───────────────────────────────────────── */
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.section__body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.section-header .section__body {
  margin: 0 auto;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: 1.2rem var(--space-lg);
  background: rgba(10, 9, 8, 0.7);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s ease;
}

.nav--scrolled {
  background: rgba(10, 9, 8, 0.95);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.1em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-mark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--amber);
  line-height: 1;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  gap: var(--space-lg);
  margin: 0 auto;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.2s ease;
  text-transform: uppercase;
}
.nav__link:hover { color: var(--white); }

.nav__cta-group {
  display: flex;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 99;
  background: var(--char-900);
  border-bottom: 1px solid var(--char-700);
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  flex-direction: column;
  gap: var(--space-md);
}
.nav__mobile-drawer.open { display: flex; }
.nav__mobile-drawer ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.nav__mobile-drawer .nav__link { font-size: 1rem; }
.nav__mobile-cta { display: flex; flex-direction: column; gap: var(--space-xs); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding: calc(80px + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}

.hero__bg-glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232, 134, 10, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero__headline--accent {
  color: var(--amber);
  text-shadow: 0 0 60px rgba(232, 134, 10, 0.4);
}

.hero__body {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero__sub {
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* Phone mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero__phone-mockup {
  position: relative;
  width: 280px;
  background: var(--char-900);
  border-radius: 40px;
  border: 1px solid var(--char-600);
  padding: 16px;
  box-shadow: 0 0 80px rgba(232, 134, 10, 0.15), var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero__phone-screen {
  background: var(--char-800);
  border-radius: 28px;
  overflow: hidden;
}

.mockup__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 16px;
  background: var(--char-700);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-main);
}
.mockup__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.mockup__hero-img {
  height: 140px;
  background: linear-gradient(135deg, #3d2800 0%, #7a4a00 40%, #c06808 100%);
  position: relative;
  overflow: hidden;
}
.mockup__hero-img::after {
  content: '🌮';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.mockup__items {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--char-700);
  border-radius: 8px;
  padding: 8px;
}

.mockup__item-img {
  width: 40px; height: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, #5a3300, #c06808);
  flex-shrink: 0;
}
.mockup__item-img--2 {
  background: linear-gradient(135deg, #3d001a, #a02040);
}

.mockup__item-info {
  flex: 1;
}
.mockup__item-name {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-main);
}
.mockup__item-price {
  font-size: 0.68rem;
  color: var(--amber);
  font-weight: 500;
}

.mockup__item--cta {
  justify-content: center;
  background: var(--amber);
  color: #0a0908;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
}

.hero__qr-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--char-700);
  border: 1px solid var(--char-500);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: var(--shadow-card);
}
.qr__icon { font-size: 1.2rem; }

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── PROOF STRIP ──────────────────────────────────────────── */
.proof-strip {
  border-top: 1px solid var(--char-700);
  border-bottom: 1px solid var(--char-700);
  background: var(--char-900);
  padding: var(--space-xl) 0;
}

.proof-strip .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.proof-strip__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.proof-strip__locations {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.proof-strip__sep { color: var(--char-500); }

.proof-strip__stats {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--amber);
  line-height: 1;
}

.stat__unit {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--amber-light);
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat__divider {
  width: 1px;
  height: 60px;
  background: var(--char-600);
}

/* ── PRODUCTS ─────────────────────────────────────────────── */
.products {
  padding: var(--space-3xl) 0;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.product-card {
  position: relative;
  background: var(--char-900);
  border: 1px solid var(--char-700);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  border-color: var(--char-500);
  transform: translateY(-4px);
}

.product-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
}

.product-card__accent--purple {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.product-card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.product-card__icon {
  font-size: 2rem;
  background: var(--char-800);
  border: 1px solid var(--char-600);
  border-radius: var(--radius-md);
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card__sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.product-card__desc {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.product-card__features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.2em;
  position: relative;
}

.product-card__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
}

.product-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.product-card__url {
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-it-works {
  padding: var(--space-3xl) 0;
  background: var(--char-900);
  border-top: 1px solid var(--char-700);
  border-bottom: 1px solid var(--char-700);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-lg) 0;
}

.step__number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--char-600);
  line-height: 1;
  text-align: right;
  transition: color 0.3s ease;
}

.step:hover .step__number { color: var(--amber); }

.step__content {
  padding-top: 0.5rem;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

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

.step__connector {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--char-700), transparent);
  margin-left: 40px;
}

/* ── VALUE PROP ────────────────────────────────────────────── */
.value-prop {
  padding: var(--space-3xl) 0;
}

.value-prop__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.value-prop__body {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.75;
}

.value-prop__body strong { color: var(--text-main); }

.comparison-card {
  background: var(--char-900);
  border: 1px solid var(--char-700);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
}

.comparison-card--after {
  margin-top: -1.5rem;
  margin-left: 1.5rem;
  border-color: var(--amber);
  box-shadow: 0 0 30px rgba(232, 134, 10, 0.1);
}

.comparison-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.comparison-card--before .comparison-card__label { color: var(--text-faint); }
.comparison-card--after  .comparison-card__label { color: var(--amber); }

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.comparison-list li {
  font-size: 0.9rem;
  line-height: 1.4;
}

.comparison-list--bad li  { color: var(--text-faint); text-decoration: line-through; text-decoration-color: var(--char-500); }
.comparison-list--good li { color: var(--text-main); }

/* ── PRICING ──────────────────────────────────────────────── */
.pricing {
  padding: var(--space-3xl) 0;
  background: var(--char-900);
  border-top: 1px solid var(--char-700);
  border-bottom: 1px solid var(--char-700);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: var(--space-md);
  align-items: start;
  margin-bottom: var(--space-lg);
}

.pricing-card {
  background: var(--char-800);
  border: 1px solid var(--char-600);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  transition: border-color 0.3s ease;
}

.pricing-card:hover { border-color: var(--char-400, #6a6050); }

.pricing-card--featured {
  background: var(--char-700);
  border-color: var(--amber);
  box-shadow: 0 0 40px rgba(232, 134, 10, 0.12);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #0a0908;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-card__header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--char-600);
}

.pricing-card__product {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-xs);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: var(--space-xs);
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--text-faint);
}

.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: var(--space-xl);
}

.pricing-card__features li {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.pricing__note a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials {
  padding: var(--space-3xl) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--char-900);
  border: 1px solid var(--char-700);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: border-color 0.3s ease;
}

.testimonial-card:hover { border-color: var(--char-500); }

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: #0a0908;
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__avatar--2 { background: #7c3aed; color: var(--white); }
.testimonial-card__avatar--3 { background: var(--sage); color: var(--white); }

.testimonial-card__name {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  font-style: normal;
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ── FINAL CTA ────────────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: var(--space-3xl) 0;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(232, 134, 10, 0.08) 0%, transparent 70%);
  border-top: 1px solid var(--char-700);
}

.final-cta__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.final-cta__body {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.final-cta__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--char-950);
  border-top: 1px solid var(--char-700);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-faint);
  margin: var(--space-sm) 0 var(--space-xs);
}

.footer__location {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer__nav {
  display: flex;
  gap: var(--space-2xl);
}

.footer__col { display: flex; flex-direction: column; gap: 0.75rem; }

.footer__col-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}

.footer__col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--amber-light); }

.footer__bottom {
  border-top: 1px solid var(--char-700);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal-up, .reveal-left {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left {
  transform: translateX(-20px);
}
.reveal-up.visible, .reveal-left.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { justify-content: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__body { margin: 0 auto var(--space-lg); }
  .hero__actions { justify-content: center; }
  .hero__sub { text-align: center; }
  .hero__scroll-hint { display: none; }

  .products__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .value-prop__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__nav { flex-wrap: wrap; gap: var(--space-xl); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta-group { display: none; }
  .nav__hamburger { display: flex; }
  .nav { gap: var(--space-sm); }

  .hero {
    padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-xl);
  }

  .hero__phone-mockup { width: 240px; }
  .section__title { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .proof-strip__stats { flex-direction: column; gap: var(--space-lg); }
  .stat__divider { width: 60px; height: 1px; }

  .step { grid-template-columns: 60px 1fr; }
  .step__number { font-size: 3rem; }

  .comparison-card--after { margin-left: 0; margin-top: var(--space-sm); }
}

@media (max-width: 480px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
  }
  .hero__headline { font-size: clamp(3rem, 12vw, 4rem); }
  .hero__actions { flex-direction: column; }
  .btn--lg, .btn--xl { width: 100%; }
}

/* ── TERMS PAGE SPECIFIC ──────────────────────────────────── */
.terms-page .terms-nav-spacer {
  height: 80px;
}
