/* ==========================================================================
   Green Route — Lawn Care Marketplace
   Design System / Global Stylesheet
   ========================================================================== */

/* ----- Design Tokens ----- */
:root {
  /* Brand */
  --green-900: #0f2e1d;
  --green-800: #14532d;
  --green-700: #166534;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --lime-500: #84cc16;
  --lime-400: #a3e635;

  /* Neutrals */
  --ink: #0c1512;
  --slate-900: #14201b;
  --slate-700: #33443b;
  --slate-600: #4b5b52;
  --slate-500: #6b7c73;
  --slate-400: #94a39a;
  --slate-300: #cbd5cf;
  --slate-200: #e4ebe6;
  --slate-100: #f0f5f1;
  --paper: #f7faf7;
  --white: #ffffff;

  /* Accents */
  --amber: #f59e0b;
  --sky: #0ea5e9;
  --rose: #f43f5e;

  /* Semantic */
  --bg: var(--paper);
  --surface: var(--white);
  --text: var(--ink);
  --text-soft: var(--slate-600);
  --muted: var(--slate-500);
  --border: var(--slate-200);
  --brand: var(--green-600);
  --brand-dark: var(--green-700);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Sora', var(--font-sans);

  /* Radius & shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 46, 29, 0.06), 0 1px 3px rgba(15, 46, 29, 0.08);
  --shadow-md: 0 6px 18px rgba(15, 46, 29, 0.08), 0 2px 6px rgba(15, 46, 29, 0.06);
  --shadow-lg: 0 24px 48px -12px rgba(15, 46, 29, 0.18);
  --shadow-glow: 0 20px 60px -18px rgba(22, 163, 74, 0.45);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --nav-h: 72px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -0.02em; color: var(--text); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--green-400); outline-offset: 2px; border-radius: 4px; }

/* ----- Layout helpers ----- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section--tight { padding: clamp(44px, 6vw, 80px) 0; }
.grid { display: grid; gap: 24px; }
.center { text-align: center; }
.mw-680 { max-width: 680px; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }

/* ----- Typography scale ----- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--slate-100);
  border: 1px solid var(--border);
  padding: 7px 14px; border-radius: var(--r-pill);
}
.eyebrow--light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); color: #eafff1; }
h1, .h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); }
h2, .h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3, .h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-soft); }
.muted { color: var(--muted); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: var(--r-pill);
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--brand-dark); box-shadow: var(--shadow-glow); }
.btn--dark { background: var(--green-900); color: #eafff1; }
.btn--dark:hover { background: #0a2416; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--slate-100); }
.btn--light { background: #fff; color: var(--green-800); }
.btn--light:hover { background: #eafff1; }
.btn--lime { background: var(--lime-400); color: var(--green-900); }
.btn--lime:hover { background: var(--lime-500); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--sm { padding: 9px 16px; font-size: .86rem; }
.btn--block { width: 100%; }

/* ----- Navbar ----- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 250, 247, 0.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; gap: 20px; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; letter-spacing: -.02em; color: var(--green-900); }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 22px; height: 22px; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav__links a { padding: 9px 14px; border-radius: var(--r-pill); font-weight: 500; font-size: .95rem; color: var(--text-soft); transition: color .15s, background .15s; }
.nav__links a:hover { color: var(--green-800); background: var(--slate-100); }
.nav__links a.is-active { color: var(--green-800); background: var(--slate-100); }
.nav__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav__toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 10px; width: 44px; height: 44px; place-items: center; color: var(--green-900); }
.nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__actions { margin-left: auto; }
  .nav__toggle { display: grid; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 14px var(--gutter) 22px; gap: 4px; box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__links a { padding: 12px 14px; }
  .nav.is-open .nav__cta-mobile { display: flex; margin-top: 10px; }
}
.nav__cta-mobile { display: none; }

/* ----- Hero ----- */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 120% at 80% -10%, #1c6b3a 0%, #0f2e1d 55%, #08221492 100%), var(--green-900); color: #eafff1; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(80% 70% at 60% 20%, #000 30%, transparent 75%);
  opacity: .5;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 112px); }
.hero h1 { color: #fff; }
.hero h1 .accent { background: linear-gradient(120deg, var(--lime-400), var(--green-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: #cfeeda; max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__stat .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: #fff; }
.hero__stat .lbl { font-size: .82rem; color: #a9d8bb; letter-spacing: .02em; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ----- Map mockup card (hero) ----- */
.mapcard { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.16); background: #0c2417; }
.mapcard__canvas {
  position: relative; aspect-ratio: 4 / 3.3;
  background:
    radial-gradient(circle at 30% 30%, #3f7d4e 0, transparent 40%),
    radial-gradient(circle at 75% 65%, #2e6b3e 0, transparent 45%),
    repeating-linear-gradient(45deg, #24512f 0 14px, #21492b 14px 28px),
    #234d2d;
}
.mapcard__roads { position: absolute; inset: 0; }
.mapcard__plot { position: absolute; left: 22%; top: 26%; width: 46%; height: 42%; border: 3px dashed var(--lime-400); border-radius: 10px; background: rgba(163,230,53,.18); box-shadow: 0 0 0 9999px rgba(6,20,12,.28); }
.mapcard__plot::after { content: "Your lawn"; position: absolute; top: -13px; left: 10px; background: var(--lime-400); color: var(--green-900); font-size: .68rem; font-weight: 800; padding: 3px 9px; border-radius: 6px; letter-spacing: .02em; }
.mapcard__pin { position: absolute; width: 26px; height: 26px; border-radius: 50% 50% 50% 2px; transform: rotate(45deg); box-shadow: var(--shadow-md); }
.mapcard__pin span { transform: rotate(-45deg); display: block; text-align: center; line-height: 26px; font-size: 13px; }
.mapcard__badge {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  background: rgba(255,255,255,.96); color: var(--ink); border-radius: var(--r-md);
  padding: 14px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px; backdrop-filter: blur(4px);
}
.mapcard__badge .est { margin-left: auto; text-align: right; }
.mapcard__badge .est b { font-family: var(--font-display); font-size: 1.35rem; color: var(--green-700); display: block; }
.mapcard__badge .est small { color: var(--muted); font-size: .72rem; }
.ring { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--slate-100); color: var(--green-700); flex: none; }

/* ----- Cards ----- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s; }
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--slate-300); }
.card__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff; }
.card__icon svg { width: 25px; height: 25px; }
.card__icon--soft { background: var(--slate-100); color: var(--green-700); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-soft); margin-bottom: 0; }

.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ----- Steps ----- */
.steps { counter-reset: step; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step__num {
  counter-increment: step; flex: none; width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  background: var(--green-900); color: var(--lime-400);
}
.step__num::before { content: counter(step); }

/* ----- Feature split ----- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split, .split--reverse { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: var(--text-soft); }
.checklist li::before {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 2px;
  background: var(--green-100, #dcfce7) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23166534' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
  background-color: #dcfce7;
}

/* ----- Neighborhood savings widget ----- */
.savings { background: linear-gradient(160deg, #0f2e1d, #14532d); color: #eafff1; border-radius: var(--r-xl); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.savings::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(132,204,22,.35), transparent 70%); }
.savings__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 820px) { .savings__grid { grid-template-columns: 1fr; } }
.progress { margin: 22px 0 10px; }
.progress__track { height: 12px; border-radius: var(--r-pill); background: rgba(255,255,255,.16); overflow: hidden; }
.progress__fill { height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--lime-400), var(--green-400)); width: 66%; box-shadow: 0 0 16px rgba(163,230,53,.6); transition: width .8s cubic-bezier(.2,.8,.2,1); }
.progress__meta { display: flex; justify-content: space-between; font-size: .82rem; color: #b9e6c7; margin-top: 10px; }
.pricecompare { display: flex; align-items: baseline; gap: 14px; margin: 6px 0 4px; }
.pricecompare .was { text-decoration: line-through; color: #9fd4b1; font-size: 1.2rem; }
.pricecompare .now { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: #fff; }
.pricecompare .save { background: var(--lime-400); color: var(--green-900); font-weight: 800; font-size: .78rem; padding: 4px 10px; border-radius: var(--r-pill); }
.neighbor-tiles { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.neighbor-tile { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-weight: 700; font-size: .85rem; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); }
.neighbor-tile.joined { background: var(--lime-400); color: var(--green-900); border-color: transparent; }
.neighbor-tile.open { background: transparent; border-style: dashed; color: #9fd4b1; }

/* ----- Pricing ----- */
.price-card { display: flex; flex-direction: column; height: 100%; }
.price-card.is-featured { border-color: var(--green-500); box-shadow: var(--shadow-md); position: relative; }
.price-card.is-featured::before { content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green-600); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: var(--r-pill); letter-spacing: .03em; }
.price-card .price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--green-800); margin: 6px 0; }
.price-card .price small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.price-card .feats { margin: 18px 0 24px; }
.price-card .feats li { padding: 7px 0; color: var(--text-soft); display: flex; gap: 10px; }
.price-card .feats li svg { flex: none; color: var(--green-600); margin-top: 3px; }
.price-card .btn { margin-top: auto; }

/* ----- Status tracker ----- */
.tracker { display: flex; gap: 0; margin: 8px 0; }
.tracker__step { flex: 1; text-align: center; position: relative; }
.tracker__dot { width: 30px; height: 30px; border-radius: 50%; background: var(--slate-200); color: var(--slate-500); display: grid; place-items: center; margin: 0 auto 8px; font-size: 14px; z-index: 1; position: relative; border: 3px solid var(--bg); }
.tracker__step::before { content: ""; position: absolute; top: 15px; left: -50%; width: 100%; height: 3px; background: var(--slate-200); }
.tracker__step:first-child::before { display: none; }
.tracker__step.done .tracker__dot { background: var(--green-600); color: #fff; }
.tracker__step.done::before { background: var(--green-500); }
.tracker__step.current .tracker__dot { background: var(--green-600); color: #fff; box-shadow: 0 0 0 5px rgba(34,197,94,.2); }
.tracker__lbl { font-size: .8rem; color: var(--text-soft); font-weight: 500; }

/* ----- Badges / pills ----- */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 700; padding: 4px 11px; border-radius: var(--r-pill); letter-spacing: .02em; }
.badge--green { background: #dcfce7; color: var(--green-800); }
.badge--amber { background: #fef3c7; color: #92400e; }
.badge--sky { background: #e0f2fe; color: #075985; }
.badge--slate { background: var(--slate-100); color: var(--slate-600); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* ----- Dashboard shell (mock) ----- */
.dash { display: grid; grid-template-columns: 232px 1fr; gap: 0; min-height: 560px; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-md); }
.dash__side { background: var(--green-900); color: #cfeeda; padding: 22px 16px; }
.dash__side .brand { color: #fff; font-size: 1.05rem; margin-bottom: 26px; }
.dash__nav a { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border-radius: 11px; color: #a9d8bb; font-size: .92rem; font-weight: 500; margin-bottom: 3px; }
.dash__nav a svg { width: 18px; height: 18px; }
.dash__nav a:hover { background: rgba(255,255,255,.07); color: #fff; }
.dash__nav a.is-active { background: rgba(132,204,22,.18); color: #eafff1; }
.dash__main { padding: clamp(18px, 3vw, 30px); background: var(--paper); overflow: auto; }
.dash__topbar { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.dash__topbar .avatar { margin-left: auto; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .9rem; }
@media (max-width: 720px) { .dash { grid-template-columns: 1fr; } .dash__side { display: none; } }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
@media (max-width: 760px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px; }
.stat .k { font-size: .78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.stat .v { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--text); margin-top: 4px; }
.stat .d { font-size: .8rem; margin-top: 4px; }
.up { color: var(--green-600); } .down { color: var(--rose); }

/* ----- Table (mock) ----- */
.table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); }
.table th { text-align: left; font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 700; padding: 13px 16px; background: var(--slate-100); }
.table td { padding: 14px 16px; border-top: 1px solid var(--border); font-size: .92rem; color: var(--text-soft); }
.table tr:hover td { background: #fbfdfb; }
.table .name { color: var(--text); font-weight: 600; }

/* ----- Reviews ----- */
.review { display: flex; flex-direction: column; gap: 14px; }
.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars svg { width: 17px; height: 17px; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }

/* ----- Forms ----- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 7px; color: var(--slate-700); }
.input, .select, .textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--slate-300); border-radius: var(--r-md);
  font-family: inherit; font-size: 1rem; background: var(--white); color: var(--text); transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(34,197,94,.14); }
.input::placeholder { color: var(--slate-400); }
.textarea { min-height: 120px; resize: vertical; }
.input-group { display: flex; gap: 10px; }
.input-group .input { flex: 1; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .row-2 { grid-template-columns: 1fr; } }
.help { font-size: .82rem; color: var(--muted); margin-top: 6px; }

/* Segmented control */
.segmented { display: inline-flex; background: var(--slate-100); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px; gap: 4px; }
.segmented button { border: none; background: transparent; padding: 9px 18px; border-radius: var(--r-pill); font-weight: 600; font-size: .9rem; color: var(--text-soft); }
.segmented button.is-active { background: var(--white); color: var(--green-800); box-shadow: var(--shadow-sm); }

/* ----- Tabs ----- */
.tabs { display: inline-flex; gap: 6px; border-bottom: 1px solid var(--border); margin-bottom: 24px; flex-wrap: wrap; }
.tabs button { border: none; background: none; padding: 12px 16px; font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabs button.is-active { color: var(--green-800); border-color: var(--green-600); }
.tabpanel { display: none; } .tabpanel.is-active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ----- CTA band ----- */
.cta-band { background: radial-gradient(120% 140% at 10% 10%, #1c6b3a, #0f2e1d); color: #eafff1; border-radius: var(--r-xl); padding: clamp(36px, 6vw, 68px); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #cfeeda; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ----- Logos / trust strip ----- */
.trust { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 56px); flex-wrap: wrap; opacity: .75; }
.trust span { font-family: var(--font-display); font-weight: 700; color: var(--slate-500); font-size: 1.05rem; letter-spacing: -.01em; }

/* ----- FAQ ----- */
.faq details { border: 1px solid var(--border); border-radius: var(--r-md); padding: 4px 20px; background: var(--surface); margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--green-600); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-soft); padding-bottom: 16px; margin: 0; }

/* ----- Footer ----- */
.footer { background: var(--green-900); color: #a9d8bb; padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; font-family: var(--font-sans); }
.footer a { display: block; padding: 5px 0; color: #a9d8bb; font-size: .93rem; }
.footer a:hover { color: #fff; }
.footer__phone { color: #eafff1; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #7fb894; }

/* ----- Page hero (interior) ----- */
.page-hero { background: linear-gradient(160deg, #0f2e1d, #14532d); color: #eafff1; padding: clamp(48px, 7vw, 88px) 0; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #cfeeda; }

/* ----- Utilities ----- */
.stack-sm > * + * { margin-top: 10px; }
.flex { display: flex; } .items-center { align-items: center; } .gap-10 { gap: 10px; } .gap-16 { gap: 16px; }
.wrap { flex-wrap: wrap; }
.pill-note { display: inline-flex; align-items: center; gap: 8px; background: var(--slate-100); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 8px 16px; font-size: .88rem; color: var(--text-soft); }
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.blueprint-note {
  position: relative; background: #fffbeb; border: 1px dashed var(--amber); color: #92400e;
  border-radius: var(--r-md); padding: 12px 18px; font-size: .88rem; display: flex; gap: 10px; align-items: center;
}
.blueprint-note svg { flex: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
