:root {
  --bg: #0a0a0f;
  --bg-2: #0b0b12;
  --card: rgba(255, 255, 255, 0.06);
  --card-2: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.10);
  --border-2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.62);
  --muted-2: rgba(255, 255, 255, 0.42);
  --primary: #7c3aed;
  --primary-2: #6366f1;
  --cyan: #06b6d4;
  --amber: #f59e0b;
  --mint: #34d399;
  --rose: #fb7185;

  --r-16: 16px;
  --r-20: 20px;
  --r-24: 24px;

  --s-4: 4px;
  --s-8: 8px;
  --s-10: 10px;
  --s-12: 12px;
  --s-16: 16px;
  --s-20: 20px;
  --s-24: 24px;
  --s-32: 32px;
  --s-40: 40px;
  --s-48: 48px;
  --s-56: 56px;
  --s-64: 64px;
  --s-80: 80px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #07070c;
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1024' height='1024'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='1024' height='1024' filter='url(%23n)' opacity='.30'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: soft-light;
  background-size: 980px 980px;
  filter: blur(0.55px) contrast(112%);
  transform: scale(1.08);
  transform-origin: center;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(1400px 900px at 50% -10%, rgba(0,0,0,0.00), rgba(7,7,12,0.58) 70%),
    radial-gradient(1200px 800px at 50% 112%, rgba(0,0,0,0.00), rgba(7,7,12,0.62) 72%);
  opacity: 0.6;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  color: white;
}
.skip-link:focus { left: 12px; z-index: 200; }

.bg-aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(900px 700px at 14% 18%, rgba(124,58,237,0.28), transparent 65%),
    radial-gradient(800px 650px at 86% 14%, rgba(6,182,212,0.22), transparent 65%),
    radial-gradient(700px 560px at 50% 58%, rgba(99,102,241,0.13), transparent 65%),
    radial-gradient(600px 500px at 18% 84%, rgba(245,158,11,0.08), transparent 65%),
    radial-gradient(700px 550px at 80% 78%, rgba(124,58,237,0.10), transparent 65%),
    conic-gradient(from 180deg at 50% 50%,
      rgba(99,102,241,0.07),
      rgba(124,58,237,0.07),
      rgba(6,182,212,0.06),
      rgba(245,158,11,0.04),
      rgba(99,102,241,0.07)
    );
  filter: blur(80px);
  opacity: 1;
  transform: translate3d(0,0,0);
}

main { position: relative; z-index: 1; }

.container {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.section { padding: 60px 0; }
.section--tight { padding: var(--s-64) 0; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(28px) saturate(200%);
  background: rgba(7,7,12,0.72);
  border-bottom: none;
  box-shadow: 0 14px 46px rgba(0,0,0,0.18);
}
/* Gradient top accent line — fades in on scroll */
.nav::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(99,102,241,0.8) 25%,
    rgba(6,182,212,0.7) 75%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nav.is-scrolled::before { opacity: 1; }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-16);
  padding: 12px 0;
}

/* Pill nav container */
.nav__links { display: none; gap: 3px; }
.nav__pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px;
}
.nav__link {
  font-size: 13.5px;
  padding: 7px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,0.60);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__link:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
}
.nav__link.is-active {
  background: rgba(255,255,255,0.10);
  color: white;
}

.nav__actions { display: flex; align-items: center; gap: var(--s-12); }

/* CTA in nav — slightly compact */
.btn--nav-cta { padding: 8px 18px; font-size: 13.5px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(124,58,237,0.35), 0 0 20px rgba(99,102,241,0.35);
  transition: box-shadow 0.3s ease;
}
.brand:hover .brand__logo {
  box-shadow: 0 0 0 2px rgba(124,58,237,0.55), 0 0 30px rgba(99,102,241,0.50);
}
.brand__name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fff 25%, rgba(180,175,255,0.92) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  cursor: pointer;
}
.lang:hover { background: rgba(255,255,255,0.07); color: var(--text); }
.lang__sep { opacity: 0.35; }
.lang[data-active="en"] .lang__item[data-lang="en"],
.lang[data-active="ru"] .lang__item[data-lang="ru"] { color: white; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
  user-select: none;
}
.btn--sm { padding: 10px 12px; border-radius: 12px; }
.btn--primary {
  background: linear-gradient(135deg, rgba(99,102,241,0.95), rgba(124,58,237,0.95));
  box-shadow: 0 16px 48px rgba(99,102,241,0.22);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 18px 56px rgba(124,58,237,0.25); }
.btn--secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}
.btn--secondary:hover { transform: translateY(-1px); background: rgba(255,255,255,0.08); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.10);
  color: var(--muted);
}
.btn--ghost:hover { color: white; background: rgba(255,255,255,0.05); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 600;
}
.badge--soft { background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.22); }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
}

.h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 14px 0 10px;
}
.h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0;
}
.h3 { font-size: 16px; margin: 0; letter-spacing: -0.01em; }
.lead { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.72); margin: 0; max-width: 56ch; }
.sub { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 10px 0 0; max-width: 68ch; }
.p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 10px 0 0; }
.caption { font-size: 12px; line-height: 1.6; color: var(--muted-2); margin: 0; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-32);
  align-items: center;
}
.hero__cta { display: flex; gap: var(--s-12); margin-top: var(--s-20); flex-wrap: wrap; }
.trust-strip {
  margin-top: var(--s-16);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 600;
}
.trust-strip__dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(99,102,241,0.9), rgba(124,58,237,0.9), rgba(6,182,212,0.9));
  box-shadow: 0 0 0 4px rgba(99,102,241,0.12);
}

.cost {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-16);
  align-items: start;
}
.cost__note { margin-top: 14px; }
.cost__card { padding: 22px; }
.cost__kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cost__list { margin-top: 12px; display: grid; gap: 10px; }
.cost__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  font-size: 13px;
}
.cost__total {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cost__sum { font-weight: 900; letter-spacing: -0.01em; }
.cost__unit { color: rgba(255,255,255,0.55); font-weight: 800; font-size: 12px; margin-left: 6px; }
.hero__trust { margin-top: var(--s-24); }
.hero__meta { display: flex; gap: var(--s-8); flex-wrap: wrap; margin-bottom: var(--s-12); }
.hero__catalog { margin-top: 12px; }

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: min(400px, 100%);
  margin-inline: auto;
}
.phone__glass {
  border-radius: 52px;
  padding: 18px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow:
    0 50px 150px rgba(0,0,0,0.65),
    0 0 90px rgba(124,58,237,0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}
.phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  font-size: 13px;
}
.phone__pill {
  width: 80px; height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}
.phone__screen {
  border-radius: 34px;
  padding: 16px;
  background:
    radial-gradient(700px 360px at 20% 0%, rgba(99,102,241,0.24), transparent 55%),
    radial-gradient(550px 280px at 90% 30%, rgba(6,182,212,0.20), transparent 60%),
    rgba(10,10,15,0.68);
  border: 1px solid rgba(255,255,255,0.08);
}
/* wide glow halo behind the phone */
.phone__halo {
  position: absolute;
  inset: -50px -45px -60px -45px;
  border-radius: 80px;
  background:
    radial-gradient(ellipse 80% 60% at 55% 85%, rgba(124,58,237,0.38), transparent 65%),
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(6,182,212,0.25), transparent 60%);
  filter: blur(46px);
  pointer-events: none;
  z-index: -1;
  animation: glowBreathe 7s ease-in-out infinite;
}
.phone__shadow {
  position: absolute;
  inset: auto 12px -34px 12px;
  height: 56px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.55) 0%, rgba(6,182,212,0.25) 40%, transparent 70%);
  filter: blur(22px);
  opacity: 0.9;
  animation: glowBreathe 7s ease-in-out infinite;
}
@keyframes glowBreathe {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.06); }
}

.mini-card {
  border-radius: 24px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}
.mini-card__kicker { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 700; }
.mini-card__row { margin-top: 12px; display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center; }
.mini-card__logo {
  width: 36px; height: 36px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(99,102,241,0.22);
  color: #a5b4fc;
  font-weight: 800;
  font-size: 15px;
}
.mini-card__title { font-weight: 800; font-size: 14px; }
.mini-card__sub { font-size: 11px; color: rgba(255,255,255,0.45); }
.mini-card__amt { font-weight: 800; font-size: 14px; color: rgba(255,255,255,0.85); }

.mock-grid { margin-top: 12px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.mock-stat {
  border-radius: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.mock-stat__label { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 700; }
.mock-stat__value { margin-top: 6px; font-weight: 900; letter-spacing: -0.01em; font-size: 18px; }
.mock-list { margin-top: 10px; display: grid; gap: 8px; }
.mock-item {
  display: grid; grid-template-columns: 10px 1fr auto; gap: 12px;
  align-items: center;
  padding: 11px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.mock-item__dot { width: 10px; height: 10px; border-radius: 999px; }
.dot--violet { background: rgba(124,58,237,0.9); }
.dot--cyan   { background: rgba(6,182,212,0.9); }
.dot--amber  { background: rgba(245,158,11,0.9); }
.dot--green  { background: rgba(34,197,94,0.9); }
.dot--blue   { background: rgba(59,130,246,0.9); }
.dot--rose   { background: rgba(244,63,94,0.9); }
.mock-item__name { font-weight: 700; font-size: 13px; color: rgba(255,255,255,0.78); }
.mock-item__amt  { font-weight: 800; font-size: 13px; color: rgba(255,255,255,0.78); }
.mock-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin: 14px 2px 8px;
}

.section-head { margin-bottom: var(--s-40); }

.shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-16);
}
.shot__frame {
  border-radius: var(--r-24);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.045);
  padding: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 26px 86px rgba(0,0,0,0.38);
}
.shot__title { font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.65); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .12em; }
.shot__img {
  height: 260px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(124,58,237,0.10), rgba(6,182,212,0.10));
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.shot__img::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 45%);
  transform: rotate(10deg);
  pointer-events: none;
  z-index: 0;
}
.shot__img--dash { background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(6,182,212,0.08)); }
.shot__img--list { background: linear-gradient(135deg, rgba(124,58,237,0.14), rgba(255,255,255,0.06)); }
.shot__img--timeline { background: linear-gradient(135deg, rgba(245,158,11,0.10), rgba(99,102,241,0.12)); }
.shot__img--analytics { background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(52,211,153,0.10)); }

.preview { position: relative; z-index: 1; height: 100%; padding: 14px; display: grid; gap: 12px; }
.preview__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.preview__row--fine { display: flex; flex-wrap: wrap; gap: 8px; }
.preview__row--single { grid-template-columns: 1fr; }
.preview__kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.preview__stat {
  border-radius: 16px;
  padding: 12px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.preview__k { font-size: 11px; color: rgba(255,255,255,0.50); font-weight: 800; }
.preview__v { margin-top: 6px; font-size: 18px; font-weight: 900; letter-spacing: -0.01em; }

.chart {
  height: 110px;
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-auto-flow: column;
  align-items: end;
  gap: 8px;
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.chart--thin { height: 92px; }
.bar {
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(99,102,241,0.85), rgba(124,58,237,0.40));
  box-shadow: 0 14px 30px rgba(99,102,241,0.12);
}

.plist { display: grid; gap: 8px; }
.plist__item {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.08);
}
.plist__dot { width: 10px; height: 10px; border-radius: 999px; }
.plist__name { font-weight: 800; font-size: 12px; color: rgba(255,255,255,0.78); }
.plist__amt { font-weight: 900; font-size: 12px; color: rgba(255,255,255,0.78); }

.timeline { display: grid; gap: 8px; }
.timeline__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.08);
}
.timeline__date { font-size: 12px; font-weight: 900; color: rgba(255,255,255,0.58); }
.timeline__name { font-weight: 800; font-size: 12px; color: rgba(255,255,255,0.80); }
.timeline__amt { font-weight: 900; font-size: 12px; color: rgba(255,255,255,0.78); }

.pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.60);
  font-size: 12px;
  font-weight: 800;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-16);
}

.grid--features { margin-top: 6px; }
.card--feature {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.045);
}
.card--feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-24);
  padding: 1px;
  background: linear-gradient(135deg, rgba(99,102,241,0.30), rgba(124,58,237,0.16), rgba(6,182,212,0.16));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.card--feature:hover::before { background: linear-gradient(135deg, rgba(99,102,241,0.42), rgba(124,58,237,0.24), rgba(6,182,212,0.24)); }
.ficon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.90);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  margin-bottom: 14px;
}
.ficon svg { width: 24px; height: 24px; }
.ficon--violet { background: rgba(124,58,237,0.20); border-color: rgba(124,58,237,0.28); color: #c4b5fd; box-shadow: 0 0 0 4px rgba(124,58,237,0.12); }
.ficon--cyan { background: rgba(6,182,212,0.20); border-color: rgba(6,182,212,0.28); color: #67e8f9; box-shadow: 0 0 0 4px rgba(6,182,212,0.12); }
.ficon--amber { background: rgba(245,158,11,0.20); border-color: rgba(245,158,11,0.28); color: #fcd34d; box-shadow: 0 0 0 4px rgba(245,158,11,0.12); }
.ficon--mint { background: rgba(52,211,153,0.20); border-color: rgba(52,211,153,0.28); color: #6ee7b7; box-shadow: 0 0 0 4px rgba(52,211,153,0.12); }
.ficon--rose { background: rgba(251,113,133,0.20); border-color: rgba(251,113,133,0.28); color: #fda4af; box-shadow: 0 0 0 4px rgba(251,113,133,0.12); }
.ficon--slate { background: rgba(148,163,184,0.20); border-color: rgba(148,163,184,0.28); color: #cbd5e1; box-shadow: 0 0 0 4px rgba(148,163,184,0.12); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-24);
  padding: 26px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 100px rgba(0,0,0,0.40);
  transition: border-color .18s ease, background .18s ease;
}
.card:hover {
  border-color: rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.045));
}
.card--glow {
  border-color: rgba(99,102,241,0.38);
  box-shadow:
    0 0 0 1px rgba(99,102,241,0.18),
    0 40px 120px rgba(99,102,241,0.28),
    0 80px 180px rgba(6,182,212,0.10),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.card__icon {
  width: 34px; height: 34px; border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.28), transparent 55%);
}
.i--violet { box-shadow: 0 0 0 4px rgba(124,58,237,0.10); }
.i--cyan { box-shadow: 0 0 0 4px rgba(6,182,212,0.10); }
.i--amber { box-shadow: 0 0 0 4px rgba(245,158,11,0.10); }
.i--mint { box-shadow: 0 0 0 4px rgba(52,211,153,0.10); }
.i--rose { box-shadow: 0 0 0 4px rgba(251,113,133,0.10); }
.i--slate { box-shadow: 0 0 0 4px rgba(148,163,184,0.10); }

.steps { display: grid; grid-template-columns: 1fr; gap: var(--s-16); }
.step__num { font-weight: 900; color: rgba(255,255,255,0.35); letter-spacing: .12em; font-size: 12px; }

/* Why — comparison table */
.why__audience {
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  margin: var(--s-16) 0 0;
  text-transform: uppercase;
}
.why__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: var(--s-24);
}
.why__col-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.38);
  margin-bottom: 12px;
}
.why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.why__list--cross li::before {
  content: "×";
  font-size: 15px;
  font-weight: 700;
  color: rgba(251,113,133,0.75);
  flex-shrink: 0;
  line-height: 1.3;
  width: 14px;
}
.why__list--check li::before {
  content: "✓";
  font-size: 13px;
  font-weight: 700;
  color: rgba(52,211,153,0.85);
  flex-shrink: 0;
  line-height: 1.4;
  width: 14px;
}

/* Pain grid */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  margin-bottom: var(--s-40);
}
.pain-card {
  padding: 20px 22px;
  border-radius: var(--r-16);
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: start;
  transition: border-color .18s ease, background .18s ease;
}
.pain-card:hover {
  border-color: rgba(99,102,241,0.28);
  background: linear-gradient(135deg, rgba(99,102,241,0.07), rgba(255,255,255,0.035));
}
.pain-card__icon {
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.78);
}
.pain-card__icon svg { width: 18px; height: 18px; }
.pain-card__title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: .01em;
  line-height: 1.3;
}
.pain-card__body {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.55;
  margin-top: 4px;
}

.ps { display: grid; grid-template-columns: 1fr; gap: var(--s-16); }
.ps__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255,255,255,0.55);
}
.ps__card--problem {
  border-color: rgba(251,113,133,0.22);
  background: linear-gradient(180deg, rgba(251,113,133,0.08) 0%, rgba(255,255,255,0.035) 60%);
}
.ps__card--problem .ps__label { color: rgba(251,113,133,0.90); }
.ps__card--solution {
  border-color: rgba(52,211,153,0.22);
  background: linear-gradient(180deg, rgba(52,211,153,0.08) 0%, rgba(255,255,255,0.035) 60%);
}
.ps__card--solution .ps__label { color: rgba(52,211,153,0.90); }
.ps__title { margin-top: 10px; font-size: 16px; }
.ps__card { padding: 22px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Services Grid ───────────────────────────────────────────── */
/* Integrations layout */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-32);
  align-items: start;
}
.svc-meta { }
.svc-count {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin: 14px 0 0;
  line-height: 1;
}
.svc-count__num {
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 20%, rgba(99,102,241,0.9) 65%, rgba(6,182,212,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.svc-count__plus {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(99,102,241,0.9), rgba(6,182,212,0.75));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  align-self: flex-start;
  margin-top: 10px;
}
.svc-count__label {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.svc-sub {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.65;
}
.svc-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.svc-cat {
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.20);
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.svc-disclaimer {
  margin-top: var(--s-16);
  margin-left: auto;
  max-width: none;
  text-align: right;
  color: rgba(255,255,255,0.42);
  line-height: 1.55;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.svc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 18px 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  cursor: default;
  user-select: none;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  text-align: center;
}
.svc-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.30);
}
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 22%;
  display: block;
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.svc-item:hover .svc-icon {
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.55));
  transform: scale(1.06);
}
.svc-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  line-height: 1.3;
}
.svc-item--more .svc-name { color: rgba(255,255,255,0.50); }
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
  .svc-icon { width: 44px; height: 44px; }
  .svc-item { padding: 14px 6px 12px; }
}

.scenario {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-16);
  align-items: stretch;
}
.stepper {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.stepper__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid rgba(99,102,241,0.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.stepper__item:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.13);
  border-left-color: rgba(99,102,241,0.45);
}
.stepper__item.is-active {
  background:
    radial-gradient(900px 220px at 20% -10%, rgba(99,102,241,0.16), transparent 55%),
    rgba(255,255,255,0.055);
  border-color: rgba(99,102,241,0.28);
  border-left-color: rgba(99,102,241,0.80);
  box-shadow: 0 24px 80px rgba(99,102,241,0.14);
}
.stepper__item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.10), 0 0 0 8px rgba(99,102,241,0.16), 0 24px 80px rgba(99,102,241,0.14);
}
.stepper__num {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  background: rgba(99,102,241,0.18);
  border: 1px solid rgba(99,102,241,0.22);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.10);
  transition: background .18s, border-color .18s, box-shadow .18s;
}
.stepper__item.is-active .stepper__num {
  background: rgba(99,102,241,0.34);
  border-color: rgba(99,102,241,0.55);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.16), 0 8px 28px rgba(99,102,241,0.22);
  color: #fff;
}
.stepper__body { flex: 1; min-width: 0; }
.stepper__title { font-size: 14px; font-weight: 900; letter-spacing: -0.01em; color: rgba(255,255,255,0.92); }
.stepper__text { margin-top: 5px; font-size: 12.5px; color: rgba(255,255,255,0.52); line-height: 1.55; }
.stepper__chevron {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  color: rgba(255,255,255,0.20);
  transition: color .18s, transform .18s;
}
.stepper__item:hover .stepper__chevron,
.stepper__item.is-active .stepper__chevron {
  color: rgba(99,102,241,0.75);
  transform: translateX(2px);
}
/* Progress bar auto-advance */
.stepper__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, rgba(99,102,241,0.5), rgba(124,58,237,0.8));
  border-radius: 0 2px 2px 0;
}
.stepper__item.is-active .stepper__progress {
  animation: stepProgress var(--step-duration, 4s) linear forwards;
}
@keyframes stepProgress {
  from { width: 0; }
  to   { width: 100%; }
}

.scenario-ui { padding: 22px; }
.scenario-ui__head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.scenario-ui__title { font-weight: 900; color: rgba(255,255,255,0.86); letter-spacing: -0.01em; }
.scenario-ui__panels { position: relative; }
.scenario-panel { display: grid; gap: 10px; }
.scenario-panel[hidden] { display: none !important; }
.scenario-panel.is-active { animation: scenarioPanelIn .22s ease both; }
@keyframes scenarioPanelIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.scenario-ui__card {
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.06);
}
.scenario-ui__k { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 900; color: rgba(255,255,255,0.55); }
.scenario-ui__row { margin-top: 10px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.scenario-ui__row--fine { justify-content: flex-start; flex-wrap: wrap; }
.scenario-ui__amt { font-weight: 900; color: rgba(255,255,255,0.86); }
.scenario-ui__big { margin-top: 10px; font-weight: 900; letter-spacing: -0.02em; font-size: 20px; }

.trust {
  padding: 36px 32px 28px;
  background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 50%, rgba(52,211,153,0.04) 100%);
  border-color: rgba(255,255,255,0.09);
}
.trust__head { max-width: 640px; }
.trust__head .h2 { margin-top: 10px; }
.trust__head .sub { margin-top: 12px; max-width: 560px; }

/* Pledge block */
.trust__pledge {
  margin-top: var(--s-24);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(52,211,153,0.28);
  background: linear-gradient(135deg, rgba(52,211,153,0.07) 0%, rgba(52,211,153,0.03) 60%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.trust__pledge::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(52,211,153,0.9), rgba(52,211,153,0.3));
  border-radius: 3px 0 0 3px;
}
.trust__pledge-shield {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.22);
  color: rgb(52,211,153);
  flex-shrink: 0;
}
.trust__pledge-shield svg { width: 22px; height: 22px; }
.trust__pledge-title {
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.01em;
}
.trust__pledge-text {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.60);
}
.trust__pledge-not-sold {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust__nope {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(251,113,133,0.80);
  background: rgba(251,113,133,0.08);
  border: 1px solid rgba(251,113,133,0.18);
  border-radius: 999px;
  padding: 3px 10px;
}
.trust__nope::before {
  content: '✕';
  font-size: 9px;
  opacity: 0.8;
}

/* Feature grid */
.trust__grid {
  margin-top: var(--s-20);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
}
.trust__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.065);
  transition: border-color .18s ease, background .18s ease;
}
.trust__item:hover {
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}
.trust__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.75);
}
.trust__icon svg { width: 18px; height: 18px; }
.trust__t { font-size: 13.5px; font-weight: 800; letter-spacing: -0.01em; color: rgba(255,255,255,0.90); }
.trust__d { margin-top: 5px; font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.50); }
.trust__links { margin-top: var(--s-20); display: flex; flex-wrap: wrap; gap: 12px; padding-top: var(--s-16); border-top: 1px solid rgba(255,255,255,0.07); }

.why {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-24);
  align-items: center;
}
.why__tags { margin-top: var(--s-16); display: flex; flex-wrap: wrap; gap: var(--s-8); }
.why__visual { position: relative; min-height: 220px; }
.why__ring {
  position: absolute;
  inset: 10% 10%;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(99,102,241,0.18), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(6,182,212,0.12), transparent 60%);
  filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.08);
}
.why__stack { position: absolute; inset: 0; display: grid; place-items: center; }
.stack-card {
  width: 240px; height: 150px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 26px 90px rgba(0,0,0,0.45);
}
.stack-card:nth-child(1) { transform: translateY(22px) rotate(-6deg); opacity: 0.55; }
.stack-card:nth-child(2) { transform: translateY(6px) rotate(3deg); opacity: 0.75; }
.stack-card:nth-child(3) {
  transform: translateY(-10px) rotate(-1deg);
  opacity: 1;
  border-color: rgba(99,102,241,0.22);
}

/* Stack card inner content */
.stack-card {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.sc__label {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2px;
}
.sc__stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.sc__stat-val {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.sc__stat-unit {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.sc__row, .sc__trow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
}
.sc__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sc__dot--violet { background: rgba(124,58,237,0.9); }
.sc__dot--cyan   { background: rgba(6,182,212,0.9); }
.sc__name {
  flex: 1;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.sc__price {
  color: rgba(255,255,255,0.5);
  font-variant-numeric: tabular-nums;
}
.sc__timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sc__date {
  font-size: 9px;
  color: rgba(99,102,241,0.9);
  font-weight: 700;
  width: 36px;
  flex-shrink: 0;
}
.sc__score-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.sc__score {
  font-size: 32px;
  font-weight: 900;
  color: rgba(52,211,153,0.95);
  letter-spacing: -0.03em;
  line-height: 1;
}
.sc__score-sub {
  font-size: 11px;
  color: rgba(52,211,153,0.7);
  font-weight: 600;
}
.sc__alert {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: rgba(251,113,133,0.8);
  font-weight: 500;
}
.sc__alert--ok { color: rgba(52,211,153,0.75); }
.sc__alert-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(251,113,133,0.8);
  flex-shrink: 0;
}
.sc__alert-dot--ok { background: rgba(52,211,153,0.8); }

/* ── Pricing guarantee pills ───────────────────────────────────── */
.pricing-guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.pricing-g {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(52,211,153,0.07);
  border: 1px solid rgba(52,211,153,0.18);
  color: rgba(52,211,153,0.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.pricing-g::before {
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

/* ── Pricing grid ──────────────────────────────────────────────── */
.pricing { display: grid; grid-template-columns: 1fr; gap: var(--s-16); }

/* ── Price card base ───────────────────────────────────────────── */
.price { position: relative; display: flex; flex-direction: column; }
.price__top { flex: 1; margin-bottom: var(--s-20); }
.price__fine { margin-top: 10px; color: rgba(255,255,255,0.42); font-size: 12px; }
.price__body { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.6; }

/* ── Free trial visual ─────────────────────────────────────────── */
.price__trial-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 22px 0 0;
  gap: 2px;
}
.price__trial-num {
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 20%, rgba(148,163,255,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price__trial-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  margin-top: -4px;
}

/* ── Checklist (perks + features) ─────────────────────────────── */
.price__perks,
.price__features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.price__perks li,
.price__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.4;
}
.price__perks li::before,
.price__features li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(52,211,153,0.10);
  border: 1px solid rgba(52,211,153,0.28);
  color: rgba(52,211,153,0.95);
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── Price value row ───────────────────────────────────────────── */
.price__value { margin-top: 18px; font-weight: 900; letter-spacing: -0.02em; }
.price__big {
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price__unit { color: rgba(255,255,255,0.50); font-weight: 600; font-size: 13px; margin-left: 6px; }
.price__hint { margin-top: 8px; color: rgba(255,255,255,0.48); font-size: 13px; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.price__year { font-weight: 900; color: rgba(255,255,255,0.88); }
.price__save {
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.28);
  color: rgba(52,211,153,0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 4px;
}

/* ── CTA row ───────────────────────────────────────────────────── */
.price__cta { display: grid; gap: 10px; margin-top: auto; }
.price__trust {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ── Pro card: gradient bg + enhanced glow ─────────────────────── */
.price--pro {
  background: linear-gradient(160deg,
    rgba(99,102,241,0.10) 0%,
    rgba(7,7,12,0.95) 50%,
    rgba(6,182,212,0.06) 100%);
}

/* ── Best-value badge ──────────────────────────────────────────── */
.price__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(99,102,241,0.30), rgba(6,182,212,0.20));
  border: 1px solid rgba(99,102,241,0.35);
  color: rgba(255,255,255,0.90);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── Old .list support ─────────────────────────────────────────── */
.list { margin: 14px 0 0; padding-left: 16px; color: rgba(255,255,255,0.62); font-size: 13px; line-height: 1.7; }

.cta {
  display: flex;
  flex-direction: column;
  gap: var(--s-16);
  align-items: flex-start;
  justify-content: space-between;
}
.cta__buttons { display: flex; gap: var(--s-12); flex-wrap: wrap; }

.cta {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    radial-gradient(900px 300px at 20% 0%, rgba(99,102,241,0.20), transparent 60%),
    radial-gradient(900px 300px at 90% 80%, rgba(6,182,212,0.14), transparent 60%),
    rgba(255,255,255,0.04);
  border-color: rgba(99,102,241,0.16);
}
.cta::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg at 50% 50%, rgba(99,102,241,0.14), rgba(124,58,237,0.14), rgba(6,182,212,0.10), rgba(99,102,241,0.14));
  filter: blur(70px);
  opacity: 0.30;
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }

.security { padding: 22px; }
.security__head { max-width: 70ch; }
.security__grid {
  margin-top: var(--s-16);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
}
.security__item {
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.security__k { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 900; color: rgba(255,255,255,0.45); }
.security__v { margin-top: 6px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.78); }

.footer {
  padding: var(--s-56) 0 var(--s-32);
  border-top: none;
  position: relative;
  background: transparent;
}
.footer::before {
  content: "";
  position: absolute;
  inset: -80px 0 -80px;
  pointer-events: none;
  background:
    radial-gradient(900px 320px at 22% 40%, rgba(99,102,241,0.10), transparent 62%),
    radial-gradient(900px 320px at 86% 72%, rgba(6,182,212,0.08), transparent 62%);
  opacity: 0.75;
}
.footer__grid, .footer__bottom { position: relative; z-index: 1; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-24);
  align-items: start;
}
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-12); }
.footer__link { color: rgba(255,255,255,0.55); font-size: 13px; }
.footer__link:hover { color: rgba(255,255,255,0.88); }
.footer__bottom {
  margin-top: var(--s-24);
  padding-top: var(--s-16);
  border-top: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-16);
}

.legal__container { max-width: 920px; }
.legal__card { padding: clamp(24px, 4vw, 48px); }
.legal__card .h2 { margin: 8px 0 10px; }
.legal__body {
  margin-top: var(--s-32);
  display: grid;
  gap: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.78;
}
.legal__body h2 {
  margin: 20px 0 -6px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
}
.legal__body h3 {
  margin: 10px 0 -8px;
  color: rgba(255,255,255,0.84);
  font-size: 16px;
  line-height: 1.35;
}
.legal__body p { margin: 0; }
.legal__body ul {
  margin: -4px 0 0;
  padding-left: 22px;
}
.legal__body li { margin: 8px 0; }
.legal__body a {
  color: #7dd3fc;
  text-decoration: underline;
  text-decoration-color: rgba(125,211,252,0.45);
  text-underline-offset: 4px;
}
.legal__body a:hover { color: #c4b5fd; }

/* Motion */
.reveal { opacity: 0; transform: translateY(10px); }
.reveal.in { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }

@media (min-width: 860px) {
  .nav__links { display: flex; }
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--s-40); }
  /* hero-visual must fill the flex column so phone's 100% resolves correctly */
  .hero__visual { justify-content: flex-end; align-items: stretch; }
  .hero-visual  { width: 100%; justify-items: end; }
  .phone        { margin-inline: 0; }
  .shots { grid-template-columns: repeat(2, 1fr); }

  .grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .cost { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .scenario { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr 1fr; }
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
  .ps { grid-template-columns: 1fr 1fr; }
  .why { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
  .why__visual { min-height: unset; }
  .pricing { grid-template-columns: 1fr 1fr; align-items: start; }
  .cta { flex-direction: row; align-items: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .security__grid { grid-template-columns: repeat(3, 1fr); }
  .svc-layout { grid-template-columns: 240px 1fr; gap: 52px; }
}

@media (min-width: 1100px) {
  .shots { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .card, .btn { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .reveal.in { transition: none; }
  .scenario-panel.is-active { animation: none; }
  .phone-float, .phone__halo, .phone__shadow, .hero-orb--1, .hero-orb--2, .marquee-inner, .marquee-inner--2, .cta-glow { animation: none !important; }
}

/* ─── Scroll Progress Bar ─────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #6366f1, #7c3aed, #06b6d4, #34d399);
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ─── Gradient Text ───────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #f0eeff 0%, #c4b5fd 40%, #7dd3fc 75%, #e0f7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text--accent {
  background: linear-gradient(135deg, #6366f1 0%, #7c3aed 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Phone Float Animation ───────────────────────────────────── */
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0)     rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(0.4deg); }
}
.phone-float { animation: phoneFloat 7s ease-in-out infinite; }

/* ─── Hero Orbs ───────────────────────────────────────────────── */
.hero-visual { overflow: visible !important; }
.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.22;
}
.hero-orb--1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(124,58,237,0.55), transparent 65%);
  top: -100px; right: -80px;
  animation: orbFloat1 10s ease-in-out infinite;
}
.hero-orb--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(6,182,212,0.45), transparent 65%);
  bottom: -60px; right: 5%;
  animation: orbFloat2 14s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-28px, 20px) scale(1.08); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(22px, -22px) scale(0.92); }
}

/* ─── Hero Stats Bar ──────────────────────────────────────────── */
.hero__stats {
  display: flex;
  gap: var(--s-32);
  flex-wrap: wrap;
  margin-top: var(--s-24);
  padding-top: var(--s-20);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__value {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label { font-size: 12px; color: var(--muted-2); font-weight: 600; }

/* ─── Marquee ─────────────────────────────────────────────────── */
.marquee-section {
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.marquee-section::before,
.marquee-section::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before { left: 0; background: linear-gradient(90deg, #07070c, transparent); }
.marquee-section::after  { right: 0; background: linear-gradient(-90deg, #07070c, transparent); }
.marquee-track { display: flex; }
.marquee-inner {
  display: flex;
  align-items: center;
  animation: marqueeScroll 38s linear infinite;
  flex-shrink: 0;
}
.marquee-inner--2 { animation-delay: 0s; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.40);
  font-size: 13px;
  font-weight: 700;
  padding: 0 18px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.marquee__item:hover { color: rgba(255,255,255,0.70); }
.marquee__dot {
  width: 4px; height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ─── Nav Scrolled State ──────────────────────────────────────── */
.nav.is-scrolled {
  background: rgba(7,7,12,0.86);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.07), 0 14px 46px rgba(0,0,0,0.30);
}

/* ─── Enhanced Feature Cards ──────────────────────────────────── */
.card--feature {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.card--feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.22), 0 32px 100px rgba(99,102,241,0.14), 0 0 60px rgba(124,58,237,0.08);
}
.ficon { transition: box-shadow 0.25s ease, background 0.25s ease; }
.card--feature:hover .ficon--violet { box-shadow: 0 0 0 6px rgba(124,58,237,0.16), 0 8px 24px rgba(124,58,237,0.20); }
.card--feature:hover .ficon--cyan   { box-shadow: 0 0 0 6px rgba(6,182,212,0.16), 0 8px 24px rgba(6,182,212,0.20); }
.card--feature:hover .ficon--amber  { box-shadow: 0 0 0 6px rgba(245,158,11,0.16), 0 8px 24px rgba(245,158,11,0.20); }
.card--feature:hover .ficon--mint   { box-shadow: 0 0 0 6px rgba(52,211,153,0.16), 0 8px 24px rgba(52,211,153,0.20); }
.card--feature:hover .ficon--rose   { box-shadow: 0 0 0 6px rgba(251,113,133,0.16), 0 8px 24px rgba(251,113,133,0.20); }
.card--feature:hover .ficon--slate  { box-shadow: 0 0 0 6px rgba(148,163,184,0.16), 0 8px 24px rgba(148,163,184,0.20); }

/* ─── Shot Frame Hover ────────────────────────────────────────── */
.shot__frame {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.shot__frame:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 36px 110px rgba(0,0,0,0.48);
}

/* ─── Badge Pulse ─────────────────────────────────────────────── */
.badge--pulse::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #34d399;
  margin-right: 6px;
  vertical-align: middle;
  animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52,211,153,0.45); }
  50% { opacity: 0.85; box-shadow: 0 0 0 5px rgba(52,211,153,0); }
}

/* ─── Staggered Reveal Delays ─────────────────────────────────── */
.reveal--d1.in { transition-delay: 0.08s; }
.reveal--d2.in { transition-delay: 0.16s; }
.reveal--d3.in { transition-delay: 0.24s; }
.reveal--d4.in { transition-delay: 0.32s; }

/* ─── CTA Animated Glow ───────────────────────────────────────── */
.cta-glow {
  position: absolute;
  inset: -60%;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(99,102,241,0.14), transparent 60%);
  animation: ctaGlow 7s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes ctaGlow {
  from { opacity: 0.4; transform: scale(0.85) rotate(0deg); }
  to   { opacity: 0.9; transform: scale(1.15) rotate(5deg); }
}

/* ─── Inline counter ──────────────────────────────────────────── */
.counter { font-variant-numeric: tabular-nums; }

/* ─── Section Kicker ──────────────────────────────────────────── */
.section-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

/* ─── Better primary button ───────────────────────────────────── */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), transparent 60%);
  pointer-events: none;
}
.btn--primary:hover {
  box-shadow: 0 20px 60px rgba(99,102,241,0.38), 0 0 0 1px rgba(99,102,241,0.40);
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero__stats { gap: var(--s-20); }
  .stat__value { font-size: 22px; }
}
