/* ════════════════════════════════════════════════════════════
   ToolMateAI — Landing Page styles  ·  LIGHT + ORANGE theme
   Variable names from the old dark theme are kept (e.g. --teal),
   but remapped to the coral-orange palette so every var(--teal)
   reference flips automatically.
   ════════════════════════════════════════════════════════════ */

:root {
  /* Brand accent — coral orange (BLG-style) */
  --teal:        #F25533;
  --teal-2:      #FA5C12;
  --teal-dark:   #d8431f;
  --teal-soft:   #fff1ec;
  --teal-border: #ffd4c6;
  --teal-glow:   rgba(242,85,51,0.18);
  --accent:      #F25533;          /* used by inline styles in index.html */

  /* Surfaces — light */
  --dark:        #ffffff;          /* page background */
  --dark-2:      #ffffff;          /* card surface */
  --dark-3:      #faf8f7;
  --dark-line:   rgba(15,16,20,0.045);
  --dark-border: #e8e6e3;          /* light hairline border */

  /* Foreground (now dark text on light) */
  --on-dark:        #0d0f14;
  --on-dark-muted:  #5b6573;
  --on-dark-subtle: #7c8694;
  --on-dark-faint:  #9aa1ad;

  /* Light fg (inside white cards) */
  --text:   #0d0f14;
  --text-2: #5b6573;
  --text-3: #6b7480;
  --text-4: #9aa1ad;

  --border:    #e8e6e3;
  --border-2:  #f0eeeb;
  --card:      #ffffff;
  --bg-soft:   #faf8f7;
  --cta:       #0f0a0a;            /* black primary button */

  --radius:    10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 26px;

  --grid-size: 38px;

  --shadow-card:  0 18px 40px -24px rgba(15,16,20,0.30), 0 6px 16px -10px rgba(15,16,20,0.12);
  --shadow-float: 0 50px 100px -40px rgba(15,16,20,0.40), 0 20px 50px -30px rgba(242,85,51,0.16);

  --maxw: 1180px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
html, body { width:100%; }
body {
  font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,sans-serif;
  background:var(--dark);
  color:var(--on-dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img { max-width:100%; display:block; }
a { color:inherit; }

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

/* ─── Shared bits ─────────────────────────────────────────── */
.wrap { max-width:var(--maxw); margin:0 auto; padding:0 32px; }
@media (max-width:700px){ .wrap { padding:0 26px; } }
@media (max-width:400px){ .wrap { padding:0 22px; } }

.eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--teal-soft);
  border:1px solid var(--teal-border);
  border-radius:24px;
  padding:6px 14px 6px 12px;
  font-size:11px; font-weight:700;
  color:var(--teal);
  letter-spacing:0.12em;
  text-transform:uppercase;
  white-space:nowrap;
}
.eyebrow-dot {
  width:7px; height:7px; border-radius:50%;
  background:var(--teal);
  box-shadow:0 0 0 3px var(--teal-glow);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow:0 0 0 3px var(--teal-glow); }
  50%     { box-shadow:0 0 0 6px rgba(242,85,51,0.05); }
}

.section-head { max-width:660px; margin:0 auto; text-align:center; }
.section-title {
  font-family:'Raleway',sans-serif;
  font-weight:800; letter-spacing:-0.03em;
  font-size:clamp(28px, 4.2vw, 44px);
  line-height:1.08;
  color:var(--text);
  margin:18px 0 14px;
  text-wrap:balance;
}
.section-title .accent { color:var(--teal); }
.section-sub {
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:clamp(15px,1.6vw,17.5px);
  color:var(--text-2);
  line-height:1.6;
  text-wrap:pretty;
}

/* Buttons */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:inherit; font-weight:600; cursor:pointer;
  border-radius:12px; border:1px solid transparent;
  transition:transform .18s, box-shadow .18s, background .18s, border-color .18s, color .18s;
  text-decoration:none; white-space:nowrap;
  letter-spacing:-0.005em;
}
.btn svg { width:16px; height:16px; }
.btn-primary {
  background:var(--cta); color:#fff;
  box-shadow:0 8px 20px -8px rgba(15,10,10,0.5);
  padding:15px 28px; font-size:15px;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 16px 30px -10px rgba(15,10,10,0.55); }
.btn-ghost {
  background:#fff;
  border-color:var(--border);
  color:var(--text);
  padding:15px 24px; font-size:15px;
}
.btn-ghost:hover { background:var(--bg-soft); border-color:#d9d6d2; transform:translateY(-2px); }
.btn-sm { padding:10px 18px; font-size:13.5px; border-radius:10px; }

/* ════════════════════════════════════════════════════════════
   PAGE CANVAS — warm light wash
   ════════════════════════════════════════════════════════════ */
.page {
  position:relative;
  background:
    radial-gradient(ellipse 70% 50% at 80% -5%, rgba(250,92,18,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(242,85,51,0.05) 0%, transparent 60%),
    #ffffff;
  overflow:hidden;
}
.page::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(var(--dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-line) 1px, transparent 1px);
  background-size:var(--grid-size) var(--grid-size);
  mask-image:radial-gradient(ellipse 100% 55% at 50% 6%, black 18%, transparent 78%);
  opacity:0.7;
  pointer-events:none;
}
.page > * { position:relative; z-index:1; }

/* ════════════════════════════════════════════════════════════
   TOPBAR
   ════════════════════════════════════════════════════════════ */
.topbar {
  position:sticky; top:0; z-index:50;
  transition:background .25s, border-color .25s, backdrop-filter .25s;
  border-bottom:1px solid transparent;
}
.topbar.scrolled {
  background:rgba(255,255,255,0.82);
  border-bottom-color:var(--border);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
}
.topbar-inner {
  height:70px;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
}
.logo {
  font-family:'Raleway',sans-serif;
  font-size:19px; font-weight:800;
  color:var(--text); letter-spacing:-0.02em;
  display:inline-flex; align-items:center; gap:10px;
  text-decoration:none; flex-shrink:0;
}
.logo-mark {
  width:32px; height:32px; border-radius:9px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.30) 0%, transparent 55%),
    linear-gradient(135deg, var(--teal-2) 0%, var(--teal) 55%, var(--teal-dark) 100%);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 12px rgba(242,85,51,0.35), inset 0 1px 0 rgba(255,255,255,0.30);
  position:relative; flex-shrink:0;
}
.logo-mark svg { width:18px; height:18px; color:#fff; }
.logo-mark::after { display:none; }
.logo .ai { color:var(--teal); }

.nav { display:flex; align-items:center; gap:4px; }
.nav a {
  font-size:13.5px; font-weight:500; color:var(--text-2);
  padding:8px 13px; border-radius:8px; text-decoration:none;
  transition:color .15s, background .15s;
}
.nav a:hover { color:var(--text); background:var(--bg-soft); }
.topbar-right { display:flex; align-items:center; gap:4px; flex-shrink:0; }
.topbar-right .nav { margin-right:12px; }
.topbar-login {
  font-size:13.5px; font-weight:600; color:var(--text-2);
  padding:9px 14px; border-radius:9px; text-decoration:none;
  transition:color .15s, background .15s;
}
.topbar-login:hover { color:var(--text); background:var(--bg-soft); }
/* Hamburger (mobile only) */
.nav-toggle {
  display:none; align-items:center; justify-content:center;
  width:40px; height:40px; flex-shrink:0; margin-left:2px;
  background:#fff; border:1px solid var(--border); border-radius:10px;
  color:var(--text); cursor:pointer; transition:background .15s, border-color .15s;
}
.nav-toggle:hover { background:var(--bg-soft); border-color:#d9d6d2; }
.nav-toggle svg { width:20px; height:20px; }
.nav-toggle .ico-close { display:none; }
.nav-toggle[aria-expanded="true"] .ico-open { display:none; }
.nav-toggle[aria-expanded="true"] .ico-close { display:block; }

/* Mobile dropdown menu */
.mobile-menu {
  display:flex; flex-direction:column; gap:2px;
  padding:12px 22px 18px;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid var(--border);
  box-shadow:0 18px 30px -22px rgba(15,16,20,0.4);
}
.mobile-menu[hidden] { display:none; }
.mobile-menu a {
  font-size:15px; font-weight:600; color:var(--text-2);
  padding:12px 6px; border-radius:8px; text-decoration:none;
}
.mobile-menu a:hover { color:var(--text); background:var(--bg-soft); }
.mobile-menu .mm-divider { height:1px; background:var(--border); margin:8px 0; }
.mobile-menu .mm-login { color:var(--text); }
.mobile-menu .mm-cta { margin-top:8px; padding:14px 20px; font-size:15px; justify-content:center; }

@media (max-width:880px){
  .nav { display:none; }
  .topbar-login { display:none; }
  .nav-toggle { display:inline-flex; }
}
@media (min-width:881px){ .mobile-menu { display:none !important; } }
@media (max-width:380px){
  .topbar-right .btn-primary.btn-sm { display:none; }  /* CTA lives in the menu on tiny screens */
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero { padding:72px 0 30px; text-align:center; }
.hero-inner { max-width:880px; margin:0 auto; }
.hero h1 {
  font-family:'Raleway',sans-serif;
  font-weight:800; letter-spacing:-0.03em;
  font-size:clamp(38px, 6.2vw, 64px);
  line-height:1.04;
  color:var(--text);
  margin:22px 0 20px;
  text-wrap:balance;
}
.hero h1 .accent { color:var(--teal); }
.hero-sub {
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:clamp(16px,1.9vw,19px);
  color:var(--text-2);
  line-height:1.55;
  max-width:620px; margin:0 auto 30px;
  text-wrap:pretty;
}
.hero-cta { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; }
.hero-trust {
  display:flex; align-items:center; justify-content:center; gap:18px;
  margin-top:24px; flex-wrap:wrap;
  font-size:13px; color:var(--text-3);
}
.hero-trust span { display:inline-flex; align-items:center; gap:7px; }
.hero-trust svg { width:15px; height:15px; color:var(--teal); }
.hero-trust .sep { width:1px; height:14px; border-radius:0; background:var(--border); }

/* Hero product shot */
.hero-shot { margin:52px auto 0; max-width:960px; position:relative; }
.hero-shot::after {
  content:''; position:absolute; left:50%; top:18%; transform:translateX(-50%);
  width:80%; height:62%;
  background:radial-gradient(ellipse at center, rgba(250,92,18,0.14) 0%, transparent 70%);
  filter:blur(50px); z-index:-1; pointer-events:none;
}
.hero-shot .browser {
  box-shadow:var(--shadow-float);
}

/* Focused product panels (feature rows) */
.ui-panel{
  max-width:600px; margin:0 auto;
  border-radius:16px; overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-card);
}
.ui-panel img{display:block; width:100%; height:auto;}

/* Browser frame */
.browser {
  border-radius:var(--radius-xl);
  background:#ffffff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-float);
  overflow:hidden;
}
.browser-bar {
  height:44px; display:flex; align-items:center; gap:8px;
  padding:0 16px;
  background:var(--bg-soft);
  border-bottom:1px solid var(--border);
}
.browser-dots { display:flex; gap:7px; }
.browser-dots i { width:11px; height:11px; border-radius:50%; display:block; background:#e2ded9; }
.browser-url {
  flex:1; max-width:420px; margin:0 auto;
  height:27px; border-radius:7px;
  background:#fff;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; gap:7px;
  font-size:11.5px; color:var(--text-3);
}
.browser-url svg { width:12px; height:12px; color:var(--teal); }
.browser-shot { display:block; width:100%; }

/* logo strip */
.trustbar { padding:48px 0 8px; }
.trustbar-label {
  text-align:center; font-size:11.5px; font-weight:600;
  letter-spacing:0.16em; text-transform:uppercase;
  color:var(--text-4); margin-bottom:22px;
}
.trustbar-row {
  display:flex; align-items:center; justify-content:center;
  gap:44px; flex-wrap:wrap;
}
.trustbar-row .tb {
  font-family:'Raleway',sans-serif;
  font-weight:700; font-size:17px;
  color:#7c8694; letter-spacing:-0.01em;
  display:inline-flex; align-items:center; gap:8px;
}
.trustbar-row .tb svg { width:18px; height:18px; color:var(--teal); }

/* ════════════════════════════════════════════════════════════
   SECTIONS general
   ════════════════════════════════════════════════════════════ */
.section { padding:84px 0; }
@media (max-width:700px){ .section { padding:60px 0; } }

/* ── PROBLEM ── */
.problem-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
  margin-top:48px;
}
@media (max-width:820px){ .problem-grid { grid-template-columns:1fr; } }
.problem-card {
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px 26px;
  text-align:left;
}
.problem-card .pc-icon {
  width:46px; height:46px; border-radius:12px;
  background:var(--teal-soft);
  border:1px solid var(--teal-border);
  display:flex; align-items:center; justify-content:center;
  color:var(--teal); margin-bottom:18px;
}
.problem-card .pc-icon svg { width:22px; height:22px; }
.problem-card h3 {
  font-family:'Raleway',sans-serif; font-size:19px; font-weight:700;
  color:var(--text); letter-spacing:-0.015em; margin-bottom:9px;
}
.problem-card p { font-size:14.5px; line-height:1.6; color:var(--text-2); }

/* ── TOOLS / FEATURE ROWS (centered, no mockups) ── */
#tools .section-head { margin-bottom:20px; }
.feature {
  max-width:880px; margin:0 auto; padding:92px 0;
  text-align:center;
  border-bottom:1px solid var(--border-2);
}
.feature:first-of-type { padding-top:52px; }
.feature:last-of-type { border-bottom:none; }
.feature-copy { display:flex; flex-direction:column; align-items:center; }
.feature-tag {
  display:inline-flex; align-items:center; gap:9px;
  font-size:11.5px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--teal); margin-bottom:22px; justify-content:center;
}
.feature-tag .ft-mark {
  width:30px; height:30px; border-radius:8px;
  background:var(--teal-soft); border:1px solid var(--teal-border);
  display:flex; align-items:center; justify-content:center;
}
.feature-tag .ft-mark svg { width:16px; height:16px; }
.feature h2 {
  font-family:'Raleway',sans-serif;
  font-size:clamp(26px,3.4vw,38px); font-weight:800;
  letter-spacing:-0.03em; line-height:1.08; color:var(--text);
  margin-bottom:16px; text-wrap:balance;
}
.feature h2 .accent { color:var(--teal); }
.feature h2 { font-size:clamp(28px,3.6vw,40px); margin-bottom:22px; }
.feature .feature-lead {
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:17px; line-height:1.65; color:var(--text-2);
  margin-bottom:38px; text-wrap:pretty;
  max-width:640px;
}
.feature-list {
  display:flex; flex-direction:column; gap:20px; margin-bottom:40px;
  text-align:left; max-width:520px; margin-left:auto; margin-right:auto;
}
.feature-list li { font-size:15px; align-items:center; }
.feature-list li {
  display:flex; gap:12px; align-items:flex-start;
  font-size:14.5px; line-height:1.5; color:var(--text-2);
  list-style:none;
}
.feature-list li strong { color:var(--text); font-weight:600; }
.feature-list .li-check {
  width:22px; height:22px; flex-shrink:0; border-radius:7px;
  background:var(--teal-soft); border:1px solid var(--teal-border);
  display:flex; align-items:center; justify-content:center;
  color:var(--teal); margin-top:1px;
}
.feature-list .li-check svg { width:13px; height:13px; }
.feature-link {
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:600; color:var(--teal);
  text-decoration:none;
}
.feature-link svg { width:15px; height:15px; transition:transform .15s; }
.feature-link:hover svg { transform:translateX(4px); }

.feature-media { position:relative; }
.feature-media .browser { transition:transform .3s, box-shadow .3s; }
.feature-media .browser.app-shot {
  border:1px solid var(--border);
  box-shadow:var(--shadow-float);
}
.feature-media .browser.app-shot .browser-bar {
  height:44px;
  background:var(--bg-soft);
  border-bottom:1px solid var(--border);
}
.feature-media .browser.app-shot .browser-url {
  background:#fff;
  border-color:var(--border);
  color:var(--text-3);
}
.feature-media .browser.app-shot .browser-shot {
  width:100%; height:auto; display:block;
}
@media (prefers-reduced-motion:no-preference){
  .feature-media:hover .browser.app-shot { transform:translateY(-5px); box-shadow:0 60px 110px -40px rgba(15,16,20,0.42), 0 22px 50px -30px rgba(242,85,51,0.18); }
}
.feature-media::after {
  content:''; position:absolute; inset:2% 4%;
  background:radial-gradient(ellipse at center, rgba(250,92,18,0.10) 0%, transparent 70%);
  filter:blur(58px); z-index:-1;
}

/* ── HOW IT WORKS (tinted band) ── */
.band-light {
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(250,92,18,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #faf8f7 0%, #f4f1ee 100%);
  color:var(--text);
  position:relative;
  border-top:1px solid var(--border-2);
  border-bottom:1px solid var(--border-2);
}
.band-light .section-title { color:var(--text); }
.band-light .section-sub { color:var(--text-2); }
.steps {
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
  margin-top:52px; position:relative;
}
@media (max-width:820px){ .steps { grid-template-columns:1fr; } }
.step {
  background:#fff; border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:30px 28px;
  box-shadow:0 10px 30px -20px rgba(15,16,20,0.18);
  position:relative;
}
.step-num {
  font-family:'Raleway',sans-serif;
  font-size:13px; font-weight:800; letter-spacing:0.02em;
  width:34px; height:34px; border-radius:10px;
  background:var(--teal-soft); color:var(--teal);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.step h3 {
  font-family:'Raleway',sans-serif; font-size:18px; font-weight:700;
  color:var(--text); letter-spacing:-0.015em; margin-bottom:9px;
}
.step p { font-size:14px; line-height:1.55; color:var(--text-2); }
.step .step-meta {
  margin-top:16px; padding-top:14px; border-top:1px dashed var(--border);
  display:inline-flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:600; color:var(--teal);
}
.step .step-meta svg { width:14px; height:14px; }

/* ── STATS BAND ── */
.stats {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  overflow:hidden;
  margin-top:8px;
  box-shadow:var(--shadow-card);
}
@media (max-width:760px){ .stats { grid-template-columns:repeat(2,1fr); } }
.stat {
  background:#fff;
  padding:38px 26px; text-align:center;
}
.stat-num {
  font-family:'Raleway',sans-serif;
  font-size:clamp(34px,4.6vw,48px); font-weight:800;
  letter-spacing:-0.035em; color:var(--text); line-height:1;
  font-variant-numeric:tabular-nums;
}
.stat-num .unit { color:var(--teal); font-size:0.5em; font-weight:800; margin-left:2px; }
.stat-label { font-size:13px; color:var(--text-2); margin-top:10px; line-height:1.4; }
.stats-note { text-align:center; max-width:680px; margin:18px auto 0; font-size:12px; line-height:1.5; color:var(--text-4); }

/* ── FINAL OUTPUT (deliverable docs) ── */
.output-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  margin-top:48px;
}
@media (max-width:860px){ .output-grid { grid-template-columns:1fr; max-width:420px; margin-left:auto; margin-right:auto; } }
.output-card {
  display:flex; flex-direction:column;
  background:#fff; border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden;
  text-decoration:none; color:var(--text);
  box-shadow:var(--shadow-card);
}
.output-paper {
  height:360px; padding:22px 22px 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--teal-soft) 0%, transparent 70%),
    linear-gradient(180deg, #f6f3f0 0%, #efeae6 100%);
  display:flex; align-items:flex-start; justify-content:center;
  overflow:hidden;
}
.output-paper img {
  max-width:100%; max-height:100%;
  width:auto; height:auto;
  border-radius:4px 4px 0 0;
  border:1px solid var(--border);
  border-bottom:none;
  box-shadow:0 18px 40px -18px rgba(15,16,20,0.45), 0 4px 12px -6px rgba(15,16,20,0.18);
  transition:transform .35s cubic-bezier(.2,.7,.2,1);
}
@media (prefers-reduced-motion:no-preference){
  .output-card:hover .output-paper img { transform:translateY(-8px) scale(1.015); }
}
.output-foot {
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:16px 20px; border-top:1px solid var(--border-2);
}
.output-tag {
  font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--teal); margin-bottom:3px;
}
.output-foot h3 {
  font-family:'Raleway',sans-serif; font-size:17px; font-weight:700;
  color:var(--text); letter-spacing:-0.015em;
}
.output-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:700; color:var(--teal); white-space:nowrap;
}
.output-link svg { width:14px; height:14px; transition:transform .15s; }
.output-card:hover .output-link svg { transform:translateX(3px); }
@media (max-width:768px){ .output-paper { height:320px; } }

/* ── ASSURANCE / TESTIMONIAL CARD ── */
.quote-card {
  max-width:860px; margin:48px auto 0;
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:var(--radius-2xl);
  padding:48px 50px;
  text-align:center; position:relative;
  overflow:hidden;
}
.quote-card::before {
  content:'"'; position:absolute; top:-10px; left:30px;
  font-family:'Raleway',sans-serif; font-size:160px; line-height:1;
  color:var(--teal); opacity:0.14;
}
.quote-card .stars { display:flex; justify-content:center; gap:3px; margin-bottom:20px; }
.quote-card .stars svg { width:18px; height:18px; color:var(--teal); }
.quote-text {
  font-family:'Raleway',sans-serif;
  font-size:clamp(20px,2.6vw,28px); font-weight:600;
  line-height:1.4; letter-spacing:-0.02em; color:var(--text);
  text-wrap:balance; margin-bottom:28px;
}
.quote-author { display:flex; align-items:center; justify-content:center; gap:14px; }
.quote-avatar {
  width:48px; height:48px; border-radius:50%;
  background:linear-gradient(135deg, var(--teal-2), var(--teal-dark));
  display:flex; align-items:center; justify-content:center;
  font-family:'Raleway',sans-serif; font-weight:700; font-size:16px; color:#fff;
  flex-shrink:0;
}
.quote-meta { text-align:left; }
.quote-name { font-weight:700; font-size:15px; color:var(--text); }
.quote-role { font-size:13px; color:var(--text-3); margin-top:2px; }

/* ── PRICING ── */
.billing-toggle-wrap {
  display:flex; align-items:center; justify-content:center; gap:14px;
  margin:32px 0 44px;
}
.toggle-label { font-size:14px; font-weight:600; color:var(--text-3); cursor:pointer; user-select:none; transition:color .15s; }
.toggle-label.active { color:var(--text); }
.toggle-switch {
  position:relative; width:48px; height:26px; border-radius:24px;
  background:#e4e1dd; cursor:pointer; transition:background .2s; flex-shrink:0;
}
.toggle-switch::after {
  content:''; position:absolute; top:3px; left:3px;
  width:20px; height:20px; border-radius:50%; background:#fff;
  box-shadow:0 2px 4px rgba(0,0,0,0.25); transition:transform .2s;
}
.toggle-switch.on { background:var(--teal); }
.toggle-switch.on::after { transform:translateX(22px); }
.save-pill {
  background:var(--teal-soft); color:var(--teal);
  font-size:11.5px; font-weight:700; letter-spacing:0.04em;
  padding:4px 11px; border-radius:20px; border:1px solid var(--teal-border);
}

.tier-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; max-width:1020px; margin:0 auto; align-items:stretch; }
@media (max-width:860px){ .tier-grid { grid-template-columns:1fr; max-width:440px; } }
.tier {
  background:#fff; border:1.5px solid var(--border);
  border-radius:var(--radius-xl); padding:30px 28px;
  display:flex; flex-direction:column; color:var(--text);
  box-shadow:var(--shadow-card); position:relative;
  transition:transform .2s, box-shadow .2s;
}
.tier:hover { transform:translateY(-4px); }
.tier.featured {
  border-color:var(--teal);
  background:#fff;
  box-shadow:0 34px 64px -30px rgba(242,85,51,0.40), 0 10px 26px -12px rgba(242,85,51,0.18);
  transform:translateY(-8px);
}
.tier.featured:hover { transform:translateY(-12px); }
.tier-badge {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:var(--teal); color:#fff;
  font-size:10.5px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  padding:5px 14px; border-radius:20px;
  box-shadow:0 6px 14px rgba(242,85,51,0.42); white-space:nowrap;
}
.tier-badge.muted { background:#f1efec; color:var(--text-3); box-shadow:none; }
.tier-name { font-family:'Raleway',sans-serif; font-size:18px; font-weight:700; color:var(--text); letter-spacing:-0.015em; }
.tier-tagline { font-size:13px; color:var(--text-3); line-height:1.45; margin:6px 0 18px; min-height:36px; }
.tier-price-row { display:flex; align-items:baseline; gap:5px; }
.tier-price { font-family:'Raleway',sans-serif; font-size:46px; font-weight:800; color:var(--text); letter-spacing:-0.035em; line-height:1; font-variant-numeric:tabular-nums; }
.tier-period { font-size:14px; font-weight:500; color:var(--text-4); }
.tier-strike { font-size:12px; color:var(--text-4); margin-top:8px; min-height:18px; }
.tier-strike .save { color:var(--teal); font-weight:600; }
.tier-feats { display:flex; flex-direction:column; gap:11px; margin:22px 0; padding-top:20px; border-top:1px dashed var(--border); }
.tier-feat { display:flex; gap:10px; align-items:flex-start; font-size:13.5px; color:var(--text-2); line-height:1.45; }
.tier-feat svg { width:15px; height:15px; flex-shrink:0; color:var(--teal); margin-top:2px; }
.tier-feat strong { color:var(--text); font-weight:600; }
.tier-cta {
  margin-top:auto; width:100%; padding:13px 16px; border-radius:10px;
  font-family:inherit; font-size:14px; font-weight:700; cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:8px;
  text-decoration:none; transition:all .15s;
  border:1.5px solid var(--border); background:#fff; color:var(--text);
}
.tier-cta svg { width:14px; height:14px; }
.tier:not(.featured) .tier-cta:hover { border-color:var(--teal); color:var(--teal); }
.tier.featured .tier-cta { background:var(--teal); border-color:var(--teal); color:#fff; box-shadow:0 8px 20px rgba(242,85,51,0.38); }
.tier.featured .tier-cta:hover { background:var(--teal-dark); }
.pricing-foot {
  text-align:center; margin-top:32px;
  font-size:13.5px; color:var(--text-3);
  display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap;
}
.pricing-foot span { display:inline-flex; align-items:center; gap:7px; }
.pricing-foot svg { width:14px; height:14px; color:var(--teal); }

/* ── FAQ ── */
.faq-list { max-width:760px; margin:48px auto 0; display:flex; flex-direction:column; gap:12px; }
.faq-item {
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:border-color .2s, background .2s;
}
.faq-item.open { border-color:var(--teal-border); background:var(--teal-soft); }
.faq-q {
  width:100%; text-align:left; cursor:pointer;
  background:none; border:none; color:var(--text); font-family:inherit;
  font-size:15.5px; font-weight:600; letter-spacing:-0.01em;
  padding:20px 22px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.faq-icon {
  width:24px; height:24px; flex-shrink:0; border-radius:7px;
  background:#fff; border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
  transition:transform .25s, background .2s; color:var(--text-2);
}
.faq-icon svg { width:14px; height:14px; }
.faq-item.open .faq-icon { transform:rotate(45deg); background:var(--teal); border-color:var(--teal); color:#fff; }
.faq-a {
  max-height:0; overflow:hidden;
  transition:max-height .3s ease, padding .3s ease;
  padding:0 22px;
}
.faq-item.open .faq-a { max-height:240px; padding:0 22px 22px; }
.faq-a p { font-size:14.5px; line-height:1.6; color:var(--text-2); }

/* ── FINAL CTA ── */
.final-cta {
  max-width:980px; margin:0 auto;
  background:
    radial-gradient(ellipse 70% 120% at 80% 0%, rgba(250,92,18,0.16) 0%, transparent 60%),
    linear-gradient(135deg, #fff7f4 0%, #ffeee7 100%);
  border:1px solid var(--teal-border);
  border-radius:var(--radius-2xl);
  padding:64px 48px; text-align:center;
  position:relative; overflow:hidden;
}
.final-cta::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(var(--dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-line) 1px, transparent 1px);
  background-size:var(--grid-size) var(--grid-size);
  mask-image:radial-gradient(ellipse 70% 80% at 50% 30%, black 10%, transparent 75%);
  opacity:0.6; pointer-events:none;
}
.final-cta > * { position:relative; z-index:1; }
.final-cta h2 {
  font-family:'Raleway',sans-serif;
  font-size:clamp(30px,4.4vw,46px); font-weight:800;
  letter-spacing:-0.035em; line-height:1.05; color:var(--text);
  margin-bottom:16px; text-wrap:balance;
}
.final-cta h2 .accent { color:var(--teal); }
.final-cta p {
  font-family:'Plus Jakarta Sans',sans-serif; font-size:17px; color:var(--text-2);
  max-width:520px; margin:0 auto 30px; line-height:1.55;
}

/* ── FOOTER ── */
.footer {
  border-top:1px solid var(--border);
  padding-top:56px;
  padding-bottom:40px;
}
.footer-top {
  display:grid; grid-template-columns:1.6fr repeat(3, 1fr); gap:40px;
  margin-bottom:44px;
}
@media (max-width:820px){ .footer-top { grid-template-columns:1fr 1fr; gap:32px; } }
@media (max-width:480px){ .footer-top { grid-template-columns:1fr; } }
.footer-brand .logo { margin-bottom:16px; }
.footer-blurb { font-size:13.5px; line-height:1.6; color:var(--text-3); max-width:280px; }
.footer-col h4 {
  font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--text-4); margin-bottom:16px;
}
.footer-col a {
  display:block; font-size:14px; color:var(--text-2);
  text-decoration:none; padding:5px 0; transition:color .15s;
}
.footer-col a:hover { color:var(--teal); }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  flex-wrap:wrap; padding-top:28px; border-top:1px solid var(--border);
  font-size:12.5px; color:var(--text-4);
}
.footer-bottom .fb-links { display:flex; gap:22px; flex-wrap:wrap; }
.footer-bottom a { color:var(--text-3); text-decoration:none; transition:color .15s; }
.footer-bottom a:hover { color:var(--teal); }

/* ── reveal on scroll ── */
/* JS-gated: hidden ONLY when the .js class is present (set in <head>).
   If JS never runs, content stays fully visible — no blank hero. */
.js .reveal { opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .js .reveal { opacity:1 !important; transform:none !important; transition:none !important; transition-delay:0s !important; }
  html { scroll-behavior:auto; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE — 768px and below
   ════════════════════════════════════════════════════════════ */
.feature,
.feature-media,
#tools { overflow:hidden; }

@media (max-width:768px){
  /* ── Topbar ── */
  .topbar-inner { height:58px; }
  .btn-sm { padding:9px 14px; font-size:13px; }

  /* ── Hero ── */
  .hero { padding:44px 0 20px; }
  .hero-sub { font-size:16px; }
  .hero-cta { gap:10px; }
  .hero-cta .btn { padding:13px 20px; font-size:14px; }
  .hero-trust { gap:10px; font-size:12px; }
  .hero-trust .sep { display:none; }
  .hero-shot { margin-top:32px; }

  /* ── Trustbar ── */
  .trustbar { padding:32px 0 4px; }
  .trustbar-label { margin-bottom:20px; }
  .trustbar-row {
    display:grid;
    grid-template-columns:repeat(2, max-content);
    justify-content:center;
    gap:18px 30px;
  }
  .trustbar-row .tb { font-size:15px; }

  /* ── Center body text on mobile ── */
  .section-head { text-align:center; }
  .section-sub { font-size:15px; line-height:1.62; max-width:330px; margin-left:auto; margin-right:auto; }
  .problem-card { text-align:center; }
  .problem-card .pc-icon { margin-left:auto; margin-right:auto; }

  /* ── Feature rows ── */
  .feature {
    grid-template-columns:1fr !important;
    gap:30px;
    padding:38px 0;
    text-align:center;
  }
  .feature.flip .feature-copy,
  .feature.flip .feature-media { order:initial !important; }
  .feature h2 { font-size:clamp(24px,6vw,32px); margin-bottom:14px; }
  .feature .feature-lead { font-size:15px; line-height:1.62; margin-bottom:22px; max-width:340px; margin-left:auto; margin-right:auto; }
  .feature-tag { justify-content:center; }
  .feature-list { text-align:left; gap:14px; margin-bottom:24px; max-width:340px; margin-left:auto; margin-right:auto; }
  .feature-link { justify-content:center; }

  /* ── Stats ── */
  .stat { padding:26px 16px; }

  /* ── Assurance card ── */
  .quote-card { padding:32px 22px; margin-top:32px; }
  .quote-card::before { font-size:100px; top:-5px; left:16px; }
  .quote-text { font-size:clamp(17px,4.5vw,22px); }
  .quote-author { flex-direction:column; gap:10px; text-align:center; }
  .quote-meta { text-align:center; }

  /* ── Pricing ── */
  .tier.featured { transform:none; }
  .tier.featured:hover { transform:translateY(-4px); }
  .tier-grid { max-width:100%; }

  /* ── Final CTA ── */
  .final-cta { padding:44px 24px; border-radius:var(--radius-xl); margin:0 16px; }
  .final-cta h2 { font-size:clamp(26px,6vw,36px); }
  .final-cta p { font-size:15px; }

  /* ── Footer ── */
  .footer { padding-top:40px; padding-bottom:28px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:24px; }
  .footer-blurb { max-width:100%; }
  .footer-bottom { flex-direction:column; align-items:flex-start; gap:10px; }

  /* ── FAQ ── */
  .faq-q { font-size:14.5px; padding:16px 18px; }
  .faq-a { padding:0 18px; }
  .faq-item.open .faq-a { padding:0 18px 18px; }
}

@media (max-width:480px){
  .footer-top { grid-template-columns:1fr; }
  .footer-brand { grid-column:1; }
}

/* ════════════════════════════════════════════════════════════
   VERY SMALL — 380px
   ════════════════════════════════════════════════════════════ */
@media (max-width:380px){
  .hero h1 { font-size:34px; }
  .hero-cta { flex-direction:column; align-items:stretch; }
  .hero-cta .btn { text-align:center; justify-content:center; }
  .btn-sm { padding:8px 12px; font-size:12.5px; }
  .logo span:last-child { font-size:16px; }
  .quote-card { padding:28px 18px; }
  .final-cta { padding:36px 18px; }
  .stat { padding:22px 12px; }
  .trustbar-row { gap:10px 20px; }
}

/* ════════════════════════════════════════════════════════════
   MOTION LAYER (marketing-only animation primitives)
   transform/opacity only · reduced-motion honoured · no layout shift
   ════════════════════════════════════════════════════════════ */

/* ── hover lift (feature / how-it-works cards) ── */
.lift { transition:transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s; will-change:transform; }
.lift:hover {
  transform:translateY(-6px);
  border-color:var(--teal-border);
  box-shadow:var(--shadow-card);
}
@media (hover:none){ .lift:hover { transform:none; box-shadow:none; } }

/* ── count-up: keep digit width stable so counting never reflows ── */
.stat-num { font-variant-numeric:tabular-nums; }

/* ── logo / tool marquee (CSS-driven; JS only builds the track DOM) ── */
.marquee {
  position:relative; overflow:hidden; width:100%;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display:flex; width:max-content; animation:tb-marquee 34s linear infinite; }
.marquee-half  { display:flex; align-items:center; gap:44px; flex:0 0 auto; padding-right:44px; }
.marquee:hover .marquee-track { animation-play-state:paused; }
@keyframes tb-marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){
  .marquee { -webkit-mask-image:none; mask-image:none; }
  .marquee-track { animation:none; }
}
