/* ===========================================================================
   KhaneMe — marketing site  ·  aesthetic build
   Brand green #57D131
   =========================================================================== */

:root {
  --green: #57D131;
  --green-2: #45B826;
  --green-3: #2E7D16;
  --green-4: #1E5C0E;
  --green-tint: #EAF9E4;
  --green-tint-2: #DBF4CF;
  --lime: #8BE861;

  --blue: #2563EB;
  --blue-2: #1E40AF;

  --ink: #14180F;
  --ink-soft: #3D453A;
  --muted: #6B7280;
  --line: #E9ECE6;
  --bg: #FFFFFF;
  --bg-soft: #F5F8F3;
  --bg-cream: #FBFDF8;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 10px rgba(20,40,10,.05);
  --shadow: 0 10px 30px rgba(30,60,20,.08);
  --shadow-lg: 0 24px 60px rgba(30,60,20,.14);
  --shadow-green: 0 16px 40px rgba(87,209,49,.30);

  --maxw: 1160px;
  --font: 'Fira Sans Condensed', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation: none !important; }
}

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-16px) } }
@keyframes floatslow { 0%,100% { transform: translateY(0) rotate(0) } 50% { transform: translateY(-22px) rotate(-3deg) } }
@keyframes blob { 0%,100% { border-radius: 42% 58% 60% 40%/55% 45% 55% 45%; } 50% { border-radius: 60% 40% 45% 55%/45% 60% 40% 55%; } }
@keyframes spinslow { to { transform: rotate(360deg) } }
@keyframes shine { 0% { transform: translateX(-120%) } 60%,100% { transform: translateX(220%) } }
@keyframes panbg { 0% { background-position: 0% 50% } 50% { background-position: 100% 50% } 100% { background-position: 0% 50% } }
@keyframes bobtag { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)) } 50% { transform: translateY(-10px) rotate(var(--r,0deg)) } }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes pop { 0% { transform: scale(.6); opacity: 0 } 100% { transform: scale(1); opacity: 1 } }

/* ── Buttons ────────────────────────────────────────────────── */
.btn { position: relative; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font); font-weight: 700; font-size: 16px; padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer; transition: transform .14s ease, box-shadow .18s ease, background .18s; overflow: hidden; }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; box-shadow: var(--shadow-green); }
.btn-primary:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 22px 50px rgba(87,209,49,.42); }
.btn-primary::after { content:""; position:absolute; top:0; left:0; width:40%; height:100%; background:linear-gradient(120deg,transparent,rgba(255,255,255,.5),transparent); transform: translateX(-150%); }
.btn-primary:hover::after { animation: shine 1s ease; }
.btn-ghost { background: #fff; color: var(--green-3); border: 2px solid var(--green); }
.btn-ghost:hover { background: var(--green-tint); transform: translateY(-2px); }
.btn-lg { font-size: 17px; padding: 16px 32px; }

/* store badges */
.stores { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge { display: inline-flex; align-items: center; gap: 11px; background: var(--ink); color: #fff; padding: 11px 20px; border-radius: 14px; transition: transform .15s, box-shadow .18s; min-width: 175px; box-shadow: var(--shadow); }
.store-badge:hover { transform: translateY(-3px) scale(1.02); }
.store-badge svg { width: 26px; height: 26px; flex: 0 0 auto; }
.store-badge .s-small { font-size: 11px; opacity: .82; line-height: 1; letter-spacing: .3px; }
.store-badge .s-big { font-size: 18px; font-weight: 700; line-height: 1.15; }

/* ── Nav ────────────────────────────────────────────────────── */
header.nav { position: sticky; top: 0; z-index: 60; transition: background .3s, box-shadow .3s, border-color .3s; border-bottom: 1px solid transparent; }
header.nav.solid { background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(16px); border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(20,40,10,.04); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 23px; letter-spacing: -.4px; color: var(--ink); }
.brand img { width: 38px; height: 38px; }
.brand .bk { color: var(--green-3); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15.5px; font-weight: 600; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--green-3); }
.nav-cta { background: linear-gradient(135deg,var(--green),var(--green-2)); color: #fff !important; padding: 10px 20px; border-radius: 999px; font-weight: 700; box-shadow: var(--shadow-green); }
.nav-cta:hover { transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

@media (max-width: 900px) {
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 22px 18px; display: none; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; animation: pop .2s ease; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 12px; border-bottom: 0 !important; }
  .nav-toggle { display: block; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero { position: relative; padding: 86px 0 72px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--bg-cream); }
.blob { position: absolute; z-index: -1; filter: blur(8px); opacity: .5; animation: blob 14s ease-in-out infinite, float 10s ease-in-out infinite; }
.blob.b1 { width: 460px; height: 460px; right: -120px; top: -120px; background: radial-gradient(circle at 30% 30%, var(--lime), var(--green)); }
.blob.b2 { width: 380px; height: 380px; left: -140px; bottom: -120px; background: radial-gradient(circle at 60% 40%, var(--green-tint-2), var(--green)); opacity: .35; animation-duration: 18s, 12s; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--green-tint-2); color: var(--green-3); font-weight: 700; font-size: 13.5px; padding: 7px 15px; border-radius: 999px; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(87,209,49,.6); animation: pulsering 2s infinite; }
@keyframes pulsering { 0% { box-shadow: 0 0 0 0 rgba(87,209,49,.6) } 70% { box-shadow: 0 0 0 10px rgba(87,209,49,0) } 100% { box-shadow: 0 0 0 0 rgba(87,209,49,0) } }
.hero h1 { font-size: 62px; line-height: 1.02; letter-spacing: -1.5px; font-weight: 800; }
.hero h1 .hl { background: linear-gradient(120deg, var(--green), var(--green-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 20px; color: var(--ink-soft); margin: 22px 0 30px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust { display: flex; align-items: center; gap: 14px; margin-top: 26px; color: var(--muted); font-size: 14.5px; }
.trust .dots { display: flex; }
.trust .dots span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; background: var(--green-tint-2); display: grid; place-items: center; font-size: 14px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero h1 { font-size: 42px; }
  .hero p.lead { font-size: 18px; margin-left: auto; margin-right: auto; }
  .hero-actions, .trust, .eyebrow { justify-content: center; }
}

/* ── Phone mockup ───────────────────────────────────────────── */
.phone-stage { position: relative; display: grid; place-items: center; }
.phone { position: relative; width: 290px; aspect-ratio: 9/19; background: #0c0f0a; border-radius: 44px; padding: 12px; box-shadow: var(--shadow-lg); animation: floatslow 7s ease-in-out infinite; }
.phone::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #0c0f0a; border-radius: 0 0 16px 16px; z-index: 3; }
.screen { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: var(--bg-soft); position: relative; }
.app-top { background: linear-gradient(135deg, var(--green), var(--green-2)); padding: 40px 18px 18px; color: #fff; }
.app-top .loc { font-size: 12px; opacity: .9; }
.app-top .ttl { font-size: 19px; font-weight: 800; margin-top: 2px; }
.app-search { background: rgba(255,255,255,.95); margin-top: 14px; border-radius: 12px; padding: 9px 12px; font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.app-list { padding: 14px; display: grid; gap: 11px; }
.mess-card { background: #fff; border-radius: 14px; padding: 11px; box-shadow: var(--shadow-sm); display: flex; gap: 10px; align-items: center; }
.mess-card .thumb { width: 46px; height: 46px; border-radius: 11px; background: linear-gradient(135deg,var(--green-tint-2),var(--lime)); flex: 0 0 auto; display: grid; place-items: center; font-size: 22px; }
.mess-card .mc-body { flex: 1; min-width: 0; }
.mess-card .mc-name { font-size: 13.5px; font-weight: 700; }
.mess-card .mc-sub { font-size: 11px; color: var(--muted); }
.mess-card .mc-pill { font-size: 10.5px; font-weight: 700; color: var(--green-3); background: var(--green-tint); padding: 3px 8px; border-radius: 999px; }
.phone.biz .app-top { background: linear-gradient(135deg,var(--green),var(--green-2)); }
.phone.biz .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; }
.phone.biz .stat { background: #fff; border-radius: 14px; padding: 12px; box-shadow: var(--shadow-sm); }
.phone.biz .stat .n { font-size: 22px; font-weight: 800; color: var(--green-3); }
.phone.biz .stat .l { font-size: 10.5px; color: var(--muted); }

/* floating tags around phone */
.float-tag { position: absolute; background: #fff; border-radius: 14px; padding: 9px 13px; box-shadow: var(--shadow); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 7px; animation: bobtag 5s ease-in-out infinite; }
.float-tag .e { font-size: 17px; }
.float-tag.t1 { top: 8%; left: -8%; --r: -6deg; }
.float-tag.t2 { top: 42%; right: -14%; --r: 5deg; animation-delay: 1.2s; }
.float-tag.t3 { bottom: 8%; left: -6%; --r: 4deg; animation-delay: 2.1s; }
@media (max-width: 900px) { .float-tag.t1 { left: 2%; } .float-tag.t3 { left: 4%; } .float-tag.t2 { right: 2%; } }

/* ── Marquee ────────────────────────────────────────────────── */
.marquee { background: var(--ink); color: #fff; padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 24s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; padding: 0 26px; font-size: 17px; font-weight: 700; white-space: nowrap; }
.marquee-track .sep { color: var(--green); }

/* ── Sections ───────────────────────────────────────────────── */
section { padding: 84px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-cream { background: var(--bg-cream); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 52px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: 42px; font-weight: 800; letter-spacing: -.8px; line-height: 1.08; }
.section-head h2 .hl { color: var(--green-3); }
.section-head p { color: var(--muted); font-size: 18px; margin-top: 14px; }
@media (max-width: 900px) { section { padding: 60px 0; } .section-head h2 { font-size: 30px; } }

/* feature cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; transition: transform .2s, box-shadow .2s, border-color .2s; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(300px 120px at 50% 0%, var(--green-tint), transparent); opacity: 0; transition: opacity .25s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-tint-2); }
.card:hover::before { opacity: 1; }
.card .ico { position: relative; width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--green-tint), var(--green-tint-2)); color: var(--green-3); display: grid; place-items: center; font-size: 28px; margin-bottom: 18px; transition: transform .25s; }
.card:hover .ico { transform: scale(1.08) rotate(-4deg); }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

/* two-app split */
.apps-split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.app-panel { position: relative; border-radius: var(--radius-xl); padding: 40px; border: 1px solid var(--line); overflow: hidden; transition: transform .2s, box-shadow .25s; }
.app-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.app-panel.customer { background: linear-gradient(165deg, var(--green-tint), #fff 70%); }
.app-panel.business { background: linear-gradient(165deg, var(--green-tint), #fff 70%); }
.app-panel .appbadge { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.app-panel .appbadge img { width: 60px; height: 60px; border-radius: 16px; box-shadow: var(--shadow); }
.app-panel .tag { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--green-3); }
.app-panel.business .tag { color: var(--green-3); }
.app-panel h3 { font-size: 27px; font-weight: 800; }
.app-panel p.desc { color: var(--ink-soft); margin: 4px 0 0; }
.app-panel ul { list-style: none; margin: 22px 0 26px; }
.app-panel li { padding: 8px 0 8px 30px; position: relative; color: var(--ink-soft); font-size: 16px; }
.app-panel li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 20px; height: 20px; background: var(--green); color: #fff; border-radius: 50%; font-size: 12px; font-weight: 800; display: grid; place-items: center; }
.app-panel.business li::before { background: var(--green); }
@media (max-width: 900px) { .apps-split { grid-template-columns: 1fr; } }

/* steps timeline */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; position: relative; }
.steps::before { content: ""; position: absolute; top: 38px; left: 16%; right: 16%; height: 2px; background: repeating-linear-gradient(90deg, var(--green-tint-2) 0 10px, transparent 10px 20px); z-index: 0; }
.step { position: relative; text-align: center; padding: 0 12px; z-index: 1; }
.step .n { width: 60px; height: 60px; border-radius: 50%; background: #fff; border: 2px solid var(--green); color: var(--green-3); display: grid; place-items: center; font-weight: 800; font-size: 24px; margin: 0 auto 18px; box-shadow: var(--shadow); transition: transform .2s; }
.step:hover .n { transform: scale(1.1); background: var(--green); color: #fff; }
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; gap: 20px; } .steps::before { display: none; } }

/* referral showcase */
.ref-card { position: relative; border-radius: var(--radius-xl); padding: 56px 40px; background: linear-gradient(120deg, var(--green-3), var(--green), var(--green-2)); background-size: 200% 200%; animation: panbg 8s ease infinite; color: #fff; text-align: center; overflow: hidden; }
.ref-card::after { content: ""; position: absolute; top: 0; left: 0; width: 30%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent); transform: translateX(-150%); animation: shine 4s ease-in-out infinite; }
.ref-card h2 { font-size: 38px; font-weight: 800; position: relative; }
.ref-card p { font-size: 18px; opacity: .94; margin: 12px auto 26px; max-width: 560px; position: relative; }
.ref-chip { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); padding: 10px 20px; border-radius: 999px; font-weight: 700; letter-spacing: 3px; font-size: 20px; position: relative; }

/* stats */
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stat-box { text-align: center; padding: 30px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.stat-box .big { font-size: 46px; font-weight: 800; background: linear-gradient(120deg,var(--green),var(--green-3)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-box .lbl { color: var(--muted); margin-top: 8px; font-size: 15.5px; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; } }

/* ── CTA strip ──────────────────────────────────────────────── */
.cta-strip { position: relative; background: linear-gradient(120deg, var(--green-3), var(--green-2), var(--green)); background-size: 200% 200%; animation: panbg 9s ease infinite; color: #fff; border-radius: var(--radius-xl); padding: 60px 40px; text-align: center; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-strip h2 { font-size: 38px; font-weight: 800; position: relative; }
.cta-strip p { opacity: .94; font-size: 18px; margin: 12px 0 28px; position: relative; }
.cta-strip .stores { justify-content: center; position: relative; }
.cta-strip .store-badge { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(4px); }

/* ── Referral banner ────────────────────────────────────────── */
.ref-banner { display: none; background: linear-gradient(120deg, var(--green), var(--green-3)); color: #fff; position: relative; overflow: hidden; }
.ref-banner.show { display: block; animation: pop .4s ease; }
.ref-banner .wrap { padding: 14px 22px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; text-align: center; }
.ref-banner b { background: rgba(255,255,255,.2); padding: 5px 14px; border-radius: 9px; letter-spacing: 3px; font-size: 18px; }
.ref-banner .btn { background: #fff; color: var(--green-3); padding: 9px 20px; }

/* ── Legal / doc pages ──────────────────────────────────────── */
.page-hero { background: linear-gradient(165deg, var(--green-tint), var(--bg-cream)); padding: 64px 0 40px; position: relative; overflow: hidden; }
.page-hero .blob { opacity: .35; }
.doc { padding: 0 0 90px; }
.doc-head { position: relative; overflow: hidden; text-align: center; background: linear-gradient(165deg, var(--green-tint), var(--bg-cream) 75%); border: 1px solid var(--green-tint-2); border-radius: var(--radius-xl); padding: 52px 40px; margin: 30px 0 40px; }
.doc-head::before { content: ""; position: absolute; width: 260px; height: 260px; right: -90px; top: -110px; border-radius: 50%; background: radial-gradient(circle, rgba(87,209,49,.22), transparent 70%); animation: float 9s ease-in-out infinite; }
.doc-head h1 { font-size: 46px; font-weight: 800; letter-spacing: -1.2px; position: relative; }
.doc-head .updated { color: var(--green-4); font-size: 14.5px; margin-top: 10px; position: relative; }
.tabs { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px; margin: 24px 0 0; box-shadow: var(--shadow-sm); position: relative; }
.tabs button { font-family: var(--font); border: 0; background: none; cursor: pointer; padding: 10px 26px; border-radius: 999px; font-weight: 700; font-size: 15px; color: var(--muted); transition: .2s; }
.tabs button.active { background: linear-gradient(135deg,var(--green),var(--green-2)); color: #fff; box-shadow: var(--shadow-green); }
.doc-body { max-width: 840px; margin: 0 auto; }
.doc-body h2 { font-size: 22px; font-weight: 800; margin: 32px 0 10px; color: var(--ink); }
.doc-body h3 { font-size: 16.5px; font-weight: 700; margin: 20px 0 6px; }
.doc-body p { color: var(--ink-soft); margin-bottom: 11px; font-size: 16px; }
.doc-body ul { margin: 8px 0 16px 22px; }
.doc-body li { color: var(--ink-soft); margin-bottom: 7px; font-size: 16px; }
.doc-body .note { border-radius: 14px; padding: 16px 18px; margin: 16px 0; font-size: 15.5px; font-weight: 600; }
.note.warn { background: #FFF7ED; border: 1px solid #FED7AA; color: #9A3412; }
.note.danger { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.note.info { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.note.ok { background: var(--green-tint); border: 1px solid #BBE8A8; color: var(--green-4); }
.note.plain { background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink); }
.doc-pane { display: none; }
.doc-pane.active { display: block; animation: pop .35s ease; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; margin-bottom: 14px; overflow: hidden; background: #fff; transition: box-shadow .2s, border-color .2s; }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--green-tint-2); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--font); font-size: 17.5px; font-weight: 700; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink); }
.faq-q .chev { transition: transform .25s; color: var(--green); font-size: 22px; flex: 0 0 auto; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .25s; padding: 0 22px; color: var(--ink-soft); font-size: 16px; }
.faq-item.open .faq-a { max-height: 420px; padding: 0 22px 20px; }
.faq-cat { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; color: var(--green-3); margin: 30px 0 14px; display: flex; align-items: center; gap: 10px; }
.faq-cat::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--green); }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; max-width: 800px; margin: 0 auto; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; background: #fff; transition: transform .2s, box-shadow .2s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .ico { width: 52px; height: 52px; border-radius: 15px; background: linear-gradient(135deg,var(--green-tint),var(--green-tint-2)); color: var(--green-3); display: grid; place-items: center; font-size: 24px; margin-bottom: 16px; }
.contact-card h3 { font-size: 18px; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 15.5px; }
.contact-card a.link { color: var(--green-3); font-weight: 700; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

/* disclaimer */
.disclaimer { background: var(--bg-soft); border: 1px dashed var(--green-tint-2); border-radius: 16px; padding: 20px 24px; font-size: 15px; color: var(--muted); max-width: 840px; margin: 8px auto 0; }
.fineprint { max-width: 720px; margin: 28px auto 0; text-align: center; font-size: 12px; line-height: 1.65; color: #9AA29A; }

/* ── Footer ─────────────────────────────────────────────────── */
footer.site { background: #0D1109; color: #C7CDC9; padding: 64px 0 28px; margin-top: 40px; position: relative; overflow: hidden; }
footer.site::before { content: ""; position: absolute; top: -80px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(87,209,49,.18), transparent 70%); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; position: relative; }
.foot-brand { font-size: 23px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 11px; }
.foot-brand img { width: 36px; height: 36px; }
.foot-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .7px; margin-bottom: 15px; }
.foot-col a { display: block; padding: 6px 0; font-size: 15px; color: #A6ADA8; transition: color .15s, transform .15s; }
.foot-col a:hover { color: var(--green); transform: translateX(3px); }
.foot-about { max-width: 330px; font-size: 14.5px; color: #99A09B; margin-top: 14px; }
.foot-bottom { border-top: 1px solid #232A25; margin-top: 40px; padding-top: 22px; font-size: 13.5px; color: #7E857F; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; position: relative; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ── Responsive: tablets 601–768px ─────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 68px 0 58px; }
  .cta-strip { padding: 48px 30px; border-radius: var(--radius-lg); }
  .cta-strip h2 { font-size: 30px; }
  .ref-card { padding: 44px 28px; border-radius: var(--radius-lg); }
  .ref-card h2 { font-size: 30px; }
  .doc-head { padding: 44px 28px; border-radius: var(--radius-lg); }
  .doc-head h1 { font-size: 36px; }
}

/* ── Responsive: mobile ≤ 600px ─────────────────────────────── */
@media (max-width: 600px) {
  section { padding: 52px 0; }
  .hero { padding: 52px 0 44px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero p.lead { font-size: 17px; }
  .section-head h2 { font-size: 26px; }
  .cta-strip { padding: 36px 20px; border-radius: var(--radius-lg); }
  .cta-strip h2 { font-size: 26px; }
  .cta-strip p { font-size: 16px; margin-bottom: 20px; }
  .stores { flex-direction: column; align-items: stretch; }
  .store-badge { min-width: 0; justify-content: center; }
  .ref-card { padding: 36px 20px; border-radius: var(--radius-lg); }
  .ref-card h2 { font-size: 26px; }
  .ref-card p { font-size: 16px; }
  .doc-head { padding: 36px 20px; border-radius: var(--radius-lg); }
  .doc-head h1 { font-size: 28px; letter-spacing: -.6px; }
  .faq-q { font-size: 15.5px; padding: 16px 18px; }
  .faq-a { font-size: 15px; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }
  .btn-lg { font-size: 15px; padding: 14px 22px; }
  .contact-grid { gap: 14px; }
  .contact-card { padding: 22px 18px; }
}

/* ── Responsive: small phones ≤ 480px ───────────────────────── */
@media (max-width: 480px) {
  .phone { width: 240px; border-radius: 38px; }
  .phone::before { width: 90px; height: 22px; }
  .screen { border-radius: 28px; }
  .float-tag { font-size: 11.5px; padding: 7px 10px; gap: 5px; }
  .float-tag .e { font-size: 14px; }
  .float-tag.t1 { left: 0; top: 6%; }
  .float-tag.t2 { right: 0; }
  .float-tag.t3 { left: 2%; bottom: 6%; }
  .hero h1 { font-size: 32px; }
  .hero-actions { gap: 10px; }
}

/* ── Responsive: very small phones ≤ 360px ──────────────────── */
@media (max-width: 360px) {
  .phone { width: 200px; border-radius: 32px; }
  .phone::before { width: 76px; height: 18px; }
  .screen { border-radius: 22px; }
  .hero h1 { font-size: 28px; letter-spacing: -.5px; }
  .hero p.lead { font-size: 15.5px; }
  .brand { font-size: 19px; }
  .brand img { width: 30px; height: 30px; }
  .btn-lg { font-size: 14px; padding: 12px 18px; }
}
