:root {
  --blue: #0878f5;
  --blue-dark: #005ed2;
  --ink: #061333;
  --paper: #eef7ff;
  --line: rgba(8, 120, 245, 0.22);
  --shadow: 0 18px 48px rgba(8, 120, 245, 0.2);
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-card-gap: 20px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --font-xs: 12px;
  --font-sm: 14px;
  --font-base: 16px;
  --font-md: 20px;
  --font-lg: 24px;
  --font-xl: 28px;
  --radius-card: 12px;
  --radius-panel: 16px;
  --mobile-safe-x: 16px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a,
button {
  font: inherit;
}

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

.slides {
  width: 100%;
}

.slide {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  background: #f4fbff;
}

.slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
}

.hero-slide {
  container-type: inline-size;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.28) 58%, rgba(255, 255, 255, 0.5) 100%),
    radial-gradient(circle at 73% 46%, rgba(46, 155, 255, 0.18), transparent 22%),
    linear-gradient(120deg, #f7fbff 0%, #edf7ff 52%, #f8fcff 100%);
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 120, 245, 0.025) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(8, 120, 245, 0.02) 0 1px, transparent 1px 100%);
  background-size: 3.3cqw 3.3cqw;
  content: "";
  opacity: 0.35;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.05);
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  content: "";
}

.hero-orbit::before {
  inset: 7%;
}

.hero-orbit::after {
  inset: 16%;
}

.hero-orbit-main {
  top: 16%;
  left: 51%;
  width: 39%;
  aspect-ratio: 1;
}

.hero-header {
  position: absolute;
  top: 2.45%;
  left: 3.35%;
  right: 2.5%;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.hero-brand {
  display: grid;
  gap: 0.5cqw;
}

.hero-brand strong {
  color: #061333;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.hero-brand span {
  color: #617196;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.hero-nav {
  display: contents;
}

.hero-nav a {
  position: relative;
  color: #050b1c;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.65cqw;
  left: 0;
  height: 0.15cqw;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-nav a:hover::after,
.hero-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-outline,
.hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.75cqw, 8px);
  border: 1px solid var(--blue);
  border-radius: clamp(8px, 0.75cqw, 8px);
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-outline svg,
.hero-primary svg {
  width: clamp(16px, 1.5cqw, 18px);
  height: clamp(16px, 1.5cqw, 18px);
  flex: 0 0 auto;
  fill: currentColor;
}

.hero-outline {
  min-width: clamp(238px, 20.4cqw, 238px);
  min-height: clamp(40px, 3.55cqw, 42px);
  color: var(--blue);
  font-size: 14px;
  padding: 0 16px;
}

.hero-outline:hover,
.hero-outline:focus-visible {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-0.16cqw);
}

.hero-copy {
  position: absolute;
  top: 17.9%;
  left: 3.45%;
  z-index: 3;
  width: min(53%, 616px);
}

.hero-copy h1,
.hero-copy h2,
.hero-copy p {
  margin: 0;
}

.mobile-break {
  display: none;
}

.copy-break,
.note-break {
  display: none;
}

.hero-copy h1,
.hero-copy h2 {
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: #061844;
  font-size: 44px;
  line-height: 1.12;
}

.hero-copy h2 {
  margin-top: clamp(12px, 1.05cqw, 12px);
  color: var(--blue);
  font-size: 28px;
  line-height: 1.12;
}

.hero-copy > p:not(.hero-note) {
  margin-top: clamp(20px, 1.75cqw, 20px);
  max-width: 490px;
  color: #607196;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.hero-primary {
  min-height: 56px;
  margin-top: clamp(44px, 3.85cqw, 44px);
  background: linear-gradient(180deg, #168cff 0%, var(--blue) 100%);
  box-shadow: 0 1cqw 2cqw rgba(8, 120, 245, 0.14);
  color: #fff;
  font-size: 16px;
  padding: 0 32px;
}

.hero-primary:hover,
.hero-primary:focus-visible {
  background: linear-gradient(180deg, #0878f5 0%, var(--blue-dark) 100%);
  box-shadow: var(--shadow);
  transform: translateY(-0.18cqw);
}

.hero-note {
  margin-top: clamp(42px, 3.65cqw, 42px) !important;
  color: #6a789b;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
}

.phone-stage {
  position: absolute;
  top: 17.8%;
  left: 60.4%;
  z-index: 4;
  width: 17.65%;
}

.phone-shell {
  position: relative;
  aspect-ratio: 205 / 425;
  filter: drop-shadow(0 1.4cqw 2.2cqw rgba(4, 20, 44, 0.16));
}

.phone-shell::before {
  position: absolute;
  inset: 3.2% 4.4% 3.5%;
  z-index: 3;
  border-radius: 8.7% / 4.4%;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 35%, rgba(8, 120, 245, 0.08) 100%);
  content: "";
  pointer-events: none;
}

.phone-frame {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.phone-screen-viewport {
  position: absolute;
  inset: 3.2% 4.4% 3.5%;
  z-index: 1;
  overflow: hidden;
  border-radius: 8.7% / 4.4%;
  background: #fff;
}

.phone-scroll-track {
  display: flex;
  width: 100%;
  flex-direction: column;
  animation: phone-smooth-scroll 22s linear infinite;
  will-change: transform;
}

.phone-scroll-track.is-js-animated {
  animation: none;
}

.phone-scroll-set {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex: 0 0 auto;
}

.phone-screen-shot {
  display: block;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  user-select: none;
}

.is-feed {
  margin-top: -1px;
}

@keyframes phone-smooth-scroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  min-width: clamp(156px, 13.35cqw, 156px);
  min-height: clamp(90px, 7.75cqw, 90px);
  align-items: center;
  gap: clamp(12px, 1.1cqw, 12px);
  border: 1px solid rgba(8, 120, 245, 0.07);
  border-radius: clamp(10px, 1cqw, 12px);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0.8cqw 2.2cqw rgba(31, 78, 130, 0.08);
  padding: clamp(12px, 1.1cqw, 12px) clamp(16px, 1.35cqw, 16px);
  backdrop-filter: blur(12px);
}

.float-card::before {
  width: clamp(52px, 4.6cqw, 54px);
  height: 1px;
  margin-left: clamp(-60px, -5.2cqw, -58px);
  background: linear-gradient(90deg, transparent, rgba(6, 19, 51, 0.28));
  content: "";
}

.float-live {
  top: 42%;
  right: 2.55%;
}

.float-materials {
  right: 3.3%;
  bottom: 24.2%;
}

.float-card strong {
  color: #061333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.26;
}

.float-dot,
.benefit-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.float-dot {
  width: clamp(54px, 4.65cqw, 54px);
  height: clamp(54px, 4.65cqw, 54px);
}

.icon-svg {
  width: clamp(24px, 2.05cqw, 24px);
  height: clamp(24px, 2.05cqw, 24px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.benefit-strip {
  position: absolute;
  right: 3.25%;
  bottom: 0;
  left: 2.9%;
  z-index: 4;
  display: grid;
  min-height: 17.05%;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(8, 120, 245, 0.08);
  border-bottom: 0;
  border-radius: clamp(14px, 1.35cqw, 16px) clamp(14px, 1.35cqw, 16px) 0 0;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 -0.3cqw 2cqw rgba(31, 78, 130, 0.06);
  backdrop-filter: blur(14px);
}

.benefit-card {
  position: relative;
  display: grid;
  grid-template-columns: clamp(50px, 4.35cqw, 50px) 1fr;
  grid-template-rows: 34px auto;
  align-content: center;
  align-items: start;
  gap: clamp(8px, 0.8cqw, 10px) clamp(16px, 1.5cqw, 18px);
  padding: 20px 54px;
}

.benefit-card:not(:last-child)::after {
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: rgba(6, 19, 51, 0.28);
  content: "";
}

.benefit-icon {
  grid-row: 1 / 3;
  width: clamp(50px, 4.35cqw, 50px);
  height: clamp(50px, 4.35cqw, 50px);
}

.benefit-icon .icon-svg {
  width: clamp(22px, 1.85cqw, 22px);
  height: clamp(22px, 1.85cqw, 22px);
}

.benefit-card strong {
  display: flex;
  min-height: 34px;
  align-items: flex-start;
  color: #061333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.22;
}

.benefit-card span:not(.benefit-icon) {
  color: #607196;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.s2-live {
  aspect-ratio: auto;
  min-height: 900px;
  container-type: inline-size;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 120, 245, 0.14), transparent 18%),
    radial-gradient(circle at 0% 60%, rgba(8, 120, 245, 0.1), transparent 13%),
    linear-gradient(120deg, #f7fbff 0%, #edf7ff 54%, #f8fcff 100%);
}

.s2-live::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 120, 245, 0.022) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(8, 120, 245, 0.018) 0 1px, transparent 1px 100%);
  background-size: 3.3cqw 3.3cqw;
  content: "";
  opacity: 0.34;
  pointer-events: none;
}

.s2-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.04);
  pointer-events: none;
}

.s2-orbit::before,
.s2-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  content: "";
}

.s2-orbit::before {
  inset: 7%;
}

.s2-orbit::after {
  inset: 16%;
}

.s2-orbit-top {
  top: -24%;
  right: -4%;
  width: 24%;
  aspect-ratio: 1;
}

.s2-orbit-side {
  bottom: 34%;
  left: -4%;
  width: 7%;
  aspect-ratio: 1;
}

.s2-copy {
  position: absolute;
  top: 5.35%;
  left: 3.45%;
  z-index: 2;
  width: 76%;
}

.s2-copy h2 {
  max-width: 1040px;
  margin: 0;
  color: #061333;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-wrap: balance;
}

.s2-copy h2 span {
  color: var(--blue);
}

.s2-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #3f4c67;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: pretty;
}

.s2-grid {
  position: absolute;
  top: 320px;
  right: 48px;
  left: 48px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.s2-card {
  position: relative;
  display: block;
  min-height: 168px;
  border: 1px solid rgba(8, 120, 245, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 34px rgba(31, 78, 130, 0.05);
  padding: 16px 24px 16px 88px;
  backdrop-filter: blur(12px);
}

.s2-icon {
  position: absolute;
  top: 16px;
  left: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.s2-icon .icon-svg {
  width: 24px;
  height: 24px;
}

.s2-text {
  display: grid;
  min-width: 0;
  gap: 8px;
  text-align: left;
}

.s2-card h3 {
  display: block;
  min-height: 0;
  margin: 0;
  color: #061333;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.s2-card p {
  margin: 0;
  color: #3f4c67;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-wrap: pretty;
}

.s2-cta {
  position: absolute;
  top: 744px;
  right: 48px;
  bottom: auto;
  left: 48px;
  z-index: 3;
  display: grid;
  min-height: 80px;
  grid-template-columns: 48px max-content;
  gap: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 120, 245, 0.22);
  border-radius: 12px;
  background: rgba(225, 242, 255, 0.72);
  box-shadow: 0 12px 36px rgba(31, 78, 130, 0.07);
  color: #061333;
  padding: 16px 24px;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.s2-cta:hover,
.s2-cta:focus-visible {
  background: rgba(224, 241, 255, 0.9);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.s2-telegram {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #4aafff 0%, var(--blue) 100%);
  box-shadow:
    0 0 0 6px rgba(8, 120, 245, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  color: #fff;
}

.s2-telegram svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.s2-cta-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  width: max-content;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.s2-cta-copy strong,
.s2-cta-copy span {
  font-size: 16px;
  line-height: 1.35;
}

.s2-cta-copy strong {
  font-weight: 400;
}

.s2-cta-copy span {
  color: var(--blue);
  font-weight: 600;
}

.s3-live {
  aspect-ratio: auto;
  min-height: 896px;
  container-type: inline-size;
  background:
    radial-gradient(circle at 82% 29%, rgba(8, 120, 245, 0.14), transparent 22%),
    radial-gradient(circle at 1% 54%, rgba(8, 120, 245, 0.08), transparent 12%),
    linear-gradient(120deg, #f7fbff 0%, #edf7ff 54%, #f8fcff 100%);
}

.s3-live::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 120, 245, 0.022) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(8, 120, 245, 0.018) 0 1px, transparent 1px 100%);
  background-size: 3.3cqw 3.3cqw;
  content: "";
  opacity: 0.3;
  pointer-events: none;
}

.s3-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.04);
  pointer-events: none;
}

.s3-orbit::before,
.s3-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  content: "";
}

.s3-orbit::before {
  inset: 11%;
}

.s3-orbit::after {
  inset: 21%;
}

.s3-orbit-main {
  top: 48px;
  right: 112px;
  width: 448px;
  aspect-ratio: 1;
}

.s3-orbit-bottom {
  right: 5%;
  bottom: -22%;
  width: 23%;
  aspect-ratio: 1;
}

.s3-copy {
  position: absolute;
  top: 48px;
  left: 56px;
  z-index: 3;
  width: 48.5%;
}

.s3-copy h2 {
  margin: 0;
  color: #061333;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.s3-copy h2 span {
  color: var(--blue);
}

.s3-copy p {
  max-width: 704px;
  margin: 16px 0 0;
  color: #3f4c67;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: pretty;
}

.s3-quote {
  position: absolute;
  top: 48px;
  left: 736px;
  z-index: 3;
  width: 224px;
  min-height: 96px;
  border: 1px solid rgba(8, 120, 245, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 22px rgba(31, 78, 130, 0.035);
  padding: 16px;
  backdrop-filter: blur(12px);
}

.s3-quote-mark {
  display: block;
  color: var(--blue);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.s3-quote p {
  margin: 8px 0 0;
  color: #071437;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.36;
  text-wrap: pretty;
}

.s3-telegram {
  position: absolute;
  top: 272px;
  right: 336px;
  z-index: 3;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 28%, #71c8ff 0%, #168cff 58%, var(--blue) 100%);
  box-shadow:
    0 0 0 16px rgba(8, 120, 245, 0.07),
    0 14px 34px rgba(8, 120, 245, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.46);
  color: #fff;
  transform: translate(50%, -50%);
}

.s3-telegram svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.s3-stat {
  position: absolute;
  z-index: 4;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(8, 120, 245, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 8px 24px rgba(31, 78, 130, 0.045);
  color: #3f4c67;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.28;
  padding: 8px 16px;
  backdrop-filter: blur(12px);
}

.s3-plan {
  top: 80px;
  right: 64px;
  width: 160px;
  display: grid;
  gap: 8px;
}

.s3-plan i {
  position: relative;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #c9d8ea;
}

.s3-plan i::before,
.s3-plan i::after {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #b9c9dd;
  content: "";
  transform: translateY(-50%);
}

.s3-plan i::before {
  left: 0;
  background: var(--blue);
}

.s3-plan i::after {
  right: 0;
}

.s3-confidence {
  top: 208px;
  right: 64px;
  width: 168px;
}

.s3-confidence .icon-svg,
.s3-steps .icon-svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.s3-confidence strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.s3-steps {
  top: 280px;
  right: 64px;
  width: 192px;
  min-height: 48px;
  padding: 8px 16px;
}

.s3-steps span {
  white-space: nowrap;
}

.s3-grid {
  position: absolute;
  top: 360px;
  right: 48px;
  left: 48px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.s3-card {
  position: relative;
  display: block;
  min-height: 128px;
  border: 1px solid rgba(8, 120, 245, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 34px rgba(31, 78, 130, 0.05);
  padding: 16px 24px 16px 88px;
  text-align: left;
  backdrop-filter: blur(12px);
}

.s3-icon {
  position: absolute;
  top: 16px;
  left: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.s3-icon .icon-svg {
  width: 24px;
  height: 24px;
}

.s3-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.s3-card h3 {
  display: block;
  min-height: 0;
  margin: 0;
  color: #061333;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.s3-card p {
  margin: 8px 0 0;
  color: #607196;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: pretty;
}

.s3-cta {
  position: absolute;
  top: 704px;
  right: 48px;
  bottom: auto;
  left: 48px;
  z-index: 4;
  display: grid;
  min-height: 80px;
  grid-template-columns: 48px max-content;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid rgba(8, 120, 245, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 36px rgba(31, 78, 130, 0.06);
  padding: 16px 24px;
  backdrop-filter: blur(12px);
}

.s3-target {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.s3-target .icon-svg {
  width: 24px;
  height: 24px;
}

.s3-cta p {
  margin: 0;
  color: #061333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
}

.s3-cta strong {
  font-weight: 800;
}

.s3-cta span {
  color: var(--blue);
  font-weight: 800;
}

.s4-live {
  container-type: inline-size;
  aspect-ratio: auto;
  min-height: 1260px;
  background:
    radial-gradient(circle at 75% 48%, rgba(8, 120, 245, 0.16), transparent 26%),
    radial-gradient(circle at 5% 58%, rgba(8, 120, 245, 0.06), transparent 14%),
    linear-gradient(120deg, #f8fcff 0%, #eef8ff 56%, #f8fcff 100%);
}

.s4-live::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 120, 245, 0.02) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(8, 120, 245, 0.018) 0 1px, transparent 1px 100%);
  background-size: 3.3cqw 3.3cqw;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.s4-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.05);
  pointer-events: none;
}

.s4-orbit::before,
.s4-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  content: "";
}

.s4-orbit::before {
  inset: 9%;
}

.s4-orbit::after {
  inset: 18%;
}

.s4-orbit-main {
  top: 96px;
  right: 48px;
  width: 480px;
  aspect-ratio: 1;
}

.s4-copy {
  position: absolute;
  top: 96px;
  left: 56px;
  z-index: 3;
  width: 800px;
}

.s4-copy h2 {
  margin: 0;
  color: #061333;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.s4-copy h2 span {
  color: var(--blue);
}

.s4-copy p {
  max-width: 700px;
  margin: 16px 0 0;
  color: #3f4c67;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: pretty;
}

.s4-grid {
  position: absolute;
  top: 360px;
  left: 48px;
  z-index: 3;
  display: grid;
  width: 864px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: none;
}

.s4-card {
  position: relative;
  display: block;
  min-height: 136px;
  border: 1px solid rgba(8, 120, 245, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 34px rgba(31, 78, 130, 0.05);
  padding: 16px 24px 16px 88px;
  backdrop-filter: blur(12px);
}

.s4-icon,
.s4-tag-icon {
  display: grid;
  width: 48px;
  height: 48px;
  min-width: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.s4-icon {
  position: absolute;
  top: 16px;
  left: 24px;
}

.s4-icon .icon-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s4-card h3 {
  display: block;
  min-height: 0;
  margin: 0;
  color: #061333;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.s4-card p {
  margin: 8px 0 0;
  color: #607196;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: pretty;
}

.s4-note {
  position: absolute;
  top: 696px;
  left: 48px;
  z-index: 3;
  max-width: 624px;
  border-left: 4px solid var(--blue);
  padding-left: 16px;
}

.s4-note p {
  margin: 0;
  color: #3f4c67;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: normal;
}

.s4-button {
  position: absolute;
  top: 800px;
  left: 48px;
  z-index: 4;
  display: inline-grid;
  min-height: 56px;
  grid-template-columns: 28px max-content;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #168cff 0%, var(--blue) 100%);
  box-shadow: 0 16px 36px rgba(8, 120, 245, 0.18);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 0 32px;
}

.s4-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.s4-phone {
  position: absolute;
  top: 6%;
  right: 3.25%;
  z-index: 3;
  width: 29%;
  perspective: 1200px;
}

.s4-phone-mockup {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(17, 53, 96, 0.16));
  transform: perspective(1200px) rotateY(-13deg) rotateZ(3deg);
  transform-origin: center;
}

.s4-tag {
  position: absolute;
  right: 3.1%;
  z-index: 4;
  display: grid;
  min-height: 76px;
  grid-template-columns: 52px max-content;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(8, 120, 245, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 36px rgba(31, 78, 130, 0.08);
  padding: 12px 18px;
  backdrop-filter: blur(12px);
}

.s4-tag::before {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 34px;
  height: 1px;
  background: rgba(92, 121, 154, 0.32);
  content: "";
}

.s4-tag-cases {
  top: 44.2%;
}

.s4-tag-support {
  top: 68.4%;
}

.s4-tag-icon {
  width: 52px;
  height: 52px;
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.s4-tag-icon .icon-svg {
  width: 28px;
  height: 28px;
}

.s4-tag strong {
  color: #061333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
}

.s5-live {
  container-type: inline-size;
  aspect-ratio: 1672 / 941;
  isolation: isolate;
  z-index: 30;
  margin-top: -360px;
  min-height: 900px;
  scroll-margin-top: 0;
  background:
    radial-gradient(circle at 84% 23%, rgba(8, 120, 245, 0.16), transparent 22%),
    radial-gradient(circle at 10% 54%, rgba(8, 120, 245, 0.06), transparent 16%),
    linear-gradient(120deg, #f8fcff 0%, #eef8ff 56%, #f8fcff 100%);
}

.s5-live::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 120, 245, 0.02) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(8, 120, 245, 0.018) 0 1px, transparent 1px 100%);
  background-size: 3.3cqw 3.3cqw;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.s5-orbit {
  position: absolute;
  top: 3.4%;
  right: 6%;
  z-index: 1;
  width: 27.5%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(8, 120, 245, 0.05),
    0 20px 70px rgba(8, 120, 245, 0.08);
}

.s5-orbit::before,
.s5-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  content: "";
}

.s5-orbit::before {
  inset: 8%;
}

.s5-orbit::after {
  inset: 18%;
}

.s5-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.42),
    0 18px 44px rgba(8, 120, 245, 0.12);
  color: var(--blue);
  transform: translate(-50%, -50%);
}

.s5-orbit-core svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.s5-dot {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(8, 120, 245, 0.38);
}

.s5-dot-left {
  top: 63%;
  left: 21%;
}

.s5-dot-right {
  top: 35%;
  right: 8%;
}

.s5-copy {
  position: absolute;
  top: 5.35%;
  left: 3.45%;
  z-index: 3;
  width: 64%;
}

.s5-copy h2 {
  max-width: 1040px;
  margin: 0;
  color: #050b1c;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.s5-copy h2 span {
  color: var(--blue);
}

.s5-copy p {
  max-width: 910px;
  margin: 18px 0 0;
  color: #3f4c67;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: pretty;
}

.s5-grid {
  position: absolute;
  top: 360px;
  right: 48px;
  left: 48px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.s5-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 168px;
  align-content: start;
  border: 1px solid rgba(8, 120, 245, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 34px rgba(31, 78, 130, 0.05);
  row-gap: 8px;
  padding: 24px 24px 24px 88px;
  backdrop-filter: blur(12px);
}

.s5-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  min-width: 48px;
  place-items: center;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.12);
}

.s5-icon .icon-svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.s5-card h3 {
  display: block;
  min-height: 0;
  margin: 0;
  color: #061333;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.s5-card p {
  margin: 0;
  color: #607196;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-wrap: pretty;
}

.s5-note {
  position: absolute;
  top: 784px;
  right: 48px;
  bottom: auto;
  left: 48px;
  z-index: 4;
  display: grid;
  min-height: 80px;
  grid-template-columns: 48px max-content;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid rgba(8, 120, 245, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 14px 38px rgba(31, 78, 130, 0.05);
  color: var(--blue);
  padding: 16px 24px;
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.s5-note:hover,
.s5-note:focus-visible {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.s5-note-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #168cff 0%, var(--blue) 100%);
  box-shadow:
    0 0 0 6px rgba(8, 120, 245, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  color: #fff;
}

.s5-note-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.s5-note span:not(.s5-note-icon) {
  color: #061333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.32;
  text-align: center;
}

.s5-note strong {
  color: var(--blue);
  font-weight: 600;
}

.s6-live {
  --s6-copy-left: 56px;
  --s6-block-left: 48px;
  --s6-profile-right: 48px;
  --s6-profile-top: 72px;
  --s6-profile-pad: 24px;
  --s6-content-top: 72px;
  container-type: inline-size;
  aspect-ratio: 1672 / 941;
  isolation: isolate;
  z-index: 31;
  min-height: 900px;
  background:
    radial-gradient(circle at 72% 42%, rgba(8, 120, 245, 0.16), transparent 31%),
    radial-gradient(circle at 6% 65%, rgba(8, 120, 245, 0.06), transparent 16%),
    linear-gradient(120deg, #f8fcff 0%, #eef8ff 56%, #f8fcff 100%);
}

.s6-live::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 120, 245, 0.02) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(8, 120, 245, 0.018) 0 1px, transparent 1px 100%);
  background-size: 3.3cqw 3.3cqw;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.s6-orbit {
  position: absolute;
  top: -40px;
  right: -24px;
  z-index: 1;
  width: 880px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.05);
  pointer-events: none;
}

.s6-orbit::before,
.s6-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  content: "";
}

.s6-orbit::before {
  inset: 8%;
}

.s6-orbit::after {
  inset: 16%;
}

.s6-dot {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(8, 120, 245, 0.36);
}

.s6-dot-top {
  top: 14%;
  left: 22%;
}

.s6-dot-right {
  top: 48%;
  right: 6%;
}

.s6-dot-bottom {
  right: 10%;
  bottom: 16%;
}

.s6-copy {
  position: absolute;
  top: var(--s6-content-top);
  left: var(--s6-copy-left);
  z-index: 3;
  width: 620px;
}

.s6-copy h2 {
  margin: 0;
  color: #061333;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.s6-copy p {
  margin: 0;
  text-wrap: pretty;
}

.s6-lead {
  max-width: 650px;
  margin-top: 16px !important;
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.s6-text {
  max-width: 650px;
  margin-top: 16px !important;
  color: #3f4c67;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.s6-grid {
  position: absolute;
  top: 376px;
  left: var(--s6-block-left);
  z-index: 3;
  display: grid;
  width: 624px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.s6-card {
  position: relative;
  display: block;
  min-height: 136px;
  border: 1px solid rgba(8, 120, 245, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 34px rgba(31, 78, 130, 0.05);
  padding: 16px 24px 16px 88px;
  backdrop-filter: blur(12px);
}

.s6-icon {
  position: absolute;
  top: 16px;
  left: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  min-width: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.s6-icon .icon-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s6-card h3 {
  display: block;
  min-height: 0;
  margin: 0;
  color: #061333;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.s6-card p {
  margin: 8px 0 0;
  align-self: start;
  color: #607196;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: pretty;
}

.s6-note {
  position: absolute;
  top: 712px;
  bottom: auto;
  left: var(--s6-block-left);
  z-index: 4;
  display: grid;
  width: 624px;
  min-height: 80px;
  grid-template-columns: 48px 1px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(8, 120, 245, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 14px 38px rgba(31, 78, 130, 0.05);
  color: #061333;
  padding: 16px 24px;
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.s6-note:hover,
.s6-note:focus-visible {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.s6-note::before {
  display: block;
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 48px;
  background: rgba(8, 120, 245, 0.34);
  content: "";
}

.s6-note-icon {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.s6-note-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.s6-note span:not(.s6-note-icon) {
  grid-column: 3;
  grid-row: 1;
  color: #061333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.s6-profile {
  position: absolute;
  top: var(--s6-profile-top);
  right: var(--s6-profile-right);
  z-index: 3;
  width: 480px;
  min-height: 79%;
  border: 1px solid rgba(8, 120, 245, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 54px rgba(31, 78, 130, 0.08);
  padding: var(--s6-profile-pad);
  backdrop-filter: blur(14px);
}

.s6-photo {
  position: relative;
  height: 384px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 48% 18%, rgba(255, 255, 255, 0.65), transparent 28%),
    linear-gradient(140deg, #d9edf9 0%, #f4fbff 48%, #e8f5ff 100%);
}

.s6-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.96) brightness(1.06);
  object-fit: cover;
  object-position: 50% 32%;
}

.s6-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-grid;
  min-height: 32px;
  grid-template-columns: 16px max-content;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  padding: 0 16px;
  backdrop-filter: blur(10px);
}

.s6-badge .icon-svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
}

.s6-person {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 80px;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
  margin: 16px 8px 0;
}

.s6-person img {
  width: 64px;
  height: 64px;
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: #eef7ff;
  object-fit: cover;
  object-position: 50% 32%;
  box-shadow: 0 10px 28px rgba(31, 78, 130, 0.12);
}

.s6-person h3 {
  margin: 0;
  color: #061333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.s6-person p {
  margin: 8px 0 0;
  color: #607196;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.38;
}

.s6-facts {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.s6-fact {
  display: grid;
  min-height: 56px;
  grid-template-columns: 32px minmax(0, 1fr) max-content;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(8, 120, 245, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  padding: 8px 16px;
}

.s6-fact-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
}

.s6-fact-icon .icon-svg {
  width: 24px;
  height: 24px;
}

.s6-fact strong,
.s6-fact span:not(.s6-fact-icon) {
  font-size: 14px;
  line-height: 1.25;
}

.s6-fact strong {
  color: #061333;
  font-weight: 600;
}

.s6-fact span:not(.s6-fact-icon) {
  color: #7683a2;
  font-weight: 500;
  text-align: right;
}

.s7-live {
  aspect-ratio: 1672 / 820;
  container-type: inline-size;
  isolation: isolate;
  z-index: 32;
  background:
    radial-gradient(circle at 50% 42%, rgba(8, 120, 245, 0.13), transparent 32%),
    radial-gradient(circle at 5% 80%, rgba(8, 120, 245, 0.07), transparent 18%),
    radial-gradient(circle at 92% 28%, rgba(8, 120, 245, 0.06), transparent 18%),
    linear-gradient(120deg, #f8fcff 0%, #eef8ff 52%, #f8fcff 100%);
}

.s7-live::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 120, 245, 0.02) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(8, 120, 245, 0.018) 0 1px, transparent 1px 100%);
  background-size: 3.3cqw 3.3cqw;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.s7-orbit {
  position: absolute;
  top: 3%;
  right: 3.25%;
  left: 2.9%;
  z-index: 1;
  height: 83%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.04);
  pointer-events: none;
}

.s7-orbit::before,
.s7-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  content: "";
}

.s7-orbit::before {
  inset: 7%;
}

.s7-orbit::after {
  inset: 15%;
}

.s7-copy {
  position: absolute;
  top: 48px;
  right: 48px;
  left: 56px;
  z-index: 3;
  text-align: left;
}

.s7-copy h2 {
  margin: 0;
  max-width: 860px;
  color: #061333;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-wrap: balance;
}

.s7-copy h2 span {
  color: var(--blue);
}

.s7-copy p {
  max-width: 800px;
  margin: 16px 0 0;
  color: #607196;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-wrap: pretty;
}

.s7-grid {
  position: absolute;
  top: 248px;
  right: 48px;
  left: 48px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.s7-card {
  position: relative;
  display: grid;
  height: 280px;
  min-height: 280px;
  align-content: start;
  justify-items: start;
  border: 1px solid rgba(8, 120, 245, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 34px rgba(31, 78, 130, 0.05);
  padding: 24px;
  text-align: left;
  backdrop-filter: blur(12px);
}

.s7-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.74;
}

.s7-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-top: 0;
  place-items: center;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.s7-icon .icon-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s7-label {
  display: block;
  min-height: 0;
  margin-top: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 0;
  text-align: left;
}

.s7-card h3 {
  min-height: 48px;
  margin: 16px 0 0;
  color: #061333;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-wrap: pretty;
}

.s7-card p {
  position: relative;
  margin: 16px 0 0;
  color: #607196;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-wrap: pretty;
}

.s7-card p::before {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 16px;
  background: rgba(8, 120, 245, 0.1);
  content: "";
}

.s7-action {
  position: absolute;
  top: 568px;
  right: 48px;
  bottom: auto;
  left: 48px;
  z-index: 4;
  display: grid;
  justify-items: center;
}

.s7-button {
  display: inline-grid;
  min-height: 56px;
  grid-template-columns: 28px max-content;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #168cff 0%, var(--blue) 100%);
  box-shadow: 0 16px 36px rgba(8, 120, 245, 0.18);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  padding: 0 32px;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.s7-button:hover,
.s7-button:focus-visible {
  background: linear-gradient(180deg, #0878f5 0%, var(--blue-dark) 100%);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.s7-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.s7-action p {
  margin: 16px 0 0;
  color: #607196;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.s8-live {
  container-type: inline-size;
  isolation: isolate;
  z-index: 33;
  background:
    radial-gradient(circle at 73% 50%, rgba(8, 120, 245, 0.1), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(120deg, #fbfdff 0%, #f2f9ff 55%, #f9fcff 100%);
}

.s8-live::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 120, 245, 0.02) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(8, 120, 245, 0.018) 0 1px, transparent 1px 100%);
  background-size: 3.3cqw 3.3cqw;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.s8-copy {
  position: absolute;
  top: 104px;
  left: 56px;
  z-index: 4;
  width: 480px;
}

.s8-copy h2 {
  margin: 0;
  color: #061333;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: balance;
}

.s8-copy h2 span {
  color: var(--blue);
}

.s8-copy p {
  max-width: 360px;
  margin: 16px 0 0;
  color: #607196;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
}

.s8-button {
  display: inline-flex;
  width: max-content;
  min-width: 0;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  border-radius: 8px;
  background: linear-gradient(180deg, #168cff 0%, var(--blue) 100%);
  box-shadow: 0 16px 36px rgba(8, 120, 245, 0.18);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  padding: 0 34px;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.s8-button:hover,
.s8-button:focus-visible {
  background: linear-gradient(180deg, #0878f5 0%, var(--blue-dark) 100%);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.s8-proof {
  display: grid;
  width: 320px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.52);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 18px 48px rgba(31, 78, 130, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  margin-top: 160px;
  margin-left: 0;
  backdrop-filter: blur(18px) saturate(145%);
}

.s8-proof-profile {
  display: grid;
  min-height: 88px;
  grid-template-columns: 56px minmax(0, 1fr) 36px;
  align-items: center;
  column-gap: 12px;
  padding: 16px;
}

.s8-proof-avatar {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
}

.s8-proof-info {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.s8-proof-info strong {
  color: #061333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.s8-proof-info span {
  color: #607196;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
}

.s8-proof-telegram,
.s8-proof-feed-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #54adff 0%, #2f9bff 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(8, 120, 245, 0.18);
}

.s8-proof-telegram svg,
.s8-proof-feed-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.s8-proof-feed {
  display: grid;
  min-height: 72px;
  grid-template-columns: 56px minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.52);
  padding: 16px;
}

.s8-proof-feed-copy {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.s8-proof-feed-copy strong {
  color: #061333;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.s8-proof-feed-copy span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.s8-proof-time {
  align-self: start;
  margin-top: 4px;
  color: #607196;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
}

.s8-system {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.s8-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.s8-orbit {
  position: absolute;
  top: 27cqw;
  left: 68cqw;
  display: block;
  width: 34cqw;
  height: 34cqw;
  border: 1px solid rgba(8, 120, 245, 0.13);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 120, 245, 0.055), transparent 63%);
  box-shadow:
    inset 0 0 0 64px rgba(255, 255, 255, 0.16),
    inset 0 0 0 124px rgba(8, 120, 245, 0.035),
    inset 0 0 0 184px rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.s8-orbit::before,
.s8-orbit::after {
  position: absolute;
  border: 1px solid rgba(8, 120, 245, 0.09);
  border-radius: 50%;
  content: "";
}

.s8-orbit::before {
  inset: 13%;
}

.s8-orbit::after {
  inset: 28%;
}

.s8-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f9bff;
  box-shadow:
    0 0 0 5px rgba(8, 120, 245, 0.08),
    0 8px 22px rgba(8, 120, 245, 0.24);
  opacity: 0.7;
  animation: s8-particle-drift 22s ease-in-out infinite alternate;
}

.s8-dot-one {
  top: 11cqw;
  left: 68cqw;
  animation-duration: 24s;
}

.s8-dot-two {
  top: 16cqw;
  right: 17cqw;
  animation-duration: 28s;
  animation-delay: -8s;
}

.s8-dot-three {
  right: 19cqw;
  bottom: 11cqw;
  animation-duration: 26s;
  animation-delay: -12s;
}

.s8-dot-four {
  bottom: 10cqw;
  left: 56cqw;
  animation-duration: 30s;
  animation-delay: -16s;
}

.s8-core {
  position: absolute;
  top: 27cqw;
  left: 68cqw;
  display: grid;
  width: 192px;
  height: 192px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.s8-core img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s8-tag {
  position: absolute;
  z-index: 4;
  display: grid;
  height: 48px;
  grid-template-columns: 18px max-content;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(246, 251, 255, 0.22)),
    rgba(255, 255, 255, 0.2);
  box-shadow:
    0 18px 44px rgba(31, 78, 130, 0.06),
    0 4px 18px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 0 0 1px rgba(8, 120, 245, 0.08);
  color: #061333;
  padding: 0 20px;
  backdrop-filter: blur(24px) saturate(155%);
  animation: s8-tag-glow 18s ease-in-out infinite alternate;
  animation-delay: var(--s8-tag-delay, 0s);
  --s8-base-x: -50%;
  --s8-base-y: -50%;
}

.s8-tag-icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--blue);
}

.s8-tag-icon .icon-svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s8-tag strong {
  color: #061333;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.s8-tag-community .s8-tag-icon {
  width: 20px;
  height: 20px;
}

.s8-tag-community .icon-svg {
  width: 20px;
  height: 20px;
}

.s8-tag-community strong {
  font-size: 14px;
}

.s8-tag-clarity {
  top: 11cqw;
  right: auto;
  left: 60cqw;
  --s8-base-x: -50%;
  --s8-tag-delay: -3s;
}

.s8-tag-confidence {
  top: 11cqw;
  left: 74cqw;
  --s8-tag-delay: -8s;
}

.s8-tag-clients {
  top: 27cqw;
  right: auto;
  left: 85cqw;
  --s8-tag-delay: -5s;
}

.s8-tag-growth {
  top: 36cqw;
  right: auto;
  left: 83cqw;
  --s8-tag-delay: -11s;
}

.s8-tag-expertise {
  right: auto;
  bottom: auto;
  top: 43cqw;
  left: 77cqw;
  --s8-tag-delay: -14s;
}

.s8-tag-practice {
  right: auto;
  bottom: auto;
  top: 43cqw;
  left: 60cqw;
  --s8-tag-delay: -7s;
}

.s8-tag-calm {
  bottom: auto;
  top: 36cqw;
  right: auto;
  left: 53cqw;
  --s8-base-x: -50%;
  --s8-tag-delay: -10s;
}

.s8-tag-community {
  bottom: auto;
  top: 27cqw;
  right: auto;
  left: 51cqw;
  --s8-base-x: -50%;
  grid-template-columns: 20px max-content;
  box-shadow:
    0 22px 54px rgba(31, 78, 130, 0.07),
    0 4px 18px rgba(255, 255, 255, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 0 0 1px rgba(8, 120, 245, 0.1);
  --s8-tag-delay: -12s;
}

.s8-tag-community strong {
  font-size: 12px;
  line-height: 1.18;
}

.s8-tag-community .s8-tag-icon,
.s8-tag-community .icon-svg {
  width: 24px;
  height: 24px;
}

.s8-tag-support {
  top: 18cqw;
  right: auto;
  left: 53cqw;
  --s8-base-x: -50%;
  --s8-tag-delay: -6s;
}

.s8-tag-development {
  top: 18cqw;
  right: auto;
  left: 82cqw;
  grid-template-columns: 20px max-content;
  background-image: url("assets/ui/srednya.png");
  display: grid;
  --s8-tag-delay: -2s;
}

@keyframes s8-tag-glow {
  0% {
    transform: translate3d(var(--s8-base-x), var(--s8-base-y), 0);
    filter: drop-shadow(0 0 0 rgba(8, 120, 245, 0));
  }

  100% {
    transform: translate3d(var(--s8-base-x), var(--s8-base-y), 0);
    filter: drop-shadow(0 8px 14px rgba(8, 120, 245, 0.05));
  }
}

@keyframes s8-particle-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.48;
  }

  100% {
    transform: translate3d(18px, -10px, 0) scale(1.12);
    opacity: 0.82;
  }
}

.s9-live {
  container-type: inline-size;
  isolation: isolate;
  z-index: 34;
  aspect-ratio: auto;
  min-height: 1780px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(8, 120, 245, 0.13), transparent 24%),
    radial-gradient(circle at 8% 50%, rgba(255, 255, 255, 0.96), transparent 28%),
    linear-gradient(120deg, #f8fcff 0%, #eef8ff 52%, #f8fcff 100%);
  padding: 32px 46px 34px;
}

.s9-live::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 120, 245, 0.02) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(8, 120, 245, 0.018) 0 1px, transparent 1px 100%);
  background-size: 46px 46px;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.s9-header,
.s9-hero,
.s9-content {
  position: relative;
  z-index: 2;
}

.s9-header {
  display: grid;
  grid-template-columns: 240px 1fr max-content;
  min-height: 52px;
  align-items: center;
  gap: 32px;
}

.s9-brand {
  display: grid;
  gap: 8px;
}

.s9-brand strong {
  color: #061333;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.s9-brand span {
  color: #617196;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.s9-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.s9-nav a {
  position: relative;
  color: #061333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.s9-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.s9-nav a:hover::after,
.s9-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.s9-header-button {
  min-height: 56px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  padding: 0 32px;
  cursor: default;
}

.s9-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 680px;
  align-items: start;
  column-gap: 32px;
  padding-top: 0;
}

.s9-copy {
  padding-top: 70px;
}

.s9-copy h2 {
  max-width: 640px;
  margin: 0;
  color: #061333;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-wrap: balance;
}

.s9-copy h2 span {
  color: var(--blue);
}

.s9-copy p {
  max-width: 520px;
  margin: 40px 0 0;
  color: #53658a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.62;
}

.s9-primary {
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #168cff 0%, var(--blue) 100%);
  box-shadow: 0 18px 42px rgba(8, 120, 245, 0.18);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  padding: 0 32px;
  cursor: default;
}

.s9-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 54px;
}

.s9-privacy {
  display: grid;
  max-width: 500px !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin-top: 28px !important;
  color: #7281a1 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
}

.s9-privacy svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s9-portrait {
  position: relative;
  min-height: 650px;
}

.s9-orbit {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: -16px;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 120, 245, 0.09), transparent 62%);
  box-shadow:
    inset 0 0 0 72px rgba(255, 255, 255, 0.18),
    inset 0 0 0 138px rgba(8, 120, 245, 0.04),
    inset 0 0 0 210px rgba(255, 255, 255, 0.14);
}

.s9-orbit::before,
.s9-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  content: "";
}

.s9-orbit::before {
  inset: 8%;
}

.s9-orbit::after {
  inset: 17%;
}

.s9-portrait > img {
  position: absolute;
  right: 30px;
  bottom: -2px;
  z-index: 4;
  display: block;
  width: 560px;
  height: 660px;
  object-fit: cover;
  object-position: 54% 36%;
  filter: drop-shadow(0 22px 34px rgba(31, 78, 130, 0.08));
  -webkit-mask-image: radial-gradient(ellipse 42% 50% at 52% 50%, #000 0 62%, rgba(0, 0, 0, 0.78) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse 42% 50% at 52% 50%, #000 0 62%, rgba(0, 0, 0, 0.78) 76%, transparent 100%);
}

.s9-card-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.s9-card-icon .icon-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s9-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  margin-top: 58px;
}

.s9-reasons,
.s9-form-card {
  border: 1px solid rgba(8, 120, 245, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 48px rgba(31, 78, 130, 0.06);
  backdrop-filter: blur(16px);
}

.s9-reasons {
  padding: 42px 34px;
}

.s9-reasons h3,
.s9-form-card h3 {
  margin: 0;
  color: #061333;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.s9-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.s9-reason-card {
  position: relative;
  display: block;
  min-height: 160px;
  border: 1px solid rgba(8, 120, 245, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.38);
  padding: 16px 24px 16px 88px;
}

.s9-card-icon {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 48px;
  height: 48px;
}

.s9-reason-card h4 {
  display: block;
  min-height: 0;
  margin: 0;
  color: #061333;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.s9-reason-card p {
  margin: 8px 0 0;
  color: #607196;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-wrap: pretty;
}

.s9-form-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 28px 34px;
}

.s9-form-card > p {
  grid-column: 2;
  max-width: 560px;
  margin: 8px 0 0;
  color: #7281a1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.s9-cta-icon {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.s9-cta-icon .icon-svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s9-request-button {
  min-height: 56px;
  width: 100%;
  grid-column: 3;
  grid-row: 1 / 3;
  margin-top: 0;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #168cff 0%, var(--blue) 100%);
  box-shadow: 0 18px 42px rgba(8, 120, 245, 0.16);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: default;
}

.s9-footer {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr;
  gap: 32px;
  margin-top: 26px;
  border-top: 1px solid rgba(8, 120, 245, 0.16);
  padding: 22px 4px 0;
  color: #7281a1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.s9-footer-col {
  min-width: 0;
}

.s9-footer h4 {
  margin: 0 0 10px;
  color: #061333;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.s9-footer p {
  max-width: 360px;
  margin: 0;
}

.s9-footer p + p {
  margin-top: 12px;
}

.s9-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.s9-footer a {
  color: #53658a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.s9-social-link {
  display: inline-grid;
  grid-template-columns: 18px max-content;
  align-items: center;
  gap: 8px;
}

.s9-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-calculator[hidden] {
  display: none;
}

.support-calculator {
  position: relative;
  z-index: 3;
  max-width: 1420px;
  margin: 26px auto 0;
  scroll-margin-top: 92px;
}

.support-calculator-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  align-items: start;
  gap: 24px;
}

.support-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 120, 245, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(31, 78, 130, 0.12);
  color: var(--blue);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.support-close:hover,
.support-close:focus-visible {
  border-color: rgba(8, 120, 245, 0.42);
  background: #fff;
  box-shadow: 0 18px 38px rgba(8, 120, 245, 0.16);
  color: #061333;
  transform: translateY(-2px);
}

.support-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-question-card,
.support-result-panel {
  border: 1px solid rgba(8, 120, 245, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    radial-gradient(circle at 12% 0%, rgba(8, 120, 245, 0.08), transparent 32%);
  box-shadow: 0 22px 58px rgba(31, 78, 130, 0.09);
  backdrop-filter: blur(18px);
}

.support-question-card {
  padding: 32px;
}

.support-result-panel {
  position: sticky;
  top: 28px;
  min-height: 520px;
  padding: 30px;
}

.support-card-head {
  display: grid;
  gap: 10px;
}

.support-kicker {
  width: fit-content;
  border: 1px solid rgba(8, 120, 245, 0.18);
  border-radius: 999px;
  background: rgba(238, 247, 255, 0.72);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 8px 12px;
}

.support-card-head h2 {
  margin: 0;
  color: #061333;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

.support-card-head p {
  max-width: 620px;
  margin: 0;
  color: #607196;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.support-steps {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.support-step {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.support-step legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #061333;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  padding: 0;
}

.support-step legend span {
  border-radius: 999px;
  background: rgba(8, 120, 245, 0.09);
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
  padding: 7px 10px;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.support-option {
  display: grid;
  min-height: 58px;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(8, 120, 245, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #53658a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  padding: 12px 14px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.support-option span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(238, 247, 255, 0.88);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.support-option:hover,
.support-option:focus-visible {
  border-color: rgba(8, 120, 245, 0.42);
  box-shadow: 0 14px 28px rgba(8, 120, 245, 0.1);
  transform: translateY(-2px);
}

.support-option.is-selected {
  border-color: rgba(8, 120, 245, 0.58);
  background: linear-gradient(180deg, rgba(238, 247, 255, 0.96), rgba(255, 255, 255, 0.82));
  box-shadow: 0 16px 34px rgba(8, 120, 245, 0.13);
  color: #061333;
}

.support-primary,
.support-secondary {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  padding: 0 22px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.support-primary {
  border: 0;
  background: linear-gradient(180deg, #168cff 0%, var(--blue) 100%);
  box-shadow: 0 18px 42px rgba(8, 120, 245, 0.18);
  color: #fff;
}

.support-primary:hover:not(:disabled),
.support-primary:focus-visible:not(:disabled) {
  box-shadow: 0 22px 48px rgba(8, 120, 245, 0.24);
  transform: translateY(-2px);
}

.support-primary:disabled {
  background: #d8e6f5;
  box-shadow: none;
  color: #8090ad;
  cursor: not-allowed;
  opacity: 0.74;
}

.support-secondary {
  border: 1px solid rgba(8, 120, 245, 0.24);
  background: rgba(255, 255, 255, 0.64);
  color: var(--blue);
}

.support-secondary:hover,
.support-secondary:focus-visible {
  border-color: rgba(8, 120, 245, 0.5);
  box-shadow: 0 14px 30px rgba(8, 120, 245, 0.1);
  transform: translateY(-2px);
}

.support-show-result {
  width: 100%;
  margin-top: 30px;
}

.support-result-empty {
  display: grid;
  min-height: 340px;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: #607196;
  text-align: center;
}

.support-result-empty p {
  max-width: 320px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.support-result-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 120, 245, 0.14);
}

.support-result-icon .icon-svg,
.support-mini-icon .icon-svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-result-card {
  margin-top: 24px;
}

.support-result-label {
  width: fit-content;
  margin: 0 0 12px;
  border-radius: 999px;
  background: rgba(8, 120, 245, 0.09);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 8px 10px;
}

.support-result-card h3 {
  margin: 0;
  color: #061333;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.support-result-description {
  margin: 14px 0 0;
  color: #607196;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.58;
}

.support-result-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.support-result-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  border-bottom: 1px solid rgba(8, 120, 245, 0.1);
  padding-bottom: 12px;
}

.support-mini-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(238, 247, 255, 0.82);
  color: var(--blue);
}

.support-mini-icon .icon-svg {
  display: block;
  width: 22px;
  height: 22px;
}

.support-result-row > div > span {
  display: block;
  color: #8090ad;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.support-result-row strong {
  display: block;
  margin-top: 4px;
  color: #061333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.support-price-box {
  margin-top: 22px;
  border: 1px solid rgba(8, 120, 245, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(8, 120, 245, 0.12), transparent 38%),
    rgba(238, 247, 255, 0.72);
  padding: 22px;
}

.support-price-box span,
.support-price-box em {
  display: block;
  color: #607196;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.support-price-box strong {
  display: block;
  margin-top: 8px;
  color: #061333;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.08;
}

.support-price-box em {
  margin-top: 8px;
  color: var(--blue);
}

.support-price-box p {
  margin: 12px 0 0;
  color: #607196;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.support-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-top: 16px;
  color: #7281a1;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

.support-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.support-consent-box {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(8, 120, 245, 0.34);
  border-radius: 6px;
  background: rgba(238, 247, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  color: #fff;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.support-consent-box svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.74);
  transition: opacity 160ms ease, transform 160ms ease;
}

.support-consent input:checked + .support-consent-box {
  border-color: var(--blue);
  background: linear-gradient(180deg, #1b96ff 0%, var(--blue) 100%);
  box-shadow: 0 8px 18px rgba(8, 120, 245, 0.18);
}

.support-consent input:checked + .support-consent-box svg {
  opacity: 1;
  transform: scale(1);
}

.support-consent input:focus-visible + .support-consent-box {
  outline: 3px solid rgba(8, 120, 245, 0.18);
  outline-offset: 3px;
}

.support-consent-text a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.support-result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.support-cost-note,
.support-lead-status {
  margin: 14px 0 0;
  color: #7281a1;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.support-lead-status:empty {
  display: none;
}

.s9-primary,
.s9-header-button,
.s9-request-button {
  cursor: pointer;
}

@media (min-width: 901px) and (max-width: 1280px) {
  .s2-live {
    display: grid;
    aspect-ratio: auto;
    min-height: 100vh;
    gap: 20px;
    padding: 44px 44px 36px;
    overflow: visible;
  }

  .s2-orbit-top {
    top: -14%;
    right: -16%;
    width: 48%;
  }

  .s2-orbit-side {
    display: none;
  }

  .s2-copy,
  .s2-grid,
  .s2-cta {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s2-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s2-copy p {
    max-width: 680px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .s2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .s2-card {
    min-height: auto;
    border-radius: 14px;
    padding: 16px 16px 16px 84px;
  }

  .s2-icon {
    top: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
  }

  .s2-card h3 {
    min-height: 0;
    font-size: 14px;
    line-height: 16px;
  }

  .s2-card p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .s2-cta {
    min-height: auto;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 18px;
    justify-content: stretch;
    border-radius: 14px;
    padding: 16px;
  }

  .s2-telegram {
    width: 50px;
    height: 50px;
    box-shadow:
      0 0 0 6px rgba(8, 120, 245, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  }

  .s2-telegram svg {
    width: 22px;
    height: 22px;
  }

  .s2-cta-copy strong,
  .s2-cta-copy span {
    font-size: 16px;
    line-height: 1.35;
  }

  .s2-cta-copy {
    width: auto;
  }

  .s3-live {
    display: grid;
    aspect-ratio: auto;
    min-height: 100vh;
    gap: 20px;
    padding: 44px 44px 36px;
    overflow: visible;
  }

  .s3-orbit-main {
    top: -10%;
    right: -12%;
    width: 48%;
  }

  .s3-orbit-bottom {
    display: none;
  }

  .s3-copy,
  .s3-quote,
  .s3-grid,
  .s3-cta {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s3-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s3-copy p {
    max-width: 720px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .s3-quote {
    min-height: auto;
    border-radius: 14px;
    padding: 12px 18px;
  }

  .s3-quote-mark {
    font-size: 24px;
  }

  .s3-quote p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.36;
  }

  .s3-telegram {
    display: none;
  }

  .s3-plan,
  .s3-confidence,
  .s3-steps {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s3-stat {
    min-height: auto;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.28;
  }

  .s3-plan {
    order: 3;
  }

  .s3-confidence {
    order: 4;
  }

  .s3-steps {
    order: 5;
  }

  .s3-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .s3-card {
    min-height: auto;
    border-radius: 14px;
    padding: 16px 16px 16px 84px;
    text-align: left;
  }

  .s3-icon {
    top: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
  }

  .s3-icon .icon-svg {
    width: 22px;
    height: 22px;
  }

  .s3-card h3 {
    min-height: 0;
    margin-top: 0;
    font-size: 14px;
    line-height: 17px;
  }

  .s3-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .s3-cta {
    min-height: auto;
    grid-template-columns: 50px minmax(0, 760px);
    justify-content: center;
    gap: 18px;
    border-radius: 14px;
    padding: 16px;
  }

  .s3-target {
    width: 50px;
    height: 50px;
  }

  .s3-target .icon-svg {
    width: 22px;
    height: 22px;
  }

  .s3-cta p {
    font-size: 16px;
    line-height: 1.35;
  }

  .s4-live {
    display: grid;
    aspect-ratio: auto;
    min-height: 100vh;
    gap: 20px;
    padding: 44px 44px 36px;
    overflow: visible;
  }

  .s4-orbit-main {
    top: -8%;
    right: 0;
    width: 42%;
  }

  .s4-copy,
  .s4-grid,
  .s4-note,
  .s4-button,
  .s4-phone,
  .s4-tag {
    position: relative;
    inset: auto;
    width: min(100%, calc(100vw - 88px)) !important;
    max-width: calc(100vw - 88px) !important;
  }

  .s4-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s4-copy p {
    max-width: 720px;
    margin-top: 18px;
    font-size: 16px;
  }

  .s4-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s4-card {
    min-height: auto;
    border-radius: 14px;
    padding: 16px;
  }

  .s4-phone {
    justify-self: center;
    width: min(290px, 42vw) !important;
    max-width: min(290px, 42vw) !important;
    order: 4;
  }

  .s4-tag {
    min-height: auto;
    grid-template-columns: 52px max-content;
    justify-self: stretch;
    order: 5;
  }

  .s4-tag::before {
    display: none;
  }

  .s4-note {
    order: 6;
  }

  .s4-note p {
    white-space: normal;
  }

  .s4-button {
    width: fit-content !important;
    max-width: calc(100vw - 88px) !important;
    justify-self: start;
    order: 7;
  }

  .s5-live {
    display: grid;
    aspect-ratio: auto;
    margin-top: 0;
    min-height: 100vh;
    gap: 20px;
    padding: 44px 44px 36px;
    overflow: visible;
  }

  .s5-orbit {
    top: -8%;
    right: -14%;
    width: 48%;
  }

  .s5-copy,
  .s5-grid,
  .s5-note {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s5-copy h2 {
    max-width: 980px;
    font-size: 28px;
    line-height: 1.4;
  }

  .s5-copy p {
    max-width: 760px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .s5-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .s5-card {
    min-height: auto;
    grid-template-rows: auto auto;
    border-radius: 14px;
    row-gap: 8px;
    padding: 24px 16px 24px 84px;
  }

  .s5-icon {
    top: 24px;
    left: 16px;
    width: 50px;
    height: 50px;
  }

  .s5-note {
    min-height: auto;
    grid-template-columns: 50px max-content;
    justify-content: center;
    gap: 18px;
    border-radius: 14px;
    padding: 16px;
  }

  .s5-note span:not(.s5-note-icon) {
    font-size: 16px;
    max-width: min(760px, calc(100vw - 220px));
    text-align: left;
  }

  .s6-live {
    display: grid;
    aspect-ratio: auto;
    min-height: 100vh;
    gap: 20px;
    padding: 44px 44px 36px;
    overflow: hidden;
  }

  .s6-orbit {
    top: -12%;
    right: -18%;
    width: 68%;
  }

  .s6-copy,
  .s6-grid,
  .s6-note,
  .s6-profile {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s6-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s6-lead {
    margin-top: 18px !important;
    font-size: 16px;
    line-height: 1.45;
  }

  .s6-text {
    max-width: 760px;
    margin-top: 20px !important;
    font-size: 16px;
    line-height: 1.45;
  }

  .s6-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .s6-card {
    min-height: auto;
    grid-template-columns: 50px 1fr;
    grid-template-rows: 40px auto;
    gap: 8px 18px;
    border-radius: 14px;
    padding: 16px;
  }

  .s6-icon {
    width: 50px;
    height: 50px;
  }

  .s6-icon .icon-svg {
    width: 22px;
    height: 22px;
  }

  .s6-card h3 {
    font-size: 14px;
    line-height: 1.22;
  }

  .s6-card p {
    font-size: 14px;
    line-height: 1.42;
  }

  .s6-note {
    min-height: auto;
    grid-template-columns: 50px 1px minmax(0, 1fr);
    gap: 18px;
    border-radius: 14px;
    padding: 16px;
  }

  .s6-note span:not(.s6-note-icon) {
    font-size: 16px;
    line-height: 1.35;
  }

  .s6-profile {
    justify-self: center;
    width: min(520px, 100%) !important;
    min-height: auto;
    border-radius: 24px;
    padding: 20px;
  }

  .s6-photo {
    height: 380px;
  }

  .s7-live {
    display: grid;
    aspect-ratio: auto;
    min-height: 100vh;
    gap: 20px;
    padding: 44px 44px 36px;
    overflow: hidden;
  }

  .s7-orbit {
    top: -10%;
    right: 0;
    left: auto;
    width: 68%;
    height: auto;
    aspect-ratio: 1;
  }

  .s7-copy,
  .s7-grid,
  .s7-action {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s7-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s7-copy p {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.45;
  }

  .s7-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .s7-card {
    min-height: auto;
    border-radius: 16px;
    padding: 24px;
  }

  .s7-card h3 {
    min-height: 48px;
    font-size: 16px;
    line-height: 1.35;
  }

  .s7-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .s7-action {
    justify-self: center;
  }

  .s8-live {
    display: grid;
    aspect-ratio: auto;
    min-height: 100vh;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    align-items: center;
    gap: 22px;
    padding: 44px;
    overflow: hidden;
  }

  .s8-copy,
  .s8-system {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s8-copy h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .s8-copy p {
    max-width: 430px;
    font-size: 16px;
    line-height: 1.55;
  }

  .s8-button {
    margin-top: 40px;
  }

  .s8-proof {
    width: min(320px, 100%);
    margin-top: 48px;
    margin-left: 0;
  }

  .s8-system {
    height: auto;
    aspect-ratio: 1;
  }

  .s8-orbit {
    left: 50%;
    width: 440px;
    height: 440px;
  }

  .s8-core {
    left: 50%;
    width: 166px;
    height: 166px;
  }

  .s8-tag {
    min-height: 48px;
    gap: 10px;
    padding: 0 18px;
  }

  .s9-live {
    min-height: auto;
    padding: 28px 32px 32px;
  }

  .s9-header {
    grid-template-columns: 200px 1fr max-content;
    gap: 18px;
  }

  .s9-nav {
    gap: 22px;
  }

  .s9-nav a {
    font-size: 12px;
  }

  .s9-header-button {
    font-size: 16px;
  }

  .s9-hero {
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 620px;
    padding-top: 64px;
  }

  .s9-copy {
    padding-top: 46px;
  }

  .s9-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s9-copy p {
    max-width: 460px;
  }

  .s9-primary {
    min-height: 56px;
  }

  .s9-orbit {
    right: -88px;
    width: 560px;
    height: 560px;
  }

  .s9-portrait > img {
    right: -10px;
    bottom: 0;
    width: 500px;
    height: 610px;
  }

  .s9-content {
    grid-template-columns: 1fr;
  }

  .s9-reason-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s9-footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.hotspot {
  position: absolute;
  z-index: 2;
  border-radius: 12px;
  outline: 0 solid rgba(8, 120, 245, 0);
  transition: background 220ms ease, box-shadow 220ms ease, outline-color 220ms ease, transform 220ms ease;
}

.hotspot::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: background 220ms ease;
}

.hotspot:hover,
.hotspot:focus-visible {
  box-shadow: var(--shadow);
  outline: 2px solid rgba(8, 120, 245, 0.38);
  transform: translateY(-2px);
}

.primary-cta:hover::after,
.primary-cta:focus-visible::after {
  background: rgba(255, 255, 255, 0.1);
}

.outline-cta:hover::after,
.outline-cta:focus-visible::after,
.card-link:hover::after,
.card-link:focus-visible::after {
  background: rgba(8, 120, 245, 0.06);
}

.nav-link {
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: #050b1c;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.nav-link span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2.3em;
  padding: 0 0.2em;
  text-shadow:
    0 0 4px #f6fbff,
    0 0 8px #f6fbff;
}

.nav-link::after {
  position: absolute;
  right: 12%;
  bottom: 0.45em;
  left: 12%;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  box-shadow: none;
  outline: 0;
  transform: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.s1-main {
  left: 3.45%;
  top: 63%;
  width: 18.85%;
  height: 7%;
}

.s1-top {
  right: 2.45%;
  top: 2.55%;
  width: 17.7%;
  height: 6.3%;
}

.s1-nav-about {
  left: 28.05%;
  top: 2.75%;
  width: 8.2%;
  height: 5.6%;
}

.s1-nav-channel {
  left: 37.55%;
  top: 2.75%;
  width: 8.45%;
  height: 5.6%;
}

.s1-nav-content {
  left: 47.1%;
  top: 2.75%;
  width: 9.8%;
  height: 5.6%;
}

.s1-nav-olga {
  left: 58.05%;
  top: 2.75%;
  width: 8.6%;
  height: 5.6%;
}

.s1-nav-gifts {
  left: 67.55%;
  top: 2.75%;
  width: 7.4%;
  height: 5.6%;
}

.s1-live {
  right: 2.55%;
  top: 42%;
  width: 15%;
  height: 8.8%;
}

.s1-materials {
  right: 3.3%;
  bottom: 24.2%;
  width: 13.5%;
  height: 10.2%;
}

.s1-beginners {
  left: 3%;
  bottom: 0;
  width: 29.7%;
  height: 17%;
}

.s1-specialists {
  left: 32.7%;
  bottom: 0;
  width: 33.2%;
  height: 17%;
}

.s1-specialists::before {
  position: absolute;
  top: 18%;
  left: 38%;
  z-index: 1;
  width: 38%;
  height: 58%;
  border-radius: 8px;
  background: rgba(247, 251, 255, 0.86);
  content: "";
}

.benefit-copy {
  position: absolute;
  top: 17%;
  left: 39%;
  z-index: 2;
  display: grid;
  width: 38%;
  gap: 0.35vw;
  color: #071437;
  pointer-events: none;
}

.benefit-copy strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.16;
}

.benefit-copy span {
  color: #5e6f95;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.32;
}

.s1-free {
  right: 3.3%;
  bottom: 0;
  width: 30.6%;
  height: 17%;
}

.s2-note {
  left: 4%;
  bottom: 2.8%;
  width: 90.8%;
  height: 10.6%;
}

.s4-main,
.s8-main {
  left: 5.25%;
  bottom: 3.25%;
  width: 19.2%;
  height: 6.1%;
}

.s5-top {
  right: 2.75%;
  top: 1.85%;
  width: 15.25%;
  height: 5.25%;
}

.s7-main {
  left: 37.7%;
  bottom: 8.45%;
  width: 22.9%;
  height: 7.7%;
}

.mobile-header {
  display: none;
}

@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .mobile-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 20;
    display: flex;
    width: 100%;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(246, 251, 255, 0.96);
    padding: 12px 16px;
    backdrop-filter: blur(16px);
  }

  .mobile-brand {
    display: grid;
    gap: 3px;
  }

  .mobile-brand strong {
    font-size: 16px;
    line-height: 1;
  }

  .mobile-brand span {
    color: #607197;
    font-size: 14px;
  }

  .burger {
    position: relative;
    z-index: 24;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: box-shadow 220ms ease, transform 220ms ease;
  }

  .burger:hover,
  .burger:focus-visible {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
  }

  .burger span {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 4px;
    background: var(--blue);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .burger span:nth-child(1) {
    transform: translateY(-7px);
  }

  .burger span:nth-child(3) {
    transform: translateY(7px);
  }

  .burger.is-active span:nth-child(1) {
    transform: rotate(45deg);
  }

  .burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .burger.is-active span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 22;
    display: none;
    width: min(340px, 88vw);
    min-height: 100vh;
    align-content: start;
    gap: 8px;
    border-left: 1px solid var(--line);
    background: rgba(246, 251, 255, 0.98);
    box-shadow: -24px 0 70px rgba(17, 53, 96, 0.16);
    padding: 92px 18px 24px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
    visibility: hidden;
  }

  .mobile-menu.is-open {
    display: grid;
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-menu a {
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    background: #e7f3ff;
    color: var(--blue);
    transform: translateX(-3px);
  }

  .mobile-menu .menu-cta {
    margin-top: 8px;
    background: linear-gradient(180deg, #168cff, var(--blue));
    color: #fff;
    text-align: center;
  }

  .slide > img {
    object-fit: contain;
  }

  .s2-live {
    display: grid;
    aspect-ratio: auto;
    min-height: calc(100vh - 72px);
    gap: 18px;
    padding: 28px 16px 24px;
    overflow: visible;
  }

  .s2-live::before {
    background-size: 44px 44px;
  }

  .s2-orbit-top {
    top: -8%;
    right: -26%;
    width: 72%;
  }

  .s2-orbit-side {
    display: none;
  }

  .s2-copy,
  .s2-grid,
  .s2-cta {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s2-copy {
    z-index: 2;
  }

  .s2-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s2-copy p {
    max-width: 680px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .s2-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .s2-card {
    min-height: auto;
    border-radius: 14px;
    padding: 16px 16px 16px 84px;
  }

  .s2-icon {
    top: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
  }

  .s2-card h3 {
    min-height: 0;
    font-size: 14px;
    line-height: 16px;
  }

  .s2-card p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .s2-cta {
    min-height: auto;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 18px;
    justify-content: stretch;
    border-radius: 14px;
    padding: 16px;
  }

  .s2-telegram {
    width: 50px;
    height: 50px;
    box-shadow:
      0 0 0 6px rgba(8, 120, 245, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  }

  .s2-telegram svg {
    width: 22px;
    height: 22px;
  }

  .s2-cta-copy strong,
  .s2-cta-copy span {
    font-size: 16px;
    line-height: 1.35;
  }

  .s2-cta-copy {
    width: auto;
  }

  .s3-live {
    display: grid;
    aspect-ratio: auto;
    min-height: calc(100vh - 72px);
    gap: 18px;
    padding: 28px 16px 24px;
    overflow: visible;
  }

  .s3-live::before {
    background-size: 44px 44px;
  }

  .s3-orbit-main {
    top: -8%;
    right: -26%;
    width: 72%;
  }

  .s3-orbit-bottom {
    display: none;
  }

  .s3-copy,
  .s3-quote,
  .s3-grid,
  .s3-cta,
  .s3-plan,
  .s3-confidence,
  .s3-steps {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s3-copy {
    z-index: 3;
  }

  .s3-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s3-copy p {
    max-width: 680px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .s3-quote {
    min-height: auto;
    border-radius: 14px;
    padding: 12px 18px;
  }

  .s3-quote-mark {
    font-size: 24px;
  }

  .s3-quote p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.36;
  }

  .s3-telegram {
    display: none;
  }

  .s3-stat {
    min-height: auto;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.28;
  }

  .s3-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .s3-card {
    min-height: auto;
    border-radius: 14px;
    padding: 16px 16px 16px 84px;
    text-align: left;
  }

  .s3-icon {
    top: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
  }

  .s3-icon .icon-svg {
    width: 22px;
    height: 22px;
  }

  .s3-card h3 {
    min-height: 0;
    margin-top: 0;
    font-size: 14px;
    line-height: 17px;
  }

  .s3-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .s3-cta {
    min-height: auto;
    grid-template-columns: 50px minmax(0, 720px);
    justify-content: center;
    gap: 18px;
    border-radius: 14px;
    padding: 16px;
  }

  .s3-target {
    width: 50px;
    height: 50px;
  }

  .s3-target .icon-svg {
    width: 22px;
    height: 22px;
  }

  .s3-cta p {
    font-size: 16px;
    line-height: 1.35;
  }

  .s4-live {
    display: grid;
    aspect-ratio: auto;
    min-height: calc(100vh - 72px);
    gap: 18px;
    padding: 28px 16px 24px;
    overflow: visible;
  }

  .s4-live::before {
    background-size: 44px 44px;
  }

  .s4-orbit-main {
    top: -8%;
    right: -28%;
    width: 76%;
  }

  .s4-copy,
  .s4-grid,
  .s4-note,
  .s4-button,
  .s4-phone,
  .s4-tag {
    position: relative;
    inset: auto;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .s4-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s4-copy p {
    max-width: 680px;
    margin-top: 18px;
    font-size: 16px;
  }

  .s4-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .s4-card {
    min-height: auto;
    border-radius: 14px;
    padding: 16px;
  }

  .s4-phone {
    justify-self: center;
    width: min(310px, 72vw) !important;
    max-width: min(310px, 72vw) !important;
  }

  .s4-tag {
    min-height: auto;
    grid-template-columns: 52px max-content;
    justify-self: stretch;
  }

  .s4-tag::before {
    display: none;
  }

  .s4-button {
    width: fit-content !important;
    max-width: calc(100vw - 32px) !important;
    justify-self: start;
  }

  .s5-live {
    display: grid;
    aspect-ratio: auto;
    margin-top: -72px;
    min-height: calc(100vh - 72px);
    scroll-margin-top: -72px;
    gap: 18px;
    padding: 100px 16px 24px;
    overflow: visible;
  }

  .s5-live::before {
    background-size: 44px 44px;
  }

  .s5-orbit {
    top: -8%;
    right: -26%;
    width: 72%;
  }

  .s5-orbit-core {
    width: 72px;
    height: 72px;
    box-shadow:
      0 0 0 14px rgba(255, 255, 255, 0.42),
      0 18px 44px rgba(8, 120, 245, 0.12);
  }

  .s5-orbit-core svg {
    width: 36px;
    height: 36px;
  }

  .s5-copy,
  .s5-grid,
  .s5-note {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s5-copy {
    z-index: 3;
  }

  .s5-copy h2 {
    max-width: 760px;
    font-size: 28px;
    line-height: 1.4;
  }

  .s5-copy p {
    max-width: 680px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .s5-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .s5-card {
    min-height: auto;
    grid-template-rows: auto auto;
    border-radius: 14px;
    row-gap: 8px;
    padding: 24px 16px 24px 84px;
  }

  .s5-icon {
    top: 24px;
    left: 16px;
    width: 50px;
    height: 50px;
  }

  .s5-card h3 {
    min-height: 0;
    font-size: 14px;
    line-height: 17px;
  }

  .s5-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .s5-note {
    min-height: auto;
    grid-template-columns: 50px minmax(0, 1fr);
    justify-content: stretch;
    gap: 18px;
    border-radius: 14px;
    padding: 16px;
  }

  .s5-note span:not(.s5-note-icon) {
    font-size: 16px;
    line-height: 1.35;
    text-align: left;
  }

  .s6-live {
    display: grid;
    aspect-ratio: auto;
    margin-top: -72px;
    min-height: calc(100vh - 72px);
    scroll-margin-top: -72px;
    gap: 18px;
    padding: 100px 16px 24px;
    overflow: hidden;
  }

  .s6-live::before {
    background-size: 44px 44px;
  }

  .s6-live::after {
    position: absolute;
    top: -140px;
    right: 0;
    left: 0;
    z-index: 0;
    height: 160px;
    background: linear-gradient(120deg, #f8fcff 0%, #eef8ff 56%, #f8fcff 100%);
    content: "";
    pointer-events: none;
  }

  .s6-orbit {
    top: -8%;
    right: -30%;
    width: 80%;
  }

  .s6-copy,
  .s6-grid,
  .s6-note,
  .s6-profile {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s6-copy {
    z-index: 3;
  }

  .s6-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s6-lead {
    margin-top: 18px !important;
    font-size: 16px;
    line-height: 1.45;
  }

  .s6-text {
    max-width: 680px;
    margin-top: 20px !important;
    font-size: 16px;
    line-height: 1.45;
  }

  .s6-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .s6-card {
    min-height: auto;
    grid-template-columns: 50px 1fr;
    grid-template-rows: 40px auto;
    gap: 8px 18px;
    border-radius: 14px;
    padding: 16px;
  }

  .s6-icon {
    width: 50px;
    height: 50px;
  }

  .s6-icon .icon-svg {
    width: 22px;
    height: 22px;
  }

  .s6-card h3 {
    font-size: 14px;
    line-height: 1.22;
  }

  .s6-card p {
    font-size: 14px;
    line-height: 1.42;
  }

  .s6-note {
    min-height: auto;
    grid-template-columns: 50px 1px minmax(0, 1fr);
    gap: 18px;
    border-radius: 14px;
    padding: 16px;
  }

  .s6-note span:not(.s6-note-icon) {
    font-size: 16px;
    line-height: 1.35;
  }

  .s6-profile {
    width: min(540px, 100%);
    min-height: auto;
    justify-self: center;
    border-radius: 24px;
    padding: 20px;
  }

  .s6-photo {
    height: 360px;
  }

  .s7-live {
    display: grid;
    aspect-ratio: auto;
    margin-top: -72px;
    min-height: calc(100vh - 72px);
    scroll-margin-top: -72px;
    gap: 18px;
    padding: 100px 16px 24px;
    overflow: hidden;
  }

  .s7-live::before {
    background-size: 44px 44px;
  }

  .s7-live::after {
    position: absolute;
    top: -140px;
    right: 0;
    left: 0;
    z-index: 0;
    height: 160px;
    background: linear-gradient(120deg, #f8fcff 0%, #eef8ff 52%, #f8fcff 100%);
    content: "";
    pointer-events: none;
  }

  .s7-orbit {
    top: -8%;
    right: 0;
    left: auto;
    width: 80%;
    height: auto;
    aspect-ratio: 1;
  }

  .s7-copy,
  .s7-grid,
  .s7-action {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s7-copy {
    z-index: 3;
    text-align: left;
  }

  .s7-copy h2 {
    max-width: 680px;
    margin: 0;
    font-size: 28px;
    line-height: 1.4;
    text-wrap: balance;
  }

  .s7-copy p {
    max-width: 680px;
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.45;
  }

  .s7-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .s7-card {
    min-height: auto;
    border-radius: 16px;
    padding: 24px;
  }

  .s7-icon {
    width: 56px;
    height: 56px;
  }

  .s7-icon .icon-svg {
    width: 24px;
    height: 24px;
  }

  .s7-card h3 {
    min-height: 48px;
    font-size: 16px;
    line-height: 1.35;
  }

  .s7-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .s7-action {
    justify-items: start;
  }

  .s7-button {
    min-width: min(382px, 100%);
  }

  .s7-action p {
    font-size: 12px;
    line-height: 1.35;
  }

  .s8-live {
    display: grid;
    aspect-ratio: auto;
    margin-top: -72px;
    min-height: calc(100vh - 72px);
    scroll-margin-top: -72px;
    gap: 18px;
    padding: 100px 16px 24px;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 40%, rgba(8, 120, 245, 0.1), transparent 34%),
      radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.92), transparent 30%),
      linear-gradient(120deg, #fbfdff 0%, #f2f9ff 55%, #f9fcff 100%);
  }

  .s8-live::before {
    background-size: 44px 44px;
  }

  .s8-live::after {
    position: absolute;
    top: -140px;
    right: 0;
    left: 0;
    z-index: 0;
    height: 160px;
    background: linear-gradient(120deg, #f8fcff 0%, #eef8ff 52%, #f8fcff 100%);
    content: "";
    pointer-events: none;
  }

  .s8-copy,
  .s8-system {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .s8-copy {
    z-index: 3;
  }

  .s8-copy h2 {
    max-width: 680px;
    font-size: 28px;
    line-height: 1.25;
  }

  .s8-copy p {
    max-width: 680px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .s8-button {
    display: inline-flex;
    width: max-content;
    min-width: 0;
    margin-top: 32px;
  }

  .s8-proof {
    width: min(320px, 100%);
    margin-top: 32px;
    margin-left: 0;
  }

  .s8-system {
    display: grid;
    gap: 12px;
    z-index: 2;
  }

  .s8-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
  }

  .s8-orbit {
    top: 50%;
    left: 50%;
    width: min(300px, 78vw);
    height: min(300px, 78vw);
    border: 1px solid rgba(8, 120, 245, 0.14);
    border-radius: 50%;
    background: transparent;
    box-shadow:
      inset 0 0 0 34px rgba(255, 255, 255, 0.16),
      inset 0 0 0 74px rgba(8, 120, 245, 0.035),
      inset 0 0 0 110px rgba(255, 255, 255, 0.12);
    transform: translate(-50%, -50%);
  }

  .s8-core {
    top: 50%;
    left: 50%;
    width: 146px;
    height: 146px;
  }

  .s8-tag {
    position: relative;
    inset: auto;
    width: auto;
    min-width: 0;
    min-height: 48px;
    grid-template-columns: 20px minmax(0, max-content);
    transform: none;
  }

  .s8-tag-development {
    display: grid;
  }

  .s9-live {
    min-height: auto;
    padding: 0 16px 28px;
  }

  .s9-header {
    display: none;
  }

  .s9-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
    padding-top: 88px;
  }

  .s9-copy {
    padding-top: 0;
  }

  .s9-copy h2 {
    max-width: 680px;
    font-size: 28px;
    line-height: 1.4;
  }

  .s9-copy p {
    max-width: 680px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .s9-primary {
    min-width: min(308px, 100%);
    min-height: 56px;
  }

  .s9-actions {
    margin-top: 32px;
  }

  .s9-privacy {
    max-width: 680px !important;
    margin-top: 20px !important;
  }

  .s9-portrait {
    min-height: 560px;
  }

  .s9-orbit {
    top: 0;
    left: 50%;
    right: auto;
    width: min(560px, 120vw);
    height: min(560px, 120vw);
    transform: translateX(-50%);
  }

  .s9-portrait > img {
    right: 50%;
    bottom: 0;
    width: min(500px, 112vw);
    height: 560px;
    transform: translateX(50%);
  }

  .s9-content {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 22px;
  }

  .s9-reasons,
  .s9-form-card {
    border-radius: 14px;
    padding: 24px 16px;
  }

  .s9-form-card {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .s9-form-card > p {
    grid-column: 2;
  }

  .s9-cta-icon {
    grid-row: 1 / 3;
    width: 50px;
    height: 50px;
  }

  .s9-request-button {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .s9-reasons h3,
  .s9-form-card h3 {
    font-size: 24px;
  }

  .s9-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .hero-slide {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    aspect-ratio: auto;
    min-height: calc(100vh - 72px);
    gap: 22px;
    padding: 28px 16px 24px;
    overflow: hidden;
  }

  .hero-slide > * {
    min-width: 0;
  }

  .hero-header {
    display: none;
  }

  .hero-orbit-main {
    top: 18%;
    left: auto;
    right: -28%;
    width: 82%;
  }

  .hero-copy,
  .phone-stage,
  .float-card,
  .benefit-strip {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-copy {
    z-index: 3;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
  }

  .hero-copy h1,
  .hero-copy h2,
  .hero-copy p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: 44px;
    line-height: 1.12;
  }

  .hero-copy h2 {
    margin-top: 16px;
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .mobile-break,
  .copy-break,
  .note-break {
    display: none;
  }

  .hero-copy > p:not(.hero-note) {
    width: 100%;
    max-width: 100% !important;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: normal;
    text-wrap: pretty;
  }

  .hero-note {
    width: 100%;
    max-width: 100% !important;
  }

  .hero-primary {
    min-width: min(330px, 100%);
    min-height: 56px;
    gap: 10px;
    margin-top: 24px;
    border-radius: 8px;
    font-size: 16px;
  }

  .hero-primary svg {
    width: 22px;
    height: 22px;
  }

  .hero-note {
    max-width: 320px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .phone-stage {
    z-index: 4;
    width: min(280px, 72vw);
    justify-self: center;
  }

  .float-card {
    min-height: auto;
    gap: 14px;
    border-radius: 14px;
    padding: 16px;
  }

  .float-card::before {
    display: none;
  }

  .float-card strong {
    font-size: 14px;
  }

  .icon-svg,
  .benefit-icon .icon-svg {
    width: 30px;
    height: 30px;
  }

  .benefit-strip {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    min-height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .benefit-card {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 16px;
    border: 1px solid rgba(8, 120, 245, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
    padding: 16px;
    backdrop-filter: blur(12px);
  }

  .benefit-card:not(:last-child)::after {
    display: none;
  }

  .float-dot,
  .benefit-icon {
    width: 64px;
    height: 64px;
  }

  .benefit-card:nth-child(3) .benefit-icon,
  .benefit-card:nth-child(3) strong,
  .benefit-card:nth-child(3) span:not(.benefit-icon) {
    transform: none;
  }

  .benefit-card strong {
    min-height: 40px;
    font-size: 16px;
    line-height: 1.28;
  }

  .benefit-card span:not(.benefit-icon) {
    font-size: 14px;
    line-height: 1.45;
  }

  .nav-link {
    display: none;
  }

  .hotspot {
    border-radius: 10px;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy h2 {
    font-size: 28px;
  }

  .hero-copy > p:not(.hero-note) {
    max-width: 680px !important;
    font-size: 16px;
  }

  .hero-note {
    max-width: 360px !important;
  }

  .phone-stage {
    width: min(300px, 48vw);
  }

  .benefit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-card {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: 9px 12px;
    padding: 14px 12px;
  }

  .float-dot,
  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .benefit-card strong {
    min-height: 38px;
    font-size: 14px;
    line-height: 1.24;
  }

  .benefit-card span:not(.benefit-icon) {
    font-size: 14px;
    line-height: 1.42;
  }
}

@media (min-width: 561px) and (max-width: 800px) {
  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    grid-template-columns: 56px 1fr;
    gap: 10px 14px;
    padding: 16px;
  }

  .float-dot,
  .benefit-icon {
    width: 56px;
    height: 56px;
  }

  .benefit-card strong {
    min-height: 40px;
    font-size: 16px;
    line-height: 1.28;
  }

  .benefit-card span:not(.benefit-icon) {
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 560px) {
  .mobile-brand strong {
    font-size: 16px;
  }

  .mobile-brand span {
    font-size: 14px;
  }

  .s2-live {
    gap: 16px;
    padding: 24px 16px;
  }

  .s2-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s2-copy p {
    max-width: 358px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .s2-grid {
    grid-template-columns: 1fr;
  }

  .s2-card {
    padding: 16px 16px 16px 86px;
  }

  .s2-icon {
    top: 16px;
    left: 16px;
    width: 56px;
    height: 56px;
  }

  .s2-icon .icon-svg {
    width: 22px;
    height: 22px;
  }

  .s2-card h3 {
    min-height: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .s2-card p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .s2-cta {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .s2-telegram {
    width: 56px;
    height: 56px;
  }

  .s2-telegram svg {
    width: 22px;
    height: 22px;
  }

  .s2-cta-copy strong,
  .s2-cta-copy span {
    font-size: 16px;
  }

  .s3-live {
    gap: 16px;
    padding: 24px 16px;
  }

  .s3-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s3-copy p {
    max-width: 358px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .s3-quote {
    border-radius: 14px;
    padding: 12px 16px;
  }

  .s3-quote-mark {
    font-size: 24px;
  }

  .s3-quote p {
    font-size: 12px;
    line-height: 1.36;
  }

  .s3-stat {
    gap: 10px;
    font-size: 12px;
  }

  .s3-grid {
    grid-template-columns: 1fr;
  }

  .s3-card {
    justify-items: start;
    padding: 16px 16px 16px 86px;
    text-align: left;
  }

  .s3-icon {
    top: 16px;
    left: 16px;
    width: 56px;
    height: 56px;
  }

  .s3-card h3 {
    min-height: 0;
    margin-top: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .s3-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .s3-cta {
    grid-template-columns: 56px minmax(0, 1fr);
    justify-content: center;
    gap: 14px;
    padding: 16px;
  }

  .s3-cta p {
    font-size: 16px;
    line-height: 1.35;
  }

  .s4-live {
    gap: 16px;
    padding: 24px 16px;
  }

  .s4-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s4-copy p {
    max-width: 358px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .s4-grid {
    grid-template-columns: 1fr;
  }

  .s4-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-content: center;
    gap: 10px 14px;
    text-align: left;
  }

  .s4-icon {
    grid-row: 1 / 3;
    grid-column: 1;
    width: 56px;
    height: 56px;
  }

  .s4-icon .icon-svg {
    width: 28px;
    height: 28px;
  }

  .s4-card h3 {
    grid-column: 2;
    min-height: 40px;
    margin-top: 0;
    font-size: 16px;
    line-height: 1.28;
  }

  .s4-card p {
    grid-column: 2;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .s4-note p {
    font-size: 14px;
    line-height: 1.45;
  }

  .s4-button {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    grid-template-columns: 24px minmax(0, max-content);
    justify-content: center;
    font-size: 16px;
    padding: 0 32px;
  }

  .s4-phone {
    width: min(280px, 78vw);
  }

  .s4-tag {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .s5-live {
    gap: 16px;
    padding: 96px 16px 24px;
  }

  .s5-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s5-copy p {
    max-width: 358px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .s5-grid {
    grid-template-columns: 1fr;
  }

  .s5-card {
    grid-template-rows: auto auto;
    row-gap: 8px;
    padding: 24px 16px 24px 86px;
    text-align: left;
  }

  .s5-icon {
    top: 24px;
    left: 16px;
    width: 56px;
    height: 56px;
  }

  .s5-icon .icon-svg {
    width: 28px;
    height: 28px;
  }

  .s5-card h3 {
    min-height: 0;
    margin-top: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .s5-card p {
    margin-top: 0;
    font-size: 14px;
    line-height: 20px;
  }

  .s5-note {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .s5-note-icon {
    width: 56px;
    height: 56px;
  }

  .s5-note span:not(.s5-note-icon) {
    font-size: 16px;
  }

  .s6-live {
    gap: 16px;
    padding: 120px 16px 24px;
  }

  .s6-copy h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .s6-lead {
    margin-top: 16px !important;
    font-size: 16px;
    line-height: 1.45;
  }

  .s6-text {
    max-width: 358px;
    margin-top: 18px !important;
    font-size: 14px;
    line-height: 1.5;
  }

  .s6-grid {
    grid-template-columns: 1fr;
  }

  .s6-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-content: start;
    gap: 8px 18px;
    text-align: left;
  }

  .s6-card h3 {
    grid-column: 2;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.22;
  }

  .s6-card p {
    grid-column: 2;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.42;
  }

  .s6-note {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .s6-note::before {
    display: none;
  }

  .s6-note-icon {
    width: 50px;
    height: 50px;
  }

  .s6-note span:not(.s6-note-icon) {
    grid-column: 2;
    grid-row: 1 / 4;
    font-size: 14px;
    line-height: 1.45;
  }

  .s6-profile {
    border-radius: 20px;
    padding: 14px;
  }

  .s6-photo {
    height: 290px;
    border-radius: 16px;
  }

  .s6-badge {
    top: 14px;
    right: auto;
    left: 14px;
    min-height: 28px;
    font-size: 14px;
    padding: 0 10px;
  }

  .s6-person {
    min-height: auto;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    margin: 14px 10px 0;
  }

  .s6-person img {
    width: 64px;
    height: 64px;
    border-width: 4px;
  }

  .s6-person h3 {
    font-size: 16px;
    line-height: 1.3;
  }

  .s6-person p {
    font-size: 14px;
    line-height: 1.38;
  }

  .s6-fact {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px 12px;
  }

  .s6-fact span:not(.s6-fact-icon) {
    grid-column: 2;
    text-align: left;
  }

  .s7-live {
    gap: 16px;
    padding: 96px 16px 24px;
  }

  .s7-copy h2 {
    max-width: 358px;
    font-size: 28px;
    line-height: 1.4;
  }

  .s7-copy p {
    max-width: 358px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .s7-grid {
    grid-template-columns: 1fr;
  }

  .s7-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    justify-items: start;
    align-content: start;
    gap: 8px 16px;
    text-align: left;
  }

  .s7-number {
    top: 24px;
    right: 24px;
  }

  .s7-icon {
    grid-row: 1 / 4;
    margin-top: 0;
  }

  .s7-label {
    min-height: 30px;
    margin-top: 0;
  }

  .s7-card h3 {
    min-height: auto;
    margin-top: 0;
    font-size: 16px;
    line-height: 1.35;
  }

  .s7-card p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .s7-card p::before {
    margin-bottom: 14px;
  }

  .s7-button {
    width: 100%;
    min-width: 0;
    grid-template-columns: 24px minmax(0, max-content);
    font-size: 16px;
    padding: 0 32px;
  }

  .s7-button svg {
    width: 24px;
    height: 24px;
  }

  .s7-action p {
    font-size: 12px;
    line-height: 1.35;
  }

  .s8-live {
    gap: 16px;
    padding: 96px 16px 24px;
  }

  .s8-copy h2 {
    max-width: 358px;
    font-size: 28px;
    line-height: 1.25;
  }

  .s8-copy p {
    max-width: 358px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .s8-button {
    width: max-content;
    min-width: 0;
    min-height: 56px;
    display: inline-flex;
    margin-top: 28px;
    font-size: 16px;
    padding: 0 34px;
  }

  .s8-proof {
    width: 100%;
    margin-top: 34px;
    margin-left: 0;
  }

  .s8-visual {
    min-height: 340px;
  }

  .s8-core {
    width: 104px;
    height: 104px;
  }

  .s8-tag {
    min-height: 48px;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    padding: 0 20px;
  }

  .s8-tag strong {
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
  }

  .s9-live {
    padding: 0 16px 24px;
  }

  .s9-hero {
    padding-top: 92px;
  }

  .s9-copy h2 {
    max-width: 358px;
    font-size: 28px;
    line-height: 1.4;
  }

  .s9-copy p {
    max-width: 358px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .s9-primary {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    font-size: 16px;
  }

  .s9-header-button {
    width: 100%;
  }

  .s9-actions {
    gap: 12px;
    margin-top: 28px;
  }

  .s9-privacy {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .s9-portrait {
    min-height: 500px;
  }

  .s9-orbit {
    width: min(360px, calc(100vw - 32px));
    height: min(360px, calc(100vw - 32px));
  }

  .s9-portrait > img {
    width: min(390px, 100vw);
    height: 500px;
  }

  .s9-reasons h3,
  .s9-form-card h3 {
    font-size: 22px;
    line-height: 1.35;
  }

  .s9-reason-grid {
    grid-template-columns: 1fr;
  }

  .s9-reason-card {
    min-height: 160px;
    padding: 16px 24px 16px 88px;
  }

  .s9-card-icon {
    width: 48px;
    height: 48px;
  }

  .s9-reason-card h4 {
    margin-top: 0;
    font-size: 14px;
    line-height: 16px;
  }

  .s9-reason-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .s9-cta-icon {
    width: 48px;
    height: 48px;
  }

  .s9-request-button {
    min-height: 56px;
    margin-top: 24px;
    font-size: 16px;
  }

  .s9-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 18px;
    padding-top: 16px;
    font-size: 12px;
  }

  .mobile-break,
  .note-break {
    display: block;
  }

  .copy-break {
    display: none;
  }

  .hero-copy > p:not(.hero-note) {
    max-width: 358px !important;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-note {
    max-width: 292px !important;
    margin-top: 14px;
    font-size: 14px !important;
    line-height: 1.36 !important;
  }

  .benefit-card {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 14px;
  }

  .float-dot,
  .benefit-icon {
    width: 56px;
    height: 56px;
  }

  .benefit-card strong {
    min-height: 40px;
    font-size: 16px;
    line-height: 1.28;
  }

  .benefit-card span:not(.benefit-icon) {
    font-size: 14px;
    line-height: 1.45;
  }
}

/* Переменные мобильного слоя */
@media (max-width: 768px) {
  :root {
    --mobile-section-gap: var(--space-lg);
    --mobile-block-gap: var(--space-sm);
    --mobile-card-padding: var(--space-md);
    --mobile-card-icon: 48px;
    --mobile-button-height: 56px;
  }
}

/* Сетка экрана мобильного слоя */
@media (max-width: 768px) {
  .desktop-break {
    display: none;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .hero-orbit,
  .s2-orbit,
  .s3-orbit,
  .s4-orbit,
  .s5-orbit,
  .s6-orbit,
  .s8-orbit,
  .s5-dot,
  .s6-dot,
  .s8-dot {
    display: none;
  }

  .s8-live {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: var(--mobile-section-gap);
  }

  .s8-orbit,
  .s8-dot,
  .s8-live::after {
    display: none;
  }

  .s8-copy,
  .s8-proof,
  .s8-system,
  .s8-visual,
  .s8-core {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
  }

  .s8-system {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--mobile-block-gap);
  }

  .s8-copy {
    display: grid;
    gap: var(--mobile-block-gap);
  }

  .s8-copy p {
    max-width: none;
  }

  .s8-button {
    margin-top: var(--space-sm);
  }

  .s8-proof {
    margin-top: var(--space-sm);
    margin-left: 0;
  }

  .s8-system {
    align-items: center;
    height: auto;
  }

  .s8-visual {
    display: grid;
    height: auto;
    min-height: auto;
    justify-items: center;
  }

  .s8-core {
    width: 176px;
    height: 176px;
    transform: none;
  }

  .s8-tag {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    transform: none;
    animation: none;
  }
}

/* Стили компонентов мобильного слоя */
@media (max-width: 768px) {
  .s8-tag {
    display: flex;
    height: auto;
    min-height: 48px;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
  }

  .s8-tag strong,
  .s8-tag-community strong {
    font-size: var(--font-sm);
    line-height: var(--space-sm);
    white-space: normal;
  }
}

/* Медиа-запросы компактного мобильного слоя */
@media (max-width: 480px) {
  .s8-proof-profile,
  .s8-proof-feed {
    padding: var(--space-sm);
  }

  .s8-proof {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .support-calculator-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-result-panel {
    position: relative;
    top: auto;
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .support-calculator {
    margin-top: 22px;
    scroll-margin-top: 78px;
  }

  .support-close {
    top: -14px;
    right: -8px;
    width: 40px;
    height: 40px;
  }

  .support-close svg {
    width: 18px;
    height: 18px;
  }

  .support-question-card,
  .support-result-panel {
    border-radius: 24px;
    padding: 22px 16px;
  }

  .support-card-head h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .support-card-head p,
  .support-result-description,
  .support-result-empty p {
    font-size: 14px;
  }

  .support-steps {
    gap: 20px;
    margin-top: 24px;
  }

  .support-step legend {
    font-size: 16px;
  }

  .support-options {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .support-option {
    min-height: 58px;
    border-radius: 16px;
    padding: 12px;
  }

  .support-show-result {
    margin-top: 24px;
  }

  .support-result-card h3 {
    font-size: 22px;
  }

  .support-price-box {
    border-radius: 20px;
    padding: 18px;
  }

  .support-price-box strong {
    font-size: 30px;
  }

  .support-consent {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    font-size: 12px;
  }

  .support-consent-box {
    width: 24px;
    height: 24px;
  }

  .support-result-actions {
    grid-template-columns: 1fr;
  }

  .support-primary,
  .support-secondary {
    width: 100%;
    min-height: 56px;
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (min-width: 520px) and (max-width: 760px) {
  .support-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .support-result-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .support-mini-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .support-price-box strong {
    font-size: 27px;
  }
}

/* Mobile polish: stable typography and card grids */
@media (max-width: 768px) {
  .slide {
    aspect-ratio: auto;
  }

  .s2-live,
  .s3-live,
  .s4-live,
  .s5-live,
  .s6-live,
  .s7-live,
  .s8-live,
  .s9-live {
    min-height: auto;
    overflow: hidden;
    padding-right: 16px;
    padding-left: 16px;
  }

  .s2-copy,
  .s3-copy,
  .s4-copy,
  .s5-copy,
  .s6-copy,
  .s7-copy,
  .s8-copy,
  .s9-copy {
    width: 100%;
    max-width: none;
  }

  .s2-copy h2,
  .s3-copy h2,
  .s4-copy h2,
  .s5-copy h2,
  .s6-copy h2,
  .s7-copy h2,
  .s8-copy h2,
  .s9-copy h2 {
    max-width: min(100%, 520px);
    color: #061333;
    font-size: clamp(26px, 7.1vw, 32px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: 0;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .s2-copy p,
  .s3-copy p,
  .s4-copy p,
  .s5-copy p,
  .s6-text,
  .s7-copy p,
  .s8-copy p,
  .s9-copy p {
    max-width: min(100%, 520px);
    color: #53658a;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .s2-grid,
  .s3-grid,
  .s4-grid,
  .s5-grid,
  .s6-grid,
  .s7-grid,
  .s9-reason-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .s2-card,
  .s3-card,
  .s4-card,
  .s5-card,
  .s6-card,
  .s7-card,
  .s9-reason-card {
    display: grid;
    min-height: auto;
    height: auto;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-content: start;
    align-items: start;
    justify-items: stretch;
    gap: 6px 14px;
    border-radius: 12px;
    padding: 16px;
    text-align: left;
  }

  .s2-icon,
  .s3-icon,
  .s4-icon,
  .s5-icon,
  .s6-icon,
  .s7-icon,
  .s9-card-icon {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1;
    grid-row: 1 / 4;
    width: 52px;
    height: 52px;
    min-width: 52px;
    margin: 0;
    place-self: start center;
  }

  .s2-icon .icon-svg,
  .s3-icon .icon-svg,
  .s4-icon .icon-svg,
  .s5-icon .icon-svg,
  .s6-icon .icon-svg,
  .s7-icon .icon-svg,
  .s9-card-icon .icon-svg {
    width: 22px;
    height: 22px;
  }

  .s2-card h3,
  .s3-card h3,
  .s4-card h3,
  .s5-card h3,
  .s6-card h3,
  .s7-card h3,
  .s9-reason-card h4 {
    grid-column: 2;
    min-width: 0;
    min-height: 0;
    margin: 0;
    color: #061333;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.32;
    overflow-wrap: break-word;
    text-align: left;
    text-wrap: pretty;
  }

  .s2-card > h3,
  .s2-card > p,
  .s2-card > .s2-text,
  .s3-card > h3,
  .s3-card > p,
  .s4-card > h3,
  .s4-card > p,
  .s5-card > h3,
  .s5-card > p,
  .s6-card > h3,
  .s6-card > p,
  .s7-card > .s7-label,
  .s7-card > h3,
  .s7-card > p,
  .s9-reason-card > h4,
  .s9-reason-card > p {
    grid-column: 2;
    margin-left: 0;
    margin-right: 0;
    translate: none;
    transform: none;
  }

  .s2-text {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    align-self: center;
    gap: 7px;
  }

  .s2-card .s2-icon {
    grid-row: 1;
    place-self: center;
  }

  .s2-text h3,
  .s2-text p {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    transform: none;
  }

  .s2-text h3 {
    font-size: 14px;
    line-height: 1.28;
  }

  .s2-text p {
    font-size: 12px;
    line-height: 1.42;
  }

  .s2-card p,
  .s3-card p,
  .s4-card p,
  .s5-card p,
  .s6-card p,
  .s7-card p,
  .s9-reason-card p {
    grid-column: 2;
    min-width: 0;
    margin: 4px 0 0;
    color: #607196;
    font-size: 13px;
    line-height: 1.48;
    overflow-wrap: break-word;
    text-align: left;
  }

  .s2-card .s2-text {
    width: 100%;
  }

  .s2-card .s2-text h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.28;
  }

  .s2-card .s2-text p {
    margin: 0;
    font-size: 12px;
    line-height: 1.42;
  }

  .s3-copy p,
  .s7-copy p {
    word-spacing: 0.01em;
  }

  .s8-tag {
    align-items: center;
  }

  .s8-tag strong {
    align-self: center;
    line-height: 1.2;
  }

  .s8-tag-community strong {
    max-width: 19ch;
  }

  .s7-label {
    grid-column: 2;
    min-height: 0;
    margin: 0;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-align: left;
  }

  .s7-number {
    top: 14px;
    right: 14px;
    font-size: 13px;
  }

  .s7-card p::before {
    width: 100%;
    margin: 10px 0 8px;
  }

  .s2-cta,
  .s3-cta,
  .s4-note,
  .s5-note,
  .s6-note,
  .s7-action,
  .s9-form-card {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  .s4-button,
  .s7-button,
  .s9-primary,
  .s9-header-button,
  .s9-request-button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 54px;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.15;
    padding-right: 18px;
    padding-left: 18px;
    white-space: normal;
  }

  .s6-profile {
    width: 100%;
    max-width: 420px;
    justify-self: center;
  }

  .s6-fact {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: center;
    padding: 12px;
  }

  .s6-fact strong,
  .s6-fact span:not(.s6-fact-icon) {
    grid-column: 2;
    font-size: 13px;
    line-height: 1.35;
    text-align: left;
  }

  .s6-fact span:not(.s6-fact-icon) {
    margin-top: 2px;
  }

  .s8-live {
    overflow: hidden;
  }

  .s8-copy {
    gap: 0;
  }

  .s8-proof {
    width: 100%;
    max-width: 360px;
    margin-top: 16px;
  }

  .s8-proof-profile {
    min-height: auto;
    grid-template-columns: 48px minmax(0, 1fr) 34px;
    gap: 10px;
    padding: 14px;
  }

  .s8-proof-avatar {
    width: 48px;
    height: 48px;
  }

  .s8-proof-info strong {
    font-size: 13px;
    line-height: 1.25;
  }

  .s8-proof-info span,
  .s8-proof-feed-copy strong,
  .s8-proof-feed-copy span,
  .s8-proof-time {
    font-size: 10px;
  }

  .s8-proof-telegram,
  .s8-proof-feed-icon {
    width: 34px;
    height: 34px;
  }

  .s8-proof-feed {
    min-height: auto;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px;
  }

  .s8-visual {
    min-height: 0;
  }

  .s8-system {
    gap: 10px;
  }

  .s8-tag {
    min-height: 46px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    border-radius: 12px;
    padding: 8px 14px;
  }

  .s8-tag-icon {
    width: 34px;
    height: 34px;
  }

  .s8-tag-icon .icon-svg {
    width: 18px;
    height: 18px;
  }

  .s8-tag strong {
    font-size: 13px;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .s2-live,
  .s3-live,
  .s4-live,
  .s5-live,
  .s6-live,
  .s7-live,
  .s8-live,
  .s9-live {
    padding-right: 14px;
    padding-left: 14px;
  }

  .s2-card,
  .s3-card,
  .s4-card,
  .s5-card,
  .s6-card,
  .s7-card,
  .s9-reason-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 5px 12px;
    padding: 14px;
  }

  .s2-copy h2,
  .s3-copy h2,
  .s4-copy h2,
  .s5-copy h2,
  .s6-copy h2,
  .s7-copy h2,
  .s8-copy h2,
  .s9-copy h2 {
    max-width: 31ch;
    font-size: 25px;
    line-height: 1.23;
    text-wrap: pretty;
  }

  .s2-copy p,
  .s3-copy p,
  .s4-copy p,
  .s5-copy p,
  .s6-lead,
  .s6-text,
  .s7-copy p,
  .s8-copy p,
  .s9-copy p {
    max-width: 34ch;
    font-size: 13px;
    line-height: 1.58;
    text-wrap: pretty;
  }

  .s2-icon,
  .s3-icon,
  .s4-icon,
  .s5-icon,
  .s6-icon,
  .s7-icon,
  .s9-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .s2-card h3,
  .s3-card h3,
  .s4-card h3,
  .s5-card h3,
  .s6-card h3,
  .s7-card h3,
  .s9-reason-card h4 {
    font-size: 14px;
    line-height: 1.3;
  }

  .s2-card p,
  .s3-card p,
  .s4-card p,
  .s5-card p,
  .s6-card p,
  .s7-card p,
  .s9-reason-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .s4-button,
  .s7-button,
  .s9-primary,
  .s9-header-button,
  .s9-request-button {
    min-height: 52px;
    font-size: 14px;
  }

  .s2-cta,
  .s3-cta,
  .s5-note,
  .s6-note,
  .s7-action,
  .s8-proof,
  .s9-form-card {
    margin-bottom: 18px;
  }

  .s2-cta-copy strong,
  .s2-cta-copy span,
  .s5-note span:not(.s5-note-icon),
  .s6-note span:not(.s6-note-icon),
  .s7-action p {
    font-size: 13px;
    line-height: 1.45;
    text-wrap: pretty;
  }

  .s5-note,
  .s6-note {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 16px 14px;
  }

  .s5-note-icon,
  .s6-note-icon {
    width: 48px;
    height: 48px;
  }

  .s7-action {
    gap: 10px;
    padding-bottom: 10px;
  }

  .s7-button span {
    overflow-wrap: normal;
  }
}

/* Fluid mobile typography: avoid device-specific manual line breaks */
@media (max-width: 768px) {
  .mobile-break,
  .desktop-break {
    display: none !important;
  }

  .s2-title,
  .s3-copy h2,
  .s4-title,
  .s8-title {
    width: min(100%, calc(100vw - 28px)) !important;
    max-width: clamp(280px, 88vw, 520px) !important;
    line-height: 1.18 !important;
    overflow-wrap: normal !important;
    text-wrap: balance;
  }

  .s4-title span,
  .s8-title span {
    white-space: normal !important;
  }

  .s4-note {
    padding-right: clamp(16px, 5vw, 28px) !important;
    padding-left: clamp(16px, 5vw, 28px) !important;
  }

  .s4-note-text,
  .s8-lead,
  .s3-copy p,
  .s7-copy p {
    width: min(100%, calc(100vw - 56px)) !important;
    max-width: clamp(270px, 84vw, 520px) !important;
    margin: 0 !important;
    font-size: clamp(13px, 3.65vw, 16px) !important;
    line-height: 1.45 !important;
    text-align: left !important;
    overflow-wrap: normal !important;
    text-wrap: pretty;
    word-spacing: normal !important;
  }

  .s8-title {
    max-width: clamp(240px, 78vw, 420px) !important;
  }

  .s8-lead {
    max-width: clamp(260px, 82vw, 430px) !important;
  }

  .s2-card {
    display: grid !important;
    grid-template-columns: clamp(44px, 13vw, 52px) minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: clamp(12px, 4vw, 18px) !important;
    min-height: clamp(104px, 30vw, 128px) !important;
  }

  .s2-card .s2-icon {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: center !important;
  }

  .s2-card .s2-text {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: flex !important;
    min-width: 0 !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 8px !important;
    align-self: center !important;
  }

  .s2-card .s2-text h3,
  .s2-card .s2-text p {
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    transform: none !important;
  }

  .s2-card .s2-text h3 {
    font-size: clamp(13px, 3.5vw, 15px) !important;
    line-height: 1.25 !important;
  }

  .s2-card .s2-text p {
    font-size: clamp(11px, 3.1vw, 13px) !important;
    line-height: 1.42 !important;
  }

  .s8-tag {
    display: grid !important;
    grid-template-columns: clamp(32px, 10vw, 40px) minmax(0, 1fr) !important;
    align-items: center !important;
    min-height: clamp(46px, 13vw, 56px) !important;
    padding: clamp(8px, 2.5vw, 12px) clamp(12px, 4vw, 18px) !important;
  }

  .s8-tag-icon {
    align-self: center !important;
    justify-self: center !important;
  }

  .s8-tag strong {
    align-self: center !important;
    margin: 0 !important;
    line-height: 1.18 !important;
    white-space: normal !important;
  }
}

/* Consistent mobile spacing between section titles and lead text */
@media (max-width: 768px) {
  .s2-copy > h2 + p,
  .hero-copy > h2 + p,
  .s3-copy > h2 + p,
  .s4-copy > h2 + p,
  .s5-copy > h2 + p,
  .s6-copy > h2 + .s6-lead,
  .s7-copy > h2 + p,
  .s8-copy > h2 + p,
  .s9-copy > h2 + p {
    margin-top: clamp(14px, 4vw, 20px) !important;
  }

  .s4-copy > p + p,
  .s6-copy > .s6-lead + .s6-text {
    margin-top: clamp(12px, 3.4vw, 18px) !important;
  }
}

/* Unified button inner spacing */
:root {
  --button-height-desktop: 56px;
  --button-padding-x-desktop: 32px;
  --button-gap-desktop: 16px;
  --button-height-mobile: 54px;
  --button-padding-x-mobile: clamp(18px, 5vw, 28px);
  --button-height-compact: 42px;
  --button-padding-x-compact: 16px;
}

.hero-primary,
.s4-button,
.s7-button,
.s9-primary,
.s9-header-button,
.s9-request-button,
.support-primary,
.support-secondary {
  box-sizing: border-box !important;
  min-height: var(--button-height-desktop) !important;
  align-items: center !important;
  justify-content: center !important;
  gap: var(--button-gap-desktop) !important;
  padding: 0 var(--button-padding-x-desktop) !important;
  line-height: 1 !important;
  white-space: normal !important;
}

.hero-outline {
  box-sizing: border-box !important;
  min-height: var(--button-height-compact) !important;
  padding: 0 var(--button-padding-x-compact) !important;
  line-height: 1 !important;
}

.hero-primary svg,
.s4-button svg,
.s7-button svg,
.s9-primary svg,
.s9-header-button svg,
.s9-request-button svg,
.support-primary svg,
.support-secondary svg {
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .hero-primary,
  .s4-button,
  .s7-button,
  .s9-primary,
  .s9-header-button,
  .s9-request-button,
  .support-primary,
  .support-secondary {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: var(--button-height-mobile) !important;
    gap: 10px !important;
    padding: 0 var(--button-padding-x-mobile) !important;
  }
}

@media (max-width: 480px) {
  .hero-primary,
  .s4-button,
  .s7-button,
  .s9-primary,
  .s9-header-button,
  .s9-request-button,
  .support-primary,
  .support-secondary {
    min-height: 52px !important;
    padding-right: clamp(16px, 4.5vw, 22px) !important;
    padding-left: clamp(16px, 4.5vw, 22px) !important;
  }
}

/* Unified inner spacing for secondary interactive CTA panels */
.s2-cta,
.s3-cta,
.s5-note,
.s6-note {
  box-sizing: border-box !important;
  min-height: 80px !important;
  padding: 16px 24px !important;
}

.support-option {
  box-sizing: border-box !important;
  min-height: 58px !important;
  padding: 12px 14px !important;
}

.mobile-menu .menu-cta {
  box-sizing: border-box !important;
  min-height: 48px !important;
  padding: 12px 16px !important;
}

@media (max-width: 768px) {
  .s2-cta,
  .s3-cta,
  .s5-note,
  .s6-note {
    min-height: clamp(72px, 19vw, 88px) !important;
    padding: clamp(14px, 4vw, 18px) clamp(14px, 4.5vw, 22px) !important;
  }

  .support-option {
    min-height: 58px !important;
    padding: 12px clamp(12px, 3.8vw, 16px) !important;
  }
}

/* S8 CTA should stay compact on desktop/tablet and become full-width only on mobile */
.s8-button {
  box-sizing: border-box !important;
  display: inline-flex !important;
  width: max-content !important;
  min-width: 0 !important;
  max-width: calc(100vw - 96px) !important;
  min-height: 56px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 34px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  .s8-button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 54px !important;
    padding-right: clamp(18px, 5vw, 28px) !important;
    padding-left: clamp(18px, 5vw, 28px) !important;
    white-space: normal !important;
  }
}

/* Mobile flow fixes for badges, notes and responsive text */
@media (max-width: 768px) {
  .s4-title-owner {
    display: block;
  }

  .s4-title {
    max-width: min(100%, 11.8em) !important;
  }

  .s5-live,
  .s6-live,
  .s8-live {
    margin-top: 0 !important;
    min-height: auto !important;
    scroll-margin-top: 0 !important;
    overflow: visible !important;
    padding-bottom: clamp(36px, 9vw, 64px) !important;
  }

  .s5-note,
  .s6-note,
  .s6-profile {
    height: auto !important;
    min-height: auto !important;
    margin-bottom: clamp(18px, 5vw, 32px) !important;
  }

  .s5-note,
  .s6-note {
    align-items: center !important;
    grid-template-columns: clamp(48px, 13vw, 56px) minmax(0, 1fr) !important;
    gap: clamp(12px, 4vw, 18px) !important;
  }

  .s5-note span:not(.s5-note-icon),
  .s6-note span:not(.s6-note-icon) {
    min-width: 0 !important;
    font-size: clamp(14px, 3.8vw, 16px) !important;
    line-height: 1.42 !important;
    overflow-wrap: normal !important;
    text-wrap: pretty;
    word-spacing: normal !important;
  }

  .s5-note strong {
    white-space: normal !important;
  }

  .s6-note span:not(.s6-note-icon) {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .s6-profile {
    align-self: start !important;
  }
}

.mobile-line,
.mobile-keep,
.s5-title-keep {
  display: inline;
}

/* Final mobile typography and layer corrections */
@media (max-width: 768px) {
  .mobile-line {
    display: block;
  }

  .mobile-keep,
  .s5-title-keep {
    white-space: nowrap;
  }

  .s5-live::after,
  .s6-live::after {
    display: none !important;
  }

  .s5-live,
  .s6-live {
    overflow: visible !important;
    padding-bottom: clamp(44px, 12vw, 72px) !important;
  }

  .s5-note,
  .s6-note,
  .s6-profile {
    position: relative !important;
    z-index: 6 !important;
  }

  .s5-note {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-top: clamp(12px, 4vw, 22px) !important;
    justify-self: start !important;
  }

  .s2-copy p {
    max-width: 30em !important;
  }

  .s5-copy h2 {
    max-width: min(100%, 12.4em) !important;
  }

  .s3-card p,
  .s4-card p,
  .s5-card p {
    max-width: 24em !important;
    text-wrap: pretty;
  }
}

@media (max-width: 390px) {
  .s2-copy p {
    max-width: 27em !important;
  }

  .s5-card p {
    max-width: 23em !important;
  }
}

/* Final mobile section rhythm: consistent gaps between pages */
@media (max-width: 768px) {
  .s2-live,
  .s3-live,
  .s4-live,
  .s5-live,
  .s6-live,
  .s7-live,
  .s8-live,
  .s9-live {
    margin-top: 0 !important;
    scroll-margin-top: 0 !important;
    padding-top: clamp(30px, 8vw, 42px) !important;
    padding-bottom: clamp(30px, 8vw, 42px) !important;
  }

  .s5-live,
  .s6-live {
    padding-bottom: clamp(34px, 9vw, 48px) !important;
  }
}

@media (max-width: 480px) {
  .s2-live,
  .s3-live,
  .s4-live,
  .s5-live,
  .s6-live,
  .s7-live,
  .s8-live,
  .s9-live {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .s5-live,
  .s6-live {
    padding-bottom: 32px !important;
  }
}

@media (max-width: 768px) {
  .s2-cta,
  .s3-cta,
  .s5-note,
  .s6-note,
  .s6-profile,
  .s7-action,
  .s8-proof,
  .s9-form-card {
    margin-bottom: 0 !important;
  }

  .s9-hero {
    padding-top: 0 !important;
  }
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal,
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.privacy-modal {
  z-index: 120;
}

.privacy-modal[hidden] {
  display: none;
}

.lead-modal-backdrop,
.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 19, 51, 0.52);
  backdrop-filter: blur(6px);
}

body.lead-modal-open {
  overflow: hidden;
}

.lead-form {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  gap: 14px;
  border: 1px solid rgba(8, 120, 245, 0.2);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(6, 19, 51, 0.25);
  padding: clamp(22px, 4vw, 34px);
}

.privacy-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: hidden;
  gap: 14px;
  border: 1px solid rgba(8, 120, 245, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 80px rgba(6, 19, 51, 0.25);
  padding: clamp(22px, 4vw, 34px);
  backdrop-filter: blur(14px);
}

.lead-form h2,
.lead-form p,
.privacy-dialog h2,
.privacy-dialog p {
  margin: 0;
}

.lead-form h2,
.privacy-dialog h2 {
  color: #061333;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.08;
}

.lead-form > p {
  color: #617196;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #253456;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 120, 245, 0.2);
  border-radius: 8px;
  background: #f8fcff;
  color: #061333;
  font: inherit;
  outline: none;
  padding: 12px 13px;
}

.lead-form input {
  min-height: 46px;
}

.lead-form textarea {
  min-height: 108px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 120, 245, 0.12);
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-form-close,
.privacy-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(8, 120, 245, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
}

.lead-form-close svg,
.privacy-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.privacy-updated {
  max-width: 600px;
  color: #617196;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.privacy-content {
  display: grid;
  max-height: min(54vh, 520px);
  overflow: auto;
  gap: 18px;
  border: 1px solid rgba(8, 120, 245, 0.12);
  border-radius: 14px;
  background: #f8fcff;
  padding: 18px;
}

.privacy-content section {
  display: grid;
  gap: 8px;
}

.privacy-content h3 {
  margin: 0;
  color: #061333;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.privacy-content p {
  color: #607196;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.privacy-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 12px;
}

.lead-calculator-summary {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(8, 120, 245, 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(243, 249, 255, 0.96), rgba(232, 245, 255, 0.92));
  padding: 14px 16px;
}

.lead-calculator-summary strong {
  color: #061333;
  font-size: 14px;
  line-height: 1.35;
}

.lead-calculator-summary span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.lead-contact-method {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 0;
  margin: 0;
  padding: 0;
}

.lead-contact-method legend {
  color: #253456;
  font-size: 13px;
  font-weight: 800;
  padding: 0;
}

.lead-contact-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.lead-contact-card {
  display: flex !important;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 120, 245, 0.16);
  border-radius: 12px;
  background: rgba(248, 252, 255, 0.86);
  color: #617196 !important;
  cursor: pointer;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  padding: 0 12px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lead-contact-card:hover,
.lead-contact-card:focus-within {
  border-color: rgba(8, 120, 245, 0.42);
  box-shadow: 0 12px 26px rgba(8, 120, 245, 0.08);
  transform: translateY(-1px);
}

.lead-contact-card input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lead-contact-card:has(input:checked) {
  border-color: rgba(8, 120, 245, 0.62);
  background: rgba(225, 242, 255, 0.92);
  box-shadow: 0 14px 30px rgba(8, 120, 245, 0.1);
  color: #061333 !important;
}

.lead-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: #617196 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.45;
}

.lead-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  flex: 0 0 18px;
  padding: 0;
}

.lead-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form .support-primary:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.lead-form-status {
  min-height: 20px;
  color: var(--blue);
  font-size: 13px !important;
  font-weight: 800 !important;
}

.lead-form-status:empty {
  display: none;
}

.lead-form.is-sent > label,
.lead-form.is-sent > fieldset,
.lead-form.is-sent > button[type="submit"] {
  display: none !important;
}

.lead-form.is-sent .lead-form-status {
  display: block;
  border: 1px solid rgba(8, 120, 245, 0.16);
  border-radius: 14px;
  background: #f3f9ff;
  color: #061333;
  font-size: 15px !important;
  line-height: 1.45;
  padding: 16px;
}

@media (max-width: 640px) {
  .lead-modal,
  .privacy-modal {
    align-items: end;
    justify-items: stretch;
    padding: 0;
  }

  .lead-form,
  .privacy-dialog {
    width: 100%;
    max-height: min(92vh, 760px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 24px 24px 0 0;
    padding: 24px 18px max(22px, env(safe-area-inset-bottom));
  }

  .privacy-content {
    max-height: 55vh;
    padding: 16px;
  }

  .privacy-actions {
    grid-template-columns: 1fr;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .lead-contact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .lead-form,
  .privacy-dialog {
    max-height: 100vh;
    border-radius: 0;
  }
}
