/* =========================================================
   Sweep It — Landing Page
   Light theme (white / near-black), indigo-violet accent.
   Token-driven — all colors flow through the CSS variables in :root.
   Inter + Geist Mono. No build step. nginx-static friendly.

   Contents:
     1. Design tokens        7. Header
     2. Reset & base         8. Hero (+ floaties + dashboard visual)
     3. Layout utilities     9. Lead CRM visual
     4. Shared typography   10. Trust strip / section shell
     5. Buttons             11. Flow · Features · Comparison
     6. Icons               12. Final CTA · Footer · Reveal · Responsive
   ========================================================= */

/* ============================ 1. TOKENS ============================ */
:root {
  /* surfaces */
  --bg:        #ffffff;
  --bg-soft:   #f7f8fa;
  --surface:   #ffffff;
  --surface-2: #fafbfc;

  /* text */
  --ink:       #111827;            /* headings / strong  (rgb 17,24,39) */
  --ink-80:    rgba(17,24,39,.8);  /* hero subtitle */
  --text:      rgba(17,24,39,.92); /* body */
  --muted:     #4b5563;            /* section leads / body  (rgb 75,85,99) */
  --muted-2:   #8a909b;            /* faint captions inside mockups */
  --faint:     rgba(17,24,39,.6);  /* footer / micro copy */
  --border:    #e7e9ee;
  --border-2:  #dde0e6;

  /* accent */
  --accent:      #5b54e6;
  --accent-weak: #eeedff;
  --accent-ink:  #3f37c9;

  /* buttons */
  --btn-bg:       #111827;
  --btn-fg:       #ffffff;
  --btn-bg-hover: #000000;

  /* chrome */
  --header-bg:   rgba(255,255,255,.78);
  --header-bg-2: rgba(255,255,255,.9);
  --footer-bg:   #ffffff;

  /* hero background + grain */
  --hero-bg:
    radial-gradient(60% 60% at 50% -10%, rgba(91,84,230,.10), transparent 70%),
    linear-gradient(180deg, #fbfbfe, #ffffff 60%);
  --noise-opacity: .022;
  --noise-blend: soft-light;
  --noise-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(16,19,22,.04), 0 2px 8px rgba(16,19,22,.04);
  --shadow-md: 0 4px 14px rgba(16,19,22,.06), 0 14px 40px -16px rgba(16,19,22,.14);
  --shadow-lg: 0 30px 80px -28px rgba(16,19,22,.28), 0 6px 20px rgba(16,19,22,.06);

  /* type + metrics */
  --font:   'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:   'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --maxw:   1160px;
  --radius: 18px;
  --ease:   cubic-bezier(.22, .61, .36, 1);
}

/* ========================= 2. RESET & BASE ========================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
b { font-weight: 600; color: var(--ink); }
em { font-style: normal; color: var(--ink); font-weight: 500; }

/* ====================== 3. LAYOUT UTILITIES ====================== */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===================== 4. SHARED TYPOGRAPHY ===================== */
/* Section title: Inter 500 / 36 / 42 / ink. Lead: Inter 400 / 16 / 24 / muted. */
.section-head { margin: 0 auto 52px; max-width: 720px; }
.section-title {
  font-weight: 500;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.166;
  letter-spacing: -.025em;
  color: var(--ink);
}
.section-lead,
.lead-text {
  color: var(--muted);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.section-lead { margin-top: 16px; }
.lead-text { margin: 20px auto 0; max-width: 60ch; }

.title-accent { display: block; color: var(--accent); }
.dim { display: block; color: var(--muted); }
.accent { color: var(--accent); }
.muted { color: var(--muted-2); }

/* ========================== 5. BUTTONS ========================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 14px; line-height: 20px;
  border: 1px solid transparent; border-radius: 8px;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), background .2s, box-shadow .2s, border-color .2s, color .2s;
}
.btn-sm { padding: 9px 16px; }
.btn-lg { padding: 13px 22px; }
.btn-dark {
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: 0 1px 2px rgba(16,19,22,.18), 0 8px 22px -12px rgba(16,19,22,.5);
}
.btn-dark:hover { transform: translateY(-2px); background: var(--btn-bg-hover); }
.btn-outline { background: var(--surface); color: var(--ink); border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.btn-outline:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--ink) 24%, transparent); }

/* =========================== 6. ICONS =========================== */
/* One reset for every decorative line icon; size is set per context. */
.feat-ico svg, .flow-ico svg, .ev-node svg, .floaty-ico svg, .ic {
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ========================== 7. HEADER ========================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--border); background: var(--header-bg-2); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; height: 66px; }
.brand { font-weight: 700; font-size: 19px; letter-spacing: -.03em; color: var(--ink); justify-self: start; }
.header-nav { display: flex; gap: 30px; justify-self: center; }
.header-cta { display: flex; align-items: center; gap: 20px; justify-self: end; }
.nav-link { color: var(--ink); font-size: 14px; line-height: 20px; font-weight: 500; transition: color .2s; }
.nav-link:hover { color: var(--muted); }

/* =========================== 8. HERO =========================== */
.hero { position: relative; padding: 84px 0 0; text-align: left; }
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 620px;
  background: var(--hero-bg); z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--noise-img); background-size: 180px 180px;
  opacity: var(--noise-opacity); mix-blend-mode: var(--noise-blend);
}
.hero-inner { position: relative; max-width: 1020px; }
.hero-title {
  font-weight: 600;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.083;
  letter-spacing: -.022em;
  color: var(--ink);
  max-width: 18ch;
}
.hero-title .title-accent { color: var(--ink); }   /* hero headline stays one colour */
.hero-sub {
  margin-top: 22px; max-width: 54ch;
  color: var(--ink-80); font-weight: 400; font-size: 16px; line-height: 24px;
}
.hero-sub b { color: var(--ink); font-weight: 600; }
.hero-actions { margin-top: 32px; display: flex; gap: 13px; flex-wrap: wrap; }
.center-actions { justify-content: center; }

/* Hero floating notifications (decorative, half-visible + faded) */
.hero-floaties {
  position: absolute; top: -6px; right: -46px; width: 430px;
  padding: 18px 4px 34px 22px;   /* room for the float travel + card shadows (incl. first card's left shadow) */
  display: flex; flex-direction: column; gap: 15px;
  pointer-events: none; z-index: 1;
  -webkit-mask-image: linear-gradient(to right, #000 58%, transparent 100%);
          mask-image: linear-gradient(to right, #000 58%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.floaty {
  display: flex; align-items: center; gap: 12px; width: 302px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 13px 15px; box-shadow: var(--shadow-md);
  animation: floaty 5.5s ease-in-out infinite;
}
.floaty-a { margin-left: 0; }
.floaty-b { margin-left: 98px; animation-delay: -1.4s; }
.floaty-c { margin-left: 26px; animation-delay: -2.8s; }
.floaty-ico { width: 38px; height: 38px; border-radius: 10px; flex: none; display: flex; align-items: center; justify-content: center; }
.floaty-ico svg { width: 19px; height: 19px; }
.ico-accent { background: var(--accent-weak);   color: var(--accent); }
.ico-green  { background: rgba(22,163,74,.12);  color: #16a34a; }
.ico-blue   { background: rgba(47,107,255,.12); color: #2f6bff; }
.floaty-body { display: flex; flex-direction: column; min-width: 0; }
.floaty-body b { font-size: 13.5px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; white-space: nowrap; }
.floaty-body small { font-size: 12px; color: var(--muted-2); margin-top: 2px; white-space: nowrap; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Product visual — browser frame + recreated dashboard */
.hero-visual-wrap { margin-top: 52px; max-width: 1020px; }
.browser {
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-lg);
}
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.tl { width: 11px; height: 11px; border-radius: 50%; background: #e2e4e9; }
.tl-r { background: #ff5f57; } .tl-y { background: #febc2e; } .tl-g { background: #28c840; }
.browser-url { margin-left: 14px; font-family: var(--mono); font-size: 12px; color: var(--muted-2); }

.dash { display: grid; grid-template-columns: 210px 1fr; min-height: 430px; text-align: left; }
.dash-side { background: var(--surface-2); border-right: 1px solid var(--border); padding: 22px 14px; }
.dash-logo { font-weight: 700; font-size: 15px; letter-spacing: -.03em; padding: 0 8px 18px; color: var(--ink); }
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dn { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 9px; font-size: 13.5px; color: var(--muted); font-weight: 500; }
.dn.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.ic { width: 16px; height: 16px; flex: none; }

.dash-main { padding: 24px 26px; background: var(--surface); }
.dash-toprow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-h { font-weight: 700; font-size: 21px; letter-spacing: -.03em; color: var(--ink); }
.dash-range { font-size: 12.5px; color: var(--muted); border: 1px solid var(--border); border-radius: 9px; padding: 6px 12px; background: var(--surface); }

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.kpi { display: flex; flex-direction: column; gap: 8px; padding: 14px; border: 1px solid var(--border); border-radius: 13px; background: var(--surface); box-shadow: var(--shadow-sm); }
.kpi-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.kpi-val { font-weight: 700; font-size: 26px; line-height: 1; letter-spacing: -.04em; color: var(--ink); }
.kpi-val.accent { color: var(--accent); }
.kpi-delta { font-size: 11px; color: #16a34a; margin-top: -2px; font-weight: 600; }
.kpi-hero { border-color: color-mix(in srgb, var(--accent) 35%, transparent); background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 7%, var(--surface)), var(--surface)); }

.seq-card { padding: 4px 16px; border: 1px solid var(--border); border-radius: 13px; background: var(--surface); box-shadow: var(--shadow-sm); }
.seq-head { font-size: 13px; color: var(--muted); font-weight: 500; padding: 13px 0; border-bottom: 1px solid var(--border); }
.seq-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.seq-row:last-child { border-bottom: none; }
.seq-thumb { width: 32px; height: 42px; border-radius: 6px; flex: none; background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 55%, #000)); }
.seq-thumb-2 { background: linear-gradient(135deg, #f0a8c0, #d65f8e); }
.seq-thumb-3 { background: linear-gradient(135deg, #d7dbe2, #b9bfc9); }
.seq-meta { display: flex; flex-direction: column; margin-right: auto; }
.seq-meta b { font-size: 14px; color: var(--ink); }
.seq-meta small { font-size: 12px; color: var(--muted-2); }
.seq-amt { font-weight: 700; font-size: 15px; letter-spacing: -.03em; color: var(--ink); }

/* ======================= 9. LEAD CRM VISUAL ======================= */
.crm-wrap { max-width: 720px; margin: 0 auto; }
.crm { padding: 22px 24px 24px; background: var(--surface); text-align: left; }
.crm-lead { display: flex; align-items: center; gap: 13px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.crm-av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; color: #fff;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 55%, #000));
}
.crm-meta { display: flex; flex-direction: column; margin-right: auto; }
.crm-meta b { font-size: 15px; color: var(--ink); letter-spacing: -.01em; }
.crm-meta small { font-size: 12.5px; color: var(--muted-2); }
.crm-tags { display: flex; align-items: center; gap: 10px; }
.crm-badge { font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); background: var(--surface-2); }
.crm-rev { font-weight: 700; font-size: 15px; letter-spacing: -.02em; color: var(--ink); }
.crm-won { font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 999px; background: var(--accent); color: #fff; }

.crm-timeline { position: relative; padding-top: 18px; display: flex; flex-direction: column; gap: 18px; }
.crm-timeline::before { content: ""; position: absolute; left: 13px; top: 32px; bottom: 14px; width: 2px; background: var(--border); }
.ev-item { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 13px; }
.ev-node {
  width: 28px; height: 28px; border-radius: 50%; flex: none; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-weak); color: var(--accent);
  box-shadow: 0 0 0 3px var(--surface);   /* punch a gap in the timeline line */
}
.ev-node svg { width: 15px; height: 15px; stroke-width: 1.8; }
.ev-body { display: flex; flex-direction: column; }
.ev-body b { font-size: 14px; font-weight: 500; color: var(--ink); }
.ev-body small { font-size: 12.5px; color: var(--muted); }
.ev-time { font-size: 12.5px; color: var(--muted-2); font-variant-numeric: tabular-nums; }
.ev-time.accent { font-weight: 700; color: var(--accent); }
.ev-win .ev-node { background: var(--accent); color: #fff; }

/* ===================== 10. TRUST + SECTION SHELL ===================== */
.trust { padding: 40px 0 44px; }
.trust-line { text-align: center; font-size: 15px; font-weight: 500; color: var(--muted-2); letter-spacing: -.01em; }

.section { padding: 100px 0; }
.section-soft { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ====================== 11a. ATTRIBUTION FLOW ====================== */
.flow { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; }
.flow-step {
  flex: 1 1 200px; max-width: 250px; text-align: left;
  padding: 24px 22px; border: 1px solid var(--border); border-radius: 15px;
  background: var(--surface); box-shadow: var(--shadow-sm);
  transition: border-color .4s, box-shadow .4s, transform .4s;
}
.flow-step.is-active {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  box-shadow: 0 14px 40px -18px color-mix(in srgb, var(--accent) 60%, transparent);
}
.flow-num { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--muted-2); }
.flow-ico { width: 42px; height: 42px; border-radius: 11px; margin: 12px 0 14px; display: flex; align-items: center; justify-content: center; background: var(--accent-weak); color: var(--accent); }
.flow-ico svg { width: 22px; height: 22px; }
.flow-step.is-active .flow-ico { background: var(--accent); color: #fff; }
.flow-step h4 { font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 6px; }
.flow-step p { font-size: 13.5px; color: var(--muted); }
.flow-arrow { align-self: center; position: relative; flex: none; width: 32px; height: 2px; margin: 0 3px; background: var(--border-2); }
.flow-arrow::after { content: ""; position: absolute; right: -1px; top: -3px; border-left: 7px solid var(--border-2); border-top: 4px solid transparent; border-bottom: 4px solid transparent; }

/* =========================== 11b. PROBLEM =========================== */
.big-line { font-weight: 500; font-size: clamp(26px, 4vw, 36px); line-height: 1.166; letter-spacing: -.025em; color: var(--ink); }

/* =========================== 11c. FEATURES =========================== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature { padding: 28px 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-wide { grid-column: span 2; }
.feat-ico { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; background: var(--accent-weak); color: var(--accent); }
.feat-ico svg { width: 23px; height: 23px; }
.feature h3 { font-size: 18px; font-weight: 700; letter-spacing: -.025em; color: var(--ink); margin-bottom: 9px; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* ========================== 11d. COMPARISON ========================== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 920px; margin: 0 auto; }
.compare-col { padding: 30px 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.compare-us {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 5%, var(--surface)), var(--surface) 60%);
  box-shadow: var(--shadow-md);
}
.compare-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.compare-name { font-weight: 700; font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.compare-tag { font-family: var(--mono); font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg-soft); color: var(--muted); }
.tag-accent { background: var(--accent-weak); color: var(--accent-ink); border-color: transparent; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.compare-list li { position: relative; padding-left: 32px; font-size: 15px; color: var(--ink); }
.compare-list li.no { color: var(--muted); }
.compare-list li::before { position: absolute; left: 0; top: 0; width: 21px; height: 21px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.compare-list li.no::before { content: "✕"; background: color-mix(in srgb, var(--ink) 8%, transparent); color: var(--muted-2); }
.compare-list li.yes::before { content: "✓"; background: var(--accent); color: #fff; }

/* =========================== 12. FINAL CTA =========================== */
.final { position: relative; padding: 120px 0; text-align: center; overflow: hidden; background: var(--bg-soft); border-top: 1px solid var(--border); }
.final::before { content: ""; position: absolute; inset: auto 0 -200px; height: 500px; z-index: 0; background: radial-gradient(50% 60% at 50% 100%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%); }
.final::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: var(--noise-img); background-size: 180px 180px; opacity: var(--noise-opacity); mix-blend-mode: var(--noise-blend); }
.final > .container { position: relative; z-index: 1; }
.final-title { font-weight: 500; font-size: clamp(26px, 4vw, 36px); line-height: 1.166; letter-spacing: -.025em; color: var(--ink); }
.final-title .title-accent { color: var(--accent); }
.final-micro { margin-top: 22px; font-size: 14px; line-height: 18px; font-weight: 400; color: var(--faint); }

/* ============================ FOOTER ============================ */
.site-footer { padding: 46px 0; border-top: 1px solid var(--border); background: var(--footer-bg); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-brand .brand { font-size: 17px; }
.footer-tag { color: var(--faint); font-weight: 400; font-size: 14px; line-height: 18px; }
.footer-meta { display: flex; align-items: center; gap: 24px; }
.footer-copy { color: var(--faint); font-weight: 400; font-size: 14px; line-height: 18px; }

/* ============================ REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ========================== RESPONSIVE ========================== */
@media (max-width: 1080px) {
  .hero-floaties { display: none; }          /* no room beside the text */
}
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-wide { grid-column: span 2; }
}
@media (max-width: 820px) {
  /* nav collapses → switch header to flex so the CTA stays hard right
     (in the 3-col grid it would auto-place into the empty middle column) */
  .header-inner { display: flex; justify-content: space-between; align-items: center; }
  .header-nav { display: none; }
  .section { padding: 78px 0; }
  .compare { grid-template-columns: 1fr; }
  .dash { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .flow { flex-direction: column; align-items: center; }
  .flow-step { width: 100%; max-width: 380px; }
  .flow-arrow { transform: rotate(90deg); margin: 4px 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .hero { padding: 56px 0 0; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .header-cta .nav-app { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: span 1; }
  .feature { padding: 24px 22px; }
  .compare-col { padding: 24px 22px; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .final { padding: 90px 0; }
  .footer-meta { gap: 16px; }
  .crm { padding: 18px 16px 20px; }
  .crm-badge { display: none; }              /* keep the lead header uncluttered */
  .ev-time { font-size: 11.5px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

