:root {
  --bg-0: #121826;
  --bg-1: #1a2233;
  --bg-2: #202c44;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-soft: rgba(244, 247, 251, 0.96);
  --surface-line: rgba(255, 255, 255, 0.1);
  --surface-line-strong: rgba(255, 255, 255, 0.16);
  --text-main: #f4f7fb;
  --text-soft: rgba(244, 247, 251, 0.72);
  --text-muted: rgba(244, 247, 251, 0.5);
  --ink-dark: #121826;
  --ink-soft: #4f5f7d;
  --accent: #9cc4ff;
  --accent-strong: #dce5f2;
  --danger: #ffd8d8;
  --radius-2xl: 34px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-panel: 0 24px 60px rgba(4, 9, 18, 0.26);
  --shadow-soft: 0 18px 34px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(73, 104, 176, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, #121826 0%, #1a2233 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overscroll-behavior: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  width: min(1880px, calc(100% - 56px));
  margin: 0 auto;
  padding: 14px 0 20px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  margin-bottom: 16px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-pill);
  background: rgba(18, 24, 38, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.brand__text strong {
  color: var(--text-main);
  font-size: 15px;
}

.brand__subtitle--mobile {
  display: none;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.topbar__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.topbar__nav a:hover {
  color: var(--text-main);
}

.topbar__nav a.is-active {
  color: #ffffff;
}

.topbar__nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__login,
.topbar__cta {
  min-height: 48px;
  padding: 0 20px;
  font-size: 14px;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, #f3f6fb 0%, #dce5f2 100%);
  color: #121826;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-main);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.button--full {
  width: 100%;
}

.button,
.button:visited {
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(360px, calc(100% - 36px));
  height: 100%;
  padding: 76px 18px 18px;
  border-left: 1px solid var(--surface-line);
  background:
    radial-gradient(circle at top right, rgba(156, 196, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(18, 24, 38, 0.98) 0%, rgba(22, 31, 48, 0.98) 100%);
  box-shadow: -24px 0 60px rgba(4, 9, 18, 0.32);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__links {
  display: grid;
  gap: 12px;
}

.mobile-menu__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.mobile-menu__links > a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.mobile-menu__links > a.is-active {
  border-color: rgba(220, 229, 242, 0.42);
  background: rgba(220, 229, 242, 0.12);
  color: #ffffff;
}

.mobile-menu__close {
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: stretch;
  min-height: calc(100vh - 150px);
  padding: 64px 48px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at top left, rgba(73, 104, 176, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-panel);
}

.hero__content {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 100%;
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 520px;
  perspective: 1200px;
}

.hero-visual__glow {
  position: absolute;
  inset: 9% 0 7% 4%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 28% 18%, rgba(156, 196, 255, 0.2), transparent 32%),
    radial-gradient(circle at 72% 68%, rgba(53, 133, 194, 0.2), transparent 36%);
  filter: blur(10px);
  opacity: 0.88;
}

.hero-visual__panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.09) 0%, rgba(244, 247, 251, 0.035) 100%);
  box-shadow: 0 30px 70px rgba(5, 10, 20, 0.28);
  backdrop-filter: blur(18px);
}

.hero-visual__panel--main {
  width: min(100%, 520px);
  min-height: 410px;
  padding: 18px;
  border-radius: 34px;
  transform: rotateY(-10deg) rotateX(5deg);
  transform-origin: center;
  overflow: hidden;
}

.hero-visual__panel--main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.16) 46%, transparent 54%);
  transform: translateX(-72%) skewX(-16deg);
  opacity: 0.65;
}

.hero-visual__top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-visual__top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(244, 247, 251, 0.32);
}

.hero-visual__screen {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(156, 196, 255, 0.12), transparent 36%),
    rgba(9, 14, 25, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual__node {
  min-height: 96px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual__node strong {
  display: block;
  color: #f7f9fc;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-visual__node span {
  display: block;
  margin-top: 10px;
  color: rgba(244, 247, 251, 0.62);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.hero-visual__node--wide {
  min-height: 118px;
  background:
    linear-gradient(135deg, rgba(156, 196, 255, 0.19) 0%, rgba(244, 247, 251, 0.06) 100%);
}

.hero-visual__node--wide strong {
  font-size: 36px;
}

.hero-visual__flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 24px;
}

.hero-visual__flow::before,
.hero-visual__flow::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156, 196, 255, 0.5), transparent);
}

.hero-visual__flow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(156, 196, 255, 0.82);
  box-shadow: 0 0 18px rgba(156, 196, 255, 0.45);
}

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

.hero-visual__panel--income {
  position: absolute;
  right: 0;
  top: 8%;
  width: 240px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.96) 0%, rgba(220, 229, 242, 0.92) 100%);
  color: var(--ink-dark);
  transform: translateZ(80px);
}

.hero-visual__panel--income span,
.hero-visual__panel--income p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.hero-visual__panel--income strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 30px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-mobile {
  display: none;
}

.hero-mobile__card {
  padding: 28px 24px 30px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at top left, rgba(73, 104, 176, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-panel);
}

.hero-mobile__title {
  margin: 14px 0 18px;
  color: #f7f9fc;
  font-size: 28px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero-mobile__lead {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.hero-mobile__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 22px;
}

.eyebrow,
.section-kicker,
.hero-card__label,
.program-item__meta,
.tariff__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 18px 0 24px;
  max-width: 900px;
  font-size: clamp(30px, 3.35vw, 46px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-wrap: pretty;
}

.hero h1 span,
.hero-line {
  display: block;
  color: #f7f9fc;
}

.hero__lead {
  max-width: 820px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
  margin-bottom: 0;
  align-items: center;
}

.hero__actions--lower {
  align-self: start;
  margin-top: 112px;
  margin-bottom: 0;
}

.hero__actions .button {
  min-width: 296px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero-card,
.hero-stat,
.card,
.dark-card,
.mini-card,
.program-item,
.feature-block,
.income-card,
.faq-item,
.tariff,
.proof-item,
.step,
.cta {
  border: 1px solid var(--surface-line);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card--accent {
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.96) 0%, rgba(220, 229, 242, 0.92) 100%);
  color: var(--ink-dark);
}

.hero-card--accent .hero-card__label {
  color: #4968b0;
}

.hero-card strong {
  display: block;
  margin: 14px 0 12px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.hero-card--accent p {
  color: var(--ink-soft);
}

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

.result-card {
  margin-top: 8px;
}

.result-stats {
  margin-top: 16px;
}

.hero-stat {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stat span {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-stat p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.proof-strip,
.grid,
.program-list,
.tariffs,
.steps,
.faq {
  display: grid;
  gap: 16px;
}

.about-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--surface-line);
  background:
    radial-gradient(circle at top left, rgba(73, 104, 176, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: var(--shadow-panel);
}

.about-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--surface-line);
}

.about-card__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-card__content h2 {
  margin: 12px 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.section-head--narrow-ability h2 {
  max-width: none;
  width: 100%;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1;
}

.section-head--narrow-included h2 {
  max-width: 980px;
}

.section-head--narrow-program h2 {
  max-width: 980px;
}

.about-card__content p {
  margin: 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.72;
}

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

.about-metric {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--surface-line);
  background: rgba(255, 255, 255, 0.04);
}

.about-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.about-metric span {
  color: var(--text-soft);
  line-height: 1.55;
}

.proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 48px;
}

.proof-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.proof-item span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 46px 0;
}

#program {
  background: transparent;
  border: 0;
  box-shadow: none;
}

main > .section + .section,
main > .section + .cta,
main > .cta + .site-footer {
  margin-top: 34px;
}

main > .section:last-of-type,
main > .cta:last-of-type {
  margin-bottom: 34px;
}

.section--soft,
.section--dark {
  padding: 40px 34px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--surface-line);
  box-shadow: var(--shadow-panel);
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(73, 104, 176, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(13, 19, 31, 0.96) 0%, rgba(18, 24, 38, 0.98) 100%);
}

.section-head {
  max-width: 900px;
  margin-bottom: 24px;
}

.section-head.section-head--narrow-ability {
  max-width: none;
  width: 100%;
}

.section-head h2,
.cta h2 {
  margin: 12px 0 14px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.section-head p,
.cta p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.72;
}

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

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

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

.card,
.dark-card,
.mini-card,
.program-item,
.feature-block,
.income-card,
.step {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.card h3,
.dark-card h3,
.mini-card h3,
.program-item h3,
.feature-block h3,
.income-card strong,
.step h3,
.tariff h3,
.faq-item summary {
  margin: 0 0 10px;
  letter-spacing: -0.04em;
}

.card h3,
.dark-card h3,
.mini-card h3,
.program-item h3,
.feature-block h3,
.step h3 {
  font-size: 24px;
  line-height: 1.08;
}

.card p,
.dark-card p,
.mini-card p,
.program-item p,
.feature-block p,
.step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

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

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f3f6fb 0%, #dce5f2 100%);
  color: var(--ink-dark);
  font-size: 16px;
  font-weight: 900;
}

.bonus-section {
  overflow: hidden;
  position: relative;
  padding: 40px 34px;
  border: 1px solid rgba(156, 196, 255, 0.32);
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(120deg, rgba(156, 196, 255, 0.18), transparent 30%),
    radial-gradient(circle at 16% 16%, rgba(156, 196, 255, 0.26), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 0 0 1px rgba(156, 196, 255, 0.08) inset,
    0 30px 90px rgba(12, 28, 62, 0.34),
    var(--shadow-panel);
}

.bonus-section::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -34%;
  width: 520px;
  height: 360px;
  border-radius: 999px;
  background: rgba(156, 196, 255, 0.12);
  filter: blur(56px);
  pointer-events: none;
}

.bonus-section__head,
.bonus-grid {
  position: relative;
  z-index: 1;
}

.bonus-section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bonus-label {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-bottom: 22px;
  padding: 0 18px;
  border: 1px solid rgba(156, 196, 255, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(156, 196, 255, 0.12);
  color: #f4f7fb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.bonus-section h2 {
  max-width: 920px;
  margin: 18px 0 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(24px, 3vw, 36px);
}

.bot-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(156, 196, 255, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(156, 196, 255, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(18, 24, 38, 0.86), rgba(22, 31, 48, 0.9));
  box-shadow: var(--shadow-soft);
}

.bot-card--light {
  border-color: rgba(244, 247, 251, 0.46);
  background:
    radial-gradient(circle at top right, rgba(18, 24, 38, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(220, 229, 242, 0.94));
  color: var(--ink-dark);
}

.bot-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.bot-avatar {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid var(--surface-line-strong);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.12), rgba(244, 247, 251, 0.04)),
    #121826;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.bot-avatar svg {
  width: 46px;
  height: 46px;
  fill: #9cc4ff;
}

.bot-card--light .bot-avatar {
  border-color: rgba(18, 24, 38, 0.12);
  background: #121826;
}

.bot-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.bot-card--light .bot-card__badge {
  border-color: rgba(18, 24, 38, 0.12);
  color: #4968b0;
}

.bot-card h3 {
  max-width: 560px;
  margin: 0 0 14px;
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.bot-card p {
  max-width: 620px;
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.56;
}

.bot-card--light p {
  color: #4f5f7d;
}

.program-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.module-flip-hint {
  display: flex;
  justify-content: flex-end;
  margin: -8px 0 16px;
  color: rgba(244, 247, 251, 0.62);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.module-flip-hint span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.035);
}

.module-flip-hint__mobile {
  display: none !important;
}

.module-card {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1.12;
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 30px;
  background: transparent;
  perspective: 1200px;
  cursor: pointer;
  outline: none;
  transition: transform 0.32s ease;
}

.module-card__inner {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.module-card__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--surface-line);
  border-radius: inherit;
  box-shadow: var(--shadow-soft);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

.module-card__face--front {
  background: rgba(255, 255, 255, 0.03);
  transform: rotateY(0deg);
}

.module-card__face--back {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 24px;
  background:
    linear-gradient(180deg, rgba(18, 24, 38, 0.96) 0%, rgba(22, 31, 48, 0.96) 100%);
  transform: rotateY(180deg);
}

.module-card__face--accent {
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.98) 0%, rgba(220, 229, 242, 0.94) 100%);
  color: var(--ink-dark);
}

.module-card__face--front::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .module-card:hover {
    z-index: 2;
  }

  .module-card:hover .module-card__inner,
  .module-card:focus-visible .module-card__inner {
    transform: rotateY(180deg);
  }

  .module-card:hover .module-card__face--front::after {
    left: 150%;
  }
}

.module-card.is-flipped .module-card__inner {
  transform: rotateY(180deg);
}

.module-card.is-flipped .module-card__face--front::after {
  left: 150%;
}

.module-card__face--front img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-card__pill {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 1;
  min-width: 182px;
  padding: 15px 24px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(173, 180, 194, 0.4);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  color: #f7f9fc;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  transform: translateX(-50%);
}

.module-card__back-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  aspect-ratio: 1 / 1;
  margin-bottom: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(220, 229, 242, 0.12);
  color: #9cc4ff;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
}

.module-card__face--back h3 {
  margin: 22px 0 14px;
  color: #f7f9fc;
  font-size: clamp(21px, 1.45vw, 26px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.module-card__face--back p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.34;
}

.module-card:nth-child(9) .module-card__face--back h3 {
  font-size: clamp(20px, 1.3vw, 24px);
}

.module-card:nth-child(9) .module-card__face--back p {
  font-size: 13px;
  line-height: 1.3;
}

.module-card__face--back small {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: auto;
  min-height: 76px;
  height: 76px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(156, 196, 255, 0.11);
  color: #dbe7ff;
  font-size: 13px;
  line-height: 1.22;
  font-weight: 900;
  box-sizing: border-box;
}

.module-card__price {
  display: block;
  margin-top: 4px;
  white-space: nowrap;
}

.module-card__face--accent .module-card__back-number {
  background: rgba(18, 24, 38, 0.08);
  border-color: rgba(18, 24, 38, 0.14);
  color: #4968b0;
}

.module-card__face--accent h3 {
  color: var(--ink-dark);
}

.module-card__face--accent p {
  color: var(--ink-soft);
}

.module-card__face--accent small {
  background: rgba(18, 24, 38, 0.08);
  color: #263550;
}

.module-slider-dots {
  display: none;
}

.learning-roadmap {
  margin-top: 38px;
  padding: 30px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at top right, rgba(156, 196, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.025) 100%);
  box-shadow: var(--shadow-panel);
}

.learning-roadmap__head {
  max-width: 940px;
  margin-bottom: 24px;
}

.learning-roadmap__head h3 {
  margin: 12px 0 0;
  color: #f7f9fc;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.learning-roadmap__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.learning-roadmap__grid::before,
.learning-roadmap__grid::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(156, 196, 255, 0.6) 50%, transparent 50%);
  background-size: 16px 1px;
  opacity: 0.52;
  pointer-events: none;
}

.learning-roadmap__grid::before {
  top: 52px;
}

.learning-roadmap__grid::after {
  top: calc(50% + 52px);
}

.roadmap-step {
  position: relative;
  z-index: 1;
  min-height: 246px;
  padding: 22px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 24, 38, 0.92) 0%, rgba(22, 31, 48, 0.92) 100%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.roadmap-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 38%, transparent 58%);
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.roadmap-step:hover {
  transform: translateY(-8px);
  border-color: rgba(156, 196, 255, 0.32);
  box-shadow:
    0 24px 48px rgba(37, 99, 235, 0.14),
    0 14px 26px rgba(0, 0, 0, 0.18);
}

.roadmap-step:hover::after {
  opacity: 1;
  transform: translateX(18%);
}

.roadmap-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(220, 229, 242, 0.12);
  color: #9cc4ff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.roadmap-step h4 {
  margin: 0 0 10px;
  color: #f7f9fc;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.roadmap-step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.roadmap-step small {
  display: block;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(156, 196, 255, 0.11);
  color: #dbe7ff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.roadmap-step--accent {
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.96) 0%, rgba(220, 229, 242, 0.92) 100%);
  color: var(--ink-dark);
}

.roadmap-step--accent .roadmap-step__number {
  background: rgba(18, 24, 38, 0.08);
  border-color: rgba(18, 24, 38, 0.14);
  color: #4968b0;
}

.roadmap-step--accent h4 {
  color: var(--ink-dark);
}

.roadmap-step--accent p {
  color: var(--ink-soft);
}

.roadmap-step--accent small {
  background: rgba(18, 24, 38, 0.08);
  color: #263550;
}

.learning-roadmap__result {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.learning-roadmap__result strong {
  color: #f7f9fc;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.learning-roadmap__result p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3f6fb 0%, #dce5f2 100%);
}

.income-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.income-card strong {
  font-size: 24px;
  line-height: 1.08;
}

.income-card p {
  margin: 0;
  color: var(--text-soft);
}

.income-card span {
  margin-top: auto;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.income-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 18px;
}

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

.income-task {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 124px;
  padding: 20px;
  border: 1px solid var(--surface-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(156, 196, 255, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.income-task strong {
  display: block;
  color: var(--text-main);
  font-size: 20px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.income-task span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.35;
}

.income-stepper {
  display: grid;
  grid-template-columns: 42px 42px 42px;
  align-items: center;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(18, 24, 38, 0.48);
  overflow: hidden;
}

.income-stepper button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.income-stepper button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.income-stepper output {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--accent-strong);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.income-calculator__result {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(156, 196, 255, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(18, 24, 38, 0.94) 0%, rgba(22, 31, 48, 0.94) 100%);
  box-shadow: var(--shadow-panel);
}

.income-calculator__eyebrow {
  color: var(--accent);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.income-calculator__result > strong {
  display: block;
  margin-top: 14px;
  color: var(--text-main);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.income-calculator__result > p {
  min-height: 72px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.income-progress {
  height: 12px;
  margin: 22px 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.income-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9cc4ff 0%, #dce5f2 100%);
  transition: width 0.24s ease;
}

.income-workload {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.income-workload label,
.income-workload output {
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.income-workload input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--accent);
}

.income-workload small {
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}

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

.income-result-grid div {
  min-height: 86px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.income-result-grid span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.income-result-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--text-main);
  font-size: 20px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

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

.tariff {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
}

.tariff--featured {
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.96) 0%, rgba(220, 229, 242, 0.92) 100%);
  color: var(--ink-dark);
}

.tariff__badge {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(18, 24, 38, 0.08);
  color: #4968b0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tariff__top h3 {
  margin-top: 12px;
  font-size: 30px;
  line-height: 1.02;
}

.tariff__top p,
.tariff .check-list li,
.tariff small,
.tariff .tariff__old {
  color: var(--text-soft);
}

.tariff--featured .tariff__top p,
.tariff--featured .check-list li,
.tariff--featured small,
.tariff--featured .tariff__old {
  color: var(--ink-soft);
}

.tariff--featured .button--ghost {
  background: #242d40;
  border-color: rgba(255, 255, 255, 0.08);
  color: #f4f7fb;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.tariff--featured .button--ghost:hover {
  background: #2b3650;
  border-color: rgba(255, 255, 255, 0.12);
}

.tariff--featured .tariff__actions .button--ghost,
.tariff--featured .tariff__actions .button--ghost:visited {
  background: #242d40;
  border-color: rgba(255, 255, 255, 0.08);
  color: #f4f7fb;
}

.tariff__price {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.tariff__old {
  text-decoration: line-through;
  font-size: 15px;
}

.tariff__price strong {
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.tariff .check-list {
  margin-top: 6px;
}

.tariff .button--full {
  margin-top: auto;
}

.tariff__actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.gc-widget-modal[hidden] {
  display: none;
}

.gc-widget-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  color-scheme: light;
  overflow-y: auto;
  padding: 24px 16px;
  min-height: 100lvh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.gc-widget-modal::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.gc-widget-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gc-widget-modal__backdrop {
  position: fixed;
  top: calc(-1 * env(safe-area-inset-top, 0px));
  right: 0;
  bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
  left: 0;
  background: rgba(8, 12, 22, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.gc-widget-modal.is-open .gc-widget-modal__backdrop {
  opacity: 1;
}

.gc-widget-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 24px));
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.gc-widget-modal.is-open .gc-widget-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gc-widget-modal__close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--text-main);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.gc-widget-modal__frame {
  display: block;
  width: 100%;
  height: 600px;
  min-height: 0;
  border: 0;
  color-scheme: light;
  background: transparent;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gc-widget-modal__frame.is-ready {
  opacity: 1;
}

.faq-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  list-style: none;
  cursor: pointer;
  padding: 4px 52px 4px 0;
  font-size: 20px;
  font-weight: 800;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
  padding: 34px;
  margin-top: 20px;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at top left, rgba(73, 104, 176, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.site-footer {
  margin-top: 12px;
  padding: 6px 0 0;
}

.cta + .site-footer {
  margin-top: 116px;
}

.site-footer__disclaimer {
  margin: 0;
  color: rgba(244, 247, 251, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer__links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.site-footer__links a {
  color: #dbe6fb;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.site-footer__links a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1160px) {
  .topbar {
    gap: 14px;
  }

  .topbar__nav {
    gap: 12px;
    font-size: 13px;
  }

  .topbar__login,
  .topbar__cta {
    padding: 0 16px;
    font-size: 13px;
  }

  .hero,
  .grid--4,
  .proof-strip,
  .program-list,
  .module-gallery,
  .tariffs,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  html {
    color-scheme: dark;
    background-color: #121826;
  }

  .page-shell {
    width: min(100% - 24px, 1240px);
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .topbar {
    top: 8px;
    z-index: 80;
    display: flex;
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 24px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand__mark {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand__text {
    min-width: 0;
  }

  .brand__text strong,
  .brand__subtitle {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand__text strong {
    font-size: 14px;
  }

  .brand__subtitle--desktop {
    display: none;
  }

  .brand__subtitle--mobile {
    display: block;
    max-width: 190px;
    font-size: 11px;
  }

  .topbar__nav,
  .topbar__actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
  }

  .mobile-menu {
    display: block;
  }

  .hero-mobile__card,
  .about-card,
  .section--soft,
  .section--dark,
  .cta {
    padding: 30px 24px;
    border-radius: 26px;
  }

  .proof-strip,
  .grid--2,
  .grid--3,
  .grid--4,
  .program-list,
  .tariffs,
  .steps,
  .hero-stats,
  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-card__media {
    min-height: 0;
  }

  .about-card__content h2 {
    font-size: clamp(24px, 7.8vw, 32px);
    line-height: 1.02;
  }

  .hero__content--desktop {
    display: none;
  }

  .hero {
    display: none;
  }

  .hero-mobile {
    display: block;
  }

  .hero-mobile__title {
    max-width: none;
    width: 100%;
    margin: 14px 0 18px;
    font-size: clamp(24px, 7.4vw, 30px);
    line-height: 1.06;
    letter-spacing: -0.04em;
    text-wrap: pretty;
    text-align: left;
  }

  .hero__lead,
  .section-head p,
  .cta p {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-mobile__lead {
    max-width: none;
    width: 100%;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }

  .hero-visual--mobile {
    display: grid;
    min-height: 0;
    margin: 22px -4px 0;
    perspective: none;
  }

  .hero-visual--mobile .hero-visual__glow {
    inset: 6% 2% 8%;
    border-radius: 28px;
    filter: blur(8px);
    opacity: 0.7;
  }

  .hero-visual--mobile .hero-visual__panel--main {
    width: 100%;
    min-height: 0;
    padding: 12px;
    border-radius: 26px;
    transform: none;
  }

  .hero-visual--mobile .hero-visual__panel--main::after {
    opacity: 0.42;
    transform: translateX(-80%) skewX(-16deg);
  }

  .hero-visual--mobile .hero-visual__top {
    gap: 6px;
    margin-bottom: 10px;
  }

  .hero-visual--mobile .hero-visual__top span {
    width: 7px;
    height: 7px;
  }

  .hero-visual--mobile .hero-visual__screen {
    gap: 10px;
    padding: 12px;
    border-radius: 20px;
  }

  .hero-visual--mobile .hero-visual__node {
    min-height: 66px;
    padding: 12px;
    border-radius: 16px;
  }

  .hero-visual--mobile .hero-visual__node strong {
    font-size: 16px;
    letter-spacing: -0.035em;
  }

  .hero-visual--mobile .hero-visual__node span {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.25;
  }

  .hero-visual--mobile .hero-visual__node--wide {
    min-height: 78px;
  }

  .hero-visual--mobile .hero-visual__node--wide strong {
    font-size: 25px;
  }

  .hero-visual--mobile .hero-visual__flow {
    min-height: 18px;
    gap: 8px;
  }

  .hero-visual--mobile .hero-visual__flow span {
    width: 6px;
    height: 6px;
  }

  .hero-visual--mobile .hero-visual__grid {
    gap: 8px;
  }

  .hero-visual--mobile .hero-visual__panel--income {
    right: -2px;
    top: -12px;
    width: 156px;
    padding: 13px;
    border-radius: 18px;
    transform: none;
  }

  .hero-visual--mobile .hero-visual__panel--income span,
  .hero-visual--mobile .hero-visual__panel--income p {
    font-size: 10px;
    line-height: 1.2;
  }

  .hero-visual--mobile .hero-visual__panel--income strong {
    margin: 5px 0 4px;
    font-size: 18px;
    line-height: 0.95;
  }

  .hero-mobile .eyebrow {
    display: block;
    max-width: none;
    width: 100%;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-align: left;
  }

  .section {
    padding: 38px 0;
  }

  main > .section + .section,
  main > .section + .cta,
  main > .cta + .site-footer {
    margin-top: 22px;
  }

  main > .section:last-of-type,
  main > .cta:last-of-type {
    margin-bottom: 24px;
  }

  .section-head h2,
  .cta h2 {
    font-size: clamp(24px, 7.8vw, 32px);
    line-height: 1.02;
    margin: 10px 0 12px;
    letter-spacing: -0.04em;
  }

  .section--soft .section-head h2,
  .section--dark .section-head h2 {
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.04;
    margin: 10px 0 16px;
  }

  .module-card__face--back h3 {
    margin: 18px 0 10px;
    font-size: 17px;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .module-card__face--back p {
    font-size: 14px;
    line-height: 1.3;
  }

  .module-card:nth-child(9) .module-card__face--back p {
    font-size: 12px;
    line-height: 1.24;
  }

  .module-card__face--back small {
    min-height: 72px;
    height: 72px;
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.2;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section--framed-unified {
    padding: 30px 24px;
  }

  .section--framed-unified .section-head {
    margin-bottom: 24px;
  }

  .section--framed-unified .grid,
  .section--framed-unified .program-list,
  .section--framed-unified .tariffs,
  .section--framed-unified .faq,
  .section--framed-unified .hero-stats {
    gap: 16px;
  }

  .section--framed-unified .mini-card,
  .section--framed-unified .dark-card,
  .section--framed-unified .feature-block,
  .section--framed-unified .tariff,
  .section--framed-unified .faq-item,
  .section--framed-unified .hero-card,
  .section--framed-unified .hero-stat {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .section--audience {
    padding: 30px 24px;
  }

  .section--audience .section-head {
    max-width: none;
    margin-bottom: 24px;
  }

  .section--audience .section-head h2 {
    font-size: clamp(24px, 7.8vw, 32px);
    line-height: 1.02;
    margin: 10px 0 12px;
  }

  .section--audience .grid {
    gap: 16px;
  }

  .section--audience .mini-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .cta + .site-footer {
    margin-top: 24px;
  }

  .section-kicker,
  .hero-mobile .eyebrow,
  .tariff__eyebrow,
  .program-item__meta {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .about-card__content p,
  .section-head p,
  .cta p,
  .card p,
  .dark-card p,
  .mini-card p,
  .program-item p,
  .feature-block p,
  .step p,
  .faq-item p,
  .income-card p,
  .proof-item span,
  .about-metric span,
  .tariff .check-list li,
  .tariff small,
  .tariff__top p {
    font-size: 14px;
    line-height: 1.58;
  }

  .card,
  .dark-card,
  .mini-card,
  .program-item,
  .feature-block,
  .income-card,
  .income-task,
  .income-calculator__result,
  .step,
  .proof-item,
  .about-metric,
  .faq-item,
  .tariff {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .card h3,
  .dark-card h3,
  .mini-card h3,
  .program-item h3,
  .feature-block h3,
  .step h3,
  .tariff h3,
  .faq-item summary,
  .income-card strong {
    font-size: 18px;
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .proof-item strong {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .about-metric strong,
  .hero-stat span,
  .income-card span {
    font-size: 24px;
  }

  .income-calculator {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .income-calculator__builder {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .income-task {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 108px;
    gap: 12px;
  }

  .income-task strong {
    font-size: 18px;
  }

  .income-task span {
    font-size: 13px;
  }

  .income-stepper {
    grid-template-columns: 38px 38px 38px;
    height: 38px;
  }

  .income-stepper button,
  .income-stepper output {
    width: 38px;
    height: 38px;
  }

  .income-calculator__result > strong {
    font-size: 44px;
  }

  .income-calculator__result > p {
    min-height: 0;
    font-size: 14px;
  }

  .income-result-grid {
    grid-template-columns: 1fr;
  }

  .income-result-grid div {
    min-height: 74px;
  }

  .tariff__price strong {
    font-size: 34px;
  }

  .tariff__badge {
    top: 14px;
    right: 14px;
    font-size: 10px;
  }

  .step span {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 14px;
    font-size: 15px;
  }

  .button {
    width: 100%;
    min-height: 56px;
    font-size: 15px;
    padding: 0 18px;
  }

  .faq-item {
    padding: 22px 20px;
  }

  .faq-item summary {
    padding-right: 46px;
    font-size: 17px;
    line-height: 1.16;
  }

  .faq-item summary::after {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .tariff .button--full {
    margin-top: 28px;
  }

  .tariff__actions .button--full {
    margin-top: 0;
  }

  .gc-widget-modal__dialog {
    width: calc(100% - 16px);
    margin: 0 auto;
  }

  .gc-widget-modal__close {
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    font-size: 34px;
  }

  .gc-widget-modal__frame {
    height: 520px;
    min-height: 0;
  }

  .module-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: start;
    align-items: stretch;
    padding-right: 14px;
    padding-bottom: 0;
    margin-bottom: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .module-flip-hint {
    justify-content: flex-start;
    margin: -4px 0 14px;
    font-size: 12px;
  }

  .module-flip-hint span {
    min-height: 32px;
    padding: 0 12px;
  }

  .module-flip-hint__desktop {
    display: none !important;
  }

  .module-flip-hint__mobile {
    display: inline-flex !important;
  }

  .module-gallery::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
    background: transparent;
  }

  .module-gallery::-webkit-scrollbar-track,
  .module-gallery::-webkit-scrollbar-thumb {
    background: transparent;
  }

  .module-card {
    max-width: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: 24px;
    contain: layout paint;
    transform: translateZ(0);
    -webkit-tap-highlight-color: transparent;
  }

  .module-card__face {
    box-shadow: none;
  }

  .learning-roadmap {
    margin-top: 28px;
    padding: 24px 18px;
    border-radius: 26px;
  }

  .learning-roadmap__head h3 {
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.04;
  }

  .learning-roadmap__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .learning-roadmap__grid::before,
  .learning-roadmap__grid::after {
    top: 36px;
    bottom: 36px;
    left: 23px;
    right: auto;
    width: 1px;
    height: auto;
    background-image: linear-gradient(180deg, rgba(156, 196, 255, 0.56) 50%, transparent 50%);
    background-size: 1px 16px;
  }

  .learning-roadmap__grid::after {
    display: none;
  }

  .roadmap-step {
    min-height: 0;
    padding: 18px 16px 18px 70px;
    border-radius: 22px;
  }

  .roadmap-step:hover {
    transform: none;
  }

  .roadmap-step__number {
    position: absolute;
    top: 18px;
    left: 16px;
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    margin: 0;
    font-size: 12px;
  }

  .roadmap-step h4 {
    font-size: 18px;
  }

  .roadmap-step p,
  .learning-roadmap__result p {
    font-size: 14px;
    line-height: 1.58;
  }

  .roadmap-step small {
    font-size: 12px;
  }

  .learning-roadmap__result {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .learning-roadmap__result strong {
    font-size: 20px;
  }

  .module-card__pill {
    top: 16px;
    min-width: 156px;
    padding: 13px 20px;
    font-size: 13px;
  }

  .module-slider-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .module-slider-dots__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    transition: transform 0.18s ease, background 0.18s ease;
  }

  .module-slider-dots__dot.is-active {
    background: #dce5f2;
    transform: scale(1.2);
  }

  .bonus-section {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .bonus-label {
    min-height: 38px;
    margin-bottom: 18px;
    padding: 0 14px;
    font-size: 10px;
  }

  .bonus-section h2 {
    width: 100%;
    margin: 14px 0 18px;
    font-size: clamp(24px, 7.4vw, 30px);
    line-height: 1.06;
    letter-spacing: -0.04em;
    text-wrap: pretty;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bot-card {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .bot-card__top {
    margin-bottom: 20px;
  }

  .bot-avatar {
    width: 78px;
    height: 78px;
    border-radius: 22px;
  }

  .bot-avatar svg {
    width: 40px;
    height: 40px;
  }

  .bot-card__badge {
    min-height: 34px;
    padding: 0 12px;
    font-size: 10px;
  }

  .bot-card h3 {
    font-size: clamp(28px, 8.4vw, 34px);
  }

  .bot-card p {
    font-size: 15px;
  }

  .site-footer {
    margin-top: 8px;
    padding: 4px 0 0;
  }

  .site-footer__disclaimer {
    font-size: 12px;
    line-height: 1.55;
  }

  .site-footer__links {
    gap: 12px;
    margin-top: 14px;
  }

  .site-footer__links a {
    width: 100%;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-mobile__actions .button {
    min-width: 0;
    width: 100% !important;
    max-width: none;
    display: flex;
    white-space: normal;
    justify-content: center;
  }
}
