/* ============================================================
   EzDine — Marketing Site Design System
   Palette derived from the EzDine app (lib/core/theme/app_colors.dart)
   ============================================================ */

:root {
  /* Brand */
  --green-950: #0D2B0F;
  --green-900: #133A16;
  --green-800: #1B5E20;
  --green-700: #2E7D32;
  --green-600: #388E3C;
  --green-100: #C8E6C9;
  --green-50:  #E8F5E9;
  --orange-600: #F57C00;
  --orange-500: #FF6F00;
  --orange-50:  #FFF3E0;
  --gold: #FFC107;

  /* Neutrals */
  --ink: #1A1A1A;
  --ink-soft: #3D3D3D;
  --muted: #6B6B6B;
  --line: #E0E0E0;
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-alt: #F5F5F5;

  /* Type */
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Shape & shadow */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(13, 43, 15, .06), 0 2px 8px rgba(13, 43, 15, .05);
  --shadow: 0 2px 6px rgba(13, 43, 15, .07), 0 12px 32px rgba(13, 43, 15, .10);
  --shadow-lg: 0 8px 24px rgba(13, 43, 15, .12), 0 32px 72px rgba(13, 43, 15, .18);

  --nav-h: 72px;
  --container: 1160px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
ul[class], ol[class] { list-style: none; }

::selection { background: var(--green-700); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}

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

/* ---------------------------------------------------------- */
/* Buttons                                                     */
/* ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 6px 18px rgba(46, 125, 50, .35);
}
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(46, 125, 50, .42); }

.btn-orange {
  background: var(--orange-600);
  color: #fff;
  box-shadow: 0 6px 18px rgba(245, 124, 0, .35);
}
.btn-orange:hover { background: var(--orange-500); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245, 124, 0, .42); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--green-700); color: var(--green-700); transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: var(--green-800);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 0, 0, .25); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}
.btn-outline-light:hover { border-color: #fff; transform: translateY(-2px); }

.btn-lg { padding: 17px 36px; font-size: 1.02rem; }

/* ---------------------------------------------------------- */
/* Navigation                                                  */
/* ---------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.solid {
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: rgba(0, 0, 0, .06);
  box-shadow: 0 4px 24px rgba(13, 43, 15, .06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 4px 12px rgba(27, 94, 32, .35);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand em { font-style: normal; color: var(--orange-600); }
.brand span { color: inherit; }

/* On dark hero the un-scrolled nav is light-on-dark */
.nav.on-dark:not(.scrolled) .brand { color: #fff; }
.nav.on-dark:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, .85); }
.nav.on-dark:not(.scrolled) .nav-links a:hover,
.nav.on-dark:not(.scrolled) .nav-links a.active { color: #fff; }
.nav.on-dark:not(.scrolled) .nav-burger span { background: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav-links a {
  font-weight: 500;
  font-size: .93rem;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-700); }
.nav-cta { margin-left: 8px; }
.nav .btn { padding: 11px 24px; font-size: .88rem; }

.nav-burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------- */
/* Hero                                                        */
/* ---------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 620px at 82% -10%, rgba(245, 124, 0, .22), transparent 60%),
    radial-gradient(900px 600px at -12% 110%, rgba(56, 142, 60, .35), transparent 60%),
    linear-gradient(155deg, var(--green-900) 0%, var(--green-950) 62%, #0A2410 100%);
  color: #fff;
  padding: calc(var(--nav-h) + 64px) 0 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 96px;
}
.hero-copy .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  margin-bottom: 26px;
}
.eyebrow-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, .25);
  animation: pulse-dot 2.2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 193, 7, .28); }
  50% { box-shadow: 0 0 0 7px rgba(255, 193, 7, .08); }
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.13rem;
  color: rgba(255, 255, 255, .82);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: .87rem;
  color: rgba(255, 255, 255, .78);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 17px; height: 17px; flex: none; }

/* Store badges */
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  border-radius: 12px;
  padding: 9px 18px 9px 14px;
  transition: transform .18s ease, border-color .18s ease;
}
.store-badge:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, .6); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-text { line-height: 1.15; text-align: left; }
.store-badge .sb-text small { display: block; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; opacity: .75; }
.store-badge .sb-text strong { font-size: 1.02rem; font-family: var(--font-display); font-weight: 600; }
.store-badge.light { background: #fff; color: var(--ink); border-color: transparent; box-shadow: var(--shadow-sm); }
.store-badge.disabled { opacity: .55; cursor: default; }
.store-badge.disabled:hover { transform: none; border-color: rgba(255, 255, 255, .25); }

/* ---------------------------------------------------------- */
/* Phone mockup                                                */
/* ---------------------------------------------------------- */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  width: 300px;
  border-radius: 44px;
  background: #101613;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, .08);
  position: relative;
}
.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: var(--bg);
  height: 600px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 24px;
  background: #101613;
  border-radius: 999px;
  z-index: 5;
}
.hero .phone { animation: phone-float 7s ease-in-out infinite; }
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(0.001deg); }
  50% { transform: translateY(-14px) rotate(0.001deg); }
}

/* App-UI primitives used inside mockups */
.app-bar {
  background: var(--green-700);
  color: #fff;
  padding: 44px 18px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-bar .loc { font-size: .68rem; font-weight: 500; opacity: .85; display: block; }
.app-body { flex: 1; padding: 14px; overflow: hidden; display: flex; flex-direction: column; gap: 12px; }
.app-search {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-chips { display: flex; gap: 8px; overflow: hidden; }
.app-chip {
  font-size: .68rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  white-space: nowrap;
}
.app-chip.on { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.app-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.app-card .ac-img {
  height: 86px;
  background: linear-gradient(120deg, var(--green-100), var(--green-50) 55%, var(--orange-50));
  position: relative;
}
.app-card .ac-img.alt { background: linear-gradient(120deg, var(--orange-50), #FFE0B2 60%, var(--green-50)); }
.ac-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--gold);
  color: #5D4000;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.app-card .ac-body { padding: 10px 12px; }
.ac-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.ac-name { font-family: var(--font-display); font-weight: 700; font-size: .8rem; }
.ac-meta { font-size: .65rem; color: var(--muted); margin-top: 2px; }
.ac-rating {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .66rem; font-weight: 700;
  color: var(--green-800);
  background: var(--green-50);
  padding: 3px 8px;
  border-radius: 999px;
}
.app-cta-bar {
  background: var(--green-700);
  color: #fff;
  margin: 0 14px 16px;
  border-radius: 13px;
  padding: 13px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  box-shadow: 0 8px 18px rgba(46, 125, 50, .35);
}

/* Floating cards around hero phone */
.float-card {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .78rem;
  z-index: 6;
  animation: float-a 6s ease-in-out infinite;
}
.float-card strong { font-family: var(--font-display); font-size: .82rem; display: block; }
.float-card small { color: var(--muted); font-size: .7rem; }
.float-card .fc-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex: none;
}
.fc-ico.green { background: var(--green-50); color: var(--green-700); }
.fc-ico.orange { background: var(--orange-50); color: var(--orange-600); }
.fc-ico svg { width: 19px; height: 19px; }
.float-card.fc-1 { top: 176px; left: -46px; animation-delay: .6s; }
.float-card.fc-2 { bottom: 130px; right: -34px; animation-delay: 1.4s; }
.float-card.fc-3 { bottom: 24px; left: -12px; animation-delay: 2.1s; }
@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------------------------------------------------------- */
/* Sections                                                    */
/* ---------------------------------------------------------- */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section.alt { background: var(--surface); }
.section.dark {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(245, 124, 0, .16), transparent 55%),
    linear-gradient(160deg, var(--green-900), var(--green-950));
  color: rgba(255, 255, 255, .85);
}
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .aud-card h3 { color: var(--ink); }
.section.dark .aud-card > p { color: var(--muted); }

.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 14px;
}
.section.dark .eyebrow { color: var(--gold); }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.section.dark .section-head p { color: rgba(255, 255, 255, .72); }

/* Stats band */
.stats-band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 44px 0;
}
.stat { text-align: center; padding: 8px 12px; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  height: 56%; width: 1px;
  background: var(--line);
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--green-800);
  letter-spacing: -0.03em;
}
.stat .num .unit { color: var(--orange-600); font-size: .62em; font-weight: 700; }
.stat .lbl { font-size: .84rem; color: var(--muted); margin-top: 4px; }

/* Cards grid */
.grid { display: grid; gap: 24px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card .card-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  background: var(--green-50);
  color: var(--green-700);
}
.card .card-ico.orange { background: var(--orange-50); color: var(--orange-600); }
.card .card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .93rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-weight: 600; font-size: .88rem;
  color: var(--green-700);
}
.card .card-link svg { width: 15px; height: 15px; transition: transform .18s ease; }
.card .card-link:hover svg { transform: translateX(4px); }

/* Audience cards */
.aud-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}
.aud-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.aud-card .tag {
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.aud-card.customers .tag { background: var(--green-50); color: var(--green-800); }
.aud-card.restaurants .tag { background: var(--orange-50); color: var(--orange-600); }
.aud-card.agents .tag { background: #FFF8E1; color: #8D6E00; }
.aud-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.aud-card > p { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.aud-card .aud-points { display: grid; gap: 10px; margin-bottom: 28px; }
.aud-card .aud-points li { display: flex; gap: 10px; font-size: .9rem; color: var(--ink-soft); }
.aud-card .aud-points svg { width: 18px; height: 18px; color: var(--green-600); flex: none; margin-top: 2px; }
.aud-card .btn { margin-top: auto; align-self: flex-start; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 56px 24px 28px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  border-radius: 10px;
  padding: 4px 10px;
  box-shadow: 0 6px 14px rgba(245, 124, 0, .35);
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--muted); }

/* Feature list rows (alternating) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split .split-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.split .split-copy > p { color: var(--muted); margin-bottom: 26px; font-size: 1.02rem; }
.check-list { display: grid; gap: 14px; margin-bottom: 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); }
.check-list li svg { width: 21px; height: 21px; color: var(--green-600); flex: none; margin-top: 2px; }
.check-list li strong { color: var(--ink); }
.section.dark .check-list li { color: rgba(255, 255, 255, .82); }
.section.dark .check-list li strong { color: #fff; }
.section.dark .check-list li svg { color: var(--gold); }
.check-list.check-grid { grid-template-columns: 1fr 1fr; gap: 18px 36px; }

/* Payment strip */
.pay-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.pay-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pay-chip .pdot { width: 10px; height: 10px; border-radius: 50%; flex: none; }

/* Comparison table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: .92rem;
}
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare thead th {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-alt);
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td.yes { color: var(--green-800); font-weight: 600; }
.compare td.no { color: #9E9E9E; }
.compare .ez-col {
  background: var(--green-50);
  border-left: 2px solid var(--green-100);
  border-right: 2px solid var(--green-100);
}
.compare thead .ez-col {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}
.compare td .pill-yes,
.compare td .pill-no {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.pill-yes { background: var(--green-100); color: var(--green-900); }
.pill-no { background: #F0F0F0; color: #8A8A8A; }

/* Pricing hero number */
.big-rate {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--gold), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Calculator */
.calc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px;
}
.calc label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 14px;
}
.calc input[type="range"] {
  width: 100%;
  accent-color: var(--green-700);
  height: 6px;
  cursor: pointer;
}
.calc .calc-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--green-800);
  margin: 10px 0 26px;
}
.calc-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.calc-box {
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  border: 1px solid var(--line);
}
.calc-box .cb-label { font-size: .78rem; color: var(--muted); margin-bottom: 6px; }
.calc-box .cb-num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.02em; }
.calc-box.loss .cb-num { color: #C62828; }
.calc-box.ez { background: var(--green-50); border-color: var(--green-100); }
.calc-box.ez .cb-num { color: var(--green-800); }
.calc-box.win { background: linear-gradient(135deg, var(--orange-600), var(--orange-500)); border-color: transparent; }
.calc-box.win .cb-label { color: rgba(255, 255, 255, .85); }
.calc-box.win .cb-num { color: #fff; }
.calc-note { font-size: .8rem; color: var(--muted); margin-top: 18px; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--green-100); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-50);
  display: grid; place-items: center;
  flex: none;
  transition: transform .25s ease, background .25s ease;
}
.faq-item summary .chev svg { width: 15px; height: 15px; color: var(--green-700); }
.faq-item[open] summary .chev { transform: rotate(180deg); background: var(--green-700); }
.faq-item[open] summary .chev svg { color: #fff; }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: .94rem; }

/* City cards */
.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  padding: 130px 30px 30px;
  background: linear-gradient(200deg, var(--green-700), var(--green-950));
}
.city-card.orange { background: linear-gradient(200deg, var(--orange-500), #7A3B00); }
.city-card.soon {
  background: var(--surface);
  color: var(--ink);
  border: 2px dashed var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.city-card h3 { color: inherit; font-size: 1.5rem; margin-bottom: 6px; }
.city-card p { font-size: .9rem; opacity: .85; }
.city-card .badge-live {
  position: absolute;
  top: 22px; left: 24px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 6px 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.badge-live .dot { width: 7px; height: 7px; border-radius: 50%; background: #7CFC8A; }
.city-card.soon .badge-live { background: var(--surface-alt); border-color: var(--line); color: var(--muted); position: static; align-self: flex-start; margin-bottom: 60px; }
.city-card.soon .badge-live .dot { background: var(--gold); }

/* Tech strip */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tech-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: background .2s ease, transform .2s ease;
}
.tech-item:hover { background: rgba(255, 255, 255, .09); transform: translateY(-4px); }
.tech-item h3 { font-size: 1rem; margin: 14px 0 8px; }
.tech-item p { font-size: .84rem; color: rgba(255, 255, 255, .68); }
.tech-item .t-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 193, 7, .14);
  color: var(--gold);
  display: grid; place-items: center;
}
.tech-item .t-ico svg { width: 22px; height: 22px; }

/* CTA band */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 88% 10%, rgba(255, 193, 7, .28), transparent 60%),
    linear-gradient(135deg, var(--green-800), var(--green-950));
  color: #fff;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, .78); margin-bottom: 30px; max-width: 480px; }
.cta-band .cta-right { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

/* Page hero (subpages) */
.page-hero {
  background:
    radial-gradient(900px 480px at 85% -20%, rgba(245, 124, 0, .2), transparent 60%),
    linear-gradient(155deg, var(--green-900), var(--green-950));
  color: #fff;
  padding: calc(var(--nav-h) + 72px) 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.2rem); font-weight: 800; max-width: 720px; margin-bottom: 20px; }
.page-hero .hero-lead { margin-bottom: 32px; }
.page-hero .accent {
  background: linear-gradient(90deg, var(--gold), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Footer */
.footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, .72);
  padding: 72px 0 0;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer-about { max-width: 320px; color: rgba(255, 255, 255, .6); font-size: .88rem; }
.footer h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: rgba(255, 255, 255, .68); transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom a { color: rgba(255, 255, 255, .6); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 22px; }

/* Legal pages */
.legal-body { max-width: 820px; margin: 0 auto; padding: 64px 24px 96px; }
.legal-body h2 {
  font-size: 1.3rem;
  margin: 44px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-50);
  color: var(--green-800);
}
.legal-body h3 { font-size: 1.05rem; margin: 24px 0 10px; }
.legal-body p { margin-bottom: 14px; color: var(--ink-soft); }
.legal-body ul, .legal-body ol { padding-left: 24px; margin-bottom: 14px; color: var(--ink-soft); }
.legal-body li { margin-bottom: 8px; }
.legal-body .meta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.legal-body .highlight {
  background: var(--green-50);
  border-left: 4px solid var(--green-700);
  border-radius: 6px;
  padding: 16px 20px;
  margin: 18px 0;
  font-size: .94rem;
}
.legal-body table { width: 100%; border-collapse: collapse; font-size: .9rem; margin-bottom: 16px; }
.legal-body table th, .legal-body table td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.legal-body table th { background: var(--green-50); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------- */
/* Responsive                                                  */
/* ---------------------------------------------------------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding-bottom: 72px; }
  .hero-copy .eyebrow-pill { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust, .store-badges { justify-content: center; }
  .hero-visual { margin-top: 12px; }
  .float-card.fc-1 { left: 4px; }
  .float-card.fc-2 { right: 4px; }
  .float-card.fc-3 { left: 12px; }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .cta-band { grid-template-columns: 1fr; padding: 56px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    box-shadow: 0 24px 40px rgba(13, 43, 15, .12);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--surface-alt); font-size: 1rem; color: var(--ink-soft) !important; }
  .nav-links .nav-cta { margin: 18px 0 0; }
  .nav-links .btn { width: 100%; }
  .nav-burger { display: flex; }
  .grid.cols-3, .grid.cols-2, .grid.cols-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat + .stat::before { display: none; }
  .tech-grid { grid-template-columns: 1fr; }
  .check-list.check-grid { grid-template-columns: 1fr; }
  .calc { padding: 28px 22px; }
  .calc-results { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .phone { width: 264px; }
  .phone-screen { height: 540px; }
  .float-card { font-size: .72rem; padding: 10px 12px; }
  .cta-band { padding: 44px 26px; }
}
