/* ============================================================
   DSMS — Indian-pride premium landing page
   Palette: deep emerald + warm saffron on cream paper
   Type: Bricolage Grotesque (display) + Hanken Grotesk (body)
   ============================================================ */

:root {
  /* surfaces */
  --paper:        #F4F7F5;
  --paper-2:      #ECF1EE;
  --surface:      #FFFFFF;
  --ink:          #14201A;
  --ink-soft:     #33433A;
  --muted:        #5F6F68;
  --line:         #E2E9E4;
  --line-strong:  #CFDAD3;

  /* brand */
  --green:        #0F5C3D;
  --green-600:    #0C4E33;
  --green-deep:   #093421;
  --green-tint:   #E7F0E9;
  --saffron:      #E07A1F;
  --saffron-600:  #C7691A;
  --saffron-tint: #FBEAD7;
  --gold:         #C99A2E;

  /* type */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(20,35,28,.05), 0 2px 8px rgba(20,35,28,.04);
  --shadow:    0 4px 14px rgba(20,35,28,.07), 0 14px 40px rgba(20,35,28,.06);
  --shadow-lg: 0 10px 30px rgba(9,52,33,.12), 0 30px 70px rgba(9,52,33,.10);

  --container: 1180px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* ambient premium background: soft mesh glows + fading dot grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(48% 38% at 84% 8%, rgba(224,122,31,.10), transparent 62%),
    radial-gradient(50% 40% at 8% 4%, rgba(15,92,61,.10), transparent 60%),
    radial-gradient(60% 50% at 50% 108%, rgba(15,92,61,.08), transparent 60%),
    linear-gradient(180deg, #F7FAF8 0%, var(--paper) 46%, #EEF3F0 100%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(rgba(15,92,61,.05) 1.1px, transparent 1.2px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%);
  opacity: .6;
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(64px, 9vw, 132px) 0; }
.section--tight { padding: clamp(48px, 6vw, 88px) 0; }
.section--alt {
  position: relative;
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(255,255,255,.7), transparent 70%),
    linear-gradient(180deg, rgba(15,92,61,.035), rgba(15,92,61,.015));
  border-block: 1px solid rgba(15,92,61,.06);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  margin-top: 16px;
}
.section-head p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  margin-top: 16px;
  max-width: 56ch;
}
.section-head.center p { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .lucide { width: 19px; height: 19px; }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(15,92,61,.28);
}
.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15,92,61,.34);
}
.btn-saffron {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 6px 18px rgba(224,122,31,.3);
}
.btn-saffron:hover {
  background: var(--saffron-600);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(224,122,31,.36);
}
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.btn-wa { background:#1FAD53; color:#fff; box-shadow:0 6px 18px rgba(31,173,83,.28); }
.btn-wa:hover { background:#178f43; transform: translateY(-2px); }

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #1FAD53;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31,173,83,.4);
  z-index: 80;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.whatsapp-float:hover { background: #178f43; transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 30px rgba(31,173,83,.46); }
.whatsapp-float .lucide { width: 28px; height: 28px; }
@media (max-width: 640px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float .lucide { width: 25px; height: 25px; }
}

.btn-lg { padding: 19px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.nav.scrolled {
  border-color: var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--green);
  color: #fff;
  border-radius: 11px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.brand-mark .lucide { width: 21px; height: 21px; }
.brand span b { color: var(--saffron); font-weight: 700; }
.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.brand-word { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; }
.brand-tag {
  font-family: var(--body);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--muted);
  text-transform: none;
  white-space: nowrap;
}
@media (max-width: 420px) { .brand-tag { display: none; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.nav-links a { transition: color .15s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 12px 20px; font-size: 15px; }
.nav-owner-login { font-weight: 600; font-size: 15px; color: var(--ink-soft); white-space: nowrap; transition: color .15s ease; }
.nav-owner-login:hover { color: var(--green); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle .lucide { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 74px 0 auto 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 18px var(--gutter) 26px;
  box-shadow: var(--shadow);
  z-index: 55;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-weight: 600; font-size: 18px;
  padding: 13px 6px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 14px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(46px, 7vw, 92px) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero::before {
  /* warm radial glow */
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  background:
    radial-gradient(60% 70% at 78% 18%, rgba(224,122,31,.16), transparent 60%),
    radial-gradient(55% 70% at 15% 0%, rgba(15,92,61,.12), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 8px 15px 8px 11px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
}
.badge .flag {
  width: 22px; height: 16px; border-radius: 3px; overflow: hidden;
  display: inline-grid; grid-template-rows: 1fr 1fr 1fr;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.badge .flag i { display: block; }
.badge .flag i:nth-child(1){ background:#FF9933; }
.badge .flag i:nth-child(2){ 
  background:#fff; 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge .flag i:nth-child(2)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 0.5px solid #000080;
}
.badge .flag i:nth-child(3){ background:#138808; }

.hero h1 {
  font-size: clamp(38px, 6vw, 70px);
  margin-top: 22px;
}
.hero h1 .accent { color: var(--green); position: relative; }
.hero h1 .accent::after {
  content:"";
  position:absolute; left:0; right:0; bottom:.04em; height:.14em;
  background: var(--saffron);
  opacity:.32; border-radius: 4px;
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--ink-soft);
  max-width: 36ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .lucide { width: 18px; height: 18px; color: var(--green); }

/* phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 300px;
  aspect-ratio: 300 / 612;
  background: #0c1512;
  border-radius: 42px;
  padding: 11px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.phone::before {
  content:"";
  position:absolute; top:14px; left:50%; transform:translateX(-50%);
  width: 92px; height: 22px; background:#0c1512; border-radius: 0 0 14px 14px; z-index:3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 32px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.app-top {
  background: var(--green);
  color: #fff;
  padding: 30px 18px 18px;
}
.app-top .app-row { display:flex; align-items:center; justify-content:space-between; }
.app-top .ico { width:26px; height:26px; display:grid; place-items:center; background:rgba(255,255,255,.15); border-radius:8px; }
.app-top .ico .lucide { width:16px; height:16px; }
.app-greet { font-size: 12px; opacity:.8; margin-top: 14px; }
.app-school { font-family: var(--display); font-weight:700; font-size: 18px; margin-top:2px; }
.app-body { padding: 16px 16px 18px; display:flex; flex-direction:column; gap:12px; flex:1; }
.app-stats { display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.app-stat { background: var(--surface); border:1px solid var(--line); border-radius:14px; padding:12px; }
.app-stat .n { font-family:var(--display); font-weight:700; font-size:20px; color:var(--ink); }
.app-stat .l { font-size:10.5px; color:var(--muted); margin-top:2px; }
.app-stat.acc { background: var(--saffron-tint); border-color:#f2d9bd; }
.app-stat.acc .n { color: var(--saffron-600); }
.app-scan {
  background: var(--green-deep); color:#fff; border-radius:16px; padding:14px;
  display:flex; align-items:center; gap:12px;
}
.app-scan .face { width:42px; height:42px; border-radius:12px; background:rgba(255,255,255,.12); display:grid; place-items:center; }
.app-scan .face .lucide { width:24px; height:24px; }
.app-scan .t { font-size:12px; opacity:.78; }
.app-scan .h { font-family:var(--display); font-weight:700; font-size:15px; }
.app-list { background: var(--surface); border:1px solid var(--line); border-radius:16px; padding:6px 12px; }
.app-li { display:flex; align-items:center; gap:10px; padding:9px 0; border-bottom:1px solid var(--line); }
.app-li:last-child { border-bottom:0; }
.app-li .av { width:28px; height:28px; border-radius:50%; background:var(--green-tint); color:var(--green); display:grid; place-items:center; font-weight:700; font-size:12px; font-family:var(--display); }
.app-li .nm { font-size:12px; font-weight:600; }
.app-li .pg { margin-left:auto; font-size:10px; font-weight:700; color:var(--green); background:var(--green-tint); padding:3px 8px; border-radius:999px; }
.app-li .pg.due { color:var(--saffron-600); background:var(--saffron-tint); }

/* floating chips behind/around phone */
.float-chip {
  position: absolute;
  z-index: 3;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 11px 14px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 13.5px;
}
.float-chip .ic { width: 32px; height: 32px; border-radius: 9px; display:grid; place-items:center; }
.float-chip .ic .lucide { width: 18px; height: 18px; }
.float-chip small { display:block; font-weight:600; font-size:11px; color:var(--muted); }
.float-chip.fc1 { top: 18%; left: -6%; }
.float-chip.fc2 { bottom: 14%; right: -8%; }
.fc1 .ic { background: var(--green-tint); color: var(--green); }
.fc2 .ic { background: var(--saffron-tint); color: var(--saffron-600); }

/* ---------- stats bar ---------- */
.stats {
  background: var(--green-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::after {
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1.4px, transparent 1.6px);
  background-size: 26px 26px;
  opacity:.5;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat-item { padding: 12px 20px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.14); }
.stat-item .n {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 58px);
  color: #fff;
  letter-spacing: -0.03em;
}
.stat-item .n em { color: var(--saffron); font-style: normal; }
.stat-item .l { color: rgba(255,255,255,.72); font-weight: 600; font-size: 15px; margin-top: 4px; }

/* ---------- cards (generic) ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.feat-ic {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--green-tint);
  color: var(--green);
  margin-bottom: 16px;
}
.feat-ic .lucide { width: 25px; height: 25px; }
.card h4 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; line-height: 1.55; }

/* ---------- personas ---------- */
.persona { margin-bottom: clamp(40px, 6vw, 72px); }
.persona:last-child { margin-bottom: 0; }
.persona-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.persona:nth-child(2) .persona-head { border-left-color: var(--saffron); }
.persona:nth-child(3) .persona-head { border-left-color: var(--gold); }
.persona-badge {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--green-tint); color: var(--green);
}
.persona:nth-child(2) .persona-badge { background: var(--saffron-tint); color: var(--saffron-600); }
.persona:nth-child(3) .persona-badge { background: #f6efd6; color: var(--gold); }
.persona-badge .lucide { width: 30px; height: 30px; }
.persona-head .role { font-weight: 700; font-size: 13px; letter-spacing:.1em; text-transform: uppercase; color: var(--muted); }
.persona-head h3 { font-size: clamp(22px, 3vw, 30px); margin-top: 4px; }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ---------- features grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ---------- pricing ---------- */
.offer-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 34px;
  padding: 16px 24px;
  background: var(--saffron-tint);
  border: 1px solid #f0d3b2;
  border-radius: 999px;
  color: var(--saffron-600);
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
}
.offer-banner strong { color: #9a4e10; }
.offer-banner .lucide { width: 22px; height: 22px; flex: none; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pricing-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pricing-grid--4 .plan { padding: 30px 24px; }
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.featured {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
  box-shadow: var(--shadow-lg);
}
.plan.featured:hover { transform: translateY(-4px); }
/* uniform badge slot on every card so all rows align */
.plan-ribbon { height: 30px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.plan-ribbon .tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--saffron); color: #fff;
  font-weight: 700; font-size: 12.5px; letter-spacing: .06em;
  padding: 7px 16px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(224,122,31,.35);
  white-space: nowrap;
}
.plan-tag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--saffron); color: #fff;
  font-weight: 700; font-size: 12.5px; letter-spacing: .06em;
  padding: 7px 16px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(224,122,31,.35);
  white-space: nowrap;
}
.plan-name { font-family: var(--display); font-weight: 700; font-size: 20px; }
.plan.featured .plan-name { color: #fff; }
.plan-old { font-size: 18px; font-weight: 700; color: var(--muted); text-decoration: line-through; text-decoration-color: var(--saffron); margin-top: 12px; }
.plan-old--light { color: rgba(255,255,255,.55); text-decoration-color: var(--saffron); }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.plan-price .amt { font-family: var(--display); font-weight: 700; font-size: 46px; letter-spacing: -0.03em; }
.plan-price .per { color: var(--muted); font-weight: 600; font-size: 15px; }
.plan.featured .plan-price .per { color: rgba(255,255,255,.7); }
.plan-meta { color: var(--muted); font-weight: 600; font-size: 14px; margin-top: 4px; }
.plan.featured .plan-meta { color: rgba(255,255,255,.72); }
.plan-save {
  align-self: flex-start;
  margin-top: 14px;
  background: var(--green-tint); color: var(--green);
  font-weight: 700; font-size: 13px; letter-spacing: .02em;
  padding: 6px 14px; border-radius: 999px;
}
.plan-save--light { background: var(--saffron); color: #fff; }
.plan-feats { margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; font-weight: 500; }
.plan-feats .lucide { width: 19px; height: 19px; color: var(--green); flex: none; margin-top: 2px; }
.plan.featured .plan-feats .lucide { color: var(--saffron); }
.pricing-note {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.pricing-note .lucide { width: 20px; height: 20px; color: #1FAD53; }

/* ---------- reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.stars { display: flex; gap: 3px; color: var(--saffron); margin-bottom: 14px; }
.stars .lucide { width: 18px; height: 18px; fill: currentColor; }
.review-quote { font-size: 17px; line-height: 1.55; color: var(--ink-soft); flex: 1; }
.review-who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-av { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 18px; }
.review-who .nm { font-weight: 700; font-size: 15.5px; }
.review-who .sc { color: var(--muted); font-size: 13.5px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  background: none; border: 0; cursor: pointer;
  text-align: left;
  font-family: var(--display);
  font-weight: 600; font-size: clamp(16px, 2vw, 19px);
  color: var(--ink);
  padding: 22px 24px;
}
.faq-q .plus {
  margin-left: auto; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  display: grid; place-items: center;
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-q .plus .lucide { width: 18px; height: 18px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* ---------- final CTA ---------- */
.cta-final { position: relative; }
.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 76px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-card::after {
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(50% 80% at 85% 10%, rgba(224,122,31,.4), transparent 55%),
    radial-gradient(40% 70% at 10% 100%, rgba(255,255,255,.12), transparent 60%);
  pointer-events:none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(30px, 4.6vw, 52px); }
.cta-card p { margin: 18px auto 0; max-width: 52ch; color: rgba(255,255,255,.85); font-size: clamp(17px,1.8vw,20px); }
.cta-card .hero-cta { justify-content: center; margin-top: 32px; }
.cta-card .btn-ghost { background: transparent; color:#fff; border-color: rgba(255,255,255,.5); }
.cta-card .btn-ghost:hover { background: rgba(255,255,255,.12); border-color:#fff; color:#fff; }

/* ---------- footer ---------- */
.footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.7);
  padding: clamp(56px, 7vw, 84px) 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer .brand { color: #fff; }
.footer .brand-mark { background: rgba(255,255,255,.14); }
.footer-about { margin-top: 16px; font-size: 15px; line-height: 1.6; max-width: 34ch; }
.footer-wa { margin-top: 20px; }
.footer h5 { color: #fff; font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: .04em; margin-bottom: 16px; }
.footer-col a { display: block; padding: 7px 0; font-size: 15px; color: rgba(255,255,255,.7); transition: color .15s ease; }
.footer-col a:hover { color: var(--saffron); }
.footer-bottom { padding-top: 26px; text-align: center; font-size: 14px; color: rgba(255,255,255,.55); }
.footer-bottom .heart { color: var(--saffron); }

/* ============================================================
   Animated face-scan (inside phone)
   ============================================================ */
.scanner {
  background: var(--green-deep);
  border-radius: 16px;
  padding: 14px;
  color: #fff;
}
.scan-stage {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 2px auto 0;
}
.scan-face {
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.55);
  overflow: hidden;
}
.scan-face .lucide { width: 46px; height: 46px; }
.rc {
  position: absolute;
  width: 16px; height: 16px;
  border: 2.5px solid var(--saffron);
  z-index: 3;
}
.rc.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-radius: 5px 0 0 0; }
.rc.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-radius: 0 5px 0 0; }
.rc.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-radius: 0 0 0 5px; }
.rc.br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-radius: 0 0 5px 0; }
.beam {
  position: absolute;
  left: 6px; right: 6px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  box-shadow: 0 0 12px 2px rgba(224,122,31,.7);
  z-index: 4;
  top: 8%;
}
.scan-done {
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  background: var(--green);
  display: grid;
  place-items: center;
  z-index: 5;
  opacity: 0;
}
.scan-done .lucide { width: 40px; height: 40px; color: #fff; stroke-width: 3; }
.scan-cap { position: relative; text-align: center; margin-top: 12px; height: 16px; }
.cap-scan, .cap-done {
  position: absolute; left: 0; right: 0;
  font-size: 12px; font-weight: 700;
}
.cap-scan { color: rgba(255,255,255,.85); }
.cap-done { color: var(--saffron); opacity: 0; }

@media (prefers-reduced-motion: no-preference) {
  .beam   { animation: beamMove 1.1s ease-in-out infinite alternate, phaseScan 4.6s ease-in-out infinite; }
  .rc     { animation: phaseScan 4.6s ease-in-out infinite; }
  .scan-done { animation: phaseDone 4.6s ease-in-out infinite; }
  .cap-scan  { animation: phaseScan 4.6s ease-in-out infinite; }
  .cap-done  { animation: phaseDoneText 4.6s ease-in-out infinite; }
}
@keyframes beamMove { from { top: 6%; } to { top: 84%; } }
@keyframes phaseScan { 0%,50% { opacity: 1; } 56%,100% { opacity: 0; } }
@keyframes phaseDone {
  0%,50% { opacity: 0; transform: scale(.5); }
  60%,92% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.5); }
}
@keyframes phaseDoneText { 0%,52% { opacity: 0; } 60%,92% { opacity: 1; } 100% { opacity: 0; } }

/* ============================================================
   Driving-car road band
   ============================================================ */
.road-band { background: var(--paper); padding: 30px 0 6px; }
.road {
  position: relative;
  height: 44px;
  background: linear-gradient(180deg, #243630, #1a2722);
  border-radius: 8px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,.35), var(--shadow-sm);
  overflow: hidden;
}
.road-dash {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 4px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, var(--gold) 0 26px, transparent 26px 54px);
  opacity: .85;
}
.car {
  position: absolute;
  top: 50%;
  left: -9%;
  transform: translateY(-58%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  color: var(--saffron);
  z-index: 2;
}
.car .lucide { width: 50px; height: 50px; filter: drop-shadow(0 5px 5px rgba(0,0,0,.35)); }
@media (prefers-reduced-motion: no-preference) {
  .road-dash { animation: roadMove 1s linear infinite; }
  .car { animation: drive 5.5s cubic-bezier(.37,0,.63,1) infinite; }
}
@media (prefers-reduced-motion: reduce) {
  .car { left: 46%; }
}
@keyframes roadMove { to { background-position-x: -80px; } }
@keyframes drive { 0% { left: -9%; } 100% { left: 105%; } }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   App showcase ("See DSMS in action")
   ============================================================ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: end;
  max-width: 1000px;
  margin-inline: auto;
}
.show-col { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.show-col.mid { transform: translateY(-26px); }
.show-phone {
  position: relative;
  width: 100%;
  max-width: 290px;
  background: linear-gradient(150deg,#10182B,#060B16);
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(9,52,33,.16), 0 10px 26px rgba(0,0,0,.12);
}
.show-phone::before {
  content: "";
  position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 20px; background: #05080F; border-radius: 0 0 13px 13px; z-index: 3;
}
.show-phone image-slot {
  width: 100%; aspect-ratio: 304 / 624; border-radius: 31px; overflow: hidden; display: block;
}
.show-screen {
  width: 100%; height: auto; border-radius: 31px; display: block; background: #fff;
}
.show-cap {
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}
.show-cap small {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 3px;
}

/* review avatar image slots */
.review-av-slot {
  width: 44px; height: 44px; flex: none; border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 3px var(--line);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .float-chip.fc1 { left: 2%; }
  .float-chip.fc2 { right: 2%; }
  .persona-grid, .features-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 760px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; justify-items: center; }
  .show-col.mid { transform: none; }
  .show-phone { max-width: 270px; }
}

@media (max-width: 860px) {
  .pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero-cta .btn { flex: 1 1 auto; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .persona-grid, .features-grid, .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid--4 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .persona-head { grid-template-columns: 1fr; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .phone { width: 264px; }
  .float-chip { display: none; }
}
