:root {
  --bg: #FAFAF7;
  --bg-warm: #F4F2EC;
  --ink: #0A0A0A;
  --ink-2: #2A2A28;
  --muted: #6B6B66;
  --line: #E6E6E1;
  --line-2: #EFEEE9;
  --navy: #0B1B3B;
  --navy-2: #14245A;
  --navy-3: #1E3A8A;
  --navy-tint: #EEF2FB;
  --navy-tint-2: #DCE3F5;
  --green: #16A34A;
  --green-wa: #25D366;
  --amber: #B45309;
  --red: #B91C1C;
  --shadow-sm: 0 1px 2px rgba(11,27,59,0.04);
  --shadow-md: 0 8px 28px -12px rgba(11,27,59,0.18);
  --shadow-lg: 0 24px 60px -24px rgba(11,27,59,0.28);
  --radius: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.serif { font-family: 'Instrument Serif', 'Times New Roman', serif; font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ---- LAYOUT ---- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
section { padding: 120px 0; border-top: 1px solid var(--line-2); }
section:first-of-type { border-top: 0; }

.eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-3); display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--navy-3); }

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(44px, 6.4vw, 76px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 700; }
h2 { font-size: clamp(34px, 3.8vw, 52px); line-height: 1.05; letter-spacing: -0.028em; }
h3 { font-size: 22px; line-height: 1.25; }
p { margin: 0; color: var(--ink-2); }
.lead { font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 64ch; }

/* ---- HEADER ---- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,247,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.02em; font-size: 18px;
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--navy); display: grid; place-items: center;
  overflow: hidden;
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav { display: flex; gap: 4px; }
.nav a {
  padding: 8px 14px; font-size: 14.5px; color: var(--ink-2); border-radius: 999px;
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: rgba(11,27,59,0.05); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px; border-radius: 10px;
  font-size: 14.5px; font-weight: 500; letter-spacing: -0.005em;
  transition: transform .12s ease, box-shadow .15s ease, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 1px 2px rgba(11,27,59,0.25); }
.btn-primary:hover { background: var(--navy-2); box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 20px -8px rgba(11,27,59,0.45); }
.btn-outline { background: #fff; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { color: var(--ink-2); }
.btn-ghost:hover { color: var(--ink); background: rgba(11,27,59,0.04); }
.btn-wa { background: var(--green-wa); color: #fff; }
.btn-wa:hover { background: #1ebe5a; }
.btn-sm { height: 38px; padding: 0 14px; font-size: 13.5px; }
.btn-lg { height: 52px; padding: 0 26px; font-size: 15.5px; border-radius: 12px; }

/* ---- HERO ---- */
.hero {
  position: relative; padding-top: 96px; padding-bottom: 80px; overflow: hidden;
  border-top: 0;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(30,58,138,0.10), transparent 60%),
    radial-gradient(700px 420px at 0% 10%, rgba(30,58,138,0.06), transparent 60%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.hero-copy .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.pill .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
.hero h1 { margin-top: 22px; }
.hero h1 .accent { color: var(--navy); }
.hero h1 .crossed { position: relative; white-space: nowrap; }
.hero h1 .crossed::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 56%; height: 6px;
  background: var(--navy-3); transform: rotate(-2deg); border-radius: 4px; opacity: 0.9;
}
.hero-sub { margin-top: 22px; font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 56ch; }
.hero-ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 28px; display: flex; align-items: center; gap: 18px;
  font-size: 13px; color: var(--muted);
}
.hero-meta-divider { width: 1px; height: 14px; background: var(--line); }

/* ---- DASHBOARD MOCK ---- */
.dash-frame {
  position: relative;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.dash-titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-bottom: 1px solid var(--line-2);
  background: #FCFBF8;
}
.tl-dot { width: 11px; height: 11px; border-radius: 999px; background: #E1E0DA; }
.tl-dot.r { background: #E5B7B0; }
.tl-dot.y { background: #E6CD9A; }
.tl-dot.g { background: #B6D4B7; }
.dash-title { margin-left: 10px; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.dash-search {
  margin-left: auto; display: flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 6px; border: 1px solid var(--line);
  font-size: 11.5px; color: var(--muted); background: #fff;
}
.dash-body { display: grid; grid-template-columns: 180px 1fr; min-height: 440px; }
.dash-side {
  background: #FCFBF8; border-right: 1px solid var(--line-2);
  padding: 16px 10px; display: flex; flex-direction: column; gap: 2px;
}
.dash-side .brand {
  display: flex; align-items: center; gap: 8px; padding: 6px 10px 14px;
  font-weight: 600; font-size: 13px; color: var(--ink);
}
.dash-side .brand .m { width: 18px; height: 18px; border-radius: 5px; background: var(--navy); }
.dash-side .group-label {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 12px 10px 6px;
}
.side-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px; border-radius: 6px;
  font-size: 13px; color: var(--ink-2);
}
.side-item .ic { width: 14px; height: 14px; flex-shrink: 0; color: var(--muted); }
.side-item.active { background: var(--navy-tint); color: var(--navy); font-weight: 500; }
.side-item.active .ic { color: var(--navy); }
.side-item:not(.active):hover { background: rgba(11,27,59,0.04); }

.dash-main { padding: 18px 22px; }
.dash-main-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.dash-h { font-size: 16px; font-weight: 600; }
.dash-h .sub { color: var(--muted); font-weight: 400; margin-left: 8px; font-size: 13px; }
.dash-pills { display: flex; gap: 6px; }
.dash-pills .p { padding: 4px 10px; border-radius: 6px; font-size: 11.5px; border: 1px solid var(--line); color: var(--muted); }
.dash-pills .p.on { background: var(--navy); color: #fff; border-color: var(--navy); }

.kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.kpi {
  border: 1px solid var(--line-2); border-radius: 10px;
  padding: 14px; background: #fff;
}
.kpi .label {
  font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 6px;
}
.kpi .label .swatch { width: 6px; height: 6px; border-radius: 2px; background: var(--navy); }
.kpi .v { margin-top: 6px; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.kpi .delta { margin-top: 2px; font-size: 11.5px; color: var(--green); display: flex; align-items: center; gap: 4px; }
.kpi .delta.down { color: var(--amber); }

.dash-chart {
  margin-top: 14px; border: 1px solid var(--line-2); border-radius: 10px;
  padding: 14px 14px 8px; background: #fff;
}
.dash-chart .head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.dash-chart .head .t { font-size: 12.5px; font-weight: 600; }
.dash-chart .head .legend { font-size: 11px; color: var(--muted); }
.bars { display: flex; gap: 6px; align-items: flex-end; height: 80px; }
.bar { flex: 1; background: var(--navy-tint-2); border-radius: 4px 4px 0 0; position: relative; }
.bar > i {
  position: absolute; left: 0; right: 0; bottom: 0; background: var(--navy);
  border-radius: 4px 4px 0 0;
}
.bar-label { font-size: 9.5px; color: var(--muted); text-align: center; margin-top: 4px; }

/* trust bar */
.trust {
  margin-top: 64px; padding: 18px 24px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 24px;
  font-size: 13px; color: var(--ink-2);
}
.trust .tdot { width: 4px; height: 4px; border-radius: 999px; background: var(--line); }
.trust .item { display: inline-flex; align-items: center; gap: 8px; }
.trust .item .ico { color: var(--navy); }

/* ---- SECTION COMMON ---- */
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
.section-head .lead { justify-self: end; }
.section-head h2 .accent { color: var(--navy); font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; letter-spacing: -0.01em; }
.section-head.center { display: block; text-align: center; }
.section-head.center .lead { margin: 16px auto 0; }

/* ---- PROBLEM CARDS ---- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px; position: relative; overflow: hidden;
}
.problem-card .num {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 38px; color: var(--navy-3); line-height: 1; margin-bottom: 18px;
}
.problem-card h3 { font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.problem-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.problem-card .strike {
  margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line);
  font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 8px;
}
.problem-card .strike .x { color: var(--red); }

/* ---- FLOW ---- */
.flow-block { margin-bottom: 32px; }
.flow-block:last-child { margin-bottom: 0; }
.flow-label {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 14px;
}
.flow {
  display: flex; align-items: stretch; gap: 0; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 14px;
}
.flow-step {
  flex: 1 1 0; min-width: 130px;
  padding: 14px 12px; border-radius: 10px;
  background: #FCFBF8; border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.flow-step + .flow-step { margin-left: 8px; }
.flow-step .n {
  font-size: 10.5px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
}
.flow-step .name { font-size: 14px; font-weight: 500; color: var(--ink); }
.flow-arrow {
  align-self: center; width: 14px; flex-shrink: 0; color: var(--navy-3);
}

/* ---- FEATURES ---- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: default;
}
.feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d8d8d2; }
.feat .ic-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy-tint); color: var(--navy);
  display: grid; place-items: center; margin-bottom: 18px;
}
.feat h3 { font-size: 18px; margin-bottom: 8px; }
.feat p { font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.feat .tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.feat .tag {
  font-size: 11.5px; padding: 3px 8px; border-radius: 999px;
  background: #FCFBF8; border: 1px solid var(--line-2); color: var(--ink-2);
}

/* ---- COMPARE TABLE ---- */
.compare-wrap { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.compare {
  width: 100%; border-collapse: collapse; font-size: 14.5px;
}
.compare thead th {
  text-align: left; font-weight: 500; padding: 22px 20px; font-size: 13px; color: var(--muted);
  background: #FCFBF8; border-bottom: 1px solid var(--line);
}
.compare thead th.shikhar {
  background: var(--navy); color: #fff;
  font-weight: 600; font-size: 14px;
}
.compare thead th.shikhar .b {
  display: inline-block; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.14); padding: 3px 8px; border-radius: 999px; margin-left: 8px;
  font-weight: 500;
}
.compare tbody td { padding: 18px 20px; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td.feature { font-weight: 500; color: var(--ink); }
.compare td.shikhar { background: var(--navy-tint); color: var(--navy); font-weight: 600; }
.compare td.shikhar .ic { color: var(--navy); }
.cell {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px;
}
.cell .yes { color: var(--green); }
.cell .no { color: var(--red); opacity: 0.75; }
.cell .partial { color: var(--amber); }
.cell.muted { color: var(--muted); }

.compare-tag {
  margin-top: 24px; text-align: center; font-size: 14px; color: var(--muted);
}
.compare-tag b { color: var(--ink); font-weight: 500; }

/* ---- DIFFERENTIATORS ---- */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diff {
  background: var(--navy); color: #fff;
  border-radius: 18px; padding: 36px;
  position: relative; overflow: hidden;
  min-height: 320px;
  display: flex; flex-direction: column;
}
.diff.alt { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.diff.alt h3 { color: var(--ink); }
.diff.alt p { color: var(--muted); }
.diff .ic-big {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(255,255,255,0.10); display: grid; place-items: center;
  margin-bottom: 24px; color: #fff;
}
.diff.alt .ic-big { background: var(--navy-tint); color: var(--navy); }
.diff .eyebrow-w { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; margin-bottom: 12px; }
.diff.alt .eyebrow-w { color: var(--navy-3); opacity: 1; }
.diff h3 { font-size: 24px; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.02em; color: #fff; font-weight: 600; }
.diff p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.78); }
.diff .pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
}

/* ---- SOCIAL / TESTIMONIAL ---- */
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 56px; position: relative;
}
.testi .quote-mark {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 88px; line-height: 0.9; color: var(--navy-3);
  position: absolute; top: 28px; left: 32px; opacity: 0.18;
}
.testi blockquote {
  margin: 0; font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px); line-height: 1.35; color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 30ch;
}
.testi .who {
  margin-top: 28px; display: flex; align-items: center; gap: 14px;
  font-size: 14px;
}
.testi .who .avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-weight: 600; font-size: 14px;
}
.testi .who .name { font-weight: 600; color: var(--ink); }
.testi .who .role { color: var(--muted); font-size: 13px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 28px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.stat { padding: 32px; border-right: 1px solid var(--line-2); }
.stat:last-child { border-right: 0; }
.stat .v { font-size: 40px; font-weight: 600; letter-spacing: -0.03em; color: var(--navy); line-height: 1; }
.stat .v .small { font-size: 22px; font-weight: 500; color: var(--ink-2); margin-left: 2px; }
.stat .l { margin-top: 10px; font-size: 14px; font-weight: 500; color: var(--ink); }
.stat .d { margin-top: 4px; font-size: 13px; color: var(--muted); }

/* ---- PRICING ---- */
.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 40px; position: relative; box-shadow: var(--shadow-md);
}
.price-card .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy-tint); color: var(--navy);
  padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
}
.price-card h3 { font-size: 26px; margin-top: 16px; letter-spacing: -0.02em; }
.price-card .price-line { margin-top: 8px; color: var(--muted); font-size: 14.5px; }
.price-list { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 10px; padding: 0; list-style: none; }
.price-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink-2); }
.price-list li .ic { color: var(--navy); margin-top: 3px; flex-shrink: 0; }
.price-card .fine { margin-top: 14px; font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ---- FINAL CTA ---- */
.final {
  background: var(--navy); color: #fff; border-radius: 24px;
  padding: 72px 56px; text-align: center; position: relative; overflow: hidden;
}
.final h2 { color: #fff; }
.final h2 .accent { color: #aebbe6; font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; }
.final p { color: rgba(255,255,255,0.78); margin-top: 14px; font-size: 17px; max-width: 60ch; margin-left: auto; margin-right: auto; }
.final .ctas { margin-top: 36px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.final .btn-primary { background: #fff; color: var(--navy); }
.final .btn-primary:hover { background: #eef0f6; }
.final .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
.final .btn-outline:hover { background: rgba(255,255,255,0.08); color: #fff; }
.final-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.10;
}

/* ---- FOOTER ---- */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--line); background: var(--bg); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 40px; align-items: center;
  padding-bottom: 32px; border-bottom: 1px solid var(--line-2);
}
.footer-tag { color: var(--muted); font-size: 13.5px; margin-top: 6px; }
.footer-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-nav a { font-size: 14px; color: var(--ink-2); padding: 6px 12px; border-radius: 999px; }
.footer-nav a:hover { background: rgba(11,27,59,0.05); color: var(--ink); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-2);
  transition: color .15s, border-color .15s;
}
.footer-social a:hover { color: var(--navy); border-color: var(--navy); }
.footer-bottom {
  margin-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px;
}
.footer-bottom .made { display: inline-flex; align-items: center; gap: 6px; }

/* ---- FLOATING WHATSAPP ---- */
.fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--green-wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.12);
  transition: transform .15s ease, box-shadow .2s;
}
.fab:hover { transform: scale(1.06); }
.fab::before {
  content: ""; position: absolute; inset: -6px; border-radius: 999px;
  background: rgba(37,211,102,0.35); animation: pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---- DEMO MODAL ---- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100; background: rgba(11,27,59,0.45);
  backdrop-filter: blur(4px); display: grid; place-items: center; padding: 24px;
  animation: fadeIn .18s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; border-radius: 18px; max-width: 520px; width: 100%;
  padding: 36px; box-shadow: var(--shadow-lg); position: relative;
  animation: pop .22s ease;
}
@keyframes pop { from { transform: translateY(8px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal .close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  border-radius: 8px; display: grid; place-items: center; color: var(--muted);
}
.modal .close:hover { background: rgba(11,27,59,0.05); color: var(--ink); }
.modal h3 { font-size: 22px; letter-spacing: -0.02em; }
.modal .sub { color: var(--muted); margin-top: 4px; font-size: 14px; }
.field { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 500; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 14.5px; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 10px; background: #FCFBF8;
  color: var(--ink); outline: none; transition: border-color .15s, background .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy); background: #fff;
  box-shadow: 0 0 0 3px rgba(11,27,59,0.08);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal .submit { width: 100%; margin-top: 22px; height: 48px; }
.modal .success {
  text-align: center; padding: 20px 0 4px;
}
.modal .success .check {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 999px;
  background: var(--navy-tint); color: var(--navy); display: grid; place-items: center;
}

/* ---- FAQ ---- */
.faq { max-width: 800px; margin: 0 auto; border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%; text-align: left; padding: 22px 28px;
  font-size: 16.5px; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer; background: none; border: none; font-family: inherit;
  transition: color .15s, background .15s;
}
.faq-q:hover { color: var(--navy); background: var(--navy-tint); }
.faq-q svg { flex-shrink: 0; color: var(--navy-3); transition: transform .22s ease; }
.faq-item.open > .faq-q { color: var(--navy); }
.faq-item.open > .faq-q svg { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 28px 22px;
  font-size: 15px; color: var(--muted); line-height: 1.68; max-width: 70ch;
}
.faq-item.open > .faq-a { display: block; }

/* ---- RESPONSIVE ---- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-head .lead { justify-self: start; }
  .problem-grid, .features, .diff-grid { grid-template-columns: 1fr; }
  .price-wrap { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .stat:last-child { border-bottom: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .nav { display: none; }
  section { padding: 80px 0; }
  .hero { padding-top: 56px; padding-bottom: 60px; }
  .testi { padding: 40px 28px; }
  .final { padding: 56px 28px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .compare thead th, .compare tbody td { padding: 14px 12px; font-size: 13px; }
  .flow { flex-direction: column; }
  .flow-step + .flow-step { margin-left: 0; margin-top: 8px; }
  .flow-arrow { transform: rotate(90deg); margin: 4px auto; }
  .hero-meta { display: none; }
  .modal { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; }
}
