/* =========================================================
   Novo Bot AI — Landing Page Stylesheet
   Plain CSS, custom properties for theming, mobile-first.
   ========================================================= */

/* ---------- 1. Theme variables (Light default / Dark override) ---------- */
:root{
  --bg:#ffffff;
  --bg-subtle:#f7f9f8;
  --surface:#ffffff;
  --surface-2:#f4f6f5;
  --border:#e6eae8;
  --text:#101a16;
  --text-muted:#4b5a54;
  --text-faint:#7c8a84;

  --brand-50:#fef3ec;
  --brand-100:#fde3d1;
  --brand-200:#fbc79f;
  --brand-300:#f7a465;
  --brand-400:#f37e33;
  --brand-500:#ea580c;
  --brand-600:#d14d0a;
  --brand-700:#b84509;
  --brand-800:#8f3607;
  --brand-900:#6b2905;
  --brand-950:#431a03;

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:26px;
  --shadow-sm:0 1px 2px rgba(16,26,22,.04), 0 8px 24px -12px rgba(16,26,22,.10);
  --shadow-lg:0 30px 70px -25px rgba(16,26,22,.35);

  --space-1:8px;
  --space-2:12px;
  --space-3:16px;
  --space-4:24px;
  --space-5:32px;
  --space-6:48px;

  color-scheme: light;
}

/* Dark theme: applied via body.dark-theme (toggled by js/script.js) */
body.dark-theme{
  --bg:#0a100d;
  --bg-subtle:#0e1512;
  --surface:#121c18;
  --surface-2:#17221d;
  --border:#223028;
  --text:#f2f7f4;
  --text-muted:#a9bab2;
  --text-faint:#7c8f86;
  color-scheme: dark;
}

/* ---------- 2. Reset & base ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:92px; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  transition:background-color .25s ease, color .25s ease;
}
img,svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,p{ margin:0; overflow-wrap:break-word; }
button{ font:inherit; color:inherit; background:none; border:none; cursor:pointer; }
::selection{ background:var(--brand-200); color:var(--brand-950); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
}

/* ---------- 3. Layout helpers ---------- */
.container{ max-width:1200px; margin:0 auto; padding:0 20px; }
.container-narrow{ max-width:900px; margin:0 auto; padding:0 20px; }
.container-md{ max-width:1000px; margin:0 auto; padding:0 20px; }
.center{ text-align:center; }
.section{ padding:72px 0; border-bottom:1px solid var(--border); }
@media (min-width:640px){ .section{ padding:104px 0; } }

.focus-ring:focus-visible{
  outline:2px solid var(--brand-500);
  outline-offset:2px;
  border-radius:6px;
}

.eyebrow{
  font-size:12px; font-weight:800; letter-spacing:.08em;
  color:var(--brand-600); text-transform:uppercase;
}
.h2{
  font-size:28px; font-weight:800; letter-spacing:-0.01em;
  color:var(--text); line-height:1.15;
}
@media (min-width:640px){ .h2{ font-size:38px; } }
.lead{ font-size:16px; line-height:1.6; color:var(--text-muted); }

/* ---------- 4. Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border-radius:999px; font-weight:700; font-size:16px; padding:14px 28px;
  transition:transform .15s ease, background-color .15s ease, border-color .15s ease;
  cursor:pointer; border:1px solid transparent; white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn-primary{ background:var(--brand-500); color:#fff; box-shadow:0 10px 30px -12px rgba(234,88,12,.55); }
.btn-primary:hover{ background:var(--brand-600); }
.btn-secondary{ background:var(--surface); border-color:var(--border); color:var(--text); }
.btn-secondary:hover{ border-color:var(--brand-400); color:var(--brand-600); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 20px; font-size:14px; }

/* ---------- 5. Header ---------- */
header.site{
  position:sticky; top:0; z-index:50;
  backdrop-filter:blur(10px);
  background:color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom:1px solid transparent;
  transition:border-color .2s ease;
}
header.site.scrolled{ border-color:var(--border); }
.nav-row{ display:flex; align-items:center; justify-content:space-between; height:84px; }
.logo{ display:flex; align-items:center; gap:8px; font-weight:800; font-size:15px; }
.logo-img{ height:60px; width:auto; display:block; }
@media (min-width:640px){ .logo-img{ height:72px; } }
.logo-badge{
  width:32px; height:32px; border-radius:9px; background:var(--brand-500); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:14px;
}
nav.primary{ display:none; align-items:center; gap:32px; }
nav.primary a{ font-size:14px; font-weight:600; color:var(--text-muted); }
nav.primary a:hover{ color:var(--text); }
.header-actions{ display:none; align-items:center; gap:12px; }
.header-actions-mobile{ display:flex; align-items:center; gap:8px; }
@media (min-width:860px){
  nav.primary{ display:flex; }
  .header-actions{ display:flex; }
  .header-actions-mobile{ display:none; }
}
.icon-btn{
  width:36px; height:36px; border-radius:999px; border:1px solid var(--border);
  background:var(--surface-2); display:flex; align-items:center; justify-content:center; color:var(--text);
}
#mobile-menu{ display:none; border-top:1px solid var(--border); background:var(--bg); padding:8px 20px 24px; }
#mobile-menu.open{ display:block; }
#mobile-menu a{ display:block; padding:12px; border-radius:10px; font-weight:600; color:var(--text-muted); }
#mobile-menu a:hover{ background:var(--surface-2); color:var(--text); }
#mobile-menu .btn{ margin-top:12px; }

/* ---------- 6. Hero (ALWAYS light theme, independent of body.dark-theme) ---------- */
section.hero{
  position:relative; overflow:hidden;
  background:#ffffff; color:#101a16; border-bottom:1px solid #e6eae8;
}
.hero-bg{
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(60% 50% at 15% 10%, rgba(234,88,12,.10), transparent),
    radial-gradient(50% 40% at 90% 20%, rgba(243,126,51,.12), transparent);
}
.hero-grid{ position:relative; display:grid; gap:48px; padding:56px 0 72px; }
@media (min-width:1024px){ .hero-grid{ grid-template-columns:1fr 1fr; align-items:center; padding:96px 0 112px; gap:40px; } }
.hero-eyebrow{
  display:inline-flex; align-items:center; border:1px solid #fde3d1; background:#fef3ec;
  color:#b84509; font-size:12px; font-weight:700; padding:7px 14px; border-radius:999px;
}
.hero h1{ font-size:34px; font-weight:800; line-height:1.14; letter-spacing:-0.01em; color:#0c1a14; margin-top:20px; }
@media (min-width:640px){ .hero h1{ font-size:48px; } }
@media (min-width:1024px){ .hero h1{ font-size:52px; } }
.hero p.sub{ margin-top:20px; max-width:560px; font-size:17px; line-height:1.65; color:#485a52; }
@media (min-width:640px){ .hero p.sub{ font-size:19px; } }
.hero-ctas{ margin-top:32px; display:flex; flex-direction:column; gap:12px; }
@media (min-width:560px){ .hero-ctas{ flex-direction:row; align-items:center; flex-wrap:wrap; } }
.hero .btn-primary{ background:#ea580c; }
.hero .btn-primary:hover{ background:#b84509; }
.hero .btn-secondary{ border-color:#d7ded9; color:#132119; }
.hero .btn-secondary:hover{ border-color:#ea580c; color:#ea580c; }
.hero-micro{ margin-top:20px; font-size:14px; font-weight:600; color:#6b7b74; }

/* Hero chat mockup — realistic UI, not an illustration */
.phone-wrap{ max-width:420px; margin:0 auto; animation:float 6s ease-in-out infinite; }
.phone{ background:#fff; border:1px solid #e6eae8; border-radius:var(--radius-lg); padding:6px; box-shadow:var(--shadow-lg); }
.phone-inner{ background:#fafcfb; border:1px solid #eef1f0; border-radius:20px; padding:18px; }
.phone-head{ display:flex; align-items:center; gap:10px; border-bottom:1px solid #eef1f0; padding-bottom:14px; margin-bottom:16px; }
.phone-head .badge{ width:32px; height:32px; border-radius:999px; background:#ea580c; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:12px; }
.phone-head .name{ font-size:14px; font-weight:700; color:#101a16; }
.phone-head .status{ font-size:12px; color:#ea580c; display:flex; align-items:center; gap:5px; }
.dot{ width:6px; height:6px; border-radius:999px; background:#ea580c; display:inline-block; }
.bubble{
  max-width:85%; border-radius:16px; padding:10px 14px; font-size:13.5px; line-height:1.45;
  margin-bottom:12px; opacity:0; animation:fadeUp .5s ease forwards;
}
.bubble.user{ margin-left:auto; border-top-right-radius:4px; background:#ea580c; color:#fff; }
.bubble.bot{ border-top-left-radius:4px; background:#fff; border:1px solid #eef1f0; color:#1a2620; }
.lead-pill{
  display:inline-flex; align-items:center; gap:6px; background:#fef3ec; color:#b84509;
  font-size:12px; font-weight:700; padding:8px 14px; border-radius:999px;
  opacity:0; animation:fadeUp .5s ease forwards;
}

@keyframes fadeUp{ from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:translateY(0); } }
@keyframes float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }

/* Scroll-reveal (progressive enhancement via IntersectionObserver in script.js) */
.reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- 7. Problem section ---------- */
.steps-row{ display:flex; flex-direction:column; gap:12px; max-width:900px; margin:44px auto 0; }
@media (min-width:760px){ .steps-row{ flex-direction:row; align-items:center; } }
.step-chip{
  flex:1; display:flex; align-items:center; gap:12px; border:1px solid var(--border);
  background:var(--surface); border-radius:16px; padding:16px; box-shadow:var(--shadow-sm);
}
.step-num{
  width:24px; height:24px; border-radius:999px; background:var(--surface-2); color:var(--text-muted);
  font-size:12px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.step-arrow{ display:none; flex-shrink:0; color:var(--text-faint); }
@media (min-width:760px){ .step-arrow{ display:block; } }

/* ---------- 8. Cards (agitation / trust) ---------- */
.cards-3{ display:grid; gap:20px; margin-top:48px; grid-template-columns:1fr; }
@media (min-width:760px){ .cards-3{ grid-template-columns:repeat(3,1fr); } }
.card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:26px; box-shadow:var(--shadow-sm); height:100%;
}
.card h3{ font-size:18px; font-weight:800; color:var(--text); }
.card p{ margin-top:10px; font-size:14px; line-height:1.6; color:var(--text-muted); }
.icon-tile{
  width:44px; height:44px; border-radius:12px; background:var(--brand-50); color:var(--brand-600);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
}
body.dark-theme .icon-tile{ background:rgba(243,126,51,.12); color:var(--brand-400); }

.note-box{
  max-width:760px; margin:40px auto 0; background:var(--brand-50); border:1px solid var(--brand-200);
  border-radius:16px; padding:22px; text-align:center;
}
body.dark-theme .note-box{ background:rgba(243,126,51,.08); border-color:rgba(243,126,51,.25); }
.note-box p{ font-size:14px; font-weight:600; color:var(--brand-800); line-height:1.6; }
body.dark-theme .note-box p{ color:var(--brand-200); }

/* ---------- 9. Solution section ---------- */
.solution-grid{ display:grid; gap:48px; }
@media (min-width:960px){ .solution-grid{ grid-template-columns:1fr 1fr; align-items:center; gap:64px; } }
.check-list{ margin-top:26px; display:flex; flex-direction:column; gap:14px; }
.check-list li{ display:flex; align-items:flex-start; gap:12px; font-size:15px; line-height:1.6; color:var(--text-muted); }
.check-dot{
  margin-top:2px; width:20px; height:20px; border-radius:999px; background:var(--brand-500); color:#fff;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.flow-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); padding:32px; box-shadow:var(--shadow-sm); }
.flow-item{ position:relative; display:flex; align-items:center; gap:16px; padding-bottom:32px; }
.flow-item:last-child{ padding-bottom:0; }
.flow-line{ position:absolute; left:15px; top:32px; bottom:0; width:1px; background:var(--border); }
.flow-num{
  position:relative; z-index:1; width:32px; height:32px; border-radius:999px; background:var(--brand-100);
  color:var(--brand-700); font-weight:800; font-size:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
body.dark-theme .flow-num{ background:rgba(243,126,51,.15); color:var(--brand-300); }
.flow-item span.label{ font-size:15px; font-weight:700; color:var(--text); }

/* ---------- 10. How It Works ---------- */
.hiw-grid{ position:relative; display:grid; gap:24px; margin-top:52px; grid-template-columns:1fr; }
@media (min-width:760px){ .hiw-grid{ grid-template-columns:repeat(3,1fr); } }
.hiw-line{ display:none; }
@media (min-width:760px){ .hiw-line{ display:block; position:absolute; left:0; right:0; top:36px; height:1px; background:var(--border); } }
.hiw-card{ position:relative; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); padding:26px; box-shadow:var(--shadow-sm); }
.hiw-top{ display:flex; align-items:center; gap:12px; }
.hiw-icon{
  width:36px; height:36px; border-radius:999px; background:var(--brand-500); color:#fff;
  display:flex; align-items:center; justify-content:center; position:relative; z-index:1;
}
.hiw-step-label{ font-size:11px; font-weight:800; letter-spacing:.08em; color:var(--text-faint); }
.hiw-card h3{ margin-top:16px; font-size:18px; font-weight:800; color:var(--text); }
.hiw-card p{ margin-top:8px; font-size:14px; line-height:1.6; color:var(--text-muted); }

/* ---------- 11. Comparison ---------- */
.cmp-table{ margin-top:48px; border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-sm); display:none; }
@media (min-width:820px){ .cmp-table{ display:grid; grid-template-columns:1fr 1fr; } }
.cmp-head{ padding:20px 24px; font-weight:800; font-size:16px; border-bottom:1px solid var(--border); }
.cmp-head.left{ background:var(--surface-2); border-right:1px solid var(--border); color:var(--text); }
.cmp-head.right{ background:var(--brand-50); color:var(--brand-700); }
body.dark-theme .cmp-head.right{ background:rgba(243,126,51,.10); color:var(--brand-300); }
.cmp-cell{ padding:16px 24px; font-size:14px; border-bottom:1px solid var(--border); }
.cmp-cell.left{ border-right:1px solid var(--border); color:var(--text-muted); display:flex; gap:10px; align-items:flex-start; }
.cmp-cell.right{ background:rgba(243,126,51,.04); color:var(--text); font-weight:600; display:flex; gap:10px; align-items:flex-start; }
.cmp-cell:last-child,.cmp-head:nth-last-child(-n+2){ border-bottom:none; }
.dot-faint{ margin-top:6px; width:6px; height:6px; border-radius:999px; background:var(--text-faint); flex-shrink:0; }
.check-mini{ flex-shrink:0; color:var(--brand-500); }

.cmp-cards{ margin-top:40px; display:grid; gap:20px; }
@media (min-width:820px){ .cmp-cards{ display:none; } }
.cmp-card{ border:1px solid var(--border); border-radius:16px; padding:24px; background:var(--surface); }
.cmp-card.novo{ border-color:var(--brand-300); background:var(--brand-50); }
body.dark-theme .cmp-card.novo{ background:rgba(243,126,51,.08); border-color:rgba(243,126,51,.3); }
.cmp-card h3{ font-size:16px; font-weight:800; color:var(--text); }
.cmp-card.novo h3{ color:var(--brand-700); }
body.dark-theme .cmp-card.novo h3{ color:var(--brand-300); }
.cmp-card ul{ margin-top:14px; display:flex; flex-direction:column; gap:10px; }
.cmp-card li{ display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text-muted); }
.cmp-card.novo li{ color:var(--text); font-weight:600; }

/* ---------- 12. Pricing ---------- */
.price-grid{ display:grid; gap:24px; margin-top:48px; grid-template-columns:1fr; }
@media (min-width:820px){ .price-grid{ grid-template-columns:repeat(3,1fr); } }
.price-card{
  position:relative; display:flex; flex-direction:column; height:100%; background:var(--surface);
  border:1px solid var(--border); border-radius:var(--radius-md); padding:30px; box-shadow:var(--shadow-sm);
  transition:transform .15s ease;
}
.price-card:hover{ transform:translateY(-4px); }
.price-card.featured{ border-color:var(--brand-400); box-shadow:0 0 0 2px var(--brand-400), var(--shadow-sm); }
.badge-popular{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--brand-500); color:#fff;
  font-size:12px; font-weight:800; padding:5px 14px; border-radius:999px; box-shadow:var(--shadow-sm);
}
.price-card h3{ font-size:17px; font-weight:800; color:var(--text); }
.price-value{ margin-top:12px; display:flex; align-items:baseline; gap:6px; }
.price-value .amt{ font-size:32px; font-weight:800; letter-spacing:-0.01em; color:var(--text); }
.price-value .per{ font-size:13px; font-weight:600; color:var(--text-faint); }
.price-features{ margin-top:22px; flex:1; display:flex; flex-direction:column; gap:12px; }
.price-features li{ display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text-muted); }
.price-features svg{ flex-shrink:0; margin-top:2px; color:var(--brand-500); }
.price-card .btn{ margin-top:26px; }
.price-footnote{ max-width:700px; margin:40px auto 0; text-align:center; font-size:14px; line-height:1.6; color:var(--text-muted); }

/* ---------- 13. Live demo ---------- */
.demo-grid{ display:grid; gap:28px; margin-top:40px; }
@media (min-width:960px){ .demo-grid{ grid-template-columns:280px 1fr; } }
.demo-tabs{ display:flex; gap:8px; overflow-x:auto; padding-bottom:4px; }
@media (min-width:960px){ .demo-tabs{ flex-direction:column; overflow:visible; } }
.demo-tab{
  flex-shrink:0; text-align:left; border:1px solid var(--border); background:var(--surface);
  border-radius:12px; padding:12px 16px; font-size:14px; font-weight:600; color:var(--text-muted);
}
.demo-tab.active{ border-color:var(--brand-400); background:var(--brand-50); color:var(--brand-700); }
body.dark-theme .demo-tab.active{ background:rgba(243,126,51,.12); color:var(--brand-300); }
.demo-panel{ border:1px solid var(--border); background:var(--surface); border-radius:var(--radius-md); padding:20px; box-shadow:var(--shadow-sm); }
.demo-head{ display:flex; align-items:center; gap:10px; border-bottom:1px solid var(--border); padding-bottom:16px; margin-bottom:16px; }
.demo-head .badge{
  width:32px; height:32px; border-radius:999px; background:var(--brand-500); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:12px;
}
#demo-messages{ min-height:220px; display:flex; flex-direction:column; gap:12px; }
.typing{ display:inline-flex; align-items:center; gap:4px; border:1px solid var(--border); background:var(--bg-subtle); border-radius:16px; border-top-left-radius:4px; padding:12px 16px; width:fit-content; }
.typing span{ width:6px; height:6px; border-radius:999px; background:var(--text-faint); animation:bounce 1s infinite; }
.typing span:nth-child(2){ animation-delay:.15s; }
.typing span:nth-child(3){ animation-delay:.3s; }
@keyframes bounce{ 0%,60%,100%{ transform:translateY(0); } 30%{ transform:translateY(-4px); } }
.demo-bubble{ max-width:85%; border-radius:16px; padding:10px 16px; font-size:14px; line-height:1.5; }
.demo-bubble.user{ margin-left:auto; border-top-right-radius:4px; background:var(--brand-500); color:#fff; }
.demo-bubble.bot{ border-top-left-radius:4px; background:var(--bg-subtle); border:1px solid var(--border); color:var(--text); }

/* ---------- 14. FAQ accordion ---------- */
.faq-list{ margin-top:40px; border:1px solid var(--border); border-radius:var(--radius-md); background:var(--surface); box-shadow:var(--shadow-sm); overflow:hidden; }
.faq-item{ border-bottom:1px solid var(--border); }
.faq-item:last-child{ border-bottom:none; }
.faq-btn{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 22px; text-align:left; }
.faq-btn span.q{ font-size:15px; font-weight:700; color:var(--text); }
.faq-plus{ flex-shrink:0; color:var(--text-faint); transition:transform .2s ease; }
.faq-btn[aria-expanded="true"] .faq-plus{ transform:rotate(45deg); }
.faq-panel{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s ease; }
.faq-panel.open{ grid-template-rows:1fr; }
.faq-panel-inner{ overflow:hidden; }
.faq-panel p{ padding:0 22px 20px; font-size:14px; line-height:1.65; color:var(--text-muted); }

/* ---------- 15. Final CTA ---------- */
.final-cta{ position:relative; overflow:hidden; background:var(--brand-600); color:#fff; padding:80px 0; }
@media (min-width:640px){ .final-cta{ padding:112px 0; } }
.final-bg{
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(255,255,255,.12), transparent),
    radial-gradient(50% 50% at 5% 100%, rgba(0,0,0,.15), transparent);
}
.final-cta h2{ color:#fff; }
.final-cta p.sub{ margin:16px auto 0; max-width:560px; color:rgba(238,252,245,.9); }
.final-cta .btn-primary{ background:#fff; color:var(--brand-700); margin-top:30px; }
.final-cta .btn-primary:hover{ background:#fff4ec; }
.final-cta .micro{ margin-top:16px; font-size:14px; font-weight:600; color:rgba(238,252,245,.8); }

/* ---------- 16. Footer ---------- */
footer.site{ background:var(--bg); padding:48px 0 100px; }
@media (min-width:640px){ footer.site{ padding:48px 0; } }
.footer-row{ display:flex; flex-direction:column; align-items:center; gap:16px; text-align:center; }
@media (min-width:640px){ .footer-row{ flex-direction:row; align-items:flex-start; justify-content:space-between; text-align:left; } }
.footer-brand{ display:flex; align-items:center; gap:8px; justify-content:center; }
@media (min-width:640px){ .footer-brand{ justify-content:flex-start; } }
.footer-desc{ margin-top:12px; max-width:340px; font-size:14px; line-height:1.6; color:var(--text-faint); }
.footer-links{ display:flex; flex-wrap:wrap; gap:20px; justify-content:center; }
.footer-links a{ font-size:14px; color:var(--text-muted); }
.footer-links a:hover{ color:var(--text); }
.footer-copy{ margin-top:32px; text-align:center; font-size:12px; color:var(--text-faint); }
@media (min-width:640px){ .footer-copy{ text-align:left; } }

/* ---------- 17. Sticky mobile CTA ---------- */
#sticky-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:40;
  padding:12px 16px calc(env(safe-area-inset-bottom,0) + 12px);
  transform:translateY(120%); transition:transform .3s ease;
}
#sticky-cta.show{ transform:translateY(0); }
#sticky-cta .btn{ width:100%; padding:16px; font-size:16px; box-shadow:0 10px 30px -8px rgba(234,88,12,.6); }
@media (min-width:640px){ #sticky-cta{ display:none; } }

/* ---------- 18. Simple content pages (privacy / terms / contact) ---------- */
.legal-content{ padding:56px 0 96px; }
.legal-content h1{ font-size:30px; font-weight:800; color:var(--text); }
.legal-content h2{ font-size:19px; font-weight:800; color:var(--text); margin-top:36px; }
.legal-content p, .legal-content li{ font-size:15px; line-height:1.75; color:var(--text-muted); margin-top:12px; }
.legal-content ul{ padding-left:20px; list-style:disc; }
.legal-content a{ color:var(--brand-600); font-weight:600; }
.legal-updated{ margin-top:8px; font-size:13px; color:var(--text-faint); }
