
:root {
  --ink: #171927;
  --muted: #747b91;
  --line: rgba(72, 75, 111, .14);
  --surface: #ffffff;
  --surface-soft: #f5f5fb;
  --primary: #6158ff;
  --primary-dark: #4d43e7;
  --primary-light: #8a7cff;
  --green: #18ad70;
  --orange: #f29a00;
  --shadow-sm: 0 14px 36px rgba(49, 45, 96, .09);
  --shadow-lg: 0 30px 80px rgba(52, 46, 145, .18);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 82px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 12%, rgba(97, 88, 255, .08), transparent 26rem),
    #fbfbfe;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Скриншоты приложения никогда не растягиваются: высота всегда вычисляется из исходных пропорций. */
.phone img,
.screen-phone img,
.privacy-phone img {
  max-height: none;
}

a { color: inherit; text-decoration: none; }

/* Фирменное выделение названия продукта внутри заголовков. */
.brand-name-accent { color: var(--primary); }

button, input { font: inherit; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container { width: var(--container); margin-inline: auto; }

.section { position: relative; padding: clamp(76px, 9vw, 132px) 0; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(251, 251, 254, .78);
  backdrop-filter: blur(20px);
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 34px rgba(43, 40, 86, .06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  box-shadow: 0 14px 30px rgba(97, 88, 255, .25);
}

.brand-mark svg { width: 28px; height: 28px; stroke-width: 2.3; }

.brand > span:last-child { display: grid; gap: 1px; }
.brand strong { font-size: 18px; line-height: 1.15; }
.brand small { color: var(--muted); font-size: 12px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  color: #5f6477;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--primary); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button svg { width: 20px; height: 20px; }

.button-small { min-height: 44px; padding-inline: 18px; font-size: 14px; }
.button-large { min-height: 58px; padding-inline: 28px; border-radius: 19px; }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #7368ff);
  box-shadow: 0 14px 30px rgba(97, 88, 255, .24);
}
.button-primary:hover { box-shadow: 0 18px 38px rgba(97, 88, 255, .32); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.64); }
.button-ghost:hover { border-color: rgba(97,88,255,.28); background: white; }
.button-white { color: var(--primary-dark); background: white; box-shadow: 0 18px 40px rgba(28,24,84,.2); }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 auto;
  padding: 24px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.98);
  box-shadow: 0 30px 60px rgba(34,31,75,.14);
}
.mobile-nav.is-open { display: grid; gap: 18px; }
.mobile-nav > a:not(.button) { padding: 6px 4px; color: #4f5467; font-weight: 700; }

.hero {
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding-top: clamp(54px, 7vw, 90px);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.hero-glow-one {
  width: 480px;
  height: 480px;
  top: 4%;
  right: -160px;
  background: radial-gradient(circle, rgba(117,104,255,.2), transparent 68%);
}
.hero-glow-two {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(25,176,115,.09), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(24,173,112,.35);
  border-radius: 50%;
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  0% { transform: scale(.7); opacity: .9; }
  70%, 100% { transform: scale(1.45); opacity: 0; }
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.01;
  letter-spacing: -.055em;
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: #62697f;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 30px;
  color: #666c80;
  font-size: 13px;
  font-weight: 700;
}
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 18px; height: 18px; color: var(--primary); }

.hero-visual { min-width: 0; }

.phone-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(97,88,255,.14);
  border-radius: 50%;
}
.orbit-one { width: 560px; height: 560px; }
.orbit-two { width: 430px; height: 430px; border-style: dashed; animation: spin 28s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.phone {
  position: relative;
  width: min(355px, 78vw);
  height: auto;
  overflow: hidden;
  border: 10px solid #191b27;
  border-radius: 46px;
  background: #f5f5fb;
  box-shadow: var(--shadow-lg);
}
.phone img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.phone-main { transform: rotate(2.2deg); }
.phone-top {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 96px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #171823;
}
.phone-top span {
  position: absolute;
  top: 8px;
  right: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #343646;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(42,39,91,.16);
}
.floating-card-top { top: 90px; right: -18px; }
.floating-card-bottom { bottom: 105px; left: -35px; }
.floating-card > span:last-child { display: grid; gap: 3px; min-width: 0; }
.floating-card strong { font-size: 16px; line-height: 1.15; white-space: nowrap; }
.floating-card small { color: var(--muted); font-size: 13px; line-height: 1.3; font-weight: 600; white-space: nowrap; }
.floating-icon {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
}
.floating-icon svg { width: 19px; height: 19px; stroke-width: 2.4; }
.floating-icon.green { color: var(--green); background: rgba(24,173,112,.11); }
.floating-icon.orange { color: var(--orange); background: rgba(242,154,0,.11); }

.problem-strip { padding: 34px 0 50px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
}
.problem-card { position: relative; padding: 34px; }
.problem-card + .problem-card { border-left: 1px solid var(--line); }
.problem-number {
  display: block;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.problem-card h2 { margin: 0 0 10px; font-size: 21px; }
.problem-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .how-copy h2, .faq-heading h2 {
  margin: 14px 0 16px;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-heading p, .faq-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.value-section { background: linear-gradient(180deg, transparent, rgba(237,236,255,.45), transparent); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 32px rgba(54,49,99,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(97,88,255,.24);
  box-shadow: 0 24px 55px rgba(54,49,99,.11);
}
.feature-card-accent { background: linear-gradient(145deg, #5c53f5, #8175ff); color: white; }
.feature-card-accent p { color: rgba(255,255,255,.78) !important; }
.feature-card-accent .feature-icon { color: white; background: rgba(255,255,255,.15); }
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 16px;
  color: var(--primary);
  background: rgba(97,88,255,.1);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { margin: 0 0 12px; font-size: 22px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.how-section { overflow: hidden; }
.how-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(52px, 8vw, 110px); }
.how-copy h2 { margin-bottom: 32px; }
.steps { display: grid; gap: 10px; }
.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: background .2s ease, border-color .2s ease;
}
.step:hover, .step.active { border-color: rgba(97,88,255,.17); background: white; box-shadow: var(--shadow-sm); }
.step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: rgba(97,88,255,.1);
  font-weight: 900;
}
.step h3 { margin: 1px 0 6px; font-size: 19px; }
.step p { margin: 0; color: var(--muted); line-height: 1.55; }

.preview-panel {
  overflow: hidden;
  border: 1px solid rgba(97,88,255,.15);
  border-radius: 34px;
  background: #1b1c2a;
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}
.preview-browser-bar {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  color: rgba(255,255,255,.58);
}
.preview-browser-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.preview-browser-bar small { margin-left: auto; font-weight: 700; }
.preview-content {
  min-height: 510px;
  padding: 30px;
  background:
    radial-gradient(circle at 90% 5%, rgba(128,116,255,.32), transparent 210px),
    linear-gradient(145deg, #f4f3ff, #fbfbff);
}
.preview-sale {
  max-width: 520px;
  margin: 12px auto;
  padding: 26px;
  border-radius: 26px;
  background: white;
  box-shadow: 0 20px 50px rgba(44,40,90,.13);
}
.preview-status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 8px;
  color: #af6800;
  background: #fff0d4;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.preview-sale > strong { display: block; font-size: 25px; }
.preview-sale > small { display: block; margin: 6px 0 22px; color: var(--muted); }
.preview-item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px 0;
  border-top: 1px dashed rgba(90,92,120,.22);
}
.preview-item b { display: block; font-size: 14px; }
.preview-item small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.preview-code, .preview-barcode { width: 42px; height: 42px; border-radius: 10px; }
.preview-code {
  background:
    linear-gradient(90deg, #292b38 20%, transparent 20% 35%, #292b38 35% 54%, transparent 54% 70%, #292b38 70%),
    linear-gradient(#292b38 18%, transparent 18% 38%, #292b38 38% 57%, transparent 57% 76%, #292b38 76%);
  background-color: #f0f0f5;
  background-size: 13px 13px;
}
.preview-barcode {
  background: repeating-linear-gradient(90deg, #242633 0 2px, transparent 2px 4px, #242633 4px 5px, transparent 5px 8px);
}
.preview-total {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 2px solid #262837;
  font-size: 17px;
}
.preview-ready {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px auto 0;
  padding: 14px 18px;
  border-radius: 18px;
  color: white;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(24,173,112,.25);
}
.preview-ready svg { width: 26px; height: 26px; stroke-width: 2.5; }
.preview-ready span { display: grid; gap: 2px; }
.preview-ready small { color: rgba(255,255,255,.72); }

.screens-section {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(240,239,255,.65), transparent);
}
.screen-showcase {
  display: grid;
  grid-template-columns: .92fr minmax(260px, .58fr) minmax(240px, .5fr);
  align-items: center;
  gap: clamp(24px, 5vw, 62px);
  margin: 44px 0 130px;
}
.screen-showcase-reverse { grid-template-columns: minmax(240px, .5fr) minmax(260px, .58fr) .92fr; margin-bottom: 0; }
.screen-copy { max-width: 470px; }
.screen-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 9px;
  color: var(--primary);
  background: rgba(97,88,255,.1);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.screen-copy h3 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -.03em;
}
.screen-copy > p { margin: 0 0 24px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #4f5569;
  font-weight: 650;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: white;
  background: var(--green);
  font-size: 12px;
}
.screen-phone {
  overflow: hidden;
  border: 8px solid #1c1e2b;
  border-radius: 38px;
  background: white;
  box-shadow: var(--shadow-lg);
}
.screen-phone img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.screen-phone-secondary { transform: translateY(52px) rotate(2.2deg); opacity: .92; }

.privacy-card {
  min-height: 610px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 40px;
  padding: clamp(36px, 6vw, 78px);
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.19), transparent 300px),
    linear-gradient(135deg, #5650ed, #8276ff);
  box-shadow: 0 32px 80px rgba(73,64,213,.25);
}
.section-kicker.light { color: #dcd9ff; }
.privacy-copy h2 {
  max-width: 700px;
  margin: 15px 0 18px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.privacy-copy > p { max-width: 680px; margin: 0; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.65; }
.privacy-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.privacy-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: rgba(255,255,255,.09);
  font-size: 13px;
  font-weight: 750;
}
.privacy-points svg { width: 20px; height: 20px; }
.privacy-phone {
  align-self: end;
  max-height: none;
  overflow: hidden;
  border: 8px solid #1b1d29;
  border-bottom: 0;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 24px 60px rgba(27,25,79,.3);
}
.privacy-phone img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.notice-section { padding-top: 20px; }
.notice-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(242,154,0,.24);
  border-radius: var(--radius-md);
  background: #fffaf0;
}
.notice-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #c87a00;
  background: #ffedc8;
}
.notice-icon svg { width: 30px; height: 30px; }
.notice-card h2 { margin: 10px 0 10px; font-size: clamp(26px, 3vw, 36px); }
.notice-card p { max-width: 950px; margin: 0; color: #716950; line-height: 1.7; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 8vw, 110px); }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 28px rgba(54,49,99,.04);
}
.faq-item summary {
  position: relative;
  padding: 23px 58px 23px 24px;
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 28px;
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 24px 24px; color: var(--muted); line-height: 1.65; }

.install-section { padding-top: 30px; }
.install-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 50px;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.18), transparent 250px),
    linear-gradient(135deg, #171927, #333059 56%, #5d54ef);
  box-shadow: 0 32px 80px rgba(28,26,72,.25);
}
.install-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.install-copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.65; }
.install-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 17px; margin-top: 28px; }
.install-actions > span { color: rgba(255,255,255,.54); font-size: 12px; }
.install-steps { display: grid; gap: 12px; }
.install-steps > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.install-steps span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #312d88;
  background: white;
  font-weight: 900;
}
.install-steps p { margin: 0; font-weight: 700; }

.site-footer { padding: 42px 0; border-top: 1px solid var(--line); }
.footer-brand .brand-mark { width: 42px; height: 42px; border-radius: 14px; }
.footer-link { color: var(--primary); font-weight: 800; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .header-inner > .button { margin-left: auto; }
  .menu-button { display: block; }

  .hero-grid { grid-template-columns: 1fr 430px; gap: 32px; }
  .hero h1 { font-size: clamp(42px, 6.4vw, 62px); }
  .phone-stage { min-height: 580px; }
  .floating-card-top { right: -4px; }
  .floating-card-bottom { left: -10px; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .how-copy { max-width: 760px; }
  .screen-showcase, .screen-showcase-reverse {
    grid-template-columns: 1fr .64fr .56fr;
    gap: 24px;
  }
  .privacy-card { grid-template-columns: 1fr 340px; }
}

@media (max-width: 800px) {
  :root { --container: min(100% - 28px, 680px); --header-height: 72px; }

  .site-header { height: var(--header-height); }
  .brand small { display: none; }
  .header-inner > .button { display: none; }
  .menu-button { margin-left: auto; }

  .hero { min-height: auto; padding-bottom: 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-stage { min-height: 530px; }
  .phone { width: min(295px, 72vw); }
  .orbit-one { width: 450px; height: 450px; }
  .orbit-two { width: 350px; height: 350px; }
  .floating-card-top { top: 70px; right: 3%; }
  .floating-card-bottom { bottom: 80px; left: 3%; }

  .problem-grid { grid-template-columns: 1fr; }
  .problem-card + .problem-card { border-left: 0; border-top: 1px solid var(--line); }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 230px; }
  .feature-icon { margin-bottom: 32px; }

  .screen-showcase, .screen-showcase-reverse {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 96px;
  }
  .screen-copy { grid-column: 1 / -1; max-width: none; }
  .screen-showcase-reverse .screen-copy { grid-row: 1; }
  .screen-phone-secondary { transform: translateY(34px) rotate(2deg); }

  .privacy-card { grid-template-columns: 1fr; padding-bottom: 0; }
  .privacy-phone { width: min(360px, 90%); margin-inline: auto; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .install-card { grid-template-columns: 1fr; }
  .footer-brand { justify-content: center; }
}

@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .header-inner { gap: 12px; }
  .brand-mark { width: 42px; height: 42px; border-radius: 14px; }
  .brand strong { font-size: 16px; }

  .hero { padding-top: 34px; }
  .hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; justify-content: start; width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }

  .phone-stage { min-height: 460px; }
  .phone { border-width: 7px; border-radius: 36px; }
  .phone-top { top: 6px; width: 74px; height: 19px; }
  .orbit-one { width: 365px; height: 365px; }
  .orbit-two { width: 285px; height: 285px; }
  .floating-card { min-width: 178px; padding: 11px 13px; gap: 10px; }
  .floating-card strong { font-size: 14px; }
  .floating-card small { font-size: 12px; line-height: 1.25; }
  .floating-icon { width: 32px; height: 32px; }
  .floating-card-top { top: 60px; right: 0; }
  .floating-card-bottom { bottom: 62px; left: 0; }

  .problem-card { padding: 27px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading p, .faq-heading p { font-size: 16px; }

  .preview-content { padding: 18px; min-height: 450px; }
  .preview-sale { padding: 20px; }
  .preview-item { grid-template-columns: 40px 1fr; }
  .preview-item > strong { grid-column: 2; }
  .preview-ready { width: 100%; justify-content: center; }

  .screen-showcase, .screen-showcase-reverse { grid-template-columns: 1fr; }
  .screen-phone { width: min(340px, 92%); margin-inline: auto; }
  .screen-phone-secondary { display: none; }
  .screen-copy h3 { font-size: 31px; }

  .privacy-card { border-radius: 30px; padding-inline: 24px; }
  .privacy-copy h2 { font-size: 36px; }
  .privacy-points { display: grid; }

  .notice-card { grid-template-columns: 1fr; padding: 26px; }
  .install-card { padding: 32px 24px; border-radius: 30px; }
  .install-copy h2 { font-size: 37px; }
  .install-actions { display: grid; }
  .install-actions .button { width: 100%; }

  .faq-item summary { font-size: 15px; }
}

@media (max-width: 370px) {
  :root { --container: calc(100% - 20px); }
  .hero h1 { font-size: 34px; }
  .phone-stage { min-height: 410px; }
  .floating-card { display: none; }
}

/* Дополнительные блоки: цена, QR-сценарий и техническая надёжность */
.hero-price-note {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(97, 88, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 24px rgba(52, 46, 145, .06);
}
.hero-price-note strong { color: var(--primary-dark); font-size: 21px; }
.hero-price-note span { color: var(--muted); font-size: 13px; font-weight: 650; }

.qr-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(97, 88, 255, .12), transparent 28rem),
    linear-gradient(180deg, rgba(245,245,251,.35), rgba(245,245,251,.95));
}
.qr-showcase {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(240px, .52fr) minmax(240px, .52fr);
  align-items: center;
  gap: clamp(22px, 4vw, 50px);
}
.qr-copy-card {
  max-width: 500px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}
.qr-copy-card h3 { margin: 14px 0 14px; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.08; letter-spacing: -.035em; }
.qr-copy-card > p { margin: 0 0 24px; color: var(--muted); font-size: 17px; line-height: 1.65; }

.mini-phone {
  width: 100%;
  overflow: hidden;
  border: 8px solid #1b1d29;
  border-radius: 38px;
  background: #f4f4fa;
  box-shadow: 0 28px 70px rgba(39,35,95,.19);
}

.screen-showcase-extra { margin-top: 100px; }
.screen-showcase-last { margin-bottom: 0; }

.reliability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.reliability-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 15px 36px rgba(49,45,96,.07);
}
.reliability-card > span { color: var(--primary); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.reliability-card h3 { margin: 26px 0 12px; font-size: 20px; line-height: 1.25; }
.reliability-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.pricing-section { padding-top: 34px; }
.pricing-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 84% 10%, rgba(255,255,255,.2), transparent 270px),
    linear-gradient(135deg, #5047e5, #786cff);
  box-shadow: 0 32px 80px rgba(73,64,213,.25);
}
.pricing-copy h2 { margin: 15px 0 18px; font-size: clamp(38px, 5vw, 62px); line-height: 1.02; letter-spacing: -.045em; }

.pricing-copy h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .18em;
}
.pricing-title,
.pricing-dash,
.pricing-amount { display: inline-block; }
.pricing-amount { white-space: nowrap; }

.pricing-copy > p { margin: 0 0 28px; color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.65; }
.pricing-includes { display: grid; gap: 12px; }
.pricing-includes > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.1);
}
.pricing-includes > div > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: #4d43df; background: white; font-weight: 900; }
.pricing-includes p { display: grid; gap: 4px; margin: 0; }
.pricing-includes strong { font-size: 15px; }
.pricing-includes small { color: rgba(255,255,255,.66); font-size: 12px; line-height: 1.35; }

@media (max-width: 1050px) {
  .qr-showcase { grid-template-columns: 1fr .55fr .55fr; gap: 22px; }
  .qr-copy-card { padding: 28px; }
  .reliability-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .hero-price-note { display: flex; width: max-content; max-width: 100%; margin-inline: auto; }
  .qr-showcase { grid-template-columns: 1fr 1fr; }
  .qr-copy-card { grid-column: 1 / -1; max-width: none; }
  .pricing-card { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-price-note { align-items: center; }
  .hero-price-note strong { font-size: 18px; }
  .hero-price-note span { font-size: 11px; }
  .qr-showcase { grid-template-columns: 1fr; }
  .mini-phone { width: min(340px, 94%); margin-inline: auto; }
  .qr-copy-card { padding: 24px; }
  .reliability-grid { grid-template-columns: 1fr; }
  .reliability-card { min-height: auto; }
  .pricing-card { padding: 34px 24px; border-radius: 30px; }
  .pricing-copy h2 { font-size: 30px; line-height: 1.05; gap: .14em; }
  .pricing-copy h2 .pricing-title { display: block; width: 100%; }
  .pricing-copy h2 .pricing-dash { display: none; }
  .pricing-copy h2 .pricing-amount { display: block; width: 100%; font-size: 1.18em; margin-top: 6px; }
  .pricing-copy > p { font-size: 16px; }
  .pricing-copy .button { width: 100%; }
}


/* Footer refresh and document pages */
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
}
.footer-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(27, 25, 77, .05);
}
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.footer-info-block h3,
.footer-links-block h3 {
  margin: 0 0 14px;
  font-size: 18px;
}
.footer-info-block p,
.footer-links-block p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-info-block p strong,
.footer-links-block p strong {
  color: var(--text);
}
.footer-docs {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.footer-docs a {
  color: var(--primary);
  font-weight: 700;
}
.doc-page {
  background: linear-gradient(180deg, #f7f7ff 0%, #fbfbff 100%);
}
.doc-main {
  padding: 44px 0 80px;
}
.doc-shell {
  max-width: 940px;
  margin: 0 auto;
}
.doc-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 700;
}
.doc-back svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.doc-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(32, 29, 94, .07);
}
.doc-card h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.doc-card .doc-intro {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.doc-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 30px;
}
.doc-meta > div {
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}
.doc-meta strong {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.doc-card h2 {
  margin: 30px 0 12px;
  font-size: 24px;
}
.doc-card p,
.doc-card li {
  color: var(--muted);
  line-height: 1.75;
}
.doc-card ul,
.doc-card ol {
  margin: 0 0 18px 20px;
}
.doc-card .doc-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(98, 88, 255, .08);
  color: var(--text);
}
.doc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.doc-footer-links a {
  color: var(--primary);
  font-weight: 700;
}
@media (max-width: 950px) {
  .footer-main { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .doc-meta { grid-template-columns: 1fr; }
}


.section-heading-wide { max-width: none; }
.section-heading-wide p { max-width: 760px; margin-inline: auto; }


.transfer-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  margin-top: 28px;
}
.flow-step {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7f7ff 100%);
  box-shadow: 0 14px 34px rgba(38, 35, 98, .05);
}
.flow-step-center {
  background: linear-gradient(135deg, rgba(98,88,255,.12), rgba(98,88,255,.04));
  border-color: rgba(98,88,255,.22);
}
.flow-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(98,88,255,.1);
  color: var(--primary);
  margin-bottom: 14px;
}
.flow-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flow-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.25;
}
.flow-step small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.flow-arrow {
  align-self: center;
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
  opacity: .7;
}
@media (max-width: 1050px) {
  .transfer-flow {
    grid-template-columns: 1fr;
  }
  .flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
    line-height: 1;
  }
}


/* Improved Wi-Fi showcase */
.wifi-showcase {
  margin: 54px 0 100px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(247,247,255,.9));
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(32, 29, 94, .05);
}
.wifi-top {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(420px, .95fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}
.wifi-copy { max-width: none; }
.wifi-phones {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 26px;
  align-items: end;
}
.wifi-phones .screen-phone-secondary {
  transform: translateY(34px) rotate(1.4deg);
  opacity: .96;
}
.wifi-showcase .transfer-flow {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.wifi-showcase .flow-arrow { display: none; }
.wifi-showcase .flow-step {
  min-height: 168px;
}

/* KKT processing section */

@media (max-width: 1180px) {
  .wifi-top {
    grid-template-columns: 1fr;
  }
  .wifi-phones {
    justify-items: center;
  }
}
@media (max-width: 760px) {
  .wifi-showcase .transfer-flow {
    grid-template-columns: 1fr;
  }
  .wifi-phones {
    grid-template-columns: 1fr;
  }
  .wifi-phones .screen-phone-secondary {
    transform: none;
  }
}


.mini-phone img {
  width: 100%;
  display: block;
}
.mini-phone figcaption {
  padding: 14px 16px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.scanner-fast-section {
  background: linear-gradient(180deg, rgba(243,242,255,.55), transparent 58%);
}
.scanner-fast-card {
  display: grid;
  grid-template-columns: minmax(320px, .94fr) minmax(320px, 1.06fr);
  gap: clamp(26px, 4vw, 54px);
  padding: clamp(24px, 3vw, 34px);
  border-radius: 34px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 64px rgba(31, 28, 88, .06);
}
.scanner-fast-visual {
  position: relative;
  display: grid;
  justify-items: center;
}
.scanner-fast-steps {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  counter-reset: fastscan;
}
.scanner-fast-steps li {
  position: relative;
  padding: 18px 18px 18px 56px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  color: var(--muted);
  line-height: 1.68;
}
.scanner-fast-steps li::before {
  counter-increment: fastscan;
  content: counter(fastscan);
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.scanner-fast-steps strong { color: var(--text); }
.scanner-fast-note {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(98,88,255,.08);
  border: 1px solid rgba(98,88,255,.16);
  color: #4f5569;
  line-height: 1.7;
}
.scanner-fast-note strong { color: var(--text); }

@media (max-width: 1050px) {
  .scanner-fast-card { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .mini-phone figcaption { font-size: 12px; }
}
.scanner-fast-chip {
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f8f8ff);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(31,28,88,.05);
}
.scanner-fast-chip strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}
.scanner-fast-chip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

@media (max-width: 1250px) {
}
@media (max-width: 760px) {
}
@media (max-width: 560px) {
}


/* Real-world pain scenarios */
.pain-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(98,88,255,.08), transparent 28rem),
    linear-gradient(180deg, #fbfbff 0%, #f5f5fc 100%);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pain-card {
  min-height: 285px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 42px rgba(32,29,94,.05);
}
.pain-card-critical {
  border-color: rgba(231,97,77,.18);
  background: linear-gradient(145deg, rgba(255,246,244,.95), #fff 58%);
}
.pain-card-warning {
  border-color: rgba(221,154,37,.22);
  background: linear-gradient(145deg, rgba(255,249,237,.96), #fff 58%);
}
.pain-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary);
  background: rgba(98,88,255,.1);
}
.pain-card-critical .pain-icon {
  color: #d65440;
  background: rgba(231,97,77,.1);
}
.pain-card-warning .pain-icon {
  color: #bd7600;
  background: rgba(221,154,37,.12);
}
.pain-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pain-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.pain-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.02em;
}
.pain-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 15px;
}
.pain-legal-note {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(221,154,37,.26);
  border-radius: 24px;
  background: #fffaf0;
}
.pain-legal-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #8d5c00;
  background: #ffe9b4;
  font-size: 24px;
  font-weight: 900;
}
.pain-legal-note strong {
  display: block;
  margin: 2px 0 8px;
  font-size: 17px;
  line-height: 1.4;
}
.pain-legal-note p {
  margin: 0;
  color: #716950;
  line-height: 1.7;
}
@media (max-width: 1050px) {
  .pain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: auto; grid-template-columns: 50px 1fr; padding: 22px; }
  .pain-icon { width: 48px; height: 48px; border-radius: 15px; }
  .pain-card h3 { font-size: 20px; }
  .pain-legal-note { grid-template-columns: 1fr; padding: 20px; }
}
@media (max-width: 1200px) {
}
@media (max-width: 760px) {
}


/* Transparent wow image for scanner block */
.scanner-fast-visual {
  align-self: stretch;
}
.scanner-depth-badge {
  position: absolute;
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1180px) {
}
@media (max-width: 760px) {
  .scanner-fast-chip {
    margin-top: 8px;
  }
}


/* v14: cleaner transparent scanner visual */
.scanner-fast-card {
  align-items: start;
}
.scanner-fast-visual {
  gap: 14px;
}
.scanner-depth-badge {
  z-index: 2;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(98,88,255,.16);
  box-shadow: 0 16px 30px rgba(36, 33, 99, .08);
  font-size: 13px;
}
.scanner-depth-badge-top {
  top: 8px;
  left: 16px;
}
.scanner-depth-badge-bottom {
  right: 24px;
  bottom: 10px;
}
.scanner-fast-chip {
  width: min(520px, 100%);
  margin-inline: 18px auto;
  margin-top: -2px;
  padding: 18px 22px;
}
@media (max-width: 1200px) {
}
@media (max-width: 1050px) {
  .scanner-fast-chip {
    margin-inline: auto;
  }
}
@media (max-width: 760px) {
  .scanner-depth-badge {
    font-size: 11px;
    padding: 8px 11px;
  }
  .scanner-depth-badge-top {
    left: 8px;
    top: 2px;
  }
  .scanner-depth-badge-bottom {
    right: 8px;
    bottom: 2px;
  }
}


/* v15 final scanner block redesign */
#processing .scanner-fast-card {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(28px, 3.4vw, 46px);
  align-items: start;
}
#processing .scanner-fast-visual {
  display: grid;
  gap: 18px;
  align-content: start;
}
#processing .scanner-hero-panel {
  margin: 0;
  border-radius: 34px;
}
#processing .scanner-hero-panel::before {
  width: 62%;
  aspect-ratio: 1;
}
#processing .scanner-hero-panel::after {
  width: 48%;
  aspect-ratio: 1;
}
#processing .scanner-depth-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
#processing .scanner-fast-chip {
  width: min(560px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 28px;
  border-radius: 28px;
  border: 1px solid rgba(115, 104, 255, .10);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(249,248,255,.96));
  box-shadow: 0 18px 38px rgba(31, 28, 88, .04);
}
#processing .scanner-fast-chip strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(18px, 2vw, 22px);
}
#processing .scanner-fast-chip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
#processing .scanner-fast-copy {
  display: grid;
  gap: 16px;
}
#processing .scanner-fast-steps {
  margin: 0;
}
#processing .scanner-fast-note {
  margin-top: 4px;
}
@media (max-width: 1180px) {
  #processing .scanner-fast-card {
    grid-template-columns: 1fr;
  }
  #processing .scanner-fast-visual {
    max-width: 860px;
    width: 100%;
    margin-inline: auto;
  }
  #processing .scanner-fast-copy {
    max-width: 860px;
    width: 100%;
    margin-inline: auto;
  }
}
@media (max-width: 760px) {
  #processing .scanner-hero-panel {
    padding: 12px 12px 62px;
    border-radius: 24px;
  }
  #processing .scanner-fast-chip {
    width: 100%;
    padding: 18px 18px 20px;
    border-radius: 22px;
  }
}


/* v16 true transparent scanner visual */
#processing .scanner-fast-visual {
  overflow: visible;
}
#processing .scanner-hero-panel {
  position: relative;
  padding: 6px 0 74px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}
#processing .scanner-hero-panel::before {
  content: "";
  position: absolute;
  inset: 6% 2% 12% 0;
  border-radius: 36px;
  background:
    radial-gradient(circle at 24% 28%, rgba(123,107,255,.16) 0%, rgba(123,107,255,.08) 18%, rgba(123,107,255,0) 48%),
    radial-gradient(circle at 72% 74%, rgba(160,145,255,.18) 0%, rgba(160,145,255,.08) 18%, rgba(160,145,255,0) 52%),
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(248,247,255,.18));
  filter: blur(8px);
  z-index: 0;
}
#processing .scanner-hero-panel::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  bottom: 30px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(67,55,172,.10) 0%, rgba(67,55,172,.05) 35%, rgba(67,55,172,0) 72%);
  filter: blur(18px);
  z-index: 0;
}
#processing .scanner-hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 118%;
  max-width: none;
  margin-left: -8%;
  height: auto;
  filter: drop-shadow(0 30px 44px rgba(28,31,75,.14));
}
#processing .scanner-depth-badge {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(115, 104, 255, .12);
  box-shadow: 0 18px 34px rgba(33, 28, 89, .10);
}
#processing .scanner-depth-badge-top {
  top: 18px;
  left: 20px;
}
#processing .scanner-depth-badge-bottom {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
#processing .scanner-fast-chip {
  margin-top: -2px;
}
@media (max-width: 1180px) {
  #processing .scanner-hero-image {
    width: 110%;
    margin-left: -5%;
  }
}
@media (max-width: 760px) {
  #processing .scanner-hero-panel::before {
    inset: 8% 0 13% 0;
    border-radius: 24px;
  }
  #processing .scanner-hero-panel::after {
    left: 4%;
    right: 4%;
    bottom: 18px;
    height: 72px;
  }
  #processing .scanner-hero-image {
    width: 108%;
    margin-left: -4%;
    filter: drop-shadow(0 18px 28px rgba(28,31,75,.12));
  }
}


/* v17 mobile tuning for scanner badges */
@media (max-width: 760px) {
  #processing .scanner-hero-panel {
    padding-top: 14px;
    padding-bottom: 60px;
  }
  #processing .scanner-depth-badge {
    min-height: 32px;
    padding: 7px 12px;
    font-size: 10px;
    line-height: 1.05;
    letter-spacing: -0.015em;
  }
  #processing .scanner-depth-badge-top {
    top: -6px;
    left: 16px;
  }
  #processing .scanner-depth-badge-bottom {
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    text-align: center;
    padding-inline: 16px;
  }
}


/* v18 desktop fix: bottom scanner badge sizes to its text */
#processing .scanner-depth-badge-bottom {
  right: auto;
  width: max-content;
  max-width: calc(100% - 40px);
  white-space: nowrap;
  box-sizing: border-box;
}
@media (max-width: 760px) {
  #processing .scanner-depth-badge-bottom {
    right: auto;
    width: max-content;
    max-width: calc(100% - 16px);
    white-space: nowrap;
  }
}


/* v19 one-device license clarification */
.pricing-device-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 18px 0 20px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.pricing-device-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
}
.pricing-device-note p {
  margin: 0;
}
.pricing-device-note strong,
.pricing-device-note small {
  display: block;
}
.pricing-device-note strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 17px;
}
.pricing-device-note small {
  color: rgba(255,255,255,.80);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .pricing-device-note {
    padding: 14px;
    gap: 12px;
  }
  .pricing-device-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
  .pricing-device-note strong {
    font-size: 15px;
  }
  .pricing-device-note small {
    font-size: 13px;
  }
}


/* Interactive compare pain section */
.compare-section {
  background: linear-gradient(180deg, rgba(247, 247, 255, .86) 0%, rgba(255,255,255,0) 100%);
}
@media (max-width: 1120px) {
}
@media (max-width: 860px) {
}
@media (max-width: 640px) {
}


/* v21 compare block redesign: cleaner doodle and mobile-first */

@keyframes storyStepPulse {
  0%, 100% {
    box-shadow: 0 18px 40px rgba(98,88,255,.10);
    transform: translateY(-2px) scale(1);
  }
  50% {
    box-shadow: 0 22px 52px rgba(98,88,255,.18), 0 0 0 8px rgba(98,88,255,.05);
    transform: translateY(-2px) scale(1.012);
  }
}
@keyframes storyIndexPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(98,88,255,.20); }
  60% { box-shadow: 0 0 0 8px rgba(98,88,255,0); }
}

@media (max-width: 1080px) { }
@media (max-width: 640px) {
}


/* v22 pain doodle compare */
@media (max-width: 1080px) {
}
@media (max-width: 640px) {
}




/* v24: simpler pain comparison with synced steps */
@media (max-width: 1160px) {
}
@media (max-width: 640px) {
}


/* v25: generated comic comparison with synced steps */
.story-compare {
  display: grid;
  gap: 24px;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
@property --story-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.story-stepbar {
  display: grid;
  gap: 12px;
}
.story-stepbar--desktop {
  align-self: stretch;
  position: sticky;
  top: 104px;
}
.story-stepbar--mobile {
  display: none;
}
.story-step {
  appearance: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 18px 16px;
  border: 1px solid rgba(98,88,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  color: var(--text);
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(31,28,88,.05);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.story-step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 2.5px;
  background: conic-gradient(
    from var(--story-border-angle),
    rgba(98,88,255,.62) 0deg,
    rgba(98,88,255,.62) 268deg,
    rgba(147,136,255,.82) 286deg,
    rgba(255,255,255,.98) 306deg,
    #a79dff 326deg,
    rgba(98,88,255,.62) 348deg,
    rgba(98,88,255,.62) 360deg
  );
  opacity: 0;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
}
.story-step > * {
  position: relative;
  z-index: 1;
}
.story-step:hover,
.story-step.is-active {
  transform: translateY(-2px);
  border-color: rgba(98,88,255,.20);
  background: linear-gradient(180deg, rgba(248,247,255,.98), #fff);
  box-shadow: 0 20px 44px rgba(98,88,255,.12);
}
.story-step.is-active {
  animation: none;
  border-color: transparent;
}
.story-step.is-active::before {
  opacity: 1;
  animation: storyBorderOrbit 5s linear infinite;
}
.story-step.is-active .story-step-index {
  animation: none;
  background: linear-gradient(180deg, rgba(98,88,255,.14), rgba(98,88,255,.2));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.66);
}
.story-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(98,88,255,.10);
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
}
.story-step-copy strong,
.story-step-copy small {
  display: block;
}
.story-step-copy strong {
  font-size: 18px;
  line-height: 1.1;
}
.story-step-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
@keyframes storyBorderOrbit {
  from {
    --story-border-angle: 0deg;
  }
  to {
    --story-border-angle: 360deg;
  }
}
.story-side {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(31,28,88,.06);
  transition: opacity .16s ease, transform .16s ease;
}
.story-side.is-changing {
  opacity: .55;
  transform: translateY(2px);
}
.story-side-bad {
  border-color: rgba(255,126,79,.22);
  background: linear-gradient(180deg, rgba(255,248,244,.96), #fff 34%);
}
.story-side-good {
  border-color: rgba(98,88,255,.20);
  background: linear-gradient(180deg, rgba(247,245,255,.98), #fff 34%);
}
.story-side-head {
  margin-bottom: 18px;
}
.story-side-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.story-side-bad .story-side-label {
  color: #cf6439;
  background: rgba(255,126,79,.12);
}
.story-side-good .story-side-label {
  color: var(--primary);
  background: rgba(98,88,255,.10);
}
.story-side-head h3 {
  margin: 14px 0 0;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: .98;
  letter-spacing: -.045em;
}
.story-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(218,221,236,.9);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fcfbff);
  padding: 0;
}
.story-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.story-figure-step {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7f5ff 0%, #eeeaff 100%);
  border: 1px solid rgba(98,88,255,.18);
  color: var(--primary);
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(98,88,255,.15);
  pointer-events: none;
}
.story-side-bad .story-figure-step {
  background: linear-gradient(180deg, #fff7f3 0%, #ffebe2 100%);
  border-color: rgba(255,126,79,.22);
  color: #d26038;
  box-shadow: 0 14px 34px rgba(255,126,79,.14);
}
.story-copy {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
}
.story-copy h4 {
  margin: 0;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.story-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.story-copy .story-summary {
  color: var(--text);
  font-weight: 700;
}
.story-legal {
  position: relative;
  padding: 24px 24px 24px 82px;
  border: 1px solid rgba(98,88,255,.28);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(237,232,255,.98), rgba(248,245,255,.96));
  color: #5f6684;
  line-height: 1.75;
  box-shadow: 0 22px 50px rgba(98,88,255,.12);
  font-size: 18px;
}
.story-legal::before {
  content: '!';
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #6d62ff, #5b4fff);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(98,88,255,.24);
}
.story-legal strong {
  color: var(--text);
}
@media (max-width: 1180px) {
  .story-grid {
    grid-template-columns: minmax(0, 1fr) 176px minmax(0, 1fr);
  }
  .story-step {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 16px 14px;
  }
  .story-step-index {
    width: 46px;
    height: 46px;
    font-size: 21px;
  }
  .story-step-copy strong {
    font-size: 16px;
  }
  .story-step-copy small {
    font-size: 13px;
  }
}
@media (max-width: 1080px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-stepbar--desktop {
    display: none;
  }
  .story-stepbar--mobile {
    display: grid;
    order: 2;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .story-side-bad { order: 1; }
  .story-side-good { order: 3; }
}
@media (max-width: 640px) {
  .story-compare {
    gap: 16px;
  }
  .story-side {
    padding: 16px;
    border-radius: 24px;
  }
  .story-side-head {
    margin-bottom: 12px;
  }
  .story-side-head h3 {
    font-size: 28px;
  }
  .story-stepbar--mobile {
    gap: 8px;
    padding: 2px 0;
  }
  .story-step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    padding: 12px 10px;
    border-radius: 18px;
  }
  .story-step-index {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 16px;
  }
  .story-step-copy strong {
    font-size: 14px;
  }
  .story-step-copy small {
    font-size: 11px;
  }
  .story-figure {
    border-radius: 18px;
  }
  .story-figure-step {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 22px;
  }
  .story-copy {
    margin-top: 12px;
    padding: 16px;
    border-radius: 18px;
  }
  .story-copy h4 {
    font-size: 21px;
  }
  .story-copy p,
  .story-legal {
    font-size: 14px;
    line-height: 1.6;
  }
  .story-legal {
    padding: 18px 16px 18px 62px;
    border-radius: 18px;
  }
  .story-legal::before {
    left: 16px;
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .story-step.is-active::before,
  .story-step.is-active,
  .story-step.is-active .story-step-index {
    animation: none !important;
  }
}



/* v29 heading width cleanup */
.section-heading,
.section-heading-wide,
.how-copy {
  max-width: none;
}
.section-heading p,
.section-heading-wide p,
.how-copy > p {
  max-width: none;
}


/* v34: one-at-a-time pain carousel */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.voices-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(98,88,255,.11), transparent 29%),
    radial-gradient(circle at 91% 76%, rgba(255,151,105,.11), transparent 27%),
    linear-gradient(180deg, #fbfaff 0%, #fff 100%);
}
.voices-section::before,
.voices-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.voices-section::before {
  width: 310px;
  height: 310px;
  left: -178px;
  top: 24%;
  border: 48px solid rgba(98,88,255,.045);
}
.voices-section::after {
  width: 235px;
  height: 235px;
  right: -130px;
  bottom: 7%;
  border: 40px solid rgba(255,151,105,.052);
}
.voices-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  max-width: 900px;
  margin: -18px auto 30px;
  padding: 16px 20px;
  border: 1px solid rgba(98,88,255,.18);
  border-radius: 20px;
  background: rgba(247,245,255,.92);
  box-shadow: 0 16px 36px rgba(54,48,120,.07);
}
.voices-note > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #7268ff, #5e52f3);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(98,88,255,.22);
}
.voices-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.voices-note strong {
  color: var(--text);
}
.voices-carousel {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin-inline: auto;
  outline: none;
}
.voices-carousel:focus-visible {
  border-radius: 32px;
  box-shadow: 0 0 0 4px rgba(98,88,255,.14);
}
.voices-stage {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 32px;
  transition: height .42s cubic-bezier(.22,.75,.2,1);
  touch-action: pan-y;
}
.voices-track {
  display: flex;
  align-items: flex-start;
  will-change: transform;
  transition: transform .58s cubic-bezier(.22,.75,.2,1);
}
.voice-card {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  min-height: 280px;
  margin: 0;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(214,217,234,.94);
  border-radius: 32px;
  background:
    radial-gradient(circle at 94% 8%, rgba(98,88,255,.09), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(251,250,255,.98));
  box-shadow: 0 24px 64px rgba(31,28,88,.10);
}
.voice-card:nth-child(3n+2) {
  background:
    radial-gradient(circle at 94% 8%, rgba(255,139,92,.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(255,250,247,.98));
}
.voice-card:nth-child(3n+3) {
  background:
    radial-gradient(circle at 94% 8%, rgba(47,184,166,.09), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(248,254,252,.98));
}
.voice-card::after {
  content: "“";
  position: absolute;
  right: 28px;
  bottom: -42px;
  color: rgba(98,88,255,.065);
  font-family: Georgia, serif;
  font-size: 180px;
  line-height: 1;
  pointer-events: none;
}
.voice-card-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}
.voice-person strong,
.voice-person small {
  display: block;
}
.voice-person strong {
  font-size: 16px;
  line-height: 1.25;
}
.voice-person small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}
.voice-topic {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(98,88,255,.13);
  border-radius: 999px;
  background: rgba(98,88,255,.075);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.voice-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.94);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(31,28,88,.15);
}
.voice-avatar svg {
  width: 38px;
  height: 38px;
  opacity: .76;
  filter: blur(.55px);
}
.voice-avatar svg circle,
.voice-avatar svg path {
  fill: rgba(255,255,255,.9);
}
.voice-avatar-owner {
  background: linear-gradient(145deg, #7268ff, #aca5ff);
}
.voice-avatar-seller {
  background: linear-gradient(145deg, #ff8e62, #ffc09f);
}
.voice-avatar-cashier {
  background: linear-gradient(145deg, #2fb8a6, #9ce4d9);
}
.voice-avatar-manager {
  background: linear-gradient(145deg, #51657d, #9fb0c3);
}
.voice-card blockquote {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: clamp(26px, 4vw, 38px) 0 0;
  color: #3f4663;
  font-size: clamp(20px, 2.25vw, 28px);
  font-weight: 700;
  line-height: 1.52;
  letter-spacing: -.018em;
}
.voices-controls {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 18px;
  width: min(760px, calc(100% - 24px));
  margin: 22px auto 0;
}
.voices-arrow {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(98,88,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(31,28,88,.09);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.voices-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(98,88,255,.34);
  background: #fff;
  box-shadow: 0 18px 38px rgba(98,88,255,.13);
}
.voices-arrow:active {
  transform: translateY(0) scale(.97);
}
.voices-arrow:focus-visible {
  outline: 3px solid rgba(98,88,255,.22);
  outline-offset: 3px;
}
.voices-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.voices-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px 16px;
}
.voices-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(98,88,255,.10);
}
.voices-progress span {
  display: block;
  width: 5.882%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5e52f3, #8d84ff);
  transition: width .5s cubic-bezier(.22,.75,.2,1);
}
.voices-count {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.voices-count strong {
  color: var(--text);
  font-size: 20px;
}
.voices-count span {
  font-size: 14px;
}
.voices-status small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
@media (max-width: 700px) {
  .voices-note {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    margin-top: -10px;
    margin-bottom: 20px;
    padding: 14px;
    border-radius: 18px;
  }
  .voices-note > span {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 17px;
  }
  .voices-note p {
    font-size: 13px;
    line-height: 1.5;
  }
  .voices-stage {
    min-height: 300px;
    border-radius: 24px;
  }
  .voice-card {
    min-height: 300px;
    padding: 22px 18px 26px;
    border-radius: 24px;
  }
  .voice-card-head {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 11px;
  }
  .voice-topic {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 30px;
    padding-inline: 11px;
    font-size: 11px;
  }
  .voice-avatar {
    width: 48px;
    height: 48px;
  }
  .voice-avatar svg {
    width: 33px;
    height: 33px;
  }
  .voice-person strong {
    font-size: 14px;
  }
  .voice-person small {
    font-size: 11px;
  }
  .voice-card blockquote {
    margin-top: 22px;
    font-size: clamp(18px, 5vw, 23px);
    line-height: 1.48;
  }
  .voice-card::after {
    right: 12px;
    bottom: -30px;
    font-size: 130px;
  }
  .voices-controls {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
  }
  .voices-arrow {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
  .voices-status {
    gap: 5px 10px;
  }
  .voices-progress {
    height: 6px;
  }
  .voices-count strong {
    font-size: 17px;
  }
  .voices-status small {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .voices-track,
  .voices-stage,
  .voices-progress span,
  .voices-arrow {
    transition: none !important;
  }
}


/* Многостраничная структура: продолжение исходного дизайна без смены визуальной системы. */
.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] { color: var(--primary); }
.desktop-nav a[aria-current="page"] { position: relative; }
.desktop-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}
.subpage-hero { min-height: auto; padding-block: clamp(72px, 8vw, 116px); }
.subpage-hero .hero-grid { min-height: 560px; }
.subpage-hero .hero-copy { align-self: center; }
.subpage-hero .phone-stage { min-height: 520px; }
.subpage-hero .phone-main { width: min(310px, 72vw); }
.support-card-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.support-card-links a { font-weight: 800; color: var(--primary); }
.site-footer a:hover { color: var(--primary); }
.doc-page .site-footer { margin-top: 30px; }
@media (max-width: 760px) {
  .subpage-hero .hero-grid { min-height: 0; }
  .subpage-hero .phone-stage { min-height: 430px; }
  .desktop-nav a[aria-current="page"]::after { display: none; }
}


/* Бесплатная версия и вторичное действие покупки — продолжение существующей визуальной системы. */
.button-outline-light {
  color: white;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  box-shadow: none;
}
.button-outline-light:hover {
  border-color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.15);
}
.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.pricing-actions .button-outline-light {
  font-size: 14px;
}
.hero-price-note > span {
  line-height: 1.45;
}
.hero-price-note > span span[data-config-text="price"] {
  color: var(--primary-dark);
  font-weight: 800;
}
@media (max-width: 560px) {
  .pricing-actions {
    display: grid;
  }
  .pricing-actions .button {
    width: 100%;
  }
  .hero-price-note {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
