:root {
  color-scheme: light;
  --bg: oklch(98.5% 0.009 250);
  --bg-alt: oklch(95.8% 0.015 250);
  --surface: oklch(99.2% 0.004 250);
  --surface-strong: oklch(97.2% 0.01 250);
  --text: oklch(22% 0.03 255);
  --muted: oklch(48% 0.04 255);
  --line: oklch(88% 0.015 250);
  --accent: oklch(56% 0.22 255);
  --accent-2: oklch(66% 0.18 248);
  --accent-soft: oklch(93% 0.04 255);
  --good: oklch(66% 0.17 145);
  --paper: oklch(99.2% 0.004 250);
  --shadow: 0 22px 70px rgba(17, 43, 94, 0.12);
  --shadow-soft: 0 12px 40px rgba(17, 43, 94, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 18%, rgba(36, 92, 255, 0.08), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(36, 92, 255, 0.08), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--paper) 38%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  position: relative;
  overflow: clip;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(to right, rgba(18, 41, 87, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18, 41, 87, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(247, 250, 255, 0.82);
  border-bottom: 1px solid rgba(138, 160, 205, 0.18);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 156px;
  height: auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.ommo-logo {
  display: block;
  width: 156px;
  height: auto;
}

.ommo-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.05;
}

.brand-title {
  color: var(--text);
}

.brand-subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  opacity: 0.84;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
  color: var(--accent);
  outline: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid rgba(36, 92, 255, 0.12);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(255, 255, 255, 0.82) 100%);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(36, 92, 255, 0.24);
  box-shadow: 0 18px 40px rgba(17, 43, 94, 0.12);
  outline: none;
}

.header-cta svg {
  width: 17px;
  height: 17px;
  fill: var(--accent);
}

.header-cta img {
  width: 17px;
  height: 17px;
  display: block;
  filter: brightness(0) invert(1);
}

.hero {
  position: relative;
  padding: 60px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(36, 92, 255, 0.08), rgba(36, 92, 255, 0.04));
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  box-shadow: inset 0 0 0 1px rgba(36, 92, 255, 0.08);
}

.eyebrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

h1 {
  margin: 18px 0 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 11ch;
}

.accent {
  color: var(--accent);
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 63ch;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  color: var(--muted);
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  will-change: transform;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: block;
  filter: brightness(0) invert(1);
}

.button-primary {
  color: var(--paper);
  background: linear-gradient(180deg, #2d68ff 0%, #245cff 100%);
  box-shadow: 0 18px 34px rgba(36, 92, 255, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(36, 92, 255, 0.3);
  outline: none;
}

.button-secondary {
  color: var(--text);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(36, 92, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(36, 92, 255, 0.18);
  outline: none;
}

.microcopy {
  margin-top: 18px;
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 44ch;
}

.microcopy svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  stroke: #a6b3cb;
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.trust-item {
  min-height: 82px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid rgba(36, 92, 255, 0.08);
  box-shadow: 0 12px 26px rgba(17, 43, 94, 0.06);
}

.trust-item strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.social-proof {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 92, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 42px;
  height: 42px;
  margin-left: -8px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(17, 43, 94, 0.1);
  background-size: cover;
  background-position: center;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar.one {
  background-image: radial-gradient(circle at 35% 30%, #ffe0c9 0 22%, #9db3ff 24% 40%, #3650b8 42% 100%);
}

.avatar.two {
  background-image: radial-gradient(circle at 30% 30%, #f2d2be 0 20%, #8cc7ff 24% 44%, #233e92 46% 100%);
}

.avatar.three {
  background-image: radial-gradient(circle at 30% 30%, #efc9b0 0 21%, #9be0ff 24% 45%, #2a5ae8 47% 100%);
}

.proof-text {
  flex: 1 1 auto;
  min-width: 0;
}

.proof-text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.proof-text span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #e0a800;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 860px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 8% 8%;
  background:
    radial-gradient(circle at 40% 50%, rgba(36, 92, 255, 0.12), transparent 45%),
    radial-gradient(circle at 72% 28%, rgba(36, 92, 255, 0.08), transparent 24%);
  border-radius: 48px;
  filter: blur(12px);
  z-index: -2;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 22%, rgba(36, 92, 255, 0.07) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 74%, rgba(36, 92, 255, 0.06) 0 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.45;
}

.phone {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 0.54;
  padding: 11px;
  border-radius: 58px;
  background:
    linear-gradient(180deg, #16181d 0%, #1a1d24 12%, #111318 100%);
  box-shadow:
    0 26px 50px rgba(11, 18, 33, 0.35),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05),
    inset 0 -18px 40px rgba(255, 255, 255, 0.04);
  transform: rotate(-1.2deg);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 10px 10px auto;
  height: 18px;
  border-radius: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02));
  opacity: 0.24;
  pointer-events: none;
}

.screen {
  position: relative;
  height: 100%;
  border-radius: 46px;
  background:
    linear-gradient(180deg, #f7f9ff 0%, #f5f7fc 18%, #fdfdff 100%);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(18, 31, 68, 0.06);
}

.status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 10px;
  color: #1d2028;
  font-weight: 700;
  font-size: 0.92rem;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pill {
  width: 15px;
  height: 8px;
  border-radius: 10px;
  background: #1d2028;
  opacity: 0.9;
}

.camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1d2028;
  box-shadow: 0 0 0 2px rgba(29, 32, 40, 0.08);
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 24px 18px;
  font-weight: 700;
  color: var(--accent);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
}

.back-link svg,
.screen-action svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.screen-title {
  display: grid;
  place-items: center;
  text-align: center;
  flex: 1;
}

.screen-title strong {
  display: block;
  font-size: 1.08rem;
  color: #1f2430;
}

.screen-title span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}

.screen-action {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--paper);
  box-shadow: none;
}

.screen-action img,
.ommo-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.message {
  margin: 0 18px 14px;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid rgba(35, 49, 79, 0.06);
  box-shadow: 0 18px 30px rgba(11, 18, 33, 0.05);
  overflow: hidden;
}

.message-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 18px 10px;
}

.message-badge {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--paper);
  box-shadow: 0 10px 18px rgba(36, 92, 255, 0.25);
}

.message-badge svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.message-body {
  flex: 1;
}

.message-body h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.message-body p {
  margin: 4px 0 0;
  color: #2f3443;
  font-size: 0.95rem;
}

.divider {
  height: 1px;
  margin: 0 18px;
  background: rgba(35, 49, 79, 0.08);
}

.insight-list {
  padding: 6px 12px 12px;
}

.insight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px 10px;
  border-radius: 18px;
}

.insight + .insight {
  border-top: 1px solid rgba(35, 49, 79, 0.08);
  border-radius: 0;
}

.insight-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--paper);
  flex: 0 0 auto;
  box-shadow: 0 14px 18px rgba(17, 43, 94, 0.12);
}

.insight-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insight h4 {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.insight p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #394255;
}

.message-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px 16px;
}

.message-chip {
  flex: 1;
  min-height: 46px;
  border-radius: 14px;
  background: #f4f7fd;
  border: 1px solid rgba(35, 49, 79, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #27314b;
}

.message-chip svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.message-chip.primary {
  background: linear-gradient(180deg, #2e6cff, #2660ff);
  color: var(--paper);
  box-shadow: 0 14px 20px rgba(36, 92, 255, 0.18);
}

.message-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 16px;
}

.input-shell {
  min-height: 44px;
  border-radius: 14px;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: #f7f9fd;
  color: #8993aa;
  border: 1px solid rgba(35, 49, 79, 0.06);
  font-size: 0.95rem;
}

.bubble {
  position: absolute;
  width: 198px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 28px rgba(17, 43, 94, 0.08);
  border: 1px solid rgba(36, 92, 255, 0.07);
  backdrop-filter: blur(10px);
}

.bubble strong {
  display: block;
  font-size: 0.97rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.bubble span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

.bubble .mini-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  color: var(--paper);
}

.bubble .mini-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.bubble.sales {
  top: 120px;
  right: -238px;
}

.bubble.ads {
  top: 270px;
  right: -245px;
}

.bubble.stock {
  top: 418px;
  right: -244px;
}

.bubble.reviews {
  top: 570px;
  right: -232px;
}

.bubble.competitors {
  top: 720px;
  right: -250px;
}

.connector {
  position: absolute;
  right: 12px;
  width: 96px;
  height: 2px;
  border-top: 2px dashed rgba(36, 92, 255, 0.25);
  transform-origin: right center;
}

.bubble.sales .connector {
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
}

.bubble.ads .connector,
.bubble.stock .connector,
.bubble.reviews .connector,
.bubble.competitors .connector {
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
}

.bubble.sales::before,
.bubble.ads::before,
.bubble.stock::before,
.bubble.reviews::before,
.bubble.competitors::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(36, 92, 255, 0.18);
  box-shadow: 0 0 0 8px rgba(36, 92, 255, 0.04);
}

.bubble.sales .connector { width: 108px; }
.bubble.ads .connector { width: 118px; }
.bubble.stock .connector { width: 116px; }
.bubble.reviews .connector { width: 96px; }
.bubble.competitors .connector { width: 118px; }

.bubble.sales .mini-icon { background: linear-gradient(180deg, #2f6aff, #245cff); }
.bubble.ads .mini-icon { background: linear-gradient(180deg, #6f5efc, #5d4ff7); }
.bubble.stock .mini-icon { background: linear-gradient(180deg, #52c164, #3cab4c); }
.bubble.reviews .mini-icon { background: linear-gradient(180deg, #ff5f96, #ee3b7c); }
.bubble.competitors .mini-icon { background: linear-gradient(180deg, #2f6aff, #245cff); }

.section {
  padding: 92px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
  max-width: 760px;
}

.section-kicker {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-lead {
  margin: 0;
  max-width: 66ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.insight-board {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.board-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.96) 100%);
  border: 1px solid rgba(36, 92, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.board-panel.primary {
  padding: 30px;
  position: relative;
  min-height: 340px;
}

.board-panel.primary::before {
  content: "";
  position: absolute;
  inset: auto -24px -24px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 92, 255, 0.13), transparent 68%);
  pointer-events: none;
}

.board-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.board-title .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 7px rgba(104, 202, 120, 0.13);
}

.board-primary-copy {
  margin-top: 14px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.signal-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.signal-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(36, 92, 255, 0.08);
  border-radius: 18px;
}

.signal-list strong {
  font-size: 0.97rem;
}

.signal-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.signal-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--paper);
}

.signal-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-icon.blue { background: linear-gradient(180deg, #2e6cff, #245cff); }
.signal-icon.orange { background: linear-gradient(180deg, #ffb03a, #ff8f1c); }
.signal-icon.green { background: linear-gradient(180deg, #4cc66c, #35ab4e); }
.signal-icon.pink { background: linear-gradient(180deg, #ff5e8b, #ea3e73); }

.board-side {
  display: grid;
  gap: 18px;
}

.mini-panel {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.96) 100%);
  border: 1px solid rgba(36, 92, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.mini-panel h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.mini-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.mini-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.mini-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(36, 92, 255, 0.08);
}

.mini-list strong {
  display: block;
  font-size: 0.95rem;
}

.mini-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.96) 100%);
  border: 1px solid rgba(36, 92, 255, 0.08);
  box-shadow: var(--shadow-soft);
  min-height: 230px;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 92, 255, 0.08), transparent 70%);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #2d68ff, #245cff);
  color: var(--paper);
  font-weight: 800;
  box-shadow: 0 14px 18px rgba(36, 92, 255, 0.2);
}

.step h3 {
  margin: 16px 0 0;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.step ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.step li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2b3343;
  font-size: 0.95rem;
}

.step li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-top: 0.48rem;
  background: rgba(36, 92, 255, 0.8);
  flex: 0 0 auto;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.tall-panel {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.96) 100%);
  border: 1px solid rgba(36, 92, 255, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  min-height: 360px;
}

.tall-panel h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.tall-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.pill-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pill-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(36, 92, 255, 0.08);
  border-radius: 16px;
}

.pill-list strong {
  font-size: 0.95rem;
}

.pill-list span {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.story {
  display: grid;
  gap: 14px;
}

.story-card {
  padding: 20px 20px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(36, 92, 255, 0.08);
}

.story-card h4 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.story-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.functions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.function-card {
  padding: 20px 18px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.96) 100%);
  border: 1px solid rgba(36, 92, 255, 0.08);
  box-shadow: var(--shadow-soft);
  min-height: 180px;
}

.function-card:nth-child(4),
.function-card:nth-child(5),
.function-card:nth-child(6) {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.function-card .index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(180deg, #2d68ff, #245cff);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 14px 18px rgba(36, 92, 255, 0.18);
}

.function-card h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.function-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.cta-strip {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(36, 92, 255, 0.08), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(36, 92, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-strip strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.cta-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.93rem;
}

.cta-strip a {
  flex: 0 0 auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.96) 100%);
  border: 1px solid rgba(36, 92, 255, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(36, 92, 255, 0.08);
  flex: 0 0 auto;
  font-size: 1.1rem;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 72ch;
}

.lead-form {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.lead-panel {
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 10%, rgba(36, 92, 255, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(36, 92, 255, 0.06), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(36, 92, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.lead-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.lead-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 60ch;
}

.lead-steps {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.lead-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(36, 92, 255, 0.08);
}

.lead-steps strong {
  display: block;
  font-size: 0.96rem;
}

.lead-steps span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-side {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.96) 100%);
  border: 1px solid rgba(36, 92, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  align-content: start;
  gap: 14px;
}

.lead-side h3 {
  margin: 0;
  font-size: 1.1rem;
}

.lead-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-row {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.field {
  min-height: 52px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid rgba(36, 92, 255, 0.12);
  padding: 0 16px;
  display: flex;
  align-items: center;
  color: #8c96ab;
}

.footnote {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

footer {
  padding: 28px 0 42px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 92, 255, 0.08);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
  outline: none;
}

.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;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: rise 0.7s ease-out both;
}

.delay-1 {
  animation-delay: 90ms;
}

.delay-2 {
  animation-delay: 170ms;
}

.delay-3 {
  animation-delay: 250ms;
}

@media (max-width: 1120px) {
  .site-header .wrap {
    min-height: 74px;
  }

  .nav {
    gap: 18px;
  }

  .hero-grid,
  .insight-board,
  .split-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 780px;
    order: -1;
  }

  .bubble.sales,
  .bubble.ads,
  .bubble.stock,
  .bubble.reviews,
  .bubble.competitors {
    right: auto;
  }

  .bubble.sales { left: 40px; top: 54px; }
  .bubble.ads { left: calc(100% - 260px); top: 210px; }
  .bubble.stock { left: 24px; top: 360px; }
  .bubble.reviews { left: calc(100% - 250px); top: 520px; }
  .bubble.competitors { left: 42px; top: 676px; }
}

@media (max-width: 820px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header .wrap {
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0 16px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.94rem;
  }

  .hero {
    padding-top: 34px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .social-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 720px;
  }

  .phone {
    width: min(360px, 100%);
  }

  .bubble {
    width: 168px;
    padding: 14px 15px;
  }

  .bubble.sales { left: 0; top: 52px; }
  .bubble.ads { left: calc(100% - 178px); top: 190px; }
  .bubble.stock { left: 0; top: 338px; }
  .bubble.reviews { left: calc(100% - 178px); top: 484px; }
  .bubble.competitors { left: 0; top: 628px; }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .functions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  h1 {
    max-width: 9.5ch;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .cta-row {
    align-items: stretch;
  }

  .microcopy {
    max-width: none;
  }

  .hero-visual {
    min-height: 830px;
    overflow: visible;
  }

  .phone {
    width: min(310px, 100%);
    border-radius: 44px;
  }

  .screen {
    border-radius: 34px;
  }

  .bubble {
    display: none;
  }

  .status {
    padding-inline: 18px;
  }

  .screen-header {
    padding-inline: 18px;
  }

  .message,
  .message-foot,
  .message-input {
    margin-inline: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .tall-panel,
  .lead-panel,
  .lead-side {
    padding: 22px;
  }

  .functions-grid {
    grid-template-columns: 1fr;
  }

  summary {
    padding-inline: 18px;
  }

  details p {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* Ommo v2 hero: faithful implementation of the supplied layout */
body { background: #fff; color: #071635; }
.noise { display: none; }
.site-header { position: relative; background: rgba(255,255,255,.96); backdrop-filter: blur(18px); border-bottom: 1px solid #edf1f8; }
.site-header .wrap { width: min(1440px, calc(100% - 72px)); min-height: 96px; }
.brand { gap: 24px; }
.ommo-logo { color: #1457f5; font-size: 42px; font-weight: 800; letter-spacing: -5px; line-height: 1; }
.ommo-tagline { color: #52648f; font-size: 14px; font-weight: 500; line-height: 1.55; letter-spacing: -.01em; }
.nav { gap: clamp(26px, 4vw, 64px); }
.nav a { color: #071635; font-size: 16px; font-weight: 500; opacity: 1; }
.header-cta { border: 0; border-radius: 11px; padding: 16px 24px; color: #fff; background: linear-gradient(135deg,#0b63ff,#0647eb); box-shadow: 0 12px 28px rgba(15,84,245,.18); }
.header-cta svg { fill: #fff; }
.hero { min-height: 900px; padding: 42px 0 92px; overflow: hidden; background: radial-gradient(circle at 64% 40%, rgba(29,107,255,.045), transparent 30%), #fff; }
.hero-grid { width: min(1440px, calc(100% - 80px)); margin: 0 auto; grid-template-columns: minmax(580px, 1fr) minmax(570px, .94fr); gap: 32px; align-items: start; }
.hero-copy-block { padding-top: 1px; position: relative; z-index: 3; }
.partner-badge { display: inline-flex; align-items: center; height: 50px; padding: 0 18px; border-radius: 11px; color: #0750ef; background: linear-gradient(135deg,#edf3ff,#f7f9fd); font-size: 15px; font-weight: 600; }
.partner-badge strong { padding-right: 19px; margin-right: 18px; border-right: 1px solid #dfe7f6; font-size: 29px; font-weight: 800; letter-spacing: 3px; line-height: 1; }
.hero h1 { max-width: 760px; margin-top: 34px; font-size: clamp(46px,4vw,64px); line-height: 1.04; letter-spacing: -.045em; font-weight: 800; }
.hero h1 .accent { color: #1261ff; }
.hero-copy { max-width: 650px; margin-top: 26px; font-size: 18px; line-height: 1.78; color: #52648f; }
.cta-row { margin-top: 36px; display: flex; gap: 26px; }
.button { min-height: 68px; border-radius: 13px; padding: 0 32px; font-size: 17px; font-weight: 700; }
.button-primary { background: linear-gradient(135deg,#0b63ff,#0647eb); box-shadow: 0 14px 30px rgba(11,82,241,.2); }
.button-secondary { border: 1px solid #dfe6f2; color: #193266; background: #fff; box-shadow: 0 8px 24px rgba(34,57,106,.04); }
.button svg { width: 23px; height: 23px; }
.button img { width: 23px; height: 23px; }
.microcopy { margin-top: 21px; color: #5a6d98; font-size: 14px; }
.microcopy svg { stroke: #0b59f4; }
.benefits { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 50px; max-width: 820px; }
.benefit { display: grid; grid-template-columns: 50px 1fr; gap: 12px; align-items: start; }
.benefit-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 12px; color: #0b59f4; background: linear-gradient(145deg,#eef4ff,#f9fbff); }
.benefit-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefit strong { display: block; margin-top: 2px; font-size: 12px; color: #10234d; }
.benefit span { display: block; margin-top: 5px; color: #6b7ca2; font-size: 10px; line-height: 1.55; }
.api-strip { display: inline-flex; align-items: center; gap: 30px; margin-top: 42px; min-height: 58px; padding: 0 28px; border: 1px solid #e0e7f4; border-radius: 13px; color: #46608e; background: #fbfcff; font-size: 12px; }
.api-strip .blue { color: #0757f5; font-weight: 600; }
.api-strip .divider-v { width: 1px; height: 22px; background: #e3e8f2; }
.hero-visual { min-height: 815px; position: relative; display: block; }
.hero-visual::before { inset: 150px -50px 80px 60px; border-radius: 50%; background: linear-gradient(145deg,#0879ff,#0750ef 58%,#0544e5); box-shadow: 0 34px 90px rgba(11,80,236,.12); }
.hero-grid-lines { display: none; }
.phone { position: absolute; top: -10px; left: 50%; z-index: 3; width: 390px; height: 840px; transform: translateX(-47%); padding: 12px; border: 1px solid #e5eaf2; border-radius: 49px; background: linear-gradient(145deg,#f8fafd,#fff); box-shadow: 0 20px 50px rgba(27,48,86,.18), inset 0 0 0 5px rgba(238,242,248,.8); }
.screen { height: 100%; overflow: hidden; border-radius: 39px; background: linear-gradient(180deg,#fff 0 14%,#eff5ff 30%,#f7f9fe 100%); }
.status { padding: 23px 29px 10px; font-size: 15px; }
.screen-header { height: 58px; padding: 0 20px; border: 0; background: rgba(255,255,255,.72); }
.back-link { color: #0758f7; font-size: 15px; }
.screen-title strong { font-size: 16px; }
.screen-title span { color: #6d7c9e; }
.ommo-avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 0; color: #fff; background: transparent; font-size: 20px; font-weight: 800; box-shadow: none; overflow: visible; }
.chat-day { width: max-content; margin: 22px auto 18px; padding: 3px 11px; border-radius: 999px; color: #fff; background: rgba(122,143,183,.35); font-size: 11px; }
.message { margin: 0 13px; border: 0; border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 10px 28px rgba(48,75,129,.09); }
.message-head { padding: 16px 16px 8px; gap: 10px; }
.message-badge { width: 24px; height: 24px; border-radius: 50%; }
.message-body h3 { margin: 7px 0 3px; font-size: 18px; }
.message-body p { margin: 0; color: #222; font-size: 14px; line-height: 1.55; }
.report-time { margin-left: auto; align-self: end; color: #7789ad; font-size: 12px; }
.task-list { display: grid; gap: 8px; padding: 4px 12px 12px; }
.task-card { display: grid; grid-template-columns: 18px 1fr 12px; gap: 10px; align-items: start; padding: 12px 10px; border: 1px solid #e1e6ef; border-radius: 13px; background: #fff; }
.task-dot { width: 15px; height: 15px; margin-top: 2px; border-radius: 50%; }
.task-card strong { display: block; font-size: 13px; color: #202020; }
.task-card p { margin: 3px 0 0; font-size: 11.5px; line-height: 1.45; color: #242424; }
.chev { margin-top: 12px; width: 8px; height: 8px; border-right: 2px solid #7d8cab; border-top: 2px solid #7d8cab; transform: rotate(45deg); }
.message-actions { display: grid; grid-template-columns: 1fr .85fr 1fr; gap: 12px; padding: 12px 13px 14px; }
.message-actions button { height: 40px; border: 0; border-radius: 10px; color: #173475; background: #fff; box-shadow: 0 4px 12px rgba(36,58,104,.1); font-family: inherit; font-weight: 600; }
.message-actions .done { color: #fff; background: linear-gradient(135deg,#0b63ff,#0647eb); }
.ozon-cube { position: absolute; right: -26px; top: 350px; z-index: 5; width: 140px; height: 140px; display: grid; place-items: center; transform: rotate(15deg); border-radius: 30px; color: #fff; background: linear-gradient(145deg,#3181ff,#0751f0); box-shadow: inset 0 1px 12px rgba(255,255,255,.35), 0 20px 35px rgba(3,65,201,.25); font-size: 34px; font-weight: 800; letter-spacing: -3px; }
@media (max-width: 1180px) { .site-header .wrap,.hero-grid{width:min(1050px, calc(100% - 40px))} .nav{display:none}.hero-grid{grid-template-columns:1fr 470px}.hero h1{font-size:49px}.benefits{grid-template-columns:repeat(2,1fr)}.phone{transform:translateX(-50%) scale(.9);transform-origin:top center}.ozon-cube{right:0}.api-strip{display:none} }
@media (max-width: 900px) { .site-header .wrap{min-height:78px}.ommo-logo{width:124px}.ommo-tagline{display:none}.header-cta{padding:13px 16px;font-size:13px}.hero{padding-top:34px;padding-bottom:72px}.hero-grid{grid-template-columns:1fr}.hero-copy-block{text-align:center}.partner-badge{margin:auto}.hero h1{margin-inline:auto;font-size:clamp(38px,8vw,54px)}.hero-copy{margin-inline:auto}.cta-row{justify-content:center}.microcopy{justify-content:center}.benefits{margin-inline:auto;text-align:left}.hero-visual{order:initial;margin-top:30px;min-height:760px}.phone{left:50%}.hero-visual::before{inset:140px 2% 50px}.ozon-cube{right:8%;top:330px} }
@media (max-width: 560px) { .site-header .wrap,.hero-grid{width:auto;margin-left:14px;margin-right:14px;max-width:none}.site-header .wrap{gap:10px}.header-cta span{font-size:0}.header-cta span::after{content:'Доступ';font-size:13px}.hero{padding-top:24px;padding-bottom:70px}.partner-badge{height:44px;font-size:12px}.partner-badge strong{font-size:22px}.hero h1{margin-top:24px;font-size:clamp(34px,9vw,37px);line-height:1.08}.hero-copy{font-size:16px;line-height:1.65}.cta-row{width:100%;flex-direction:column;gap:12px}.button{width:100%;min-height:58px;justify-content:center;padding:0 18px}.microcopy{display:flex;width:100%;max-width:100%;justify-content:flex-start;text-align:left}.benefits{width:100%;grid-template-columns:1fr;gap:14px;margin-top:35px}.benefit{grid-template-columns:42px 1fr}.benefit-icon{width:42px;height:42px}.hero-visual{min-height:830px;margin-left:-14px;margin-right:-14px;overflow:visible}.phone:not(.how-phone){top:0;width:min(354px,calc(100vw - 36px));height:800px;transform:translateX(-50%)}.ozon-cube{width:96px;height:96px;right:10px;top:300px;border-radius:24px;font-size:25px} }

/* Ommo v2: decision helper section */
.legacy-section {
  position: relative;
  padding: 72px 0 86px;
  overflow: hidden;
  scroll-margin-top: 86px;
  background: radial-gradient(circle at 50% 50%, rgba(15,96,255,.07), transparent 34%), #fff;
}

.legacy-section::before {
  content: "";
  position: absolute;
  inset: 130px auto auto 50%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: none;
  pointer-events: none;
}

.legacy-section .decision-wrap { width: min(1370px, calc(100% - 96px)); margin: 0 auto; }
.legacy-section .section-kicker { width: fit-content; margin: 0 auto 18px; padding: 8px 22px; border-radius: 14px; color: #0862f5; background: linear-gradient(180deg,#eef4ff,#e8f0ff); font-size: 15px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; box-shadow: inset 0 1px 0 rgba(255,255,255,.85); }
.legacy-section .decision-title { max-width: 790px; margin: 0 auto; text-align: center; color: #07183f; font-size: clamp(38px,3vw,46px); line-height: 1.1; letter-spacing: -.04em; font-weight: 800; }
.legacy-section .decision-title .accent { color: #1164ff; }
.legacy-section .decision-subtitle { max-width: 690px; margin: 18px auto 0; color: #566792; font-size: 18px; line-height: 1.45; text-align: center; font-weight: 500; }
.legacy-section .decision-map { position: relative; min-height: 460px; margin-top: 28px; }
.legacy-section .decision-card { position: absolute; z-index: 3; display: grid; grid-template-columns: 68px 1fr; gap: 18px; width: 375px; min-height: 136px; padding: 19px 20px; border: 1px solid #dfe8f7; border-radius: 17px; background: rgba(255,255,255,.9); box-shadow: 0 22px 58px rgba(31,70,128,.08); backdrop-filter: blur(8px); }
.legacy-section .decision-card h3 { margin: 0 0 8px; color: #091842; font-size: 16px; line-height: 1.25; font-weight: 800; letter-spacing: -.01em; }
.legacy-section .decision-card p { margin: 0; color: #53648f; font-size: 15px; line-height: 1.5; font-weight: 500; }
.legacy-section .decision-card .icon { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%; color: #0862f5; background: linear-gradient(180deg,#edf4ff,#dfeaff); }
.legacy-section .decision-card .icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.legacy-section .decision-card.left-1 { left: 0; top: 0; }
.legacy-section .decision-card.left-2 { left: 0; top: 160px; }
.legacy-section .decision-card.left-3 { left: 0; top: 320px; }
.legacy-section .decision-card.right-1 { right: 26px; top: 0; }
.legacy-section .decision-card.right-2 { right: 26px; top: 160px; }
.legacy-section .decision-card.right-3 { right: 26px; top: 320px; }
.legacy-section .decision-diagram { position: absolute; left: 50%; top: 36px; width: 520px; height: 392px; transform: translateX(-50%); }
.legacy-section .decision-diagram::before { content: ""; position: absolute; inset: 0 54px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.98) 0 19%, rgba(226,237,255,.78) 20% 20.5%, transparent 21% 33%, rgba(217,230,252,.72) 33.5% 34%, transparent 34.5% 47%, rgba(215,228,250,.58) 47.5% 48%, transparent 48.5% 60%, rgba(223,234,253,.45) 60.5% 61%, transparent 61.5%); box-shadow: 0 28px 90px rgba(28,86,180,.08); }
.legacy-section .decision-center { position: absolute; left: 50%; top: 50%; z-index: 3; display: grid; place-items: center; width: 126px; height: 126px; transform: translate(-50%,-50%); border-radius: 50%; color: #fff; background: radial-gradient(circle at 38% 22%, #6596ff, #1161ff 50%, #0852ed); box-shadow: 0 20px 44px rgba(10,91,255,.28); }
.legacy-section .decision-center svg { width: 46px; height: 46px; margin-top: -14px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.legacy-section .decision-center span { position: absolute; bottom: 24px; font-size: 21px; line-height: 1; font-weight: 700; letter-spacing: -.02em; }
.legacy-section .decision-center img { display: block; width: 58px; height: 58px; object-fit: contain; }
.legacy-section .flow-chip { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 11px; min-height: 60px; padding: 0 18px; border: 1px solid #dfe8f7; border-radius: 14px; color: #0a1640; background: rgba(255,255,255,.94); box-shadow: 0 14px 40px rgba(31,70,128,.08); font-size: 15px; font-weight: 800; }
.legacy-section .flow-chip svg { width: 26px; height: 26px; color: #0862f5; fill: none; stroke: currentColor; stroke-width: 2.35; stroke-linecap: round; stroke-linejoin: round; }
.legacy-section .flow-chip.sales { left: -8px; top: 30px; }
.legacy-section .flow-chip.ads { left: -16px; top: 154px; }
.legacy-section .flow-chip.reviews { left: -2px; top: 274px; }
.legacy-section .flow-chip.plan { right: -20px; top: 154px; }
.legacy-section .flow-chip.plan svg { color: #fff; padding: 5px; border-radius: 50%; background: #0862f5; stroke-width: 3; }
.legacy-section .connector { position: absolute; z-index: 2; width: 98px; height: 88px; color: #1594ff; }
.legacy-section .connector { border: 0; outline: none; background: transparent; }
.legacy-section .connector svg { width: 100%; height: 100%; overflow: visible; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-dasharray: 6 8; }
.legacy-section .connector i { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(20,143,255,.18); }
.legacy-section .connector.from-sales { left: 132px; top: 66px; width: 92px; height: 112px; }
.legacy-section .connector.from-sales i:first-of-type { left: -5px; top: -5px; }
.legacy-section .connector.from-sales i:last-of-type { right: -3px; bottom: -3px; }
.legacy-section .connector.from-ads { left: 124px; top: 184px; width: 88px; height: 20px; }
.legacy-section .connector.from-ads i:first-of-type { left: -5px; top: 4px; }
.legacy-section .connector.from-ads i:last-of-type { right: -5px; top: 4px; }
.legacy-section .connector.from-reviews { left: 130px; top: 202px; width: 96px; height: 112px; color: #5d47ff; }
.legacy-section .connector.from-reviews i:first-of-type { left: -5px; bottom: -5px; }
.legacy-section .connector.from-reviews i:last-of-type { right: -3px; top: -5px; }
.legacy-section .connector.to-plan { right: 128px; top: 184px; width: 72px; height: 20px; }
.legacy-section .connector.to-plan i:first-of-type { left: -5px; top: 4px; }
.legacy-section .connector.to-plan i:last-of-type { right: -5px; top: 4px; }
.legacy-section .decision-note { display: grid; grid-template-columns: 270px 1fr 340px; align-items: center; width: min(1174px, calc(100% - 170px)); min-height: 98px; margin: 42px auto 0; border: 1px solid #dbe6f7; border-radius: 18px; background: rgba(248,251,255,.92); box-shadow: 0 22px 60px rgba(31,70,128,.06); }
.legacy-section .decision-note-main { display: flex; align-items: center; gap: 20px; padding-left: 22px; color: #091842; font-weight: 800; }
.legacy-section .decision-note-main .icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #0862f5; background: #e8f0ff; }
.legacy-section .decision-note-main svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.legacy-section .decision-note-text { padding: 0 34px; border-left: 1px solid #dbe6f7; color: #566792; font-size: 14px; line-height: 1.55; font-weight: 500; }
.legacy-section .decision-link { height: 100%; display: flex; align-items: center; justify-content: center; border-left: 1px solid #dbe6f7; color: #075bf7; font-size: 14px; font-weight: 700; }
@media (max-width: 1180px) { .legacy-section .decision-wrap{width:min(1050px, calc(100% - 40px))} .legacy-section .decision-map{display:grid;grid-template-columns:1fr 1fr;gap:18px;min-height:0;margin-top:38px} .legacy-section .decision-card{position:static;width:auto} .legacy-section .decision-diagram{grid-column:1/-1;position:relative;left:auto;top:auto;order:-1;margin:0 auto;transform:none} .legacy-section .decision-note{width:100%;grid-template-columns:220px 1fr 250px} }
@media (max-width: 760px) { .legacy-section{padding:54px 0 64px} .legacy-section .decision-wrap{width:calc(100% - 28px)} .legacy-section .section-kicker{font-size:12px;padding:7px 15px} .legacy-section .decision-title{font-size:34px} .legacy-section .decision-subtitle{font-size:16px} .legacy-section .decision-map{grid-template-columns:1fr} .legacy-section .decision-diagram{width:100%;max-width:390px;height:330px} .legacy-section .decision-diagram::before{inset:auto;left:50%;top:50%;width:330px;height:330px;transform:translate(-50%,-50%)} .legacy-section .flow-chip{min-height:52px;padding:0 13px;font-size:13px} .legacy-section .flow-chip.sales{left:2px;top:22px} .legacy-section .flow-chip.ads{left:0;top:136px} .legacy-section .flow-chip.reviews{left:2px;top:246px} .legacy-section .flow-chip.plan{right:0;top:136px} .legacy-section .decision-center{width:110px;height:110px} .legacy-section .decision-center span{bottom:21px;font-size:18px} .legacy-section .connector{display:none} .legacy-section .decision-card{grid-template-columns:54px 1fr;gap:16px;min-height:auto;padding:18px} .legacy-section .decision-card .icon{width:54px;height:54px} .legacy-section .decision-card .icon svg{width:28px;height:28px} .legacy-section .decision-card h3{font-size:16px} .legacy-section .decision-card p{font-size:14px} .legacy-section .decision-note{grid-template-columns:1fr;margin-top:28px} .legacy-section .decision-note-main{padding:18px} .legacy-section .decision-note-text{padding:0 18px 18px;border-left:0} .legacy-section .decision-link{min-height:58px;border-left:0;border-top:1px solid #dbe6f7} }


/* Ommo v3: how it works section */
.decision-section {
  position: relative;
  padding: 74px 0 88px;
  overflow: hidden;
  scroll-margin-top: 86px;
  background:
    radial-gradient(circle at 78% 45%, rgba(14, 98, 255, 0.12), transparent 18%),
    radial-gradient(circle at 52% 0%, rgba(14, 98, 255, 0.05), transparent 28%),
    #fff;
}

.decision-section::before {
  content: "";
  position: absolute;
  inset: 180px -40px auto auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 97, 255, 0.98) 0 56%, rgba(15, 97, 255, 0.92) 57%, rgba(15, 97, 255, 0.76) 72%, transparent 73%);
  filter: blur(2px);
  opacity: 0.96;
  pointer-events: none;
}

.decision-section::after {
  content: "";
  position: absolute;
  inset: 236px 318px auto auto;
  width: 150px;
  height: 110px;
  background-image:
    radial-gradient(circle, rgba(28, 107, 255, 0.24) 0 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.9;
  pointer-events: none;
}

.decision-wrap {
  position: relative;
  width: min(1400px, calc(100% - 88px));
  margin: 0 auto;
}

.section-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 18px;
  border-radius: 14px;
  color: #0862f5;
  background: linear-gradient(180deg, #eef4ff, #e8f0ff);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.decision-section .decision-title {
  max-width: 720px;
  margin: 0;
  text-align: left;
  color: #07183f;
  font-size: clamp(41px, 4vw, 63px);
  line-height: 0.99;
  letter-spacing: -.05em;
  font-weight: 800;
}

.decision-title .accent {
  color: #1164ff;
}

.decision-subtitle {
  max-width: 690px;
  margin: 22px 0 0;
  color: #566792;
  font-size: 18px;
  line-height: 1.52;
  text-align: left;
  font-weight: 500;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 368px;
  grid-template-areas:
    "intro phone"
    "steps phone"
    "note phone";
  gap: 28px 42px;
  align-items: start;
  margin-top: 34px;
}

.how-copy {
  grid-area: intro;
  padding-top: 6px;
  z-index: 1;
}

.how-phone-wrap {
  grid-area: phone;
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
}

.how-phone-wrap::before {
  content: "";
  position: absolute;
  right: -58px;
  top: 92px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(31, 110, 255, 1), rgba(12, 96, 255, .96) 46%, rgba(10, 82, 232, .92) 72%, rgba(10, 82, 232, 0) 73%);
  filter: blur(.2px);
  opacity: .98;
}

.how-phone-wrap::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 90px;
  width: 156px;
  height: 156px;
  background-image: radial-gradient(circle, rgba(99, 154, 255, .28) 0 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: .65;
}

.how-phone {
  position: relative;
  width: 354px;
  height: 736px;
  margin-top: 16px;
  padding: 10px;
  border-radius: 48px;
  background:
    linear-gradient(180deg, #111318 0%, #191c22 10%, #0f1115 100%);
  box-shadow:
    0 28px 58px rgba(13, 18, 34, 0.26),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06);
  transform: none;
}

.how-phone .screen {
  border-radius: 38px;
  background:
    linear-gradient(180deg, #f8faff 0%, #f2f6fd 18%, #f8fbff 100%);
}

.how-phone .status {
  padding: 14px 22px 8px;
}

.how-phone .screen-header {
  padding: 10px 20px 14px;
}

.how-phone .message {
  margin: 0 14px 14px;
  border-radius: 18px;
}

.how-phone .message-head {
  padding: 14px 14px 8px;
}

.how-phone .message-body h3 {
  font-size: 1.03rem;
}

.how-phone .message-body p {
  font-size: .92rem;
  line-height: 1.48;
}

.how-phone .divider {
  margin: 0 14px;
}

.how-phone .insight-list {
  padding: 8px 10px 12px;
}

.how-phone .insight {
  display: grid;
  grid-template-columns: 28px 1fr 12px;
  gap: 10px;
  align-items: start;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(39, 54, 88, .08);
  background: #fff;
  box-shadow: 0 6px 14px rgba(13, 18, 34, 0.03);
}

.how-phone .insight + .insight {
  margin-top: 8px;
}

.how-phone .insight h4 {
  margin: 0 0 3px;
  font-size: .9rem;
  letter-spacing: -.02em;
}

.how-phone .insight p {
  margin: 0;
  font-size: .79rem;
  line-height: 1.42;
  color: #36435e;
}

.how-phone .insight-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 18px rgba(36, 92, 255, 0.22);
}

.how-phone .insight-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.how-phone .message-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 14px 10px;
}

.how-phone .message-chip {
  height: 42px;
  justify-content: center;
  border-radius: 10px;
  font-size: .86rem;
  box-shadow: 0 4px 10px rgba(36, 58, 104, .08);
}

.how-phone .message-input {
  padding: 0 14px 14px;
}

.how-phone .input-shell {
  height: 42px;
  border-radius: 999px;
  font-size: .86rem;
}

.how-steps {
  grid-area: steps;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.step-card {
  position: relative;
  min-height: 392px;
  padding: 46px 18px 22px;
  border-radius: 20px;
  border: 1px solid #e0e8f6;
  background: #fff;
  box-shadow: 0 22px 54px rgba(31, 70, 128, .07);
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 144px;
  right: -12px;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(23, 108, 255, .15), rgba(23, 108, 255, .95));
}

.step-card::before {
  content: "";
  position: absolute;
  top: 139px;
  right: -13px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #176cff;
  border-right: 2px solid #176cff;
  transform: rotate(45deg);
}

.step-card:last-child::before,
.step-card:last-child::after {
  display: none;
}

.step-number {
  position: absolute;
  left: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #255bff, #0d55ef);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(36, 92, 255, .24);
}

.step-art {
  height: 188px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

.step-image {
  width: min(100%, 156px);
  height: min(100%, 156px);
  object-fit: contain;
  display: block;
  filter: none;
}

.step-card h3 {
  margin: 0 0 12px;
  color: #091842;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 800;
}

.step-card p {
  margin: 0;
  color: #53648f;
  font-size: 14px;
  line-height: 1.58;
  font-weight: 500;
}

.step-art svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.step-art .ozon-cloud {
  width: 118px;
  height: 118px;
  border-radius: 26px;
  background: linear-gradient(145deg, #2e73ff, #0f58f2);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 32px rgba(20, 86, 230, .26);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.step-art .bot-stack {
  width: 120px;
  height: 126px;
  position: relative;
}

.step-art .bot-stack::before,
.step-art .bot-stack::after {
  content: "";
  position: absolute;
  inset: auto 12px 0;
  height: 18px;
  border-radius: 20px;
  background: rgba(61, 110, 255, .10);
  filter: blur(1px);
}

.step-art .bot-stack::after {
  inset: auto 20px 8px;
  background: rgba(61, 110, 255, .16);
}

.step-art .bot-core {
  position: absolute;
  left: 20px;
  top: 8px;
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0e63ff, #074fef);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 18px 32px rgba(20, 86, 230, .24);
}

.step-art .bot-core svg,
.step-art .card-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-art .paper {
  position: absolute;
  inset: 56px 0 0 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f2f7ff);
  border: 1px solid rgba(36, 92, 255, .08);
  box-shadow: 0 14px 22px rgba(36, 68, 122, .06);
}

.step-art .paper:nth-child(2) {
  transform: translateY(10px) scale(.94);
}

.step-art .paper:nth-child(3) {
  transform: translateY(20px) scale(.88);
}

.step-art .paper:nth-child(4) {
  transform: translateY(30px) scale(.82);
}

.step-art .checklist {
  width: 104px;
  height: 140px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f3f7ff);
  border: 1px solid rgba(36, 92, 255, .1);
  box-shadow: 0 14px 22px rgba(36, 68, 122, .06);
  position: relative;
  overflow: hidden;
}

.step-art .checklist::before,
.step-art .checklist::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 4px;
  border-radius: 20px;
  background: rgba(124, 145, 185, .28);
  top: 22px;
  box-shadow: 0 18px 0 rgba(124, 145, 185, .28), 0 36px 0 rgba(124, 145, 185, .28);
}

.step-art .checklist .tick {
  position: absolute;
  left: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  color: #2d6cff;
  border: 2px solid currentColor;
}

.step-art .checklist .tick.one { top: 18px; }
.step-art .checklist .tick.two { top: 36px; }
.step-art .checklist .tick.three { top: 54px; }

.step-art .telegram {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3fa7ff, #0f69ff);
  box-shadow: 0 18px 32px rgba(20, 86, 230, .24);
  color: #fff;
  display: grid;
  place-items: center;
  position: relative;
}

.step-art .telegram::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff5a54;
  box-shadow: 0 8px 16px rgba(255, 90, 84, .28);
}

.step-art .telegram::before {
  content: "1";
  position: absolute;
  right: 10px;
  top: 5px;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.step-art .target {
  width: 114px;
  height: 114px;
  position: relative;
  display: grid;
  place-items: center;
  color: #1464f7;
}

.step-art .target::before,
.step-art .target::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 10px solid rgba(20, 100, 247, .18);
}

.step-art .target::after {
  inset: 18px;
  border-width: 10px;
  border-color: rgba(20, 100, 247, .36);
}

.step-art .target svg {
  width: 70px;
  height: 70px;
}

.decision-note {
  grid-area: note;
  display: grid;
  grid-template-columns: 250px 1fr 280px;
  align-items: center;
  width: min(1172px, 100%);
  min-height: 96px;
  margin-top: 14px;
  border: 1px solid #dbe6f7;
  border-radius: 18px;
  background: rgba(248, 251, 255, .94);
  box-shadow: 0 22px 60px rgba(31, 70, 128, .06);
}

.decision-note-main {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 22px;
  color: #091842;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
}

.decision-note-main .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0862f5;
  background: #e8f0ff;
  flex: 0 0 auto;
}

.decision-note-main svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.decision-note-text {
  padding: 0 32px;
  border-left: 1px solid #dbe6f7;
  color: #566792;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.decision-link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #dbe6f7;
  color: #075bf7;
  font-size: 14px;
  font-weight: 700;
}

.sample-section {
  padding: 78px 0 18px;
  overflow: hidden;
  scroll-margin-top: 86px;
}

.sample-panel {
  position: relative;
  width: min(1400px, calc(100% - 88px));
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sample-panel::before {
  content: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 10%, rgba(14, 98, 255, 0.08), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(14, 98, 255, 0.05), transparent 18%);
  opacity: .8;
}

.sample-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 360px minmax(240px, .95fr);
  gap: 26px 32px;
  align-items: start;
}

.sample-intro { padding: 8px 0 0; }

.sample-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #0a56f1;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.sample-kicker .index-badge {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2f6cff, #1858ff);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(36, 92, 255, .2);
}

.sample-kicker > span:not(.index-badge) {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #eef4ff, #e8f0ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.sample-title {
  margin: 0;
  max-width: 10ch;
  color: #07183f;
  font-size: clamp(32px, 3vw, 49px);
  line-height: 1.04;
  letter-spacing: -.05em;
  font-weight: 800;
}

.sample-title .accent { color: #1060ff; }

.sample-text {
  max-width: 27ch;
  margin: 14px 0 0;
  color: #566792;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.sample-points {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  max-width: 360px;
}

.sample-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.sample-point .mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eff4ff, #e7efff);
  color: #155fff;
  box-shadow: inset 0 0 0 1px rgba(21, 95, 255, .08);
}

.sample-point .mark.green { color: #1db65d; background: linear-gradient(180deg, #eefcf2, #e4f9eb); }
.sample-point .mark.purple { color: #7b5cff; background: linear-gradient(180deg, #f2eeff, #ebe5ff); }
.sample-point .mark.orange { color: #ff8a2b; background: linear-gradient(180deg, #fff3e8, #ffe7d3); }

.sample-point .mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sample-point h4 {
  margin: 0 0 4px;
  color: #081842;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.sample-point p {
  margin: 0;
  color: #5a688e;
  font-size: 14px;
  line-height: 1.48;
  font-weight: 500;
}

.sample-phone-wrap {
  position: relative;
  padding-top: 2px;
  min-height: 696px;
  display: flex;
  justify-content: center;
}

.sample-phone-wrap::before {
  content: "";
  position: absolute;
  inset: 4px 18px auto;
  height: 590px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 34%, rgba(16, 96, 255, .16), transparent 34%),
    radial-gradient(circle at 50% 55%, rgba(16, 96, 255, .08), transparent 52%);
  pointer-events: none;
}

.sample-phone {
  position: relative;
  width: 364px;
  height: 686px;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(180deg, #121419, #1a1e25 100%);
  box-shadow: 0 16px 34px rgba(13, 18, 34, .14), inset 0 0 0 2px rgba(255,255,255,.06);
}

.sample-phone .screen {
  border-radius: 30px;
  background: linear-gradient(180deg, #f8faff 0%, #f4f7fd 16%, #fbfcff 100%);
  height: 100%;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(22, 35, 70, .05);
}

.sample-phone .status { padding: 12px 20px 8px; }
.sample-phone .screen-header { padding: 6px 18px 14px; }
.sample-phone .message {
  margin: 0 12px 10px;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(31, 70, 128, .08);
}
.sample-phone .message-head { padding: 14px 14px 8px; gap: 10px; }
.sample-phone .message-body h3 { margin: 6px 0 4px; font-size: 1.02rem; line-height: 1.18; }
.sample-phone .message-body p { margin: 0; color: #1f2634; font-size: 0.9rem; line-height: 1.42; }
.sample-phone .task-list { display: grid; gap: 8px; padding: 4px 12px 12px; }
.sample-phone .task-card {
  display: grid;
  grid-template-columns: 12px 1fr 10px;
  gap: 10px;
  align-items: start;
  padding: 10px 10px;
  border-radius: 13px;
  background: linear-gradient(180deg, #fff, #f7f9ff);
  border: 1px solid rgba(36,92,255,.08);
}
.sample-phone .task-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 4px;
}
.sample-phone .task-card strong {
  display: block;
  color: #081842;
  font-size: .9rem;
  line-height: 1.22;
  font-weight: 800;
}
.sample-phone .task-card p {
  margin: 4px 0 0;
  color: #33415f;
  font-size: .74rem;
  line-height: 1.35;
}
.sample-phone .chev {
  width: 7px;
  height: 7px;
  border-top: 2px solid #a3afc7;
  border-right: 2px solid #a3afc7;
  transform: rotate(45deg);
  margin-top: 14px;
}
.sample-phone .message-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 12px 0;
}
.sample-phone .message-actions button {
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: #21408d;
  background: #fff;
  box-shadow: 0 5px 16px rgba(36, 58, 104, .08);
  font-family: inherit;
  font-weight: 700;
}
.sample-phone .message-actions .done {
  color: #fff;
  background: linear-gradient(135deg, #1161ff, #0647eb);
  box-shadow: 0 16px 28px rgba(13,95,255,.24);
}

.sample-right {
  display: grid;
  gap: 32px;
  padding-top: 86px;
}

.sample-note {
  position: relative;
  padding-left: 28px;
  max-width: 250px;
}

.sample-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 86px;
  border-top: 1px dashed currentColor;
  opacity: .42;
}

.sample-note h4 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.sample-note p {
  margin: 0;
  color: #53648f;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.sample-note.blue { color: #176cff; }
.sample-note.red { color: #ff5a54; }
.sample-note.orange { color: #ff9a14; }
.sample-note.green { color: #38ae4b; }

.faq-section {
  padding: 78px 0 18px;
  overflow: hidden;
}

.faq-panel {
  width: min(1400px, calc(100% - 88px));
  margin: 0 auto;
  padding: 18px 16px 8px;
  border: 1px solid #dbe6f7;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.96));
  box-shadow: 0 22px 58px rgba(31,70,128,.06);
}

.faq-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.faq-head .section-kicker { margin: 0; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.faq-item {
  min-height: 188px;
  padding: 12px 18px 12px 12px;
  border-right: 1px solid #e0e8f6;
  display: grid;
  align-content: start;
  gap: 10px;
}

.faq-item:last-child { border-right: 0; }

.faq-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1464f7;
  background: #edf3ff;
  box-shadow: inset 0 0 0 1px rgba(20,100,247,.08);
}

.faq-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-item h3 {
  margin: 0;
  color: #081842;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  color: #566792;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.cta-section {
  padding: 82px 0 22px;
  overflow: hidden;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 1fr) 320px minmax(310px, .95fr);
  gap: 20px 30px;
  align-items: center;
  width: min(1400px, calc(100% - 88px));
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #0a56f1;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.cta-kicker .index-badge {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2f6cff, #1858ff);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(36, 92, 255, .2);
}

.cta-kicker > span:not(.index-badge) {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #eef4ff, #e8f0ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.cta-copy h2 {
  margin: 0;
  max-width: 12ch;
  color: #081842;
  font-size: clamp(31px, 2.7vw, 43px);
  line-height: 1.03;
  letter-spacing: -.05em;
  font-weight: 800;
}

.cta-copy .accent { color: #1164ff; }

.cta-copy p {
  max-width: 27ch;
  margin: 12px 0 0;
  color: #566792;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.cta-chat {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 172px;
}

.cta-chat::before {
  content: "";
  position: absolute;
  inset: -58px -72px -46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(129, 114, 255, .16) 0 22%, rgba(90, 67, 255, .14) 23% 32%, rgba(90, 67, 255, .08) 33% 44%, transparent 45%);
  filter: blur(4px);
  opacity: .95;
}

.cta-chat-card {
  position: relative;
  width: 332px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(36,92,255,.08);
  background: #fff;
  box-shadow: 0 24px 52px rgba(31,70,128,.10);
}

.cta-chat-card .mini-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 800;
  color: #081842;
  font-size: 18px;
}

.cta-chat-card .mini-bot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2e73ff, #0f58f2);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 20px rgba(20,86,230,.2);
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
}

.cta-chat-card .mini-bot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.cta-chat-card p {
  margin: 0;
  color: #0e1d42;
  font-size: 16px;
  line-height: 1.62;
}

.cta-chat-card .time {
  margin-top: 14px;
  color: #8a96af;
  font-size: 15px;
  text-align: right;
}

.cta-side {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.cta-button {
  min-height: 54px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  padding: 0 28px;
  background: linear-gradient(135deg, #1464f7, #0752ef);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(20,100,247,.24);
}

.cta-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-bullets {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}

.cta-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #566792;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.cta-bullets li::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2f6cff, #1858ff);
  box-shadow: inset 0 0 0 2px #fff;
  flex: 0 0 auto;
}

.site-footer {
  padding: 10px 0 34px;
  color: #566792;
}

.site-footer .footer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(36,92,255,.08);
  flex-wrap: wrap;
  text-align: center;
}

.site-footer .brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1164ff;
  width: 112px;
  height: auto;
}

.site-footer .brand-mini img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer .brand-mini .pipe {
  width: 1px;
  height: 24px;
  background: rgba(36,92,255,.16);
}

.site-footer .footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer .footer-links a {
  color: #566792;
  font-weight: 500;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: #1164ff;
  outline: none;
}

@media (max-width: 1180px) {
  .decision-wrap { width: min(1050px, calc(100% - 40px)); }
  .how-layout {
    grid-template-columns: 1fr 330px;
    gap: 26px 28px;
  }
  .how-phone-wrap {
    min-height: 740px;
  }
  .how-phone {
    width: 330px;
    height: 704px;
  }
  .how-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-card { min-height: 352px; }
  .step-card::after,
  .step-card::before { display: none; }
  .decision-note { grid-template-columns: 220px 1fr 250px; width: 100%; }
}

@media (max-width: 760px) {
  .legacy-section { padding: 60px 0 68px; }
  .decision-section { padding: 54px 0 64px; }
  .decision-section::before {
    display: none;
  }
  .decision-section::after {
    top: 370px;
    right: auto;
    left: 18px;
  }
  .sample-section { padding: 56px 0 12px; }
  .faq-section { padding: 56px 0 12px; }
  .cta-section { padding: 58px 0 14px; }
  .sample-panel,
  .faq-panel,
  .cta-panel {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
  }
  .faq-panel {
    padding: 18px 14px 14px;
  }
  .cta-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    overflow: hidden;
  }
  .cta-copy h2 {
    max-width: 12ch;
    font-size: 31px;
    line-height: 1.04;
  }
  .cta-copy p {
    max-width: 30ch;
    font-size: 17px;
    line-height: 1.58;
  }
  .cta-chat {
    min-height: 0;
    justify-content: flex-start;
  }
  .cta-chat::before {
    inset: -42px -44px -34px 28px;
  }
  .cta-chat-card {
    width: min(100%, 332px);
    box-sizing: border-box;
  }
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .faq-item {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid #e0e8f6;
  }
  .faq-item:last-child {
    border-bottom: 0;
  }
  .faq-icon {
    grid-row: span 2;
  }
  .faq-item h3 {
    font-size: 16px;
    line-height: 1.25;
  }
  .faq-item p {
    font-size: 14px;
    line-height: 1.45;
  }
  .decision-wrap {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
  }
  .section-kicker { font-size: 12px; padding: 7px 15px; }
  .decision-section .decision-title { font-size: 34px; line-height: 1.02; }
  .how-copy,
  .decision-section .decision-title,
  .decision-subtitle,
  .how-phone-wrap {
    width: auto;
    max-width: 100%;
    min-width: 0;
  }
  .decision-subtitle { max-width: 100%; font-size: 16px; line-height: 1.58; }
  .how-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "intro"
      "phone"
      "steps"
      "note";
    gap: 28px;
    margin-top: 26px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .how-phone-wrap {
    min-height: 640px;
    justify-content: center;
    margin-top: 10px;
    overflow: hidden;
  }
  .how-phone-wrap::before {
    display: none;
  }
  .how-phone-wrap::after {
    left: 50%;
    transform: translateX(-140px);
    top: 112px;
  }
  .how-phone {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 330px);
    height: 650px;
    box-shadow: none;
    transform: none;
  }
  .how-steps {
    grid-template-columns: minmax(0, 1fr);
    width: auto;
    max-width: 100%;
    min-width: 0;
  }
  .step-card {
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 46px 16px 18px;
  }
  .step-art {
    width: auto;
    max-width: 100%;
    min-width: 0;
  }
  .step-card::after,
  .step-card::before {
    display: none;
  }
  .step-art {
    height: 164px;
  }
  .decision-note {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
  .decision-note-main,
  .decision-note-text,
  .decision-link {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .decision-note-main {
    padding: 18px;
  }
  .decision-note-text {
    padding: 0 18px 18px;
    border-left: 0;
  }
  .decision-link {
    min-height: 58px;
    border-left: 0;
    border-top: 1px solid #dbe6f7;
  }
  .sample-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sample-intro,
  .sample-right,
  .sample-phone-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .sample-phone-wrap {
    min-height: 610px;
  }
  .sample-phone-wrap::before {
    inset: 0 0 auto;
    height: 560px;
  }
  .sample-phone {
    width: min(100%, 340px);
    height: 600px;
  }
  .sample-right {
    padding-top: 0;
    gap: 22px;
  }
}
body.quiz-open { overflow: hidden; }
.quiz-modal[hidden] { display: none; }
.quiz-modal {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  padding: 24px; background: rgba(5, 22, 58, .42); backdrop-filter: blur(9px);
}
.quiz-dialog {
  position: relative; width: min(100%, 590px); min-height: 540px; overflow: hidden;
  border: 1px solid #dfe8f8; border-radius: 28px; background: #fff;
  box-shadow: 0 30px 90px rgba(17, 54, 122, .25);
}
.quiz-dialog::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 5px;
  background: linear-gradient(90deg, #0866ff var(--quiz-progress, 33%), #e7effd var(--quiz-progress, 33%));
  transition: background .25s ease;
}
.quiz-close {
  position: absolute; z-index: 2; top: 22px; right: 22px; width: 42px; height: 42px;
  display: grid; place-items: center; border: 1px solid #e1e9f7; border-radius: 50%;
  color: #193263; background: #f7faff; cursor: pointer; font-size: 26px; line-height: 1;
}
.quiz-content { padding: 54px 52px 42px; }
.quiz-meta { margin: 0 0 17px; color: #1764f2; font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.quiz-offer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: -4px 0 18px;
  padding: 2px 0 0;
}
.quiz-offer-badge {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 3px;
}
.quiz-offer-badge img { width: 55px; height: 55px; display: block; }
.quiz-offer-bubble {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(14, 91, 255, .2);
  border-radius: 18px;
  background: #0353FA;
  box-shadow: 0 14px 30px rgba(11, 84, 245, .18);
}
.quiz-offer-bubble::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 19px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-left: 1px solid rgba(14, 91, 255, .2);
  border-bottom: 1px solid rgba(14, 91, 255, .2);
  background: #0353FA;
}
.quiz-offer strong { display: block; color: #fff; font-size: 15px; line-height: 1.15; letter-spacing: -.01em; }
.quiz-offer span { display: block; color: rgba(255,255,255,.84); font-size: 13px; line-height: 1.45; }
.quiz-title { max-width: 460px; margin: 0; color: #071a43; font-size: clamp(28px, 4vw, 38px); line-height: 1.13; letter-spacing: -.035em; }
.quiz-subtitle { margin: 13px 0 0; color: #60729a; font-size: 16px; line-height: 1.55; }
.quiz-options { display: grid; gap: 11px; margin-top: 30px; }
.quiz-option {
  width: 100%; min-height: 64px; display: flex; align-items: center; gap: 13px; padding: 14px 18px;
  border: 1px solid #dfe7f5; border-radius: 15px; color: #102653; background: #fff;
  cursor: pointer; text-align: left; font: 700 16px/1.35 inherit; transition: .18s ease;
}
.quiz-option::before { content: ''; width: 18px; height: 18px; flex: 0 0 auto; border: 2px solid #bfd0ec; border-radius: 50%; }
.quiz-option:hover, .quiz-option:focus-visible { border-color: #1764f2; background: #f5f9ff; transform: translateY(-1px); outline: none; }
.quiz-option.is-selected { border-color: #1764f2; color: #0755df; background: #eef5ff; }
.quiz-option.is-selected::before { border: 5px solid #1764f2; }
.quiz-option.is-multiple::before { border-radius: 6px; }
.quiz-option.is-multiple.is-selected::before { border: 2px solid #1764f2; background: #1764f2; box-shadow: inset 0 0 0 4px #eef5ff; }
.quiz-form { display: grid; gap: 16px; margin-top: 29px; }
.quiz-field { display: grid; gap: 7px; }
.quiz-other { margin-top: 16px; }
.quiz-other[hidden] { display: none; }
.quiz-field span { color: #173062; font-size: 14px; font-weight: 700; }
.quiz-field input { width: 100%; height: 58px; box-sizing: border-box; border: 1px solid #dce5f4; border-radius: 14px; padding: 0 17px; color: #0b214d; background: #fff; font: 500 16px/1 inherit; outline: none; }
.quiz-field input:focus { border-color: #1764f2; box-shadow: 0 0 0 4px rgba(23,100,242,.1); }
.quiz-error { min-height: 20px; margin: 0; color: #d43746; font-size: 13px; line-height: 1.4; }
.quiz-actions { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.quiz-back { min-width: 96px; height: 52px; border: 0; color: #51678f; background: transparent; cursor: pointer; font: 700 15px/1 inherit; }
.quiz-submit, .quiz-next, .quiz-done { min-height: 54px; flex: 1; border: 0; border-radius: 14px; padding: 0 25px; color: #fff; background: linear-gradient(135deg,#116cff,#0752e9); box-shadow: 0 12px 28px rgba(15,84,245,.2); cursor: pointer; font: 800 16px/1 inherit; }
.quiz-submit:disabled { cursor: wait; opacity: .65; }
.quiz-success { min-height: 540px; display: grid; align-content: center; justify-items: center; padding: 52px; text-align: center; }
.quiz-success-icon { width: 74px; height: 74px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #0b63f6; box-shadow: 0 15px 35px rgba(11,99,246,.25); font-size: 35px; }
.quiz-success h2 { margin: 24px 0 12px; color: #071a43; font-size: 34px; line-height: 1.15; letter-spacing: -.03em; }
.quiz-success p { max-width: 420px; margin: 0; color: #60729a; font-size: 17px; line-height: 1.6; }
.quiz-done { width: min(100%, 260px); flex: none; margin-top: 30px; }
@media (max-width: 620px) {
  .quiz-modal { align-items: end; padding: 0; }
  .quiz-dialog { width: 100%; min-height: min(720px, 94dvh); border-radius: 24px 24px 0 0; }
  .quiz-content { padding: 50px 20px 26px; }
  .quiz-close { top: 18px; right: 18px; width: 38px; height: 38px; }
  .quiz-title { padding-right: 34px; font-size: 30px; }
  .quiz-offer { margin-bottom: 16px; gap: 10px; }
  .quiz-offer-badge { width: 46px; height: 46px; margin-top: 5px; }
  .quiz-offer-badge img { width: 46px; height: 46px; }
  .quiz-offer-bubble { padding: 12px 14px; border-radius: 14px; }
  .quiz-offer-bubble::before { left: -7px; top: 17px; width: 12px; height: 12px; }
  .quiz-offer strong { font-size: 14px; }
  .quiz-offer span { font-size: 12px; }
  .quiz-options { margin-top: 24px; }
  .quiz-option { min-height: 60px; }
  .quiz-actions { margin-top: 20px; }
  .quiz-success { min-height: min(720px, 94dvh); padding: 36px 22px; }
  .quiz-success h2 { font-size: 30px; }
}
