/* ============================================
   TraderX — Общие дизайн-токены и базовые стили
   Подключается во всех block-mockup файлах.
   ============================================ */

:root {
  /* Цвета — фон */
  --bg-page: #F4F5F7;
  --bg-surface: #FFFFFF;
  --bg-subtle: #FAFAFB;
  --bg-dark: #0E1217;

  /* Цвета — текст */
  --text-primary: #0E1217;
  --text-secondary: #5C6370;
  --text-muted: #9CA3AF;
  --text-inverse: #FFFFFF;

  /* Бренд */
  --brand-primary: #0D79F2;
  --brand-primary-hover: #0B65CC;
  --brand-primary-soft: #E7F1FE;

  /* Системные */
  --success: #22C55E;
  --success-soft: #DCFCE7;
  --warning: #F59E0B;
  --warning-soft: #FEF3C7;
  --danger: #EF4444;
  --danger-soft: #FEE2E2;

  /* Границы */
  --border-default: #E5E7EB;
  --border-soft: #F0F1F3;

  /* Шрифт */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, monospace;

  /* Скругления */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 9999px;

  /* Тени */
  --shadow-sm: 0 1px 2px rgba(15,18,23,0.04);
  --shadow-md: 0 4px 12px rgba(15,18,23,0.06);
  --shadow-lg: 0 8px 32px rgba(15,18,23,0.08);
  --shadow-card-blue: 0 12px 40px rgba(13,121,242,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-height, 74px);
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
button:disabled,
.btn[aria-busy="true"] {
  cursor: progress;
  opacity: 0.72;
  transform: none !important;
  box-shadow: none !important;
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ===== Header (общий для всех мокапов) ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  overflow: hidden;
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(229,231,235,0.72);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  font-size: 20px; font-weight: 700;
  letter-spacing: 0;
  color: var(--text-primary);
}
.logo .x { color: var(--brand-primary); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 15px; font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav a:hover { color: var(--text-primary); }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-size: 14px; font-weight: 500;
  color: var(--text-secondary);
}
.header-phone:hover { color: var(--text-primary); }
.header-cta { padding: 11px 18px; font-size: 14px; text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-size: 15px; font-weight: 600;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--brand-primary);
  color: var(--text-inverse);
}
.btn-primary:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}
.btn-secondary:hover { border-color: var(--text-primary); }
.btn-large { padding: 18px 36px; font-size: 17px; }
.btn-large .arrow { font-size: 20px; transition: transform 0.2s; }
.btn-large:hover .arrow { transform: translateX(4px); }

/* ===== Scroll motion ===== */
body.scroll-motion-ready [data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 26px;
  --reveal-scale: 1;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 0.76s cubic-bezier(0.2, 0.78, 0.18, 1),
    transform 0.76s cubic-bezier(0.2, 0.78, 0.18, 1),
    filter 0.76s cubic-bezier(0.2, 0.78, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
body.scroll-motion-ready [data-reveal="left"] {
  --reveal-x: -30px;
  --reveal-y: 10px;
}
body.scroll-motion-ready [data-reveal="right"] {
  --reveal-x: 30px;
  --reveal-y: 10px;
}
body.scroll-motion-ready [data-reveal="scale"] {
  --reveal-y: 18px;
  --reveal-scale: 0.97;
}
body.scroll-motion-ready [data-reveal].is-visible {
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
  opacity: 1;
  filter: blur(0);
}
.closed-beta-places strong.is-counting {
  text-shadow: 0 14px 34px rgba(13,121,242,0.18);
}

@media (max-width: 680px) {
  body.scroll-motion-ready [data-reveal] {
    --reveal-y: 18px;
    filter: blur(5px);
    transition-duration: 0.58s;
  }
  body.scroll-motion-ready [data-reveal="left"],
  body.scroll-motion-ready [data-reveal="right"] {
    --reveal-x: 0px;
    --reveal-y: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.scroll-motion-ready [data-reveal] {
    --reveal-x: 0px;
    --reveal-y: 12px;
    filter: none;
    transition-duration: 0.42s;
  }
}

/* ===== Problem component ===== */
.problem-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-height, 74px);
  padding: clamp(64px, 7vw, 92px) 32px clamp(68px, 8vw, 98px);
  background:
    radial-gradient(circle at 18% 16%, rgba(13,121,242,0.07), transparent 30%),
    linear-gradient(180deg, #F4F5F7 0%, #FFFFFF 38%, #F7F8FA 100%);
}
.problem-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,121,242,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.68), transparent 76%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.68), transparent 76%);
}
.problem-section::after {
  content: '';
  position: absolute;
  right: -210px;
  top: 16px;
  width: 650px;
  height: 470px;
  pointer-events: none;
  background: url('img/hero-metal-bg.webp') right top / 720px auto no-repeat;
  opacity: 0.16;
  filter: saturate(0.9);
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
}
.problem-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.problem-head {
  max-width: 810px;
  margin-bottom: 30px;
}
.problem-overline {
  margin: 0 0 16px;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.problem-head h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}
.problem-head p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.55;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.problem-card {
  position: relative;
  min-height: 242px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 15px;
  padding: 22px;
  overflow: hidden;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 86% 12%, rgba(13,121,242,0.08), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54)),
    rgba(255,255,255,0.48);
  border: 1px solid rgba(198,215,237,0.78);
  border-radius: 22px;
  box-shadow:
    0 20px 54px rgba(15,18,23,0.052),
    inset 0 1px 0 rgba(255,255,255,0.88);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  transform: translateY(0);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}
.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.48), transparent 38%),
    linear-gradient(180deg, transparent 0%, rgba(13,121,242,0.035) 100%);
  opacity: 0.84;
}
.problem-card::after {
  content: '';
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 148px;
  height: 148px;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(13,121,242,0.09), transparent 64%),
    repeating-linear-gradient(90deg, rgba(13,121,242,0.07) 0 1px, transparent 1px 8px);
  opacity: 0.75;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13,121,242,0.34);
  box-shadow:
    0 26px 70px rgba(15,18,23,0.082),
    inset 0 1px 0 rgba(255,255,255,0.92);
}
.problem-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.problem-index {
  color: rgba(13,121,242,0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.problem-icon {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.38)),
    rgba(13,121,242,0.075);
  border: 1px solid rgba(13,121,242,0.18);
  border-radius: 16px;
  box-shadow:
    0 12px 30px rgba(13,121,242,0.08),
    inset 0 1px 0 rgba(255,255,255,0.84);
}
.problem-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.problem-card h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.32;
  letter-spacing: 0;
}
.problem-proof {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 70px;
  overflow: hidden;
  border: 1px solid rgba(213,225,241,0.84);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(245,249,255,0.48)),
    rgba(255,255,255,0.44);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
}
.problem-proof-percent {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.problem-proof-percent div {
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px 14px;
}
.problem-proof-percent div:first-child {
  border-right: 1px solid rgba(213,225,241,0.84);
}
.problem-proof-percent span,
.problem-proof-base > span,
.problem-proof-brake em,
.problem-proof-brake b,
.problem-proof-profit span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.problem-proof-percent strong {
  color: var(--text-primary);
  font-size: 24px;
  line-height: 1;
}
.problem-proof-percent div:last-child strong {
  color: var(--brand-primary);
}
.problem-proof-base {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 13px 14px;
}
.problem-proof-base div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.problem-proof-base i {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(13,121,242,0.09);
  border: 1px solid rgba(13,121,242,0.18);
}
.problem-proof-base b {
  margin-left: auto;
  color: var(--brand-primary);
  font-size: 13px;
  line-height: 1;
}
.problem-proof-routine {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 10px;
}
.problem-proof-routine span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 8px 6px;
  color: var(--text-secondary);
  background: rgba(13,121,242,0.055);
  border: 1px solid rgba(13,121,242,0.12);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}
.problem-proof-ceiling {
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 16px 14px 12px;
}
.problem-proof-ceiling::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 18px;
  border-top: 1px dashed rgba(13,121,242,0.42);
}
.problem-proof-ceiling em {
  position: absolute;
  right: 14px;
  top: 9px;
  color: var(--brand-primary);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.problem-proof-ceiling span {
  flex: 1;
  height: var(--h);
  min-height: 22px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #0D79F2, rgba(13,121,242,0.20));
  opacity: 0.82;
}
.problem-proof-brake {
  display: grid;
  gap: 7px;
  padding: 13px 14px;
}
.problem-proof-brake div {
  position: relative;
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13,121,242,0.10);
}
.problem-proof-brake div span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0D79F2, #7EB8FF);
}
.problem-proof-brake div::after {
  content: '';
  position: absolute;
  left: 58%;
  top: -6px;
  width: 3px;
  height: 25px;
  border-radius: 999px;
  background: rgba(239,68,68,0.58);
  transform: rotate(18deg);
}
.problem-proof-brake b {
  color: var(--text-primary);
  text-transform: none;
  letter-spacing: 0;
}
.problem-proof-profit {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
}
.problem-proof-profit strong {
  color: var(--brand-primary);
  font-size: 28px;
  line-height: 1;
}
.problem-proof-profit i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 46%, transparent 47%),
    conic-gradient(var(--brand-primary) 0 43deg, rgba(13,121,242,0.12) 43deg 360deg);
  border: 1px solid rgba(13,121,242,0.14);
}
.problem-proof-profit b {
  color: var(--text-primary);
  font-size: 17px;
}
.problem-accent {
  position: relative;
  max-width: none;
  min-height: 134px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 25px 40px;
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,255,255,0.52)),
    rgba(255,255,255,0.44);
  border: 1px solid rgba(207,219,235,0.78);
  border-radius: 22px;
  box-shadow:
    0 18px 54px rgba(15,18,23,0.05),
    inset 0 1px 0 rgba(255,255,255,0.84);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}
.problem-accent::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(48%, 640px);
  pointer-events: none;
  background: url('img/problem-accent-visual.webp') right center / cover no-repeat;
  opacity: 0.72;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 16%, #000 42%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 16%, #000 42%, #000 100%);
}
.problem-accent-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.075);
  border: 1px solid rgba(13,121,242,0.16);
  border-radius: 50%;
}
.problem-accent-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.problem-accent p {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(151,174,207,0.42);
  color: var(--text-primary);
  font-size: 20px;
  line-height: 1.45;
}
.problem-accent strong {
  font-weight: 650;
}
.problem-accent span {
  color: var(--brand-primary);
  font-weight: 650;
}

@media (prefers-reduced-motion: reduce) {
  .problem-card {
    transition: none;
  }
}

@media (max-width: 980px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .problem-card {
    min-height: 226px;
  }
}

@media (max-width: 640px) {
  .problem-section {
    padding: 54px 20px 60px;
  }
  .problem-section::after {
    right: -330px;
    top: -24px;
    opacity: 0.10;
  }
  .problem-head {
    margin-bottom: 24px;
  }
  .problem-overline {
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.2;
  }
  .problem-head h2 {
    font-size: 38px;
    line-height: 1.04;
  }
  .problem-head p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .problem-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 15px;
  }
  .problem-card-top {
    align-items: center;
  }
  .problem-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }
  .problem-icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 2.05;
  }
  .problem-card h3 {
    max-width: none;
    font-size: 16px;
    line-height: 1.32;
  }
  .problem-proof {
    min-height: 58px;
    border-radius: 14px;
  }
  .problem-proof-percent strong,
  .problem-proof-profit strong {
    font-size: 22px;
  }
  .problem-proof-routine {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .problem-proof-routine span {
    min-height: 34px;
  }
  .problem-accent {
    margin-top: 14px;
    min-height: 0;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 18px;
    border-radius: 16px;
  }
  .problem-accent::after {
    width: 100%;
    opacity: 0.12;
    background-size: cover;
    mask-image: linear-gradient(90deg, transparent 0%, #000 54%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 54%, #000 100%);
  }
  .problem-accent-icon {
    width: 42px;
    height: 42px;
  }
  .problem-accent-icon svg {
    width: 24px;
    height: 24px;
  }
  .problem-accent p {
    padding-left: 14px;
    font-size: 16px;
    line-height: 1.42;
  }
}

/* ===== InfrastructureSection component ===== */
.infrastructure-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 88px) 32px clamp(70px, 8vw, 98px);
  background:
    radial-gradient(circle at 82% 20%, rgba(13,121,242,0.08), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 100%);
}
.infrastructure-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,121,242,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.66), transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.66), transparent 78%);
}
.infrastructure-section::after {
  content: '';
  position: absolute;
  right: -160px;
  top: 70px;
  width: 720px;
  height: 470px;
  pointer-events: none;
  background: url('img/hero-metal-bg.webp') right top / 760px auto no-repeat;
  opacity: 0.11;
  filter: saturate(0.92);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 36%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 36%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  -webkit-mask-composite: source-in;
}
.infrastructure-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.infrastructure-head {
  max-width: 960px;
  margin-bottom: 28px;
}
.infrastructure-overline {
  margin: 0 0 16px;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.infrastructure-head h2 {
  max-width: 930px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(42px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}
.infrastructure-head h2 span {
  color: var(--brand-primary);
}
.infrastructure-head p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.55;
}
.infrastructure-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(390px, 1.34fr) minmax(250px, 0.82fr);
  gap: 16px;
  align-items: stretch;
}
.infrastructure-layout::before {
  content: '';
  position: absolute;
  inset: 84px 248px auto 248px;
  height: 190px;
  pointer-events: none;
  border: 1px solid rgba(151,174,207,0.22);
  border-top-color: transparent;
  border-radius: 0 0 38px 38px;
  opacity: 0.8;
}
.infrastructure-side {
  display: grid;
  gap: 16px;
}
.infrastructure-card,
.infrastructure-main-card,
.infrastructure-accent {
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,255,255,0.48)),
    rgba(255,255,255,0.42);
  border: 1px solid rgba(207,219,235,0.76);
  box-shadow:
    0 18px 52px rgba(15,18,23,0.045),
    inset 0 1px 0 rgba(255,255,255,0.84);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}
.infrastructure-card {
  position: relative;
  min-height: 138px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.infrastructure-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13,121,242,0.30);
  box-shadow:
    0 24px 64px rgba(15,18,23,0.07),
    inset 0 1px 0 rgba(255,255,255,0.92);
}
.infrastructure-card h3,
.infrastructure-main-card h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.24;
  letter-spacing: 0;
}
.infrastructure-card p,
.infrastructure-main-card p {
  margin: 9px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}
.infrastructure-icon,
.infrastructure-main-icon {
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.065);
  border: 1px solid rgba(13,121,242,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}
.infrastructure-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
}
.infrastructure-icon svg,
.infrastructure-main-icon svg,
.infrastructure-accent-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.infrastructure-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2;
}
.infrastructure-main-card {
  position: relative;
  min-height: 446px;
  padding: 24px;
  overflow: hidden;
  border-radius: 22px;
}
.infrastructure-main-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 8%, rgba(13,121,242,0.15), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.36), transparent 50%);
}
.infrastructure-main-visual {
  position: absolute;
  right: -150px;
  top: 8px;
  width: 420px;
  height: 240px;
  pointer-events: none;
  background: url('img/problem-accent-visual.webp') right center / cover no-repeat;
  opacity: 0.24;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.22) 20%, #000 48%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.22) 20%, #000 48%, transparent 100%);
}
.infrastructure-main-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}
.infrastructure-main-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}
.infrastructure-main-icon svg {
  width: 35px;
  height: 35px;
  stroke-width: 2.05;
}
.supplier-table {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin-top: 16px;
}
.supplier-table-head,
.supplier-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 0.72fr;
  gap: 12px;
  align-items: center;
}
.supplier-table-head {
  padding: 0 14px 2px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
}
.supplier-row {
  min-height: 58px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(222,230,241,0.78);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.74);
}
.supplier-row span,
.supplier-row strong,
.supplier-row em {
  min-width: 0;
  color: var(--text-primary);
  font-size: 13px;
  font-style: normal;
  line-height: 1.25;
}
.supplier-row span:first-child {
  position: relative;
  padding-left: 16px;
  font-weight: 600;
}
.supplier-row span:first-child i {
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  display: block;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(13,121,242,0.10);
}
.supplier-row small {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
}
.supplier-row strong {
  color: var(--brand-primary);
  font-weight: 700;
}
.supplier-row em {
  color: var(--text-secondary);
  font-weight: 600;
}
.infrastructure-accent {
  position: relative;
  min-height: 126px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 24px 36px;
  border-radius: 18px;
}
.infrastructure-accent::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(48%, 620px);
  pointer-events: none;
  background: url('img/problem-accent-visual.webp') right center / cover no-repeat;
  opacity: 0.54;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.16) 16%, #000 44%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.16) 16%, #000 44%, #000 100%);
}
.infrastructure-accent-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.075);
  border: 1px solid rgba(13,121,242,0.16);
  border-radius: 16px;
}
.infrastructure-accent-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.9;
}
.infrastructure-accent div {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-left: 24px;
  border-left: 1px solid rgba(151,174,207,0.42);
}
.infrastructure-accent p {
  margin: 0;
  color: var(--text-primary);
  font-size: 21px;
  line-height: 1.4;
}
.infrastructure-accent strong {
  font-weight: 700;
}
.infrastructure-accent span {
  color: var(--brand-primary);
  font-weight: 700;
}
.infrastructure-accent small {
  display: block;
  margin-top: 7px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .infrastructure-layout {
    grid-template-columns: 1fr;
  }
  .infrastructure-layout::before {
    display: none;
  }
  .infrastructure-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .infrastructure-side-right {
    order: 3;
  }
  .infrastructure-main-card {
    order: 2;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .infrastructure-section {
    padding: 58px 20px 64px;
  }
  .infrastructure-section::after {
    right: -300px;
    top: 110px;
    opacity: 0.08;
  }
  .infrastructure-head {
    margin-bottom: 24px;
  }
  .infrastructure-overline {
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.2;
  }
  .infrastructure-head h2 {
    font-size: 34px;
    line-height: 1.06;
  }
  .infrastructure-head p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
  }
  .infrastructure-layout,
  .infrastructure-side {
    gap: 10px;
  }
  .infrastructure-side {
    grid-template-columns: 1fr;
  }
  .infrastructure-card {
    min-height: 0;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 15px;
  }
  .infrastructure-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .infrastructure-icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 2.05;
  }
  .infrastructure-card h3,
  .infrastructure-main-card h3 {
    font-size: 16px;
  }
  .infrastructure-card p,
  .infrastructure-main-card p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.38;
  }
  .infrastructure-main-card {
    padding: 18px;
    border-radius: 17px;
  }
  .infrastructure-main-visual {
    right: -220px;
    top: -12px;
    opacity: 0.14;
  }
  .infrastructure-main-top {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .infrastructure-main-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }
  .infrastructure-main-icon svg {
    width: 28px;
    height: 28px;
  }
  .supplier-table {
    gap: 7px;
  }
  .supplier-table-head {
    display: none;
  }
  .supplier-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
    min-height: 0;
    padding: 10px 12px;
  }
  .supplier-row span:nth-child(2),
  .supplier-row em {
    display: none;
  }
  .supplier-row strong {
    font-size: 13px;
    white-space: nowrap;
  }
  .infrastructure-accent {
    min-height: 0;
    grid-template-columns: 44px 1fr;
    gap: 13px;
    padding: 18px;
    border-radius: 16px;
  }
  .infrastructure-accent::after {
    width: 100%;
    opacity: 0.10;
    mask-image: linear-gradient(90deg, transparent 0%, #000 54%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 54%, #000 100%);
  }
  .infrastructure-accent-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .infrastructure-accent-icon svg {
    width: 27px;
    height: 27px;
  }
  .infrastructure-accent div {
    padding-left: 14px;
  }
  .infrastructure-accent p {
    font-size: 16px;
    line-height: 1.36;
  }
  .infrastructure-accent small {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.34;
  }
}

/* ===== CareerPathSection component ===== */
.career-path-section {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 7.5vw, 96px) 32px clamp(70px, 8vw, 104px);
  background:
    radial-gradient(circle at 50% 12%, rgba(13,121,242,0.055), transparent 34%),
    linear-gradient(180deg, #F7F8FA 0%, #FFFFFF 52%, #F7F8FA 100%);
}
.career-path-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,121,242,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.032) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 34%, rgba(0,0,0,0.72), transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 34%, rgba(0,0,0,0.72), transparent 72%);
}
.career-path-section::after {
  content: '';
  position: absolute;
  right: -220px;
  top: 80px;
  width: 620px;
  height: 420px;
  pointer-events: none;
  background: url('img/hero-metal-bg.webp') right top / 660px auto no-repeat;
  opacity: 0.08;
  filter: saturate(0.9);
  mask-image: linear-gradient(90deg, transparent 0%, #000 44%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 44%, transparent 100%);
}
.career-path-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.career-path-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.career-path-overline {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 8px 15px;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.09);
  border: 1px solid rgba(13,121,242,0.10);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}
.career-path-overline::before {
  content: '';
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: 1px;
  background: var(--brand-primary);
  border-radius: 50%;
}
.career-path-head h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(42px, 4.4vw, 58px);
  font-weight: 720;
  line-height: 1.04;
  letter-spacing: 0;
}
.career-path-head h2 span {
  color: var(--brand-primary);
}
.career-path-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.52;
}
.career-path-head p span {
  color: var(--brand-primary);
  font-weight: 700;
}
.career-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.16fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.career-path-card {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  overflow: hidden;
  padding: 28px;
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,255,255,0.50)),
    rgba(255,255,255,0.46);
  border: 1px solid rgba(207,219,235,0.78);
  border-radius: 24px;
  box-shadow:
    0 20px 58px rgba(15,18,23,0.048),
    inset 0 1px 0 rgba(255,255,255,0.86);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.career-path-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.50), transparent 44%),
    radial-gradient(circle at 88% 12%, rgba(13,121,242,0.055), transparent 34%);
}
.career-path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13,121,242,0.26);
  box-shadow:
    0 26px 72px rgba(15,18,23,0.072),
    inset 0 1px 0 rgba(255,255,255,0.92);
}
.career-path-card-top,
.career-path-card ul,
.career-path-note {
  position: relative;
  z-index: 1;
}
.career-path-card-top span {
  display: block;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.career-path-card-top h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 720;
  line-height: 1.16;
  letter-spacing: 0;
}
.career-path-card ul {
  display: grid;
  gap: 14px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.career-path-card li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.35;
}
.career-path-card li i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}
.career-path-muted li i {
  color: #9CA3AF;
  background: rgba(156,163,175,0.13);
}
.career-path-warning {
  border-color: rgba(245,158,11,0.22);
}
.career-path-warning .career-path-card-top span {
  color: var(--warning);
}
.career-path-warning li i {
  color: #B45309;
  background: rgba(245,158,11,0.16);
}
.career-path-primary {
  margin-top: -12px;
  margin-bottom: -12px;
  background:
    radial-gradient(circle at 80% 12%, rgba(13,121,242,0.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(232,243,255,0.70)),
    rgba(255,255,255,0.58);
  border-color: rgba(13,121,242,0.42);
  box-shadow:
    0 28px 86px rgba(13,121,242,0.16),
    0 18px 52px rgba(15,18,23,0.050),
    inset 0 1px 0 rgba(255,255,255,0.92);
}
.career-path-primary::after {
  content: '';
  position: absolute;
  right: -130px;
  bottom: -115px;
  width: 360px;
  height: 260px;
  pointer-events: none;
  background: url('img/problem-accent-visual.webp') right bottom / cover no-repeat;
  opacity: 0.18;
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%, transparent 100%);
}
.career-path-primary .career-path-card-top span {
  color: var(--brand-primary);
}
.career-path-primary li {
  color: var(--text-primary);
  font-weight: 620;
}
.career-path-primary li i {
  color: #FFFFFF;
  background: linear-gradient(180deg, #1283FF, #0D79F2);
  box-shadow: 0 8px 18px rgba(13,121,242,0.24);
}
.career-path-note {
  min-height: 60px;
  display: flex;
  align-items: center;
  margin: 0;
  padding-top: 18px;
  color: var(--text-muted);
  border-top: 1px solid rgba(207,219,235,0.78);
  font-size: 14px;
  font-style: italic;
  font-weight: 560;
  line-height: 1.45;
}
.career-path-primary .career-path-note {
  color: var(--text-secondary);
  border-color: rgba(13,121,242,0.18);
}
.career-path-accent {
  position: relative;
  max-width: 860px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  color: var(--text-primary);
}
.career-path-accent::before,
.career-path-accent::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 88px;
  border-top: 1px solid rgba(151,174,207,0.28);
}
.career-path-accent::before {
  right: calc(100% + 24px);
}
.career-path-accent::after {
  left: calc(100% + 24px);
}
.career-path-accent-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.08);
  border: 1px solid rgba(13,121,242,0.16);
  border-radius: 17px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}
.career-path-accent-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.career-path-accent p {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(22px, 2.25vw, 30px);
  font-weight: 560;
  line-height: 1.3;
  letter-spacing: 0;
}
.career-path-accent p span {
  color: var(--brand-primary);
  font-weight: 720;
}

@media (max-width: 980px) {
  .career-path-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }
  .career-path-card,
  .career-path-primary {
    min-height: 0;
    margin: 0;
  }
  .career-path-card {
    padding: 24px;
  }
  .career-path-accent::before,
  .career-path-accent::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .career-path-section {
    padding: 56px 20px 62px;
  }
  .career-path-section::after {
    right: -360px;
    opacity: 0.055;
  }
  .career-path-head {
    margin-bottom: 24px;
    text-align: left;
  }
  .career-path-overline {
    margin: 0 0 12px;
    padding: 7px 12px;
    font-size: 10px;
    line-height: 1.2;
  }
  .career-path-head h2 {
    font-size: 34px;
    line-height: 1.06;
  }
  .career-path-head p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
  }
  .career-path-grid {
    gap: 10px;
  }
  .career-path-card {
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
  }
  .career-path-card-top span {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .career-path-card-top h3 {
    font-size: 22px;
  }
  .career-path-card ul {
    gap: 10px;
  }
  .career-path-card li {
    grid-template-columns: 22px 1fr;
    gap: 10px;
    font-size: 14px;
    line-height: 1.32;
  }
  .career-path-card li i {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .career-path-note {
    min-height: 0;
    padding-top: 14px;
    font-size: 13px;
  }
  .career-path-accent {
    margin-top: 22px;
    grid-template-columns: 44px 1fr;
    gap: 13px;
  }
  .career-path-accent-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .career-path-accent-icon svg {
    width: 27px;
    height: 27px;
  }
  .career-path-accent p {
    font-size: 18px;
    line-height: 1.34;
  }
}

/* ===== IncomeCalculatorSection component ===== */
.income-calculator-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-height, 74px);
  padding: clamp(70px, 8vw, 104px) 32px clamp(74px, 8vw, 110px);
  background:
    radial-gradient(circle at 20% 18%, rgba(13,121,242,0.075), transparent 30%),
    linear-gradient(180deg, #F7F8FA 0%, #FFFFFF 46%, #F6F8FB 100%);
}
.income-calculator-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,121,242,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.62), transparent 76%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.62), transparent 76%);
}
.income-calculator-section::after {
  content: '';
  position: absolute;
  right: -210px;
  top: 90px;
  width: 720px;
  height: 520px;
  pointer-events: none;
  background: url('img/problem-accent-visual.webp') right center / cover no-repeat;
  opacity: 0.13;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 38%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 38%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  -webkit-mask-composite: source-in;
}
.income-calculator-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.income-calculator-head {
  max-width: 930px;
  margin-bottom: 30px;
}
.income-calculator-overline {
  margin: 0 0 16px;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.income-calculator-head h2 {
  max-width: 920px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(42px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}
.income-calculator-head h2 span {
  color: var(--brand-primary);
}
.income-calculator-head p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.55;
}
.income-calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: 18px;
  align-items: stretch;
}
.calculator-controls,
.calculator-results {
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,255,255,0.48)),
    rgba(255,255,255,0.42);
  border: 1px solid rgba(207,219,235,0.76);
  border-radius: 22px;
  box-shadow:
    0 22px 64px rgba(15,18,23,0.055),
    inset 0 1px 0 rgba(255,255,255,0.86);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}
.calculator-controls {
  display: grid;
  gap: 14px;
  padding: 24px;
}
.calculator-control {
  padding: 18px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(222,230,241,0.80);
  border-radius: 17px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}
.calculator-control-main {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) minmax(136px, 160px);
  gap: 16px;
  align-items: center;
}
.calculator-control-icon,
.calculator-share-icon,
.calculator-difference-icon {
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.065);
  border: 1px solid rgba(13,121,242,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}
.calculator-control-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}
.calculator-control-icon svg,
.calculator-share-icon svg,
.calculator-difference-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.calculator-control-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 2;
}
.calculator-control-text label {
  display: block;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
}
.calculator-control-text p {
  margin: 6px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.35;
}
.calculator-number {
  width: 100%;
  min-width: 0;
  padding: 13px 12px;
  color: var(--text-primary);
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(207,219,235,0.92);
  border-radius: 13px;
  box-shadow: inset 0 1px 2px rgba(15,18,23,0.03);
  font: inherit;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.15;
  text-align: right;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.calculator-number:focus {
  border-color: rgba(13,121,242,0.50);
  box-shadow: 0 0 0 4px rgba(13,121,242,0.10);
}
.calculator-slider {
  --range-progress: 0%;
  width: 100%;
  height: 6px;
  margin-top: 18px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--brand-primary) 0 var(--range-progress), #DDE7F4 var(--range-progress) 100%);
  border-radius: 999px;
  outline: none;
}
.calculator-slider::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--brand-primary);
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(13,121,242,0.30);
  cursor: pointer;
}
.calculator-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--brand-primary);
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(13,121,242,0.30);
  cursor: pointer;
}
.calculator-scale {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 9px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.2;
}
.calculator-share-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  padding: 19px;
  background:
    linear-gradient(135deg, rgba(13,121,242,0.08), rgba(255,255,255,0.58)),
    rgba(255,255,255,0.56);
  border: 1px solid rgba(13,121,242,0.16);
  border-radius: 17px;
}
.calculator-share-card::after {
  content: '';
  position: absolute;
  right: -150px;
  top: -80px;
  width: 360px;
  height: 220px;
  background: url('img/hero-metal-bg.webp') right top / cover no-repeat;
  opacity: 0.10;
}
.calculator-share-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 16px;
}
.calculator-share-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.1;
}
.calculator-share-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.calculator-share-copy span {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.3;
}
.calculator-share-copy strong {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 7px;
  color: var(--text-primary);
  font-size: 25px;
  line-height: 1;
}
.calculator-share-copy b:last-child {
  color: var(--brand-primary);
}
.calculator-share-copy i {
  width: min(140px, 24vw);
  height: 2px;
  display: inline-block;
  background: repeating-linear-gradient(90deg, rgba(151,174,207,0.80) 0 7px, transparent 7px 11px);
  position: relative;
}
.calculator-share-copy i::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(151,174,207,0.9);
  border-right: 2px solid rgba(151,174,207,0.9);
  transform: translateY(-50%) rotate(45deg);
}
.calculator-share-copy small {
  display: flex;
  gap: 18px;
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.2;
}
.calculator-share-copy em {
  color: var(--brand-primary);
  font-style: normal;
  font-weight: 650;
}
.calculator-results {
  position: relative;
  overflow: hidden;
  padding: 26px;
}
.calculator-results-bg {
  position: absolute;
  right: -170px;
  top: -80px;
  width: 460px;
  height: 360px;
  pointer-events: none;
  background: url('img/problem-accent-visual.webp') right top / cover no-repeat;
  opacity: 0.16;
  mask-image: linear-gradient(90deg, transparent 0%, #000 46%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 46%, transparent 100%);
}
.calculator-results h3,
.calculator-compare,
.calculator-difference,
.calculator-growth,
.calculator-cta-card {
  position: relative;
  z-index: 1;
}
.calculator-results h3 {
  margin: 0 0 18px;
  color: var(--text-primary);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}
.calculator-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}
.calculator-result-mini {
  min-width: 0;
  padding: 17px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(222,230,241,0.82);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}
.calculator-result-mini.traderx {
  background:
    linear-gradient(135deg, rgba(13,121,242,0.08), rgba(255,255,255,0.62)),
    rgba(255,255,255,0.66);
  border-color: rgba(13,121,242,0.18);
}
.calculator-result-mini span,
.calculator-difference span,
.calculator-growth span {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
}
.calculator-result-mini strong {
  display: block;
  margin-top: 9px;
  color: var(--text-primary);
  font-size: clamp(23px, 2.1vw, 30px);
  font-weight: 750;
  line-height: 1.05;
}
.calculator-result-mini.traderx strong {
  color: var(--brand-primary);
}
.calculator-result-mini small,
.calculator-growth small {
  display: block;
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.25;
}
.calculator-vs {
  align-self: center;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.08);
  border: 1px solid rgba(13,121,242,0.15);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.calculator-difference {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  margin-top: 14px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(13,121,242,0.12), rgba(255,255,255,0.66)),
    rgba(255,255,255,0.66);
  border: 1px solid rgba(13,121,242,0.20);
  border-radius: 18px;
}
.calculator-difference-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
}
.calculator-difference-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.25;
}
.calculator-difference strong {
  display: block;
  margin-top: 5px;
  color: var(--brand-primary);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 780;
  line-height: 1;
}
.calculator-difference p {
  grid-column: 2;
  margin: -5px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.35;
}
.calculator-growth {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(150px, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(222,230,241,0.82);
  border-radius: 17px;
}
.calculator-growth strong {
  display: block;
  margin-top: 6px;
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 750;
  line-height: 1.05;
}
.calculator-growth svg {
  width: 100%;
  min-height: 82px;
  overflow: visible;
}
.calculator-chart-fill {
  fill: url(#calculatorFill);
}
.calculator-chart-line {
  fill: none;
  stroke: var(--brand-primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 7px 8px rgba(13,121,242,0.16));
}
.calculator-growth circle {
  fill: var(--brand-primary);
}
.calculator-cta-card {
  margin-top: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(222,230,241,0.82);
  border-radius: 17px;
}
.calculator-cta-card p {
  margin: 0 0 12px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
}
.calculator-cta-card .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 18px;
  text-align: center;
}
@media (max-width: 1020px) {
  .income-calculator-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .income-calculator-section {
    padding: 58px 20px 64px;
  }
  .income-calculator-section::after {
    right: -330px;
    opacity: 0.09;
  }
  .income-calculator-head {
    margin-bottom: 24px;
  }
  .income-calculator-overline {
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.2;
  }
  .income-calculator-head h2 {
    font-size: 34px;
    line-height: 1.06;
  }
  .income-calculator-head p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
  }
  .calculator-controls,
  .calculator-results {
    border-radius: 18px;
  }
  .calculator-controls {
    gap: 10px;
    padding: 14px;
  }
  .calculator-control {
    padding: 14px;
    border-radius: 15px;
  }
  .calculator-control-main {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .calculator-control-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .calculator-control-icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 2.05;
  }
  .calculator-control-text label {
    font-size: 16px;
  }
  .calculator-control-text p {
    margin-top: 4px;
    font-size: 12px;
  }
  .calculator-number {
    grid-column: 1 / -1;
    padding: 12px;
    font-size: 16px;
    text-align: left;
  }
  .calculator-slider {
    margin-top: 14px;
  }
  .calculator-share-card {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 15px;
  }
  .calculator-share-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .calculator-share-icon svg {
    width: 27px;
    height: 27px;
  }
  .calculator-share-copy strong {
    gap: 9px;
    font-size: 21px;
  }
  .calculator-share-copy i {
    width: 72px;
  }
  .calculator-results {
    padding: 16px;
  }
  .calculator-results h3 {
    margin-bottom: 12px;
    font-size: 23px;
  }
  .calculator-compare {
    grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr);
    gap: 6px;
  }
  .calculator-vs {
    width: 26px;
    height: 26px;
    margin: 0;
    font-size: 10px;
  }
  .calculator-result-mini {
    padding: 12px;
    border-radius: 15px;
  }
  .calculator-result-mini span,
  .calculator-difference span,
  .calculator-growth span {
    font-size: 11px;
  }
  .calculator-result-mini strong {
    font-size: 20px;
  }
  .calculator-result-mini small,
  .calculator-growth small {
    font-size: 10px;
  }
  .calculator-difference {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }
  .calculator-difference-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .calculator-difference-icon svg {
    width: 27px;
    height: 27px;
  }
  .calculator-difference strong {
    font-size: 31px;
  }
  .calculator-difference p {
    margin-top: 0;
  }
  .calculator-growth {
    grid-template-columns: minmax(0, 0.8fr) minmax(116px, 1fr);
    gap: 10px;
    padding: 14px;
    border-radius: 15px;
  }
  .calculator-growth strong {
    font-size: 23px;
  }
  .calculator-growth svg {
    min-height: 78px;
  }
  .calculator-cta-card {
    padding: 15px;
    border-radius: 15px;
  }
  .calculator-cta-card .btn {
    white-space: normal;
    line-height: 1.2;
  }
}

/* ===== HowItWorksSection component ===== */
.how-it-works-section {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 104px) 32px clamp(74px, 8vw, 110px);
  background:
    radial-gradient(circle at 82% 18%, rgba(13,121,242,0.08), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 100%);
}
.how-it-works-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,121,242,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.62), transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.62), transparent 78%);
}
.how-it-works-section::after {
  content: '';
  position: absolute;
  right: -180px;
  bottom: -80px;
  width: 760px;
  height: 520px;
  pointer-events: none;
  background: url('img/problem-accent-visual.webp') right bottom / cover no-repeat;
  opacity: 0.16;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 40%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 24%, #000 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 40%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 24%, #000 100%);
  -webkit-mask-composite: source-in;
}
.how-it-works-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}
.how-it-works-copy {
  max-width: 610px;
}
.how-it-works-overline {
  margin: 0 0 16px;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.how-it-works-copy h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}
.how-it-works-subtitle {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.55;
}
.how-it-works-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.how-it-works-actions .btn {
  flex-shrink: 0;
}
.how-it-works-actions p {
  max-width: 250px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.35;
}
.how-it-works-accent {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,255,255,0.48)),
    rgba(255,255,255,0.42);
  border: 1px solid rgba(207,219,235,0.76);
  border-radius: 18px;
  box-shadow:
    0 18px 52px rgba(15,18,23,0.045),
    inset 0 1px 0 rgba(255,255,255,0.84);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}
.how-it-works-accent-icon,
.how-step-icon {
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.065);
  border: 1px solid rgba(13,121,242,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}
.how-it-works-accent-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
}
.how-it-works-accent-icon svg,
.how-step-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.how-it-works-accent-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.9;
}
.how-it-works-accent p {
  margin: 0;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.42;
}
.how-it-works-accent strong {
  font-weight: 700;
}
.how-it-works-timeline {
  position: relative;
  padding: 22px;
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,255,255,0.48)),
    rgba(255,255,255,0.42);
  border: 1px solid rgba(207,219,235,0.76);
  border-radius: 24px;
  box-shadow:
    0 22px 64px rgba(15,18,23,0.055),
    inset 0 1px 0 rgba(255,255,255,0.86);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}
.how-it-works-timeline::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -90px;
  width: 420px;
  height: 280px;
  pointer-events: none;
  background: url('img/hero-metal-bg.webp') right top / cover no-repeat;
  opacity: 0.08;
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%, transparent 100%);
}
.how-it-works-route {
  position: absolute;
  left: 50px;
  top: 74px;
  bottom: 74px;
  width: 2px;
  background: linear-gradient(180deg, rgba(13,121,242,0.16), rgba(13,121,242,0.62), rgba(13,121,242,0.16));
  border-radius: 999px;
  pointer-events: none;
}
.how-it-works-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}
.how-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(222,230,241,0.82);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.how-step:hover {
  transform: translateY(-3px);
  border-color: rgba(13,121,242,0.30);
  box-shadow:
    0 18px 52px rgba(15,18,23,0.055),
    inset 0 1px 0 rgba(255,255,255,0.92);
}
.how-step-number {
  position: absolute;
  left: -7px;
  top: -7px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  background: var(--brand-primary);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(13,121,242,0.24);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.how-step-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}
.how-step-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2;
}
.how-step h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}
.how-step p {
  margin: 9px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.48;
}

@media (max-width: 980px) {
  .how-it-works-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .how-it-works-copy {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .how-it-works-section {
    padding: 58px 20px 64px;
  }
  .how-it-works-section::after {
    right: -340px;
    opacity: 0.10;
  }
  .how-it-works-overline {
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.2;
  }
  .how-it-works-copy h2 {
    font-size: 34px;
    line-height: 1.06;
  }
  .how-it-works-subtitle {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
  }
  .how-it-works-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .how-it-works-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 18px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  .how-it-works-actions p {
    max-width: none;
    font-size: 12px;
  }
  .how-it-works-accent {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    margin-top: 14px;
    padding: 15px;
    border-radius: 16px;
  }
  .how-it-works-accent-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .how-it-works-accent-icon svg {
    width: 27px;
    height: 27px;
  }
  .how-it-works-accent p {
    font-size: 14px;
    line-height: 1.38;
  }
  .how-it-works-timeline {
    padding: 14px;
    border-radius: 18px;
  }
  .how-it-works-route {
    left: 37px;
    top: 58px;
    bottom: 58px;
  }
  .how-it-works-steps {
    gap: 10px;
  }
  .how-step {
    grid-template-columns: 44px 1fr;
    gap: 13px;
    padding: 15px;
    border-radius: 15px;
  }
  .how-step-number {
    left: -5px;
    top: -5px;
    width: 21px;
    height: 21px;
    font-size: 10px;
    border-width: 2px;
  }
  .how-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .how-step-icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 2.05;
  }
  .how-step h3 {
    font-size: 16px;
  }
  .how-step p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.38;
  }
}

/* ===== ClosedBetaSection component ===== */
.closed-beta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 108px) 32px clamp(76px, 8vw, 116px);
  background:
    radial-gradient(circle at 82% 18%, rgba(13,121,242,0.09), transparent 30%),
    linear-gradient(180deg, #F7F8FA 0%, #FFFFFF 48%, #F6F8FB 100%);
}
.closed-beta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,121,242,0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.036) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.78), transparent 86%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.78), transparent 86%);
}
.closed-beta-section::after {
  content: '';
  position: absolute;
  right: -130px;
  top: 116px;
  width: min(780px, 58vw);
  height: 520px;
  pointer-events: none;
  background: url('img/hero-metal-bg.webp') right top / cover no-repeat;
  opacity: 0.12;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 38%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 78%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 38%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
}
.closed-beta-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.closed-beta-head {
  max-width: 780px;
  margin-bottom: 34px;
}
.closed-beta-overline {
  margin: 0 0 16px;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.closed-beta-head h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(42px, 4.6vw, 62px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}
.closed-beta-head h2 span {
  color: var(--brand-primary);
}
.closed-beta-head p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.56;
}
.closed-beta-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}
.closed-beta-main-card,
.closed-beta-benefits-card,
.closed-beta-accent {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54)),
    rgba(255,255,255,0.48);
  border: 1px solid rgba(207,219,235,0.82);
  box-shadow:
    0 24px 70px rgba(15,18,23,0.06),
    inset 0 1px 0 rgba(255,255,255,0.90);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}
.closed-beta-main-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 28px;
}
.closed-beta-main-card::before {
  content: '';
  position: absolute;
  inset: auto -80px -130px auto;
  width: 360px;
  height: 270px;
  pointer-events: none;
  background:
    radial-gradient(circle at 64% 34%, rgba(13,121,242,0.16), transparent 31%),
    url('img/problem-accent-visual.webp') right bottom / cover no-repeat;
  opacity: 0.30;
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%, transparent 100%);
}
.closed-beta-main-icon {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.07);
  border: 1px solid rgba(13,121,242,0.18);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.80);
}
.closed-beta-main-icon svg,
.closed-beta-accent-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.closed-beta-main-content {
  position: relative;
  z-index: 1;
}
.closed-beta-main-content h3,
.closed-beta-benefits-card h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}
.closed-beta-places {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 26px;
  color: var(--brand-primary);
}
.closed-beta-places strong {
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 750;
  line-height: 0.82;
  letter-spacing: 0;
}
.closed-beta-places span {
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 700;
}
.closed-beta-caption {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.4;
}
.closed-beta-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 9px 13px;
  color: #0B65CC;
  background: rgba(13,121,242,0.08);
  border: 1px solid rgba(13,121,242,0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.closed-beta-status i {
  width: 8px;
  height: 8px;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(13,121,242,0.10);
}
.closed-beta-meter {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 6px;
  margin-top: 16px;
  max-width: 360px;
}
.closed-beta-meter span {
  height: 7px;
  border-radius: 999px;
  background: rgba(13,121,242,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}
.closed-beta-meter span:nth-child(-n+6) {
  background: linear-gradient(90deg, #0D79F2, #65A7FF);
}
.closed-beta-note {
  max-width: 460px;
  margin: 20px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}
.closed-beta-benefits-card {
  min-height: 420px;
  padding: 30px;
  border-radius: 28px;
}
.closed-beta-benefits-card::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -130px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,121,242,0.10), transparent 62%);
  pointer-events: none;
}
.closed-beta-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.closed-beta-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 15px;
  color: var(--text-primary);
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(222,230,241,0.86);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.closed-beta-benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(13,121,242,0.30);
  box-shadow:
    0 16px 44px rgba(15,18,23,0.052),
    inset 0 1px 0 rgba(255,255,255,0.92);
}
.closed-beta-benefit-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.07);
  border: 1px solid rgba(13,121,242,0.16);
  border-radius: 13px;
}
.closed-beta-benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.closed-beta-benefit p {
  margin: 0;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.28;
}
.closed-beta-accent {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 22px;
  border-radius: 24px;
}
.closed-beta-accent::before {
  content: '';
  position: absolute;
  right: 0;
  inset-block: 0;
  width: min(430px, 38%);
  pointer-events: none;
  background: url('img/problem-accent-visual.webp') right center / cover no-repeat;
  opacity: 0.15;
  mask-image: linear-gradient(90deg, transparent 0%, #000 52%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 52%, transparent 100%);
}
.closed-beta-accent-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.075);
  border: 1px solid rgba(13,121,242,0.17);
  border-radius: 18px;
}
.closed-beta-accent-copy,
.closed-beta-cta {
  position: relative;
  z-index: 1;
}
.closed-beta-accent-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.45;
}
.closed-beta-accent-copy strong {
  color: var(--text-primary);
  font-weight: 700;
}
.closed-beta-cta {
  display: grid;
  justify-items: start;
  gap: 9px;
  min-width: 282px;
}
.closed-beta-cta .btn {
  width: 100%;
  justify-content: center;
}
.closed-beta-cta small {
  max-width: 300px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 1040px) {
  .closed-beta-layout {
    grid-template-columns: 1fr;
  }
  .closed-beta-benefits-card,
  .closed-beta-main-card {
    min-height: auto;
  }
  .closed-beta-accent {
    grid-template-columns: 56px 1fr;
  }
  .closed-beta-cta {
    grid-column: 2;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .closed-beta-section {
    padding: 58px 20px 64px;
  }
  .closed-beta-section::after {
    right: -280px;
    top: 160px;
    width: 620px;
    opacity: 0.08;
  }
  .closed-beta-head {
    margin-bottom: 22px;
  }
  .closed-beta-overline {
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.2;
  }
  .closed-beta-head h2 {
    font-size: 34px;
    line-height: 1.06;
  }
  .closed-beta-head p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
  }
  .closed-beta-layout {
    gap: 14px;
  }
  .closed-beta-main-card,
  .closed-beta-benefits-card {
    padding: 18px;
    border-radius: 20px;
  }
  .closed-beta-main-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }
  .closed-beta-main-icon svg {
    width: 31px;
    height: 31px;
  }
  .closed-beta-main-content h3,
  .closed-beta-benefits-card h3 {
    font-size: 20px;
  }
  .closed-beta-places {
    margin-top: 18px;
    gap: 9px;
  }
  .closed-beta-places strong {
    font-size: 72px;
  }
  .closed-beta-places span {
    font-size: 23px;
  }
  .closed-beta-caption {
    margin-top: 8px;
    font-size: 14px;
  }
  .closed-beta-status {
    margin-top: 16px;
    font-size: 12px;
  }
  .closed-beta-note {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.45;
  }
  .closed-beta-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }
  .closed-beta-benefit {
    min-height: 66px;
    grid-template-columns: 38px 1fr;
    padding: 12px;
    border-radius: 15px;
  }
  .closed-beta-benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .closed-beta-benefit p {
    font-size: 14px;
  }
  .closed-beta-accent {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
  }
  .closed-beta-accent::before {
    width: 82%;
    opacity: 0.09;
  }
  .closed-beta-accent-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .closed-beta-accent-icon svg {
    width: 27px;
    height: 27px;
  }
  .closed-beta-accent-copy p {
    font-size: 14px;
    line-height: 1.38;
  }
  .closed-beta-cta {
    grid-column: 1 / -1;
    gap: 8px;
    width: 100%;
    margin-top: 2px;
  }
  .closed-beta-cta .btn {
    padding: 15px 18px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
}

/* ===== FinalCtaSection component ===== */
.final-cta-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-height, 74px);
  padding: clamp(68px, 8vw, 108px) 32px clamp(70px, 8vw, 112px);
  background:
    radial-gradient(circle at 18% 24%, rgba(13,121,242,0.09), transparent 30%),
    radial-gradient(circle at 84% 62%, rgba(13,121,242,0.08), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #F6F8FB 100%);
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,121,242,0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.036) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.76), transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.76), transparent 88%);
}
.final-cta-section::after {
  content: '';
  position: absolute;
  right: -150px;
  bottom: -90px;
  width: min(760px, 58vw);
  height: 500px;
  pointer-events: none;
  background: url('img/problem-accent-visual.webp') right bottom / cover no-repeat;
  opacity: 0.13;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 44%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 44%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.74fr);
  grid-template-areas:
    "copy form"
    "steps form";
  gap: 20px 44px;
  align-items: center;
}
.final-cta-copy {
  grid-area: copy;
  max-width: 690px;
}
.final-cta-overline {
  margin: 0 0 16px;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.final-cta-copy h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(42px, 4.7vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}
.final-cta-copy p {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.56;
}
.final-cta-steps,
.final-form-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54)),
    rgba(255,255,255,0.48);
  border: 1px solid rgba(207,219,235,0.82);
  box-shadow:
    0 24px 70px rgba(15,18,23,0.06),
    inset 0 1px 0 rgba(255,255,255,0.90);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}
.final-cta-steps {
  grid-area: steps;
  max-width: 680px;
  padding: 24px;
  border-radius: 24px;
}
.final-cta-steps h3 {
  margin: 0 0 16px;
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.22;
}
.final-cta-steps ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  counter-reset: final-steps;
}
.final-step {
  counter-increment: final-steps;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 66px;
  padding: 13px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(222,230,241,0.86);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}
.final-step::before {
  content: counter(final-steps);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.075);
  border: 1px solid rgba(13,121,242,0.17);
  border-radius: 11px;
  font-size: 14px;
  font-weight: 800;
}
.final-step span {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.28;
}
.final-form-card {
  grid-area: form;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 28px;
}
.final-form-card::before {
  content: '';
  position: absolute;
  right: -110px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,121,242,0.14), transparent 62%);
  pointer-events: none;
}
.access-form,
.final-form-success {
  position: relative;
  z-index: 1;
}
.access-form {
  display: grid;
  gap: 17px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field label {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
}
.form-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: var(--text-primary);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(207,219,235,0.92);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
  font: 600 16px/1.2 var(--font-sans);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-field input::placeholder {
  color: #9AA5B5;
  font-weight: 500;
}
.form-field input:focus {
  background: rgba(255,255,255,0.92);
  border-color: rgba(13,121,242,0.54);
  box-shadow:
    0 0 0 4px rgba(13,121,242,0.10),
    inset 0 1px 0 rgba(255,255,255,0.92);
}
.form-field.has-error input {
  border-color: rgba(239,68,68,0.72);
  box-shadow: 0 0 0 4px rgba(239,68,68,0.08);
}
.form-error {
  min-height: 17px;
  margin: 0;
  color: #D12F2F;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}
.access-form .btn {
  justify-content: center;
  width: 100%;
  margin-top: 2px;
  min-height: 58px;
}
.form-consent {
  margin: -3px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.42;
  text-align: center;
}
.final-form-success {
  min-height: 332px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}
.final-form-success[hidden] {
  display: none;
}
.success-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.075);
  border: 1px solid rgba(13,121,242,0.17);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}
.success-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.final-form-success h3 {
  margin: 18px 0 0;
  color: var(--text-primary);
  font-size: 28px;
  line-height: 1.15;
}
.final-form-success p {
  max-width: 360px;
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

/* ===== Lead modal ===== */
body.modal-open {
  overflow: hidden;
}
.lead-modal[hidden] {
  display: none;
}
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}
.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 54% 38%, rgba(13,121,242,0.13), transparent 32%),
    rgba(244,247,251,0.70);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}
.lead-modal-dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: min(760px, calc(100svh - 32px));
  overflow: hidden auto;
  padding: 30px;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 88% 12%, rgba(13,121,242,0.15), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,249,255,0.78)),
    rgba(255,255,255,0.74);
  border: 1px solid rgba(207,219,235,0.88);
  border-radius: 28px;
  box-shadow:
    0 34px 100px rgba(15,18,23,0.18),
    inset 0 1px 0 rgba(255,255,255,0.96);
}
.lead-modal-dialog::before {
  content: '';
  position: absolute;
  right: -170px;
  top: -90px;
  width: 460px;
  height: 340px;
  pointer-events: none;
  background: url('img/hero-metal-bg.webp') right top / cover no-repeat;
  opacity: 0.12;
  mask-image: linear-gradient(90deg, transparent 0%, #000 46%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 46%, transparent 100%);
}
.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(207,219,235,0.86);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.lead-modal-close:hover {
  color: var(--brand-primary);
  border-color: rgba(13,121,242,0.28);
  transform: translateY(-1px);
}
.lead-modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}
.lead-modal-content,
.lead-modal-success {
  position: relative;
  z-index: 1;
}
.lead-modal-overline {
  margin: 0 0 14px;
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}
.lead-modal-head h2 {
  max-width: 420px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 740;
  line-height: 1.05;
  letter-spacing: 0;
}
.lead-modal-head p {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.48;
}
.lead-modal-form {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}
.lead-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
}
.lead-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lead-consent span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(13,121,242,0.28);
  border-radius: 7px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
}
.lead-consent span::before {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: translateY(-1px) rotate(-45deg);
  opacity: 0;
}
.lead-consent input:checked + span {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}
.lead-consent input:checked + span::before {
  opacity: 1;
}
.lead-consent input:focus-visible + span {
  box-shadow:
    0 0 0 4px rgba(13,121,242,0.12),
    inset 0 1px 0 rgba(255,255,255,0.86);
}
.lead-consent em {
  font-style: normal;
}
.lead-consent-error {
  min-height: 0;
  margin-top: -10px;
}
.lead-modal-form .btn {
  justify-content: center;
  width: 100%;
  min-height: 58px;
}
.lead-modal-success {
  min-height: 420px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}
.lead-modal-success[hidden] {
  display: none;
}
.lead-modal-success h3 {
  margin: 18px 0 0;
  color: var(--text-primary);
  font-size: 30px;
  line-height: 1.16;
}
.lead-modal-success p {
  max-width: 360px;
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 680px) {
  .lead-modal {
    align-items: end;
    padding: 12px;
  }
  .lead-modal-dialog {
    width: 100%;
    max-height: calc(100svh - 24px);
    padding: 22px;
    border-radius: 24px;
  }
  .lead-modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }
  .lead-modal-overline {
    max-width: calc(100% - 44px);
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.2;
  }
  .lead-modal-head h2 {
    max-width: calc(100% - 30px);
    font-size: 28px;
  }
  .lead-modal-head p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.42;
  }
  .lead-modal-form {
    gap: 12px;
    margin-top: 18px;
  }
  .lead-consent {
    font-size: 12px;
  }
  .lead-modal-success {
    min-height: 300px;
  }
}

.footer.minimal-footer {
  padding: 22px 32px;
  color: var(--text-primary);
  background: #FFFFFF;
  border-top: 1px solid rgba(207,219,235,0.78);
}
.footer.minimal-footer::before {
  display: none;
}
.minimal-footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer.minimal-footer p,
.footer.minimal-footer a {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.35;
}
.footer.minimal-footer .logo {
  color: var(--text-primary);
  flex-shrink: 0;
  text-decoration: none;
}
.footer.minimal-footer .privacy-link {
  color: var(--text-secondary);
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer.minimal-footer .privacy-link:hover {
  color: var(--brand-primary);
}

@media (max-width: 980px) {
  .final-cta-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "steps";
    gap: 18px;
  }
  .final-cta-copy,
  .final-cta-steps {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .final-cta-section {
    padding: 58px 20px 64px;
  }
  .final-cta-section::after {
    right: -310px;
    opacity: 0.08;
  }
  .final-cta-overline {
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.2;
  }
  .final-cta-copy h2 {
    font-size: 34px;
    line-height: 1.06;
  }
  .final-cta-copy p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
  }
  .final-form-card,
  .final-cta-steps {
    padding: 18px;
    border-radius: 20px;
  }
  .form-field input {
    min-height: 54px;
    border-radius: 15px;
    font-size: 15px;
  }
  .access-form .btn {
    min-height: 54px;
    padding: 15px 18px;
  }
  .final-cta-steps h3 {
    margin-bottom: 14px;
    font-size: 20px;
  }
  .final-cta-steps ol {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .final-step {
    min-height: 60px;
    padding: 12px;
  }
  .final-form-success {
    min-height: 282px;
  }
  .footer.minimal-footer {
    padding: 18px 20px;
  }
  .minimal-footer-inner {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ===== Hero component ===== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(13,121,242,0.13), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 72%, #F4F5F7 100%);
  padding: 54px 32px 66px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,121,242,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 44%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 44%, #000 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(540px, 1.05fr);
  gap: 28px;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 21px;
  max-width: 690px;
}
.pre-headline {
  margin: 0;
  align-self: flex-start;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.hero h1 {
  max-width: 690px;
  color: var(--text-primary);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}
.hero h1 .accent {
  color: var(--brand-primary);
}
.hero-title-line {
  display: inline;
}
.hero-subtitle {
  max-width: 590px;
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.55;
}
.hero-mobile-showcase {
  display: none;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 2px;
}
.hero-cta-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.35;
}
.hero-cta-meta span:first-child {
  color: var(--text-secondary);
  font-weight: 600;
}
.hero-benefits {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 10px;
  max-width: 680px;
  overflow: hidden;
  background: rgba(255,255,255,0.74);
  border: 1px solid #DCE5F1;
  border-radius: 10px;
  box-shadow:
    0 18px 48px rgba(15,18,23,0.04),
    inset 0 1px 0 rgba(255,255,255,0.84);
}
.hero-benefit {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 16px 18px;
  color: var(--text-primary);
  background: transparent;
  border: 0;
  border-right: 1px solid #DCE5F1;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  line-height: 1.25;
}
.hero-benefit:last-child {
  border-right: 0;
}
.hero-benefit strong {
  max-width: 132px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0;
}
.benefit-icon {
  position: relative;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
}
.benefit-icon-pie {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, var(--brand-primary) 0 90deg, #C8D5E7 90deg 360deg);
  box-shadow: inset 0 0 0 1px rgba(13,121,242,0.035);
}
.benefit-icon-pie::before {
  content: '';
  position: absolute;
  inset: 50% 0 0 50%;
  background: rgba(255,255,255,0.82);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.7;
}
.benefit-icon-share::before,
.benefit-icon-cube::before,
.benefit-icon-clock::before {
  content: '';
  width: 58px;
  height: 58px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.benefit-icon-share::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Crect x='11' y='38' width='9' height='14' rx='2.4' stroke='%2377A7FF' stroke-width='3.2'/%3E%3Crect x='27.5' y='30' width='9' height='22' rx='2.4' stroke='%230D79F2' stroke-width='3.2'/%3E%3Crect x='44' y='20' width='9' height='32' rx='2.4' stroke='%2377A7FF' stroke-width='3.2'/%3E%3Cpath d='M12 27c12.5-1 21-7 33.5-18' stroke='%230D79F2' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M40 8h7.5v7.5' stroke='%230D79F2' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 54h44' stroke='%23C8D5E7' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.benefit-icon-cube::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath d='M32 8 51 19v24L32 54 13 43V19L32 8Z' stroke='%2377A7FF' stroke-width='3.2' stroke-linejoin='round'/%3E%3Cpath d='M13 19 32 30 51 19M32 30v24' stroke='%230D79F2' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round' opacity='.78'/%3E%3C/svg%3E");
}
.benefit-icon-clock::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Ccircle cx='32' cy='32' r='23' stroke='%230D79F2' stroke-width='3.2'/%3E%3Cpath d='M32 18v15l10 6' stroke='%2377A7FF' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.hero-visual {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}
.hero-visual-bg {
  position: absolute;
  top: calc(-1 * clamp(118px, 17svh, 190px));
  right: calc(-1 * max(32px, (100vw - 1280px) / 2 + 32px));
  bottom: calc(-1 * clamp(14px, 2.8svh, 34px));
  left: -92px;
  z-index: -2;
  background:
    url('img/hero-metal-bg.webp') right top / min(980px, 86vw) auto no-repeat;
  border-radius: 0;
  filter: saturate(0.98);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.16) 10%, #000 30%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 72%, rgba(0,0,0,0.58) 84%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.16) 10%, #000 30%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 72%, rgba(0,0,0,0.58) 84%, transparent 100%);
  -webkit-mask-composite: source-in;
}
.hero-visual::after {
  content: '';
  position: absolute;
  left: -92px;
  right: calc(-1 * max(32px, (100vw - 1280px) / 2 + 32px));
  bottom: calc(-1 * clamp(14px, 2.8svh, 34px));
  height: 230px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(247,248,250,0.92) 74%, #F4F5F7 100%);
  pointer-events: none;
}
.margin-card {
  position: absolute;
  top: 36px;
  left: 92px;
  width: 244px;
  padding: 24px 27px 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.34)),
    rgba(255,255,255,0.24);
  border: 1px solid rgba(207,219,235,0.72);
  border-radius: 17px;
  box-shadow:
    0 22px 58px rgba(15,18,23,0.085),
    inset 0 1px 0 rgba(255,255,255,0.92),
    inset 0 -1px 0 rgba(255,255,255,0.34);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  z-index: 2;
}
.margin-card::before {
  content: '';
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08));
  border: 1px solid rgba(207,219,235,0.42);
  box-shadow: 0 18px 48px rgba(15,18,23,0.045);
}
.margin-card p {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.3;
}
.margin-card-value {
  margin-top: 14px;
  color: var(--brand-primary);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}
.margin-card-value span {
  font-size: 29px;
}
.margin-chart {
  width: 100%;
  height: 104px;
  margin: -4px 0 -2px;
  overflow: visible;
}
.chart-line {
  fill: none;
  stroke: var(--brand-primary);
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#marginGlow);
}
.chart-shadow {
  fill: none;
  stroke: #8EC1FF;
  stroke-width: 8.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.18;
}
.margin-chart circle {
  fill: var(--brand-primary);
  filter: url(#marginGlow);
}
.margin-card-footer {
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid #D8DFEA;
}
.margin-card-footer span,
.margin-card-footer strong {
  display: block;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}
.margin-card-footer strong {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
}
.ops-strip {
  position: absolute;
  left: 38px;
  right: 6px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
  align-items: center;
  padding: 18px 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.54), rgba(255,255,255,0.24)),
    rgba(255,255,255,0.20);
  border: 1px solid rgba(207,219,235,0.72);
  border-radius: 18px;
  box-shadow:
    0 20px 56px rgba(15,18,23,0.075),
    inset 0 1px 0 rgba(255,255,255,0.86),
    inset 0 -1px 0 rgba(255,255,255,0.30);
  backdrop-filter: blur(17px) saturate(165%);
  -webkit-backdrop-filter: blur(17px) saturate(165%);
  z-index: 3;
}
.ops-strip::before {
  content: '';
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(207,219,235,0.36);
}
.ops-card {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.42)),
    rgba(255,255,255,0.22);
  border: 1px solid rgba(222,230,241,0.76);
  border-radius: 12px;
  box-shadow:
    0 14px 34px rgba(15,18,23,0.06),
    inset 0 1px 0 rgba(255,255,255,0.82);
  backdrop-filter: blur(12px) saturate(155%);
  -webkit-backdrop-filter: blur(12px) saturate(155%);
  text-align: center;
  font-size: 13px;
  line-height: 1.18;
}
.ops-card svg {
  width: 37px;
  height: 37px;
  color: var(--brand-primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ops-arrow {
  position: relative;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(151,174,207,0.75) 0 6px, transparent 6px 10px);
}
.ops-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(151,174,207,0.9);
  border-right: 2px solid rgba(151,174,207,0.9);
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 { font-size: 56px; }
  .hero-visual {
    min-height: 560px;
  }
  .hero-visual-bg {
    inset: 0 -30px 0 -30px;
  }
  .margin-card {
    left: 70px;
  }
  .ops-strip {
    left: 48px;
    right: 26px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 10px 20px;
  }
  .header-cta {
    padding: 10px 14px;
    font-size: 13px;
    max-width: 180px;
    white-space: normal;
    line-height: 1.15;
  }
  .hero {
    padding: 28px 20px 50px;
  }
  .hero::before {
    opacity: 0.55;
    mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
  }
  .hero-content {
    gap: 17px;
  }
  .pre-headline {
    font-size: 10px;
    line-height: 1.25;
  }
  .hero h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }
  .hero-subtitle {
    font-size: 15px;
    line-height: 1.45;
  }
  .hero-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 18px;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }
  .hero-cta .btn .arrow {
    flex-shrink: 0;
  }
  .hero-cta-meta {
    gap: 2px;
    font-size: 12px;
  }
  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
  }
  .hero-benefit {
    min-height: 122px;
    padding: 16px 12px;
  }
  .hero-benefit strong {
    font-size: 13px;
    max-width: 116px;
  }
  .benefit-icon {
    width: 44px;
    height: 44px;
  }
  .benefit-icon-share::before,
  .benefit-icon-cube::before,
  .benefit-icon-clock::before {
    width: 34px;
    height: 34px;
  }
  .hero-visual {
    min-height: 390px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 26px;
  }
  .hero-visual-bg {
    inset: 0 -120px 0 -80px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 62%, rgba(247,248,250,0.94) 100%),
      url('img/hero-metal-bg.webp') center / cover no-repeat;
  }
  .hero-visual::before {
    display: none;
  }
  .margin-card {
    top: 26px;
    left: 18px;
    width: 178px;
    padding: 16px;
    border-radius: 16px;
  }
  .margin-card p {
    font-size: 13px;
  }
  .margin-card-value {
    margin-top: 8px;
    font-size: 36px;
  }
  .margin-card-value span {
    font-size: 21px;
  }
  .margin-chart {
    height: 68px;
    margin: 4px 0 6px;
  }
  .margin-card-footer span,
  .margin-card-footer strong {
    font-size: 10px;
  }
  .margin-card-footer strong {
    margin-top: 4px;
    font-size: 12px;
  }
  .ops-strip {
    left: 14px;
    right: 14px;
    bottom: 22px;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }
  .ops-arrow {
    display: none;
  }
  .ops-card {
    min-height: 86px;
    gap: 7px;
    border-radius: 12px;
    font-size: 10px;
  }
  .ops-card svg {
    width: 25px;
    height: 25px;
    stroke-width: 2.5;
  }
}

@media (max-width: 600px) {
  .header-inner {
    max-width: 350px;
    margin: 0;
  }
  .header-cta {
    width: 128px;
    white-space: normal;
    line-height: 1.15;
  }
  .hero-inner,
  .hero-content,
  .hero-benefits {
    max-width: 350px;
  }
  .hero-inner {
    margin: 0;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero h1 .accent {
    display: block;
  }
}

@media (max-width: 420px) {
  .logo { font-size: 18px; }
  .header-cta {
    width: 128px;
    white-space: normal;
    line-height: 1.15;
  }
  .hero-inner,
  .hero-content,
  .hero-benefits {
    max-width: 350px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero h1 .accent {
    display: block;
  }
  .hero-visual {
    min-height: 372px;
  }
}

/* ===== Section header ===== */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head .pre {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--brand-primary);
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 8px 14px;
  background: var(--brand-primary-soft);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.section-head .pre .dot {
  width: 6px; height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
}
.section-head h2 {
  font-size: 48px; font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-head h2 .accent { color: var(--brand-primary); }
.section-head .subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== Card (базовая) ===== */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: var(--brand-primary-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card .icon {
  width: 48px; height: 48px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== Pill / chip ===== */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500;
}
.pill-neutral {
  background: var(--border-soft);
  color: var(--text-secondary);
}

/* ===== Mockup meta footer ===== */
.mockup-meta {
  background: var(--text-primary);
  color: white;
  padding: 16px 32px;
  font-size: 13px;
  text-align: center;
  font-family: var(--font-mono);
}
.mockup-meta a { color: var(--brand-primary); }
.mockup-meta strong { color: white; }

/* ===== Адаптив ===== */
@media (max-width: 768px) {
  .header-inner { padding: 12px 20px; gap: 12px; }
  .nav, .header-phone { display: none; }
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 32px; }
  .section-head .subtitle { font-size: 16px; }
  .card { padding: 24px; }
  .card h3 { font-size: 19px; }
}

/* ===== Viewport fit: header + hero always fill the first screen ===== */
:root { --header-height: 74px; }

.header-inner {
  min-height: var(--header-height);
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero {
  height: calc(100svh - var(--header-height));
  min-height: 0;
  padding-top: clamp(18px, 3.2svh, 40px);
  padding-bottom: clamp(14px, 2.8svh, 34px);
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
  max-height: 100%;
}

@media (max-height: 820px) and (min-width: 769px) {
  :root { --header-height: 64px; }

  .header-inner {
    min-height: var(--header-height);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .header-cta {
    padding: 10px 17px;
  }

  .hero {
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.98fr) minmax(510px, 1.02fr);
    gap: 24px;
  }

  .hero-content {
    gap: 13px;
  }

  .pre-headline {
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(44px, 4.25vw, 54px);
    line-height: 1.04;
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.42;
  }

  .hero-cta {
    gap: 14px;
  }

  .hero-cta .btn-large {
    padding: 14px 30px;
    font-size: 16px;
  }

  .hero-cta-meta {
    font-size: 12px;
  }

  .hero-benefits {
    margin-top: 2px;
  }

  .hero-benefit {
    min-height: 126px;
    gap: 10px;
    padding: 16px 12px 14px;
  }

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

  .benefit-icon-pie {
    width: 48px;
    height: 48px;
  }

  .benefit-icon-share::before,
  .benefit-icon-cube::before,
  .benefit-icon-clock::before {
    width: 48px;
    height: 48px;
  }

  .hero-benefit strong {
    font-size: 14px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .margin-card {
    top: 16px;
    left: 86px;
    width: 232px;
    padding: 20px 24px 18px;
  }

  .margin-card::before {
    inset: -9px;
  }

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

  .margin-card-value {
    font-size: 44px;
    margin-top: 10px;
  }

  .margin-card-value span {
    font-size: 25px;
  }

  .margin-chart {
    height: 84px;
    margin: -4px 0 -4px;
  }

  .margin-card-footer {
    padding-top: 10px;
  }

  .margin-card-footer span {
    font-size: 12px;
  }

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

  .ops-strip {
    left: 34px;
    right: 6px;
    bottom: 16px;
    padding: 12px 18px;
    grid-template-columns: 1fr 22px 1fr 22px 1fr 22px 1fr;
  }

  .ops-card {
    min-height: 98px;
    gap: 9px;
    font-size: 12px;
  }

  .ops-card svg {
    width: 31px;
    height: 31px;
  }

}

@media (max-width: 768px) {
  :root { --header-height: 68px; }

  .header-inner {
    min-height: var(--header-height);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero {
    height: calc(100svh - var(--header-height));
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    overflow: hidden;
  }
}

@media (max-width: 600px) {
  .hero-visual {
    display: none;
  }

  .hero {
    align-items: flex-start;
  }

  .hero-inner {
    justify-content: flex-start;
  }

  .hero-content {
    max-height: 100%;
  }
}

@media (max-width: 390px), (max-height: 760px) and (max-width: 600px) {
  .hero-content {
    gap: 13px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.38;
  }

  .hero-cta .btn {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .hero-benefit {
    min-height: 104px;
  }

  .benefit-icon {
    width: 42px;
    height: 42px;
  }

  .benefit-icon-pie {
    width: 42px;
    height: 42px;
  }

  .benefit-icon-share::before,
  .benefit-icon-cube::before,
  .benefit-icon-clock::before {
    width: 42px;
    height: 42px;
  }
}

/* ===== Mobile polish: hero, problem cards, calculator ===== */
@media (max-width: 680px) {
  :root { --header-height: 76px; }

  .header {
    overflow: visible;
  }

  .header-inner {
    width: 100%;
    max-width: none;
    min-height: var(--header-height);
    margin: 0;
    padding: 10px 20px;
    justify-content: space-between;
  }

  .logo {
    flex: 0 0 auto;
    font-size: 20px;
  }

  .header-cta {
    width: auto;
    min-width: 132px;
    max-width: 154px;
    margin-left: auto;
    padding: 10px 13px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.08;
    white-space: normal;
  }

  .hero {
    height: auto;
    min-height: auto;
    display: block;
    align-items: stretch;
    overflow: hidden;
    padding: 16px 20px 22px;
    background:
      radial-gradient(circle at 92% 10%, rgba(13,121,242,0.14), transparent 31%),
      radial-gradient(circle at 30% 95%, rgba(13,121,242,0.07), transparent 30%),
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,249,255,0.96) 100%);
  }

  .hero::before {
    opacity: 0.82;
    mask-image: linear-gradient(180deg, #000 0%, transparent 84%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 84%);
  }

  .hero::after {
    content: '';
    position: absolute;
    right: -132px;
    top: 208px;
    width: 430px;
    height: 330px;
    pointer-events: none;
    background: url('img/hero-metal-bg.webp') right center / cover no-repeat;
    opacity: 0.24;
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.72) 28%, #000 54%, #000 100%),
      linear-gradient(180deg, transparent 0%, #000 16%, #000 76%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.72) 28%, #000 54%, #000 100%),
      linear-gradient(180deg, transparent 0%, #000 16%, #000 76%, transparent 100%);
    -webkit-mask-composite: source-in;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    max-height: none;
    display: block;
    margin: 0;
    overflow: visible;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    max-height: none;
    gap: 11px;
    overflow: visible;
  }

  .pre-headline {
    font-size: 10px;
    line-height: 1.18;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.25vw, 35px);
    line-height: 1.01;
    overflow-wrap: normal;
  }

  .hero h1 .accent {
    display: block;
  }

  .hero-title-line {
    display: block;
  }

  .hero-subtitle {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.38;
  }

  .hero-mobile-showcase {
    position: relative;
    display: block;
    height: 158px;
    margin: 2px 0 2px;
    overflow: hidden;
    border: 1px solid rgba(198,215,237,0.62);
    border-radius: 18px;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.68) 48%, rgba(255,255,255,0.14) 100%),
      url('img/hero-metal-bg.webp') right 43% / 360px auto no-repeat,
      linear-gradient(135deg, rgba(239,246,255,0.96), rgba(255,255,255,0.86));
    box-shadow:
      0 18px 48px rgba(15,18,23,0.07),
      inset 0 1px 0 rgba(255,255,255,0.90);
  }

  .hero-mobile-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(13,121,242,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(13,121,242,0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
  }

  .hero-mobile-card {
    position: absolute;
    left: 12px;
    top: 13px;
    width: 132px;
    padding: 12px 12px 10px;
    border: 1px solid rgba(205,219,238,0.78);
    border-radius: 14px;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.38)),
      rgba(255,255,255,0.35);
    box-shadow:
      0 14px 34px rgba(15,18,23,0.08),
      inset 0 1px 0 rgba(255,255,255,0.92);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
  }

  .hero-mobile-card span,
  .hero-mobile-card small {
    display: block;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.15;
  }

  .hero-mobile-card small {
    display: none;
  }

  .hero-mobile-card strong {
    display: block;
    margin-top: 4px;
    color: var(--brand-primary);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
  }

  .hero-mobile-card i {
    display: block;
    width: 100%;
    height: 28px;
    margin: 3px 0 7px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath d='M3 31 C13 21 19 19 27 21 C36 24 38 9 49 12 C59 15 62 28 73 23 C83 18 86 9 96 11 C105 13 110 3 117 2' stroke='%238EC1FF' stroke-width='8' stroke-linecap='round' stroke-linejoin='round' opacity='.22'/%3E%3Cpath d='M3 31 C13 21 19 19 27 21 C36 24 38 9 49 12 C59 15 62 28 73 23 C83 18 86 9 96 11 C105 13 110 3 117 2' stroke='%230D79F2' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='117' cy='2' r='4' fill='%230D79F2'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .hero-mobile-flow {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 11px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-mobile-flow span {
    display: grid;
    place-items: center;
    min-height: 28px;
    padding: 5px 6px;
    color: var(--brand-primary);
    background: rgba(255,255,255,0.66);
    border: 1px solid rgba(205,219,238,0.72);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }

  .hero-cta {
    gap: 9px;
    margin-top: 1px;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 999px;
    font-size: 15px;
    line-height: 1.12;
  }

  .hero-cta-meta {
    max-width: 390px;
    font-size: 11px;
    line-height: 1.24;
  }

  .hero-benefits {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 4px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow:
      none;
  }

  .hero-benefit {
    min-height: 58px;
    height: auto;
    gap: 5px;
    justify-content: flex-start;
    padding: 8px 5px 7px;
    overflow: visible;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(205,219,238,0.74);
    border-radius: 12px;
    box-shadow:
      0 10px 26px rgba(15,18,23,0.035),
      inset 0 1px 0 rgba(255,255,255,0.82);
  }

  .hero-benefit:nth-child(2n) {
    border-right: 1px solid rgba(205,219,238,0.74);
  }

  .hero-benefit:nth-child(n+3) {
    border-top: 1px solid rgba(205,219,238,0.74);
  }

  .hero-benefit strong {
    max-width: 78px;
    font-size: 9.5px;
    line-height: 1.1;
    overflow-wrap: break-word;
  }

  .benefit-icon {
    width: 24px;
    height: 24px;
  }

  .benefit-icon-pie {
    width: 23px;
    height: 23px;
  }

  .benefit-icon-share::before,
  .benefit-icon-cube::before,
  .benefit-icon-clock::before {
    width: 23px;
    height: 23px;
  }

  .hero-visual {
    display: none;
  }

  .problem-section {
    padding: 42px 20px 48px;
  }

  .problem-head {
    margin-bottom: 20px;
  }

  .problem-overline {
    margin-bottom: 9px;
    font-size: 10px;
  }

  .problem-head h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .problem-head p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.42;
  }

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

  .problem-card {
    min-height: 172px;
    gap: 8px;
    padding: 11px;
    border-radius: 15px;
  }

  .problem-card::after {
    right: -48px;
    bottom: -46px;
    width: 126px;
    height: 126px;
    opacity: 0.55;
  }

  .problem-card-top {
    align-items: flex-start;
  }

  .problem-index {
    font-size: 10px;
  }

  .problem-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .problem-icon svg {
    width: 21px;
    height: 21px;
    stroke-width: 2;
  }

  .problem-card h3 {
    font-size: 12px;
    line-height: 1.24;
  }

  .problem-proof {
    min-height: 44px;
    border-radius: 12px;
  }

  .problem-proof-percent div {
    padding: 8px 7px;
  }

  .problem-proof-percent span,
  .problem-proof-base > span,
  .problem-proof-brake em,
  .problem-proof-brake b,
  .problem-proof-profit span {
    font-size: 8px;
    line-height: 1.05;
  }

  .problem-proof-percent strong {
    font-size: 18px;
  }

  .problem-proof-base {
    gap: 6px;
    padding: 9px;
  }

  .problem-proof-base div {
    gap: 5px;
  }

  .problem-proof-base i {
    width: 22px;
    height: 22px;
    border-radius: 8px;
  }

  .problem-proof-base b {
    font-size: 10px;
  }

  .problem-proof-routine {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 7px;
  }

  .problem-proof-routine span {
    min-height: 22px;
    padding: 4px;
    border-radius: 9px;
    font-size: 9px;
  }

  .problem-proof-ceiling {
    gap: 5px;
    padding: 13px 8px 7px;
  }

  .problem-proof-ceiling::before {
    left: 8px;
    right: 8px;
    top: 14px;
  }

  .problem-proof-ceiling em {
    right: 8px;
    top: 5px;
    font-size: 8px;
  }

  .problem-proof-ceiling span {
    min-height: 18px;
    border-radius: 7px 7px 3px 3px;
  }

  .problem-proof-brake {
    gap: 5px;
    padding: 9px;
  }

  .problem-proof-brake div {
    height: 10px;
  }

  .problem-proof-profit {
    grid-template-columns: auto 1fr;
    gap: 6px;
    padding: 8px;
  }

  .problem-proof-profit strong {
    font-size: 18px;
  }

  .problem-proof-profit i {
    width: 28px;
    height: 28px;
  }

  .problem-proof-profit b {
    font-size: 11px;
  }

  .problem-accent {
    margin-top: 12px;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 15px;
    border-radius: 15px;
  }

  .problem-accent-icon {
    width: 38px;
    height: 38px;
  }

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

  .problem-accent p {
    padding-left: 12px;
    font-size: 14px;
    line-height: 1.34;
  }

  .income-calculator-section {
    min-height: calc(100svh - var(--header-height));
    padding: 28px 20px 36px;
  }

  .income-calculator-head {
    margin-bottom: 11px;
  }

  .income-calculator-overline {
    margin-bottom: 7px;
    font-size: 10px;
  }

  .income-calculator-head h2 {
    max-width: 420px;
    font-size: clamp(27px, 8.2vw, 34px);
    line-height: 1.03;
  }

  .income-calculator-head p {
    display: none;
  }

  .income-calculator-shell {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .calculator-results {
    order: -1;
    padding: 12px;
    border-radius: 16px;
  }

  .calculator-results h3 {
    display: none;
  }

  .calculator-results-bg {
    opacity: 0.22;
  }

  .calculator-compare {
    grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr);
    gap: 6px;
  }

  .calculator-vs {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .calculator-result-mini {
    padding: 9px;
    border-radius: 12px;
  }

  .calculator-result-mini span,
  .calculator-difference span,
  .calculator-growth span {
    font-size: 9px;
    line-height: 1.1;
  }

  .calculator-result-mini strong {
    margin-top: 4px;
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .calculator-result-mini small {
    margin-top: 3px;
    font-size: 8px;
    line-height: 1.2;
  }

  .calculator-difference {
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 8px;
    padding: 10px;
    border-radius: 13px;
  }

  .calculator-difference-icon {
    display: none;
  }

  .calculator-difference strong {
    margin-top: 3px;
    font-size: clamp(22px, 6.8vw, 28px);
  }

  .calculator-difference p {
    font-size: 9px;
    line-height: 1.2;
  }

  .calculator-growth,
  .calculator-cta-card {
    display: none;
  }

  .calculator-controls {
    gap: 8px;
    padding: 11px;
    border-radius: 16px;
  }

  .calculator-control {
    padding: 9px;
    border-radius: 13px;
  }

  .calculator-control-main {
    grid-template-columns: 32px minmax(0, 1fr) minmax(94px, 116px);
    gap: 8px;
    align-items: center;
  }

  .calculator-control-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .calculator-control-icon svg {
    width: 20px;
    height: 20px;
  }

  .calculator-control-text label {
    font-size: 13px;
    line-height: 1.12;
  }

  .calculator-control-text p {
    display: none;
  }

  .calculator-number {
    grid-column: auto;
    min-height: 36px;
    padding: 8px;
    border-radius: 10px;
    font-size: 14px;
    text-align: right;
  }

  .calculator-slider {
    height: 5px;
    margin-top: 9px;
  }

  .calculator-slider::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }

  .calculator-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }

  .calculator-scale {
    margin-top: 5px;
    font-size: 9px;
  }

  .calculator-share-card {
    display: none;
  }
}

@media (max-width: 390px) {
  .header-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-cta {
    min-width: 138px;
    max-width: 150px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-benefit {
    min-height: 56px;
    padding: 7px 4px 6px;
  }

  .hero-benefit strong {
    font-size: 9px;
  }

  .problem-card {
    min-height: 164px;
    padding: 10px;
  }

  .problem-card h3 {
    font-size: 11.5px;
  }

  .income-calculator-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .calculator-control-main {
    grid-template-columns: 30px minmax(0, 1fr) minmax(88px, 104px);
  }

  .calculator-number {
    font-size: 13px;
  }
}

/* ===== Hero v2: shorter mobile-first offer ===== */
.header-cta {
  min-width: 0;
}

.header-cta-short {
  display: none;
}

.hero {
  height: auto;
  min-height: calc(100svh - var(--header-height, 74px));
  padding: clamp(40px, 6vw, 64px) 32px clamp(50px, 6vw, 70px);
  background:
    radial-gradient(circle at 84% 16%, rgba(13,121,242,0.12), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFE 66%, #F4F5F7 100%);
}

.hero::before {
  background-size: 42px 42px;
  opacity: 0.76;
}

.hero-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
}

.hero-content {
  gap: 17px;
  max-width: 720px;
}

.pre-headline {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  color: var(--brand-primary);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(218,229,244,0.76);
  border-radius: 999px;
  box-shadow:
    0 16px 40px rgba(15,18,23,0.045),
    inset 0 1px 0 rgba(255,255,255,0.88);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}

.pre-headline span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 6px rgba(13,121,242,0.09);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(50px, 5.4vw, 72px);
  line-height: 1.06;
}

.hero-title-line {
  display: block;
}

.hero-subtitle {
  max-width: 620px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.48;
}

.hero-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin-top: 4px;
}

.hero-benefit {
  min-height: 118px;
  gap: 9px;
  padding: 18px 16px;
}

.hero-benefit strong {
  max-width: 170px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.14;
}

.hero-benefit strong span {
  display: block;
  font-size: 14px;
  font-weight: 650;
}

.hero-benefit small {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.15;
}

.hero-benefit-primary strong {
  color: var(--brand-primary);
  font-size: 34px;
  line-height: 0.95;
}

.benefit-icon-team::before,
.benefit-icon-briefcase::before {
  content: '';
  width: 58px;
  height: 58px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.benefit-icon-team::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Ccircle cx='32' cy='25' r='9' stroke='%230D79F2' stroke-width='3.2'/%3E%3Cpath d='M17 52c1.8-10 8.2-15 15-15s13.2 5 15 15' stroke='%230D79F2' stroke-width='3.2' stroke-linecap='round'/%3E%3Ccircle cx='16' cy='29' r='6' stroke='%2377A7FF' stroke-width='3'/%3E%3Cpath d='M5 50c1.3-7.2 5.7-11 11-11 2.5 0 4.8.8 6.6 2.4' stroke='%2377A7FF' stroke-width='3' stroke-linecap='round'/%3E%3Ccircle cx='48' cy='29' r='6' stroke='%2377A7FF' stroke-width='3'/%3E%3Cpath d='M42 41.4c1.8-1.6 4.1-2.4 6.6-2.4 5.3 0 9.7 3.8 11 11' stroke='%2377A7FF' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.benefit-icon-briefcase::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Crect x='10' y='21' width='44' height='30' rx='6' stroke='%230D79F2' stroke-width='3.2'/%3E%3Cpath d='M24 21v-6h16v6M10 33h44M28 33v6h8v-6' stroke='%2377A7FF' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hero-mobile-showcase {
  display: none;
}

.hero-cta-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 760px;
  margin-top: 4px;
  padding: 20px 24px;
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(239,246,255,0.64)),
    rgba(255,255,255,0.52);
  border: 1px solid rgba(207,219,235,0.78);
  border-radius: 24px;
  box-shadow:
    0 24px 70px rgba(15,18,23,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.hero-cta-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.78), transparent 56%),
    rgba(13,121,242,0.08);
  border: 1px solid rgba(13,121,242,0.14);
}

.hero-cta-card h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.18;
}

.hero-cta-card p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.48;
}

.hero-cta-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--brand-primary);
  font-size: 18px;
  font-weight: 750;
  line-height: 1;
}

.hero-cta-card a span {
  font-size: 28px;
  line-height: 0.7;
}

@media (min-width: 769px) {
  .hero-visual-bg {
    background:
      url('img/hero-metal-bg.webp') right top / min(1020px, 88vw) auto no-repeat;
    opacity: 0.98;
  }
}

@media (max-width: 680px) {
  :root { --header-height: 76px; }

  .header-inner {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 10px 20px;
  }

  .header-cta {
    width: auto;
    min-width: 170px;
    max-width: 196px;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.08;
  }

  .hero {
    height: auto;
    min-height: auto;
    display: block;
    padding: 32px 20px 28px;
    background:
      radial-gradient(circle at 86% 18%, rgba(13,121,242,0.11), transparent 34%),
      linear-gradient(180deg, #FFFFFF 0%, #F7FAFE 58%, #F4F7FB 100%);
  }

  .hero::before {
    opacity: 0.62;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.88) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.88) 70%, transparent 100%);
  }

  .hero::after {
    content: '';
    position: absolute;
    right: -130px;
    top: 360px;
    width: 470px;
    height: 310px;
    pointer-events: none;
    background: url('img/hero-metal-bg.webp') right center / cover no-repeat;
    opacity: 0.22;
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.64) 28%, #000 52%, #000 100%),
      linear-gradient(180deg, transparent 0%, #000 12%, #000 80%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.64) 28%, #000 52%, #000 100%),
      linear-gradient(180deg, transparent 0%, #000 12%, #000 80%, transparent 100%);
    -webkit-mask-composite: source-in;
  }

  .hero-inner {
    display: block;
    width: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    overflow: visible;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    max-height: none;
    gap: 12px;
    overflow: visible;
  }

  .pre-headline {
    padding: 10px 14px;
    gap: 9px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .pre-headline span {
    width: 9px;
    height: 9px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.12;
  }

  .hero h1 .hero-title-line:last-child {
    white-space: nowrap;
  }

  .hero h1 .accent {
    display: inline;
  }

  .hero-subtitle {
    max-width: 335px;
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    max-width: none;
    margin-top: 2px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-benefit {
    min-height: 102px;
    justify-content: flex-start;
    gap: 6px;
    padding: 0 8px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-benefit + .hero-benefit {
    border-left: 1px solid rgba(151,174,207,0.36);
  }

  .hero-benefit:nth-child(2n),
  .hero-benefit:nth-child(n+3) {
    border-top: 0;
    border-right: 0;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.72), rgba(235,244,255,0.70)),
      rgba(13,121,242,0.08);
    border: 1px solid rgba(13,121,242,0.12);
    box-shadow:
      0 14px 34px rgba(13,121,242,0.08),
      inset 0 1px 0 rgba(255,255,255,0.92);
  }

  .benefit-icon-share::before,
  .benefit-icon-team::before,
  .benefit-icon-briefcase::before {
    width: 30px;
    height: 30px;
  }

  .hero-benefit strong {
    max-width: 104px;
    font-size: 15px;
    line-height: 1.08;
  }

  .hero-benefit strong span {
    margin-top: 2px;
    font-size: 12px;
  }

  .hero-benefit-primary strong {
    font-size: 29px;
  }

  .hero-benefit small {
    max-width: 108px;
    font-size: 11px;
    line-height: 1.12;
  }

  .hero-mobile-showcase {
    position: relative;
    display: block;
    height: 190px;
    margin: -8px -20px 0;
    overflow: hidden;
    border: 1px solid rgba(207,219,235,0.74);
    border-radius: 18px;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0.04) 100%),
      url('img/hero-russia-map.webp') 57% 50% / 455px auto no-repeat,
      linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,248,255,0.86));
    box-shadow:
      0 18px 44px rgba(15,18,23,0.055),
      inset 0 1px 0 rgba(255,255,255,0.86);
  }

  .hero-mobile-showcase::before {
    content: '';
    position: absolute;
    left: -78px;
    bottom: -18px;
    width: 362px;
    height: 226px;
    pointer-events: none;
    background: url('img/hero-metal-roll-clean.webp') left bottom / contain no-repeat;
    filter: none;
    mix-blend-mode: normal;
    mask-image: none;
    -webkit-mask-image: none;
    opacity: 1;
    z-index: 2;
  }

  .hero-mobile-showcase::after {
    display: none;
  }

  .hero-mobile-card {
    display: none;
  }

  .hero-mobile-flow {
    display: none;
  }

  .hero-cta-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    max-width: none;
    margin-top: -10px;
    padding: 13px 14px 14px;
    border-radius: 18px;
  }

  .hero-cta-card-icon {
    width: 42px;
    height: 42px;
  }

  .hero-cta-card-icon::before {
    width: 25px;
    height: 25px;
  }

  .hero-cta-card h2 {
    max-width: 282px;
    font-size: 17.5px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .hero-cta-card p {
    max-width: 292px;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.3;
  }

  .hero-cta-card a {
    margin-top: 9px;
    font-size: 15px;
  }

  .hero-cta-card a span {
    font-size: 23px;
  }

  .hero-visual,
  .hero-cta {
    display: none;
  }
}

@media (max-width: 380px) {
  .header-cta {
    min-width: 126px;
    max-width: 136px;
  }

  .header-cta-full {
    display: none;
  }

  .header-cta-short {
    display: inline;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero-subtitle {
    font-size: 14.5px;
  }

  .hero-benefit {
    padding-left: 6px;
    padding-right: 6px;
  }

  .hero-benefit strong {
    font-size: 15px;
  }

  .hero-benefit-primary strong {
    font-size: 28px;
  }

  .hero-mobile-showcase {
    height: 178px;
    background-size: auto, 420px auto, auto;
    background-position: 0 0, 57% 50%, 0 0;
  }

  .hero-mobile-showcase::before {
    left: -82px;
    bottom: -15px;
    width: 338px;
    height: 206px;
  }
}

/* ===== Problem section aligned to Hero scale ===== */
.problem-section {
  padding: 42px 32px 48px;
  background:
    radial-gradient(circle at 86% 18%, rgba(13,121,242,0.08), transparent 34%),
    linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 58%, #F4F7FB 100%);
}

.problem-inner {
  max-width: 980px;
}

.problem-overline {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 10px 14px;
  color: var(--brand-primary);
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(13,121,242,0.12);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(13,121,242,0.06);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.problem-overline span {
  width: 9px;
  height: 9px;
  color: transparent;
  background: var(--brand-primary);
  border-radius: 50%;
  font-size: 0;
}

.problem-head {
  max-width: 720px;
  margin-bottom: 0;
}

.problem-head h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(34px, 4.1vw, 52px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: 0;
}

.problem-head h2 span {
  color: var(--brand-primary);
}

.problem-head p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.45;
}

.pain-card {
  max-width: 760px;
  margin-top: 22px;
  padding: 0 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(239,246,255,0.62)),
    rgba(255,255,255,0.58);
  border: 1px solid rgba(207,219,235,0.78);
  border-radius: 22px;
  box-shadow:
    0 22px 58px rgba(15,18,23,0.055),
    inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.pain-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
}

.pain-item + .pain-item {
  border-top: 1px solid rgba(151,174,207,0.24);
}

.pain-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(235,244,255,0.70)),
    rgba(13,121,242,0.08);
  border: 1px solid rgba(13,121,242,0.12);
  border-radius: 14px;
  box-shadow:
    0 12px 28px rgba(13,121,242,0.07),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.pain-icon svg,
.pain-accent-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-item h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: 0;
}

.pain-item p {
  max-width: 570px;
  margin: 7px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.38;
}

.pain-accent {
  max-width: 760px;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(239,246,255,0.64)),
    rgba(255,255,255,0.52);
  border: 1px solid rgba(207,219,235,0.78);
  border-radius: 18px;
  box-shadow:
    0 18px 44px rgba(15,18,23,0.055),
    inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.pain-accent-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.78), transparent 56%),
    rgba(13,121,242,0.08);
  border: 1px solid rgba(13,121,242,0.14);
  border-radius: 50%;
}

.pain-accent-icon svg {
  width: 25px;
  height: 25px;
}

.pain-accent h3 {
  max-width: 520px;
  margin: 0;
  color: var(--text-primary);
  font-size: 17.5px;
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: 0;
}

.pain-accent p {
  max-width: 460px;
  margin: 6px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.3;
}

.pain-accent a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  color: var(--brand-primary);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.pain-accent a span {
  font-size: 23px;
  line-height: 0.7;
}

@media (max-width: 680px) {
  .problem-section {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    padding: 30px 16px 32px;
  }

  .problem-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .problem-overline {
    margin-bottom: 12px;
    padding: 10px 14px;
    gap: 9px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .problem-overline span {
    width: 9px;
    height: 9px;
  }

  .problem-head h2 {
    max-width: 350px;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.12;
  }

  .problem-head p {
    max-width: 335px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.48;
  }

  .pain-card {
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
    padding: 0 14px;
    border-radius: 18px;
  }

  .pain-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }

  .pain-icon {
    width: 42px;
    height: 42px;
  }

  .pain-icon svg {
    width: 25px;
    height: 25px;
  }

  .pain-item h3 {
    font-size: 16px;
    line-height: 1.15;
  }

  .pain-item p {
    margin-top: 5px;
    font-size: 12.5px;
    line-height: 1.32;
  }

  .pain-accent {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 14px 14px;
    border-radius: 18px;
  }

  .pain-accent h3 {
    max-width: 282px;
    font-size: 17.5px;
    line-height: 1.12;
  }

  .pain-accent p {
    max-width: 292px;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.3;
  }

  .pain-accent a {
    margin-top: 9px;
    font-size: 15px;
  }
}

/* ===== Final hero-scale override for PainSection ===== */
.problem-section {
  padding-top: 42px;
  padding-bottom: 46px;
}

.problem-head {
  max-width: 720px;
}

.problem-head h2 {
  max-width: 680px;
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 1.1;
}

.problem-head p {
  max-width: 540px;
  font-size: 16px;
  line-height: 1.45;
}

.pain-card {
  max-width: 760px;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 22px;
}

.pain-item {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
}

.pain-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

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

.pain-item h3 {
  font-size: 18px;
  line-height: 1.18;
}

.pain-item p {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.38;
}

.pain-accent {
  max-width: 760px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
}

.pain-accent-icon {
  width: 42px;
  height: 42px;
}

.pain-accent-icon svg {
  width: 25px;
  height: 25px;
}

.pain-accent h3 {
  max-width: 520px;
  font-size: 17.5px;
  line-height: 1.12;
}

.pain-accent p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.3;
}

.pain-accent a {
  margin-top: 9px;
  font-size: 15px;
}

@media (max-width: 680px) {
  .problem-section {
    padding: 30px 16px 32px;
  }

  .problem-overline {
    margin-bottom: 12px;
    padding: 10px 14px;
    gap: 9px;
    font-size: 11px;
    line-height: 1;
  }

  .problem-overline span {
    width: 9px;
    height: 9px;
  }

  .problem-head h2 {
    max-width: 350px;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.12;
  }

  .problem-head p {
    max-width: 335px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.48;
  }

  .pain-card {
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
    padding: 0 14px;
    border-radius: 18px;
  }

  .pain-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }

  .pain-icon {
    width: 42px;
    height: 42px;
  }

  .pain-icon svg {
    width: 25px;
    height: 25px;
  }

  .pain-item h3 {
    font-size: 16px;
    line-height: 1.15;
  }

  .pain-item p {
    margin-top: 5px;
    font-size: 12.5px;
    line-height: 1.32;
  }

  .pain-accent {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 10px;
    padding: 13px 14px 14px;
    border-radius: 18px;
  }

  .pain-accent h3 {
    max-width: 282px;
    font-size: 17.5px;
    line-height: 1.12;
  }

  .pain-accent p {
    max-width: 292px;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.3;
  }

  .pain-accent a {
    margin-top: 9px;
    font-size: 15px;
  }
}

/* ===== Match PainSection header to mobile Hero header exactly ===== */
@media (max-width: 680px) {
  .problem-section {
    padding-top: 30px;
  }

  .problem-overline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--brand-primary);
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(13,121,242,0.12);
    box-shadow: 0 12px 30px rgba(13,121,242,0.06);
  }

  .problem-overline span {
    width: 9px;
    height: 9px;
    display: block;
    flex: 0 0 9px;
    background: var(--brand-primary);
    border-radius: 50%;
  }

  .problem-head h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 34px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .problem-head p {
    max-width: 335px;
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.48;
  }

  .pain-card {
    margin-top: 14px;
  }
}

/* ===== Exact mobile sizing parity with Hero ===== */
@media (max-width: 680px) {
  .problem-overline {
    padding: 10px 14px;
    gap: 9px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    border-radius: 999px;
  }

  .problem-overline span {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
  }

  .problem-head h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 34px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .problem-head h2 span {
    display: inline;
  }

  .problem-head p {
    max-width: 335px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.48;
  }

  .pain-card {
    margin-top: 14px;
    padding: 0 14px;
    border-radius: 18px;
  }

  .pain-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
  }

  .pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

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

  .pain-item h3 {
    font-size: 15px;
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .pain-item p {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.12;
  }

  .pain-accent {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 10px;
    padding: 13px 14px 14px;
    border-radius: 18px;
  }

  .pain-accent-icon {
    width: 42px;
    height: 42px;
  }

  .pain-accent-icon svg {
    width: 25px;
    height: 25px;
  }

  .pain-accent h3 {
    max-width: 282px;
    font-size: 17.5px;
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .pain-accent p {
    max-width: 292px;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.3;
  }

  .pain-accent a {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1;
  }
}

@media (max-width: 380px) {
  .problem-head h2 {
    font-size: 29px;
  }

  .pain-item h3 {
    font-size: 15px;
  }
}

/* ===== Compact density pass for post-hero sections ===== */
.problem-section {
  padding: clamp(44px, 5vw, 68px) 32px clamp(48px, 5.4vw, 72px);
  background:
    radial-gradient(circle at 86% 10%, rgba(13,121,242,0.08), transparent 30%),
    linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 46%, #F4F7FC 100%);
}

.problem-section::after {
  opacity: 0.08;
}

.problem-inner {
  max-width: 1040px;
}

.problem-head {
  max-width: 820px;
}

.problem-overline {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px 8px 10px;
  color: var(--brand-primary);
  background: rgba(231,241,254,0.92);
  border: 1px solid rgba(13,121,242,0.12);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(13,121,242,0.08);
}

.problem-overline span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand-primary);
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
}

.problem-head h2 {
  max-width: 780px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.08;
}

.problem-head h2 span {
  color: var(--brand-primary);
}

.problem-head p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.55;
}

.pain-card {
  margin-top: 34px;
  padding: 20px 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82)),
    rgba(255,255,255,0.9);
  border: 1px solid rgba(210,223,241,0.76);
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(15,18,23,0.07),
    inset 0 1px 0 rgba(255,255,255,0.94);
}

.pain-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 30px 0;
}

.pain-item + .pain-item {
  border-top: 1px solid rgba(213,225,241,0.9);
}

.pain-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(240,247,255,0.68)),
    #F3F8FF;
  border: 1px solid rgba(13,121,242,0.13);
  border-radius: 24px;
  box-shadow:
    0 14px 32px rgba(13,121,242,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.pain-icon svg,
.pain-accent-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-item h3 {
  max-width: 580px;
  margin: 0;
  color: var(--text-primary);
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 0;
}

.pain-item p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.52;
}

.pain-accent {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 34px;
  background:
    linear-gradient(135deg, rgba(231,241,254,0.96), rgba(242,247,255,0.9)),
    #EEF5FF;
  border: 1px solid rgba(188,212,244,0.74);
  border-radius: 28px;
  box-shadow: 0 20px 54px rgba(13,121,242,0.08);
}

.pain-accent-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(13,121,242,0.22);
}

.pain-accent h3 {
  max-width: 650px;
  margin: 0;
  color: var(--text-primary);
  font-size: 27px;
  line-height: 1.22;
}

.pain-accent p {
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.4;
}

.pain-accent a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--brand-primary);
  font-size: 19px;
  font-weight: 800;
}

.pain-accent a span {
  font-size: 28px;
  line-height: 1;
}

.problem-section,
.income-calculator-section,
.infrastructure-section,
.career-path-section,
.how-it-works-section,
.closed-beta-section,
.final-cta-section {
  padding-top: clamp(48px, 5.4vw, 72px);
  padding-bottom: clamp(52px, 5.8vw, 76px);
}

.problem-head,
.income-calculator-head,
.infrastructure-head,
.career-path-head,
.closed-beta-head {
  margin-bottom: 22px;
}

.problem-head p,
.income-calculator-head p,
.infrastructure-head p,
.career-path-head p,
.how-it-works-subtitle,
.closed-beta-head p,
.final-cta-copy p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.45;
}

.problem-head h2,
.income-calculator-head h2,
.infrastructure-head h2,
.career-path-head h2,
.how-it-works-copy h2,
.closed-beta-head h2,
.final-cta-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
}

.problem-card,
.infrastructure-card,
.career-path-card,
.closed-beta-main-card,
.closed-beta-benefits-card,
.final-form-card,
.final-cta-steps {
  border-radius: 18px;
}

.problem-card {
  min-height: 196px;
  padding: 18px;
  gap: 12px;
}

.problem-card h3 {
  font-size: 18px;
  line-height: 1.22;
}

.problem-proof {
  min-height: 58px;
}

.problem-accent,
.infrastructure-accent,
.career-path-accent,
.how-it-works-accent,
.closed-beta-accent {
  min-height: 0;
  padding: 18px 22px;
  border-radius: 18px;
}

.income-calculator-shell,
.infrastructure-layout,
.career-path-grid,
.closed-beta-layout {
  gap: 12px;
}

.calculator-controls,
.calculator-results {
  padding: 18px;
  border-radius: 18px;
}

.calculator-control {
  padding: 14px;
}

.calculator-control-text p,
.infrastructure-card p,
.infrastructure-main-card p,
.closed-beta-note,
.closed-beta-cta small,
.form-consent {
  line-height: 1.35;
}

.infrastructure-card {
  min-height: 116px;
  padding: 16px;
  gap: 12px;
}

.infrastructure-card h3,
.infrastructure-main-card h3 {
  font-size: 18px;
}

.infrastructure-main-card {
  min-height: 0;
  padding: 18px;
}

.supplier-row {
  padding: 10px 12px;
}

.career-path-card {
  padding: 20px;
}

.career-path-card ul {
  gap: 10px;
  margin-top: 18px;
}

.career-path-note {
  margin-top: 18px;
  padding-top: 14px;
}

.how-it-works-section {
  min-height: 0;
}

.how-it-works-inner {
  gap: 28px;
}

.how-it-works-copy {
  gap: 16px;
}

.how-step {
  min-height: 0;
  padding: 18px;
}

.closed-beta-main-card,
.closed-beta-benefits-card {
  padding: 22px;
}

.closed-beta-benefits {
  gap: 10px;
}

.closed-beta-benefit {
  min-height: 58px;
  padding: 12px;
}

.final-cta-section {
  min-height: 0;
}

.final-cta-inner {
  gap: 18px;
}

.final-cta-copy,
.final-cta-steps,
.final-form-card {
  padding: 24px;
}

@media (max-width: 680px) {
  *,
  *::before,
  *::after {
    max-width: 100%;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .header-inner,
  .hero,
  .hero-inner,
  .hero-content,
  .problem-inner,
  .income-calculator-inner,
  .infrastructure-inner,
  .career-path-inner,
  .how-it-works-inner,
  .closed-beta-inner,
  .final-cta-inner {
    max-width: 100%;
    min-width: 0;
  }

  .header,
  .hero,
  .problem-section,
  .income-calculator-section,
  .infrastructure-section,
  .career-path-section,
  .how-it-works-section,
  .closed-beta-section,
  .final-cta-section {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .header {
    position: fixed;
  }

  .header-inner {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
    gap: 10px;
  }

  .header-right {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 92px;
    max-width: 92px;
  }

  .header-cta {
    width: 92px;
    min-width: 0;
    max-width: 92px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
  }

  .header-cta-full {
    display: none;
  }

  .header-cta-short {
    display: inline;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-benefits,
  .problem-grid,
  .calculator-compare,
  .infrastructure-layout,
  .career-path-grid,
  .closed-beta-layout,
  .closed-beta-benefits {
    width: 100%;
    min-width: 0;
  }

  .problem-grid,
  .income-calculator-shell,
  .calculator-controls,
  .calculator-results,
  .infrastructure-layout,
  .career-path-grid,
  .how-it-works-timeline,
  .closed-beta-layout,
  .final-cta-inner {
    max-width: calc(100vw - 32px);
  }

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

  .hero-benefit {
    padding-left: 4px;
    padding-right: 4px;
  }

  .hero-benefit,
  .problem-card,
  .calculator-result-mini,
  .calculator-control,
  .infrastructure-card,
  .career-path-card,
  .closed-beta-benefit,
  .final-step {
    min-width: 0;
  }

  .hero-benefit strong,
  .problem-card h3,
  .infrastructure-card h3,
  .career-path-card h3,
  .closed-beta-benefit p {
    overflow-wrap: anywhere;
  }

  .problem-section,
  .income-calculator-section,
  .infrastructure-section,
  .career-path-section,
  .how-it-works-section,
  .closed-beta-section,
  .final-cta-section {
    padding: 30px 16px 36px;
  }

  .problem-section {
    padding-top: 36px;
    padding-bottom: 34px;
  }

  .problem-section::after,
  .income-calculator-section::after,
  .infrastructure-section::after,
  .career-path-section::after,
  .how-it-works-section::after,
  .closed-beta-section::after,
  .final-cta-section::after {
    opacity: 0.08;
  }

  .problem-head,
  .income-calculator-head,
  .infrastructure-head,
  .career-path-head,
  .closed-beta-head {
    margin-bottom: 14px;
  }

  .problem-overline,
  .income-calculator-overline,
  .infrastructure-overline,
  .career-path-overline,
  .how-it-works-overline,
  .closed-beta-overline,
  .final-cta-overline {
    margin-bottom: 8px;
    font-size: 9.5px;
    letter-spacing: 0.06em;
  }

  .problem-overline {
    gap: 7px;
    margin-bottom: 14px;
    padding: 6px 11px 6px 7px;
    font-size: 11px;
  }

  .problem-overline span {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .problem-head h2,
  .income-calculator-head h2,
  .infrastructure-head h2,
  .career-path-head h2,
  .how-it-works-copy h2,
  .closed-beta-head h2,
  .final-cta-copy h2 {
    font-size: clamp(26px, 7.6vw, 32px);
    line-height: 1.04;
  }

  .problem-head h2 {
    max-width: 350px;
    font-size: clamp(36px, 10.8vw, 44px);
    line-height: 1.12;
  }

  .problem-head p,
  .income-calculator-head p,
  .infrastructure-head p,
  .career-path-head p,
  .how-it-works-subtitle,
  .closed-beta-head p,
  .final-cta-copy p {
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.34;
  }

  .problem-head p {
    max-width: 342px;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.48;
  }

  .pain-card {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-top: 26px;
    padding: 10px 20px;
    border-radius: 22px;
    box-shadow:
      0 18px 50px rgba(15,18,23,0.064),
      inset 0 1px 0 rgba(255,255,255,0.94);
  }

  .pain-item {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 26px 0;
  }

  .pain-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .pain-icon svg {
    width: 34px;
    height: 34px;
  }

  .pain-item h3 {
    font-size: 21px;
    line-height: 1.2;
  }

  .pain-item p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.46;
  }

  .pain-accent {
    width: 100%;
    max-width: calc(100vw - 32px);
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    margin-top: 20px;
    padding: 20px;
    border-radius: 22px;
  }

  .pain-accent-icon {
    width: 54px;
    height: 54px;
  }

  .pain-accent-icon svg {
    width: 30px;
    height: 30px;
  }

  .pain-accent h3 {
    font-size: 21px;
    line-height: 1.24;
  }

  .pain-accent p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.38;
  }

  .pain-accent a {
    margin-top: 16px;
    font-size: 17px;
  }

  .pain-accent a span {
    font-size: 25px;
  }

  .problem-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .problem-card {
    min-height: 106px;
    padding: 10px;
    gap: 7px;
    border-radius: 14px;
  }

  .problem-card:nth-child(n+5) {
    display: none;
  }

  .problem-card-top {
    align-items: center;
  }

  .problem-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .problem-icon svg {
    width: 19px;
    height: 19px;
  }

  .problem-card h3 {
    font-size: 12px;
    line-height: 1.18;
  }

  .problem-proof {
    min-height: 38px;
    border-radius: 10px;
  }

  .problem-proof-percent div {
    padding: 6px;
  }

  .problem-proof-percent strong,
  .problem-proof-profit strong {
    font-size: 17px;
  }

  .problem-accent,
  .infrastructure-accent,
  .career-path-accent,
  .how-it-works-accent,
  .closed-beta-accent {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    margin-top: 10px;
    padding: 13px;
    border-radius: 14px;
  }

  .problem-accent-icon,
  .infrastructure-accent-icon,
  .career-path-accent-icon,
  .how-it-works-accent-icon,
  .closed-beta-accent-icon {
    width: 34px;
    height: 34px;
  }

  .problem-accent p,
  .infrastructure-accent p,
  .career-path-accent p,
  .how-it-works-accent p,
  .closed-beta-accent-copy p {
    padding-left: 10px;
    font-size: 13px;
    line-height: 1.3;
  }

  .income-calculator-section {
    min-height: 0;
  }

  .income-calculator-shell {
    gap: 8px;
  }

  .calculator-results {
    padding: 10px;
    border-radius: 14px;
  }

  .calculator-compare {
    gap: 5px;
  }

  .calculator-result-mini {
    padding: 8px;
  }

  .calculator-result-mini strong {
    font-size: clamp(15px, 4.2vw, 18px);
  }

  .calculator-difference {
    margin-top: 6px;
    padding: 8px;
  }

  .calculator-difference strong {
    font-size: clamp(20px, 6vw, 24px);
  }

  .calculator-controls {
    gap: 7px;
    padding: 9px;
    border-radius: 14px;
  }

  .calculator-control {
    padding: 8px;
    border-radius: 12px;
  }

  .calculator-control-main {
    grid-template-columns: 28px minmax(0, 1fr) minmax(78px, 94px);
    gap: 7px;
  }

  .calculator-control-icon {
    width: 28px;
    height: 28px;
  }

  .calculator-control-icon svg {
    width: 18px;
    height: 18px;
  }

  .calculator-control-text label {
    font-size: 12px;
  }

  .calculator-number {
    min-height: 32px;
    padding: 6px;
    font-size: 12px;
    min-width: 0;
    width: 100%;
  }

  .calculator-scale {
    font-size: 8px;
  }

  .infrastructure-layout,
  .infrastructure-side,
  .career-path-grid,
  .closed-beta-layout {
    gap: 8px;
  }

  .infrastructure-card {
    min-height: 0;
    grid-template-columns: 30px 1fr;
    padding: 10px;
    gap: 9px;
    border-radius: 14px;
  }

  .infrastructure-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .infrastructure-icon svg {
    width: 19px;
    height: 19px;
  }

  .infrastructure-card h3,
  .infrastructure-main-card h3 {
    font-size: 13px;
    line-height: 1.15;
  }

  .infrastructure-card p,
  .infrastructure-main-card p,
  .infrastructure-accent small {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.25;
  }

  .infrastructure-main-card {
    padding: 12px;
    border-radius: 14px;
  }

  .infrastructure-main-visual,
  .supplier-table {
    display: none;
  }

  .infrastructure-main-top {
    gap: 9px;
  }

  .infrastructure-main-icon {
    width: 34px;
    height: 34px;
  }

  .career-path-grid {
    grid-template-columns: 1fr;
  }

  .career-path-primary {
    order: -1;
  }

  .career-path-card {
    min-height: 0;
    padding: 13px;
    border-radius: 14px;
  }

  .career-path-card-top h3 {
    font-size: 16px;
  }

  .career-path-card ul {
    gap: 7px;
    margin-top: 10px;
  }

  .career-path-card li {
    font-size: 12.5px;
    line-height: 1.18;
  }

  .career-path-note {
    margin-top: 10px;
    padding-top: 9px;
    font-size: 12px;
  }

  .how-it-works-section {
    min-height: 0;
  }

  .how-it-works-inner {
    gap: 12px;
  }

  .how-it-works-copy {
    gap: 10px;
  }

  .how-it-works-actions {
    gap: 8px;
  }

  .how-it-works-actions .btn,
  .closed-beta-cta .btn,
  .access-form .btn {
    min-height: 48px;
    padding: 13px 18px;
    font-size: 14px;
  }

  .how-it-works-actions p {
    font-size: 11.5px;
  }

  .how-it-works-timeline {
    padding: 10px;
    border-radius: 14px;
  }

  .how-it-works-steps {
    gap: 8px;
  }

  .how-step {
    grid-template-columns: 26px 30px 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 12px;
  }

  .how-step h3 {
    font-size: 13px;
  }

  .how-step p {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.25;
  }

  .closed-beta-main-card,
  .closed-beta-benefits-card {
    padding: 13px;
    border-radius: 14px;
  }

  .closed-beta-main-content h3,
  .closed-beta-benefits-card h3 {
    font-size: 15px;
  }

  .closed-beta-places {
    margin-top: 8px;
  }

  .closed-beta-places strong {
    font-size: 44px;
  }

  .closed-beta-caption,
  .closed-beta-note {
    font-size: 11.5px;
  }

  .closed-beta-meter {
    height: 7px;
    gap: 3px;
  }

  .closed-beta-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .closed-beta-benefit {
    min-height: 44px;
    padding: 8px;
    gap: 7px;
    border-radius: 12px;
  }

  .closed-beta-benefit-icon {
    width: 22px;
    height: 22px;
  }

  .closed-beta-benefit p {
    font-size: 11px;
    line-height: 1.18;
  }

  .closed-beta-accent {
    grid-template-columns: 34px 1fr;
  }

  .closed-beta-cta {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .final-cta-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .final-cta-copy,
  .final-cta-steps,
  .final-form-card {
    padding: 14px;
    border-radius: 14px;
  }

  .final-cta-steps h3 {
    font-size: 13px;
  }

  .final-cta-steps ol {
    margin-top: 8px;
    gap: 6px;
  }

  .final-step {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .access-form {
    gap: 10px;
  }

  .form-field label {
    font-size: 12px;
  }

  .form-field input {
    min-height: 46px;
    padding: 12px 13px;
    font-size: 14px;
  }
}

/* ===== FinalCtaSection v2 ===== */
.final-cta-section {
  padding: clamp(54px, 6vw, 82px) 32px clamp(60px, 6.4vw, 90px);
  background:
    radial-gradient(circle at 18% 18%, rgba(13,121,242,0.08), transparent 30%),
    linear-gradient(180deg, #F6FAFF 0%, #FFFFFF 48%, #F4F8FE 100%);
}

.final-cta-section::before {
  opacity: 0.7;
}

.final-cta-section::after {
  display: none;
}

.final-cta-shell {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  grid-template-areas:
    "copy visual"
    "steps form"
    "insight form"
    "privacy privacy";
  gap: 22px 42px;
  padding: clamp(34px, 4.4vw, 58px);
  overflow: hidden;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 78% 8%, rgba(13,121,242,0.10), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(246,250,255,0.78)),
    rgba(255,255,255,0.76);
  border: 1px solid rgba(207,219,235,0.82);
  border-radius: 28px;
  box-shadow:
    0 28px 90px rgba(15,18,23,0.07),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.final-cta-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,121,242,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.58), transparent 72%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.58), transparent 72%);
}

.final-cta-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0;
}

.final-cta-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 11px 18px;
  color: var(--brand-primary);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(13,121,242,0.12);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(13,121,242,0.06);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.final-cta-overline span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 6px rgba(13,121,242,0.10);
}

.final-cta-copy h2 {
  max-width: 610px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(44px, 5.2vw, 70px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.final-cta-copy h2 span {
  display: block;
  color: var(--brand-primary);
}

.final-cta-copy p {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.48;
}

.final-cta-visual {
  grid-area: visual;
  position: relative;
  z-index: 1;
  min-height: 280px;
  align-self: start;
}

.final-cta-visual img {
  position: absolute;
  right: -86px;
  bottom: -18px;
  width: min(560px, 44vw);
  max-width: none;
  filter: drop-shadow(0 26px 38px rgba(15,18,23,0.12));
}

.final-growth-arrow {
  position: absolute;
  right: 12px;
  top: -8px;
  width: 260px;
  height: 150px;
  color: rgba(13,121,242,0.50);
  fill: none;
  stroke: currentColor;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 18px 24px rgba(13,121,242,0.14));
}

.final-margin-tag {
  position: absolute;
  right: 0;
  bottom: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 260px;
  padding: 16px 18px;
  color: #fff;
  background:
    linear-gradient(135deg, #0D79F2, #0B62E6),
    var(--brand-primary);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(13,121,242,0.28);
}

.final-margin-tag svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-margin-tag span {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.final-form-card {
  grid-area: form;
  position: relative;
  z-index: 2;
  align-self: start;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(248,251,255,0.76)),
    rgba(255,255,255,0.76);
  border: 1px solid rgba(207,219,235,0.86);
  border-radius: 24px;
  box-shadow:
    0 28px 80px rgba(15,18,23,0.09),
    inset 0 1px 0 rgba(255,255,255,0.96);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}

.final-form-card::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 330px;
  height: 330px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,121,242,0.12), transparent 62%);
}

.final-form-head h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.16;
}

.final-form-head p {
  margin: 6px 0 10px;
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.38;
}

.final-form-head p span {
  color: var(--brand-primary);
}

.final-form-card .access-form {
  gap: 14px;
}

.final-form-card .form-field label {
  font-size: 15px;
  font-weight: 600;
}

.final-form-card .form-field input {
  min-height: 62px;
  border-radius: 14px;
  background: rgba(255,255,255,0.82);
}

.final-form-card .access-form .btn {
  min-height: 64px;
  margin-top: 2px;
  border-radius: 14px;
  font-size: 18px;
  box-shadow: 0 18px 34px rgba(13,121,242,0.26);
}

.final-form-note {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.42;
}

.final-form-note span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.08);
  border: 1px solid rgba(13,121,242,0.12);
  border-radius: 8px;
}

.final-form-note svg,
.final-step-icon svg,
.final-cta-insight svg,
.final-privacy-note svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-form-note svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.final-cta-steps {
  grid-area: steps;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  max-width: 520px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.final-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 0;
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  counter-increment: none;
}

.final-step + .final-step {
  border-top: 1px solid rgba(207,219,235,0.76);
}

.final-step::before {
  display: none;
}

.final-step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.07);
  border: 1px solid rgba(13,121,242,0.11);
  border-radius: 50%;
}

.final-step-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.1;
}

.final-step h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.16;
}

.final-step p {
  margin: 7px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.42;
}

.final-cta-insight {
  grid-area: insight;
  position: relative;
  z-index: 2;
  max-width: 500px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 6px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(231,241,254,0.86), rgba(246,250,255,0.86));
  border: 1px solid rgba(207,219,235,0.76);
  border-radius: 18px;
}

.final-cta-insight span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 14px 24px rgba(13,121,242,0.20);
}

.final-cta-insight svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.final-cta-insight p {
  margin: 0;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.38;
}

.final-cta-insight strong {
  color: var(--brand-primary);
}

.final-privacy-note {
  grid-area: privacy;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 190px;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(231,241,254,0.82), rgba(246,250,255,0.86));
  border: 1px solid rgba(207,219,235,0.72);
  border-radius: 18px;
}

.final-privacy-note span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(13,121,242,0.10);
  border-radius: 50%;
}

.final-privacy-note span svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.1;
}

.final-privacy-note p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.46;
}

.final-privacy-note strong {
  color: var(--text-primary);
  font-weight: 650;
}

.final-privacy-note i {
  justify-self: end;
  width: 170px;
  height: 74px;
  opacity: 0.35;
  background:
    radial-gradient(circle at 78% 50%, rgba(13,121,242,0.12) 0 26px, transparent 27px),
    linear-gradient(90deg, transparent 0 14px, rgba(13,121,242,0.16) 14px 104px, transparent 104px),
    linear-gradient(90deg, transparent 26px, rgba(13,121,242,0.12) 26px 130px, transparent 130px),
    linear-gradient(90deg, transparent 44px, rgba(13,121,242,0.10) 44px 150px, transparent 150px);
  background-size: 100% 100%, 100% 12px, 100% 12px, 100% 12px;
  background-position: center, left 16px, left 34px, left 52px;
  background-repeat: no-repeat;
}

.final-form-success {
  min-height: 440px;
}

body.scroll-motion-ready .final-cta-copy[data-reveal],
body.scroll-motion-ready .final-form-card[data-reveal],
body.scroll-motion-ready .final-cta-steps[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none;
}

@media (max-width: 900px) {
  .final-cta-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "steps"
      "insight"
      "privacy";
  }

  .final-cta-visual {
    display: none;
  }

  .final-cta-steps,
  .final-cta-insight {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .final-cta-section {
    padding: 30px 16px 36px;
  }

  .final-cta-shell {
    gap: 12px;
    padding: 20px 14px;
    border-radius: 22px;
  }

  .final-cta-overline {
    gap: 9px;
    margin: 0 0 14px;
    padding: 10px 14px;
    font-size: 11px;
  }

  .final-cta-copy h2 {
    max-width: 335px;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.12;
  }

  .final-cta-copy p {
    max-width: 335px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.48;
  }

  .final-form-card {
    padding: 16px;
    border-radius: 18px;
  }

  .final-form-head h3 {
    font-size: 24px;
    line-height: 1.12;
  }

  .final-form-head p {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.34;
  }

  .final-form-card .access-form {
    gap: 10px;
  }

  .final-form-card .form-field label {
    font-size: 13px;
  }

  .final-form-card .form-field input {
    min-height: 52px;
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 14px;
  }

  .final-form-card .access-form .btn {
    min-height: 54px;
    padding: 13px 14px;
    font-size: 15px;
    line-height: 1.16;
  }

  .final-form-note {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.34;
  }

  .final-form-note span {
    width: 26px;
    height: 26px;
  }

  .final-cta-steps {
    gap: 0;
    margin-top: 2px;
  }

  .final-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
  }

  .final-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .final-step-icon svg {
    width: 27px;
    height: 27px;
  }

  .final-step h3 {
    font-size: 15px;
    line-height: 1.12;
  }

  .final-step p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.28;
  }

  .final-cta-insight {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 0;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .final-cta-insight span {
    width: 40px;
    height: 40px;
  }

  .final-cta-insight svg {
    width: 24px;
    height: 24px;
  }

  .final-cta-insight p {
    font-size: 13px;
    line-height: 1.28;
  }

  .final-privacy-note {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    margin-top: 2px;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .final-privacy-note span {
    width: 38px;
    height: 38px;
  }

  .final-privacy-note span svg {
    width: 24px;
    height: 24px;
  }

  .final-privacy-note p {
    font-size: 12px;
    line-height: 1.34;
  }

  .final-privacy-note i {
    display: none;
  }

  .final-form-success {
    min-height: 290px;
  }
}

/* ===== FINAL: PainSection must inherit mobile Hero scale ===== */
@media (max-width: 680px) {
  .problem-section {
    padding: 30px 16px 32px;
  }

  .problem-overline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--brand-primary);
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(13,121,242,0.12);
    box-shadow: 0 12px 30px rgba(13,121,242,0.06);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .problem-overline span {
    display: block;
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    color: transparent;
    background: var(--brand-primary);
    border-radius: 50%;
    font-size: 0;
  }

  .problem-head h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(30px, 8vw, 34px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .problem-head h2 span {
    display: inline;
  }

  .problem-head p {
    max-width: 335px;
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.48;
  }

  .pain-card {
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    padding: 0 14px;
    border-radius: 18px;
  }

  .pain-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
  }

  .pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

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

  .pain-item h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .pain-item p {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.12;
  }

  .pain-accent {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 10px;
    padding: 13px 14px 14px;
    border-radius: 18px;
  }

  .pain-accent-icon {
    width: 42px;
    height: 42px;
  }

  .pain-accent-icon svg {
    width: 25px;
    height: 25px;
  }

  .pain-accent h3 {
    max-width: 282px;
    margin: 0;
    font-size: 17.5px;
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .pain-accent p {
    max-width: 292px;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.3;
  }

  .pain-accent a {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1;
  }
}

@media (max-width: 380px) {
  .problem-head h2 {
    font-size: 29px;
  }
}

/* ===== First group CTA ===== */
.first-group-section {
  padding: 34px 32px 42px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FB 100%);
}

.first-group-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  padding: 54px;
  background:
    radial-gradient(circle at 86% 12%, rgba(13,121,242,0.12), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(235,244,255,0.78));
  border: 1px solid rgba(207,219,235,0.82);
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(15,18,23,0.065),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.first-group-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,121,242,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 80%);
}

.first-group-head,
.first-group-bonus,
.first-group-cards,
.first-group-btn,
.first-group-note {
  position: relative;
  z-index: 2;
}

.first-group-head {
  max-width: 560px;
}

.first-group-overline {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 10px 14px;
  color: var(--brand-primary);
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(13,121,242,0.12);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(13,121,242,0.06);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.first-group-overline span {
  width: 9px;
  height: 9px;
  background: var(--brand-primary);
  border-radius: 50%;
}

.first-group-head h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.first-group-head h2 span {
  color: var(--brand-primary);
}

.first-group-head p {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.55;
}

.first-group-bonus {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  display: block;
  padding: 30px;
  background:
    radial-gradient(circle at 88% 16%, rgba(13,121,242,0.18), transparent 34%),
    linear-gradient(135deg, rgba(235,244,255,0.96), rgba(255,255,255,0.88));
  border: 1px solid rgba(13,121,242,0.20);
  border-radius: 22px;
  box-shadow:
    0 22px 56px rgba(13,121,242,0.12),
    inset 0 1px 0 rgba(255,255,255,0.94);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

/* ===== Final CTA desktop cleanup ===== */
@media (min-width: 901px) {
  .final-cta-section {
    padding-top: 34px !important;
    padding-bottom: 42px !important;
    background:
      radial-gradient(circle at 82% 14%, rgba(13,121,242,0.08), transparent 32%),
      linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 100%) !important;
  }

  .final-cta-shell {
    display: grid !important;
    grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr) !important;
    grid-template-areas:
      "copy form"
      "steps form"
      "insight insight"
      "privacy privacy" !important;
    gap: 20px 44px !important;
    align-items: start !important;
    padding: 54px !important;
    background:
      radial-gradient(circle at 88% 12%, rgba(13,121,242,0.10), transparent 32%),
      linear-gradient(135deg, rgba(255,255,255,0.94), rgba(235,244,255,0.72)) !important;
    border-radius: 28px !important;
  }

  .final-cta-visual {
    display: none !important;
  }

  .final-cta-copy {
    max-width: 100% !important;
  }

  .final-cta-copy h2 {
    max-width: 720px !important;
    font-size: clamp(42px, 4.4vw, 58px) !important;
    font-weight: 700 !important;
    line-height: 1.04 !important;
  }

  .final-cta-copy p {
    max-width: 680px !important;
    margin-top: 18px !important;
    font-size: 18px !important;
    line-height: 1.55 !important;
  }

  .final-form-card {
    align-self: start !important;
    padding: 28px !important;
    border-radius: 22px !important;
    box-shadow:
      0 22px 60px rgba(15,18,23,0.07),
      inset 0 1px 0 rgba(255,255,255,0.94) !important;
  }

  .final-form-head h3 {
    font-size: 28px !important;
  }

  .final-form-head p {
    font-size: 16px !important;
  }

  .final-form-card .form-field input {
    min-height: 56px !important;
  }

  .final-form-card .access-form .btn {
    min-height: 58px !important;
    font-size: 16px !important;
  }

  .final-cta-steps {
    max-width: 720px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 2px;
  }

  .final-step {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 14px !important;
    min-height: 126px;
    background: rgba(255,255,255,0.72) !important;
    border: 1px solid rgba(207,219,235,0.78) !important;
    border-radius: 16px !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9) !important;
  }

  .final-step + .final-step {
    border-top: 1px solid rgba(207,219,235,0.78) !important;
  }

  .final-step-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 13px !important;
  }

  .final-step-icon svg {
    width: 25px !important;
    height: 25px !important;
  }

  .final-step h3 {
    font-size: 16px !important;
    line-height: 1.18 !important;
  }

  .final-step p {
    margin-top: 5px !important;
    font-size: 13px !important;
    line-height: 1.32 !important;
  }

  .final-cta-insight {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    padding: 22px 28px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    text-align: center !important;
    background:
      radial-gradient(circle at 18% 50%, rgba(13,121,242,0.14), transparent 32%),
      linear-gradient(135deg, rgba(231,241,254,0.96), rgba(255,255,255,0.86)) !important;
    border: 1px solid rgba(13,121,242,0.18) !important;
    box-shadow:
      0 18px 44px rgba(13,121,242,0.10),
      inset 0 1px 0 rgba(255,255,255,0.92) !important;
  }

  .final-cta-insight span {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
  }

  .final-cta-insight p {
    max-width: 560px !important;
    margin: 0 !important;
    color: var(--text-primary) !important;
    font-size: 22px !important;
    font-weight: 750 !important;
    line-height: 1.28 !important;
  }

  .final-cta-insight strong {
    color: var(--brand-primary) !important;
    font-weight: 800 !important;
  }

  .final-privacy-note {
    margin-top: 0 !important;
  }
}

.first-group-bonus::before {
  content: '';
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 16px;
}

.first-group-bonus strong {
  display: block;
  color: var(--brand-primary);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.first-group-bonus p {
  max-width: 280px;
  margin: 16px 0 0;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.32;
}

.first-group-bonus img {
  display: none !important;
}

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

.first-group-cards article {
  min-height: 178px;
  padding: 22px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(207,219,235,0.78);
  border-radius: 18px;
  box-shadow:
    0 18px 44px rgba(15,18,23,0.055),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.first-group-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(235,244,255,0.70)),
    rgba(13,121,242,0.08);
  border: 1px solid rgba(13,121,242,0.12);
  border-radius: 14px;
}

.first-group-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.first-group-cards h3 {
  margin: 22px 0 0;
  color: var(--brand-primary);
  font-size: 20px;
  line-height: 1.15;
}

.first-group-cards p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.42;
}

.first-group-btn {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
  color: #fff;
  background: var(--brand-primary);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(13,121,242,0.26);
  font-size: 22px;
  font-weight: 800;
}

.first-group-btn span {
  font-size: 32px;
  line-height: 1;
}

.first-group-note {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 900px) {
  .first-group-bonus {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 22px;
  }

  .first-group-cards {
    margin-top: 18px;
  }
}

@media (max-width: 680px) {
  .first-group-section {
    padding: 28px 16px 34px;
  }

  .first-group-inner {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .first-group-overline {
    margin-bottom: 12px;
    padding: 10px 14px;
    gap: 9px;
    font-size: 11px;
  }

  .first-group-head h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.12;
  }

  .first-group-head p {
    max-width: 335px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.48;
  }

  .first-group-bonus {
    min-height: 160px;
    margin-top: 14px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .first-group-bonus strong {
    font-size: 42px;
  }

  .first-group-bonus p {
    max-width: 180px;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.3;
  }

  .first-group-bonus img {
    right: -54px;
    bottom: -46px;
    width: 238px;
  }

  .first-group-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .first-group-cards article {
    min-height: 132px;
    padding: 10px;
    border-radius: 14px;
  }

  .first-group-icon {
    width: 42px;
    height: 42px;
  }

  .first-group-icon svg {
    width: 25px;
    height: 25px;
  }

  .first-group-cards h3 {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.12;
  }

  .first-group-cards p {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.18;
  }

  .first-group-btn {
    min-height: 54px;
    margin-top: 14px;
    gap: 10px;
    border-radius: 14px;
    font-size: 15px;
  }

  .first-group-btn span {
    font-size: 24px;
  }

  .first-group-note {
    max-width: 300px;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.35;
  }
}

/* ===== How to join section ===== */
.how-to-join-section {
  padding: 34px 32px 48px;
  background: linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 100%);
}

.how-to-join-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 56px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(207,219,235,0.78);
  border-radius: 30px;
  box-shadow:
    0 24px 70px rgba(15,18,23,0.055),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.how-to-join-overline {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 10px 14px;
  color: var(--brand-primary);
  background: rgba(231,241,254,0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.how-to-join-overline span {
  width: 9px;
  height: 9px;
  background: var(--brand-primary);
  border-radius: 50%;
}

.how-to-join-head h2 {
  max-width: 710px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.how-to-join-head h2 span {
  color: var(--brand-primary);
}

.how-to-join-head p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.5;
}

.join-steps {
  position: relative;
  margin-top: 36px;
}

.join-steps::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 44px;
  bottom: 44px;
  width: 1px;
  background: rgba(151,174,207,0.42);
}

.join-step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 86px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 18px 0;
}

.join-step + .join-step {
  border-top: 1px solid rgba(213,225,241,0.72);
}

.join-step-number {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: #fff;
  border: 1px solid rgba(151,174,207,0.42);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(13,121,242,0.06);
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.join-step-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(235,244,255,0.72)),
    rgba(13,121,242,0.08);
  border: 1px solid rgba(13,121,242,0.1);
  border-radius: 18px;
}

.join-step-icon svg,
.join-accent-icon svg,
.join-note svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.join-step-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.1;
}

.join-step h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 24px;
  line-height: 1.18;
}

.join-step p {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.48;
}

.join-accent {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(231,241,254,0.92), rgba(243,248,255,0.92));
  border: 1px solid rgba(207,219,235,0.75);
  border-radius: 18px;
}

.join-accent-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(255,255,255,0.58);
  border-radius: 50%;
}

.join-accent-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.1;
}

.join-accent h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 21px;
  line-height: 1.2;
}

.join-accent p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.35;
}

.join-btn {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  color: #fff;
  background: var(--brand-primary);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(13,121,242,0.24);
  font-size: 22px;
  font-weight: 800;
}

.join-btn span {
  font-size: 32px;
  line-height: 1;
}

.join-note {
  max-width: 560px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin: 22px auto 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.42;
  text-align: left;
}

.join-note span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(231,241,254,0.9);
  border-radius: 50%;
}

.join-note svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

@media (max-width: 680px) {
  .how-to-join-section {
    padding: 28px 16px 36px;
  }

  .how-to-join-inner {
    padding: 20px 14px;
    border-radius: 22px;
  }

  .how-to-join-overline {
    margin-bottom: 14px;
    padding: 10px 14px;
    gap: 9px;
    font-size: 11px;
  }

  .how-to-join-head h2 {
    max-width: 350px;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.12;
  }

  .how-to-join-head p {
    max-width: 335px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.48;
  }

  .join-steps {
    margin-top: 20px;
  }

  .join-steps::before {
    left: 25px;
    top: 34px;
    bottom: 34px;
  }

  .join-step {
    grid-template-columns: 50px 58px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
  }

  .join-step-number {
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .join-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .join-step-icon svg {
    width: 30px;
    height: 30px;
  }

  .join-step h3 {
    font-size: 16px;
    line-height: 1.15;
  }

  .join-step p {
    margin-top: 5px;
    font-size: 12.5px;
    line-height: 1.34;
  }

  .join-accent {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 16px;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .join-accent-icon {
    width: 42px;
    height: 42px;
  }

  .join-accent-icon svg {
    width: 25px;
    height: 25px;
  }

  .join-accent h3 {
    font-size: 15px;
    line-height: 1.12;
  }

  .join-accent p {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.28;
  }

  .join-btn {
    min-height: 54px;
    margin-top: 14px;
    gap: 10px;
    border-radius: 14px;
    font-size: 15px;
  }

  .join-btn span {
    font-size: 24px;
  }

  .join-note {
    max-width: 310px;
    gap: 10px;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.35;
  }

  .join-note span {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
}

/* ===== FINAL: fixed header and visible CTA label ===== */
.header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

body {
  padding-top: var(--header-height, 74px);
}

.header-cta-full,
.header-cta-short {
  white-space: nowrap;
}

@media (max-width: 680px) {
  .header-right {
    width: 150px;
    max-width: 150px;
  }

  .header-cta {
    width: 150px;
    max-width: 150px;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .header-right {
    width: 138px;
    max-width: 138px;
  }

  .header-cta {
    width: 138px;
    max-width: 138px;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }
}

/* ===== DESKTOP POLISH: keep mobile untouched ===== */
@media (min-width: 901px) {
  body {
    padding-top: var(--header-height, 74px);
  }

  .header {
    overflow: visible;
  }

  .header-inner {
    max-width: 1220px;
    min-height: var(--header-height, 74px);
    padding-left: 24px;
    padding-right: 24px;
  }

  .header-cta {
    min-width: 170px;
    justify-content: center;
    padding: 13px 24px;
    font-size: 15px;
    box-shadow: 0 10px 26px rgba(13,121,242,0.18);
  }

  .hero {
    min-height: calc(100svh - var(--header-height, 74px));
    height: auto;
    padding: clamp(26px, 3.4vw, 44px) 32px clamp(30px, 3.8vw, 48px);
    align-items: center;
  }

  .hero-inner {
    max-width: 1280px;
    grid-template-columns: minmax(440px, 0.86fr) minmax(560px, 1.14fr);
    gap: clamp(28px, 4vw, 62px);
    align-items: center;
  }

  .hero-content {
    gap: 14px;
    max-width: 620px;
  }

  .pre-headline {
    padding: 9px 16px;
    font-size: 12px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(48px, 4.65vw, 66px);
    line-height: 1.03;
  }

  .hero-subtitle {
    max-width: 520px;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.44;
  }

  .hero-benefits {
    max-width: 560px;
    margin-top: 10px;
  }

  .hero-benefit {
    min-height: 104px;
    padding: 14px 12px;
  }

  .hero-benefit strong {
    font-size: 17px;
  }

  .hero-benefit-primary strong {
    font-size: 31px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .benefit-icon::before,
  .benefit-icon-team::before,
  .benefit-icon-briefcase::before {
    width: 28px;
    height: 28px;
  }

  .hero-cta-card {
    display: none;
  }

  .hero-visual {
    min-height: clamp(520px, calc(100svh - 170px), 680px);
  }

  .hero-visual-bg {
    background-position: right center;
    background-size: min(900px, 66vw) auto;
  }

  .margin-card {
    left: clamp(40px, 6vw, 92px);
    top: clamp(88px, 13vh, 150px);
    width: clamp(214px, 18vw, 252px);
    padding: 24px;
  }

  .margin-card-value {
    font-size: 54px;
  }

  .ops-strip {
    left: clamp(12px, 3.5vw, 52px);
    right: clamp(4px, 1vw, 18px);
    bottom: clamp(34px, 5vh, 58px);
    padding: 16px 20px;
    gap: 16px;
  }

  .ops-card {
    min-height: 116px;
    padding: 16px 12px;
  }

  .problem-section,
  .income-calculator-section,
  .first-group-section,
  .how-to-join-section,
  .final-cta-section {
    padding-top: clamp(54px, 5vw, 72px);
    padding-bottom: clamp(58px, 5.3vw, 78px);
  }

  .final-cta-section {
    background:
      radial-gradient(circle at 80% 12%, rgba(13,121,242,0.09), transparent 30%),
      linear-gradient(180deg, #F6FAFF 0%, #FFFFFF 48%, #F4F8FE 100%);
  }

  .final-cta-shell {
    max-width: 1220px;
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.78fr);
    grid-template-areas:
      "copy visual"
      "copy form"
      "steps form"
      "insight form"
      "privacy privacy";
    gap: 16px 36px;
    padding: clamp(34px, 3.3vw, 46px);
    border-radius: 24px;
  }

  .final-cta-overline {
    margin-bottom: 18px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .final-cta-copy {
    max-width: 560px;
    align-self: start;
  }

  .final-cta-copy h2 {
    max-width: 560px;
    font-size: clamp(44px, 4.15vw, 58px);
    line-height: 1.04;
  }

  .final-cta-copy p {
    max-width: 500px;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.45;
  }

  .final-cta-visual {
    min-height: 188px;
  }

  .final-cta-visual img {
    right: -70px;
    bottom: -34px;
    width: min(450px, 35vw);
  }

  .final-growth-arrow {
    right: 20px;
    top: -6px;
    width: 194px;
    height: 112px;
    stroke-width: 10;
  }

  .final-margin-tag {
    right: 18px;
    bottom: -6px;
    min-width: 218px;
    padding: 12px 14px;
    grid-template-columns: 36px 1fr;
  }

  .final-margin-tag svg {
    width: 34px;
    height: 34px;
  }

  .final-margin-tag span {
    font-size: 17px;
  }

  .final-form-card {
    padding: 24px;
    border-radius: 20px;
    margin-top: 0;
  }

  .final-form-head h3 {
    font-size: 26px;
  }

  .final-form-head p {
    font-size: 16px;
  }

  .final-form-card .access-form {
    gap: 12px;
  }

  .final-form-card .form-field input {
    min-height: 54px;
  }

  .final-form-card .access-form .btn {
    min-height: 56px;
    font-size: 16px;
  }

  .final-cta-steps {
    max-width: 500px;
  }

  .final-step {
    grid-template-columns: 54px 1fr;
    gap: 16px;
    padding: 14px 0;
  }

  .final-step-icon {
    width: 48px;
    height: 48px;
  }

  .final-step-icon svg {
    width: 29px;
    height: 29px;
  }

  .final-step h3 {
    font-size: 18px;
  }

  .final-step p {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.34;
  }

  .final-cta-insight {
    max-width: 500px;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 15px 18px;
  }

  .final-cta-insight span {
    width: 44px;
    height: 44px;
  }

  .final-cta-insight p {
    font-size: 15px;
  }

  .final-privacy-note {
    grid-template-columns: 48px minmax(0, 1fr) 150px;
    margin-top: 8px;
    padding: 16px 22px;
  }

  .final-privacy-note span {
    width: 44px;
    height: 44px;
  }

  .final-privacy-note p {
    font-size: 14px;
  }

  .final-privacy-note i {
    width: 142px;
  }

  .final-form-success {
    min-height: 360px;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .hero h1 {
    font-size: clamp(44px, 4.25vw, 58px);
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-benefit {
    min-height: 92px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .ops-strip {
    bottom: 22px;
  }
}

/* ===== Hero label matches section label size ===== */
.hero .pre-headline {
  color: #0d79f2 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.08em !important;
}

@media (max-width: 680px) {
  .hero .pre-headline {
    font-size: 10px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.06em !important;
  }
}

/* ===== Final hero content refresh ===== */
.hero {
  min-height: calc(100svh - var(--header-height, 74px));
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 46%, rgba(246,250,255,0.88) 100%),
    linear-gradient(rgba(13,121,242,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.045) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  border-bottom: 1px solid rgba(13,121,242,0.12);
  box-shadow: inset 0 -28px 42px rgba(13,121,242,0.045);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,121,242,0.32), transparent);
  box-shadow: 0 -16px 36px rgba(13,121,242,0.08);
}

.hero-inner {
  position: relative;
  width: min(1240px, calc(100% - 44px));
  min-height: calc(100svh - var(--header-height, 74px));
  grid-template-columns: minmax(650px, 1.16fr) minmax(390px, 0.84fr);
  align-items: start;
  gap: 0;
  padding: 0 0 clamp(28px, 4vw, 56px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  gap: 0;
  padding-top: 0;
}

.hero .pre-headline {
  width: fit-content;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #0d79f2;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero .pre-headline span {
  display: none;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: #07111f;
  font-size: clamp(48px, 4.85vw, 74px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 .accent {
  color: #0d79f2;
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 660px;
  margin: 28px 0 0;
  color: #5f6875;
  font-size: 19px;
  line-height: 1.55;
}

.hero-feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #5d6673;
  font-size: 18px;
  line-height: 1.42;
}

.hero-feature-list li {
  position: relative;
  padding-left: 28px;
}

.hero-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    linear-gradient(#0d79f2, #0d79f2) 50% 50% / 8px 2px no-repeat,
    linear-gradient(90deg, #0d79f2, #0d79f2) 50% 50% / 2px 8px no-repeat,
    #eef6ff;
  box-shadow: inset 0 0 0 1px rgba(13,121,242,0.18);
}

.hero-summary {
  position: relative;
  max-width: 720px;
  margin: 28px 0 0;
  padding: 18px 22px 18px 58px;
  border: 1px solid rgba(13,121,242,0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(238,246,255,0.86)),
    rgba(255,255,255,0.88);
  color: #263344;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 750;
  box-shadow: 0 18px 46px rgba(13,60,120,0.10);
  backdrop-filter: blur(12px);
}

.hero-summary::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    linear-gradient(135deg, #0d79f2, #59a9ff);
  box-shadow: 0 8px 20px rgba(13,121,242,0.24);
}

.hero-summary::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  width: 8px;
  height: 13px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-60%) rotate(42deg);
}

.hero-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  min-width: 220px;
  min-height: 58px;
  margin-top: 28px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d79f2, #0868df);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(13,121,242,0.25);
}

.hero-main-cta-mobile {
  display: none;
}

.hero-main-cta-desktop {
  position: absolute;
  z-index: 3;
  right: clamp(150px, 16vw, 280px);
  bottom: clamp(44px, 5.4vw, 78px);
  pointer-events: auto;
}

.hero-main-cta span {
  font-size: 22px;
  line-height: 1;
}

.hero-visual {
  display: block;
  position: absolute;
  top: 0;
  right: calc((100vw - min(1240px, calc(100vw - 44px))) / -2);
  z-index: 1;
  width: min(990px, 60vw);
  height: min(760px, calc(100svh - var(--header-height, 74px) - 18px));
  min-height: 610px;
  margin: 0;
  pointer-events: none;
}

.hero-visual-bg {
  position: absolute;
  inset: 0 0 0 -18%;
  overflow: hidden;
  background: transparent;
  opacity: 1;
  filter: saturate(1.02) contrast(1.02);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.12) 8%, #000 24%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 82%, rgba(0,0,0,0.35) 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.12) 8%, #000 24%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 82%, rgba(0,0,0,0.35) 94%, transparent 100%);
  mask-composite: intersect;
}

.hero-visual-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.82) 15%, rgba(255,255,255,0) 38%),
    linear-gradient(180deg, rgba(255,255,255,0) 66%, rgba(255,255,255,0.94) 100%);
}

.hero-map-layer {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    url('img/hero-russia-map.webp') right -10px top -150px / min(1240px, 76vw) auto no-repeat;
  opacity: 0.9;
  filter: saturate(1.03) contrast(1.01);
}

.hero-metal-art {
  position: absolute;
  z-index: 2;
  right: clamp(-18px, 1vw, 18px);
  bottom: clamp(2px, 2.4vw, 32px);
  width: min(910px, 58vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 52px rgba(23,55,88,0.16));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 82%, rgba(0,0,0,0.3) 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 82%, rgba(0,0,0,0.3) 94%, transparent 100%);
  mask-composite: intersect;
}

.hero-visual::before,
.hero-visual::after,
.margin-card,
.ops-strip,
.hero-mobile-showcase,
.hero-cta-card {
  display: none !important;
}

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

  .header {
    overflow-x: hidden;
  }

  .header-inner {
    position: relative !important;
    justify-content: flex-start !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .header-cta {
    max-width: 136px;
    min-width: 0;
    padding-left: 12px !important;
    padding-right: 12px !important;
    white-space: nowrap;
  }

  .hero {
    min-height: calc(100svh - var(--header-height, 76px));
    height: calc(100svh - var(--header-height, 76px));
    overflow: hidden;
    max-width: 100%;
    position: relative;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.76) 0%, rgba(255,255,255,0.66) 42%, rgba(242,248,255,0.66) 100%),
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.82) 48%, rgba(255,255,255,0.08) 100%),
      url('img/hero-russia-mobile-bg.webp') right top / auto 100% no-repeat,
      linear-gradient(rgba(13,121,242,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(13,121,242,0.05) 1px, transparent 1px);
    background-size: auto, auto, auto 100%, 36px 36px, 36px 36px;
  }

  .hero-inner {
    width: calc(100vw - 24px);
    max-width: 560px;
    height: 100%;
    min-height: 0;
    display: block;
    position: relative;
    padding: clamp(18px, 4.8svh, 34px) 0 0;
  }

  .hero-content {
    max-width: none;
    min-height: 0;
    display: flex;
    flex-direction: column;
    position: static;
    z-index: 2;
  }

  .hero .pre-headline {
    margin-bottom: 9px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: clamp(30px, 8.15vw, 38px);
    line-height: 1.08;
  }

  .hero-title-line {
    display: block;
  }

  .hero h1 .accent {
    white-space: normal;
  }

  .hero-subtitle {
    margin-top: 14px;
    max-width: 330px;
    font-size: 15.4px;
    line-height: 1.45;
  }

  .hero-feature-list {
    gap: 8px;
    margin-top: 12px;
    max-width: 340px;
    font-size: 13.8px;
    line-height: 1.34;
  }

  .hero-feature-list li {
    padding-left: 23px;
  }

  .hero-feature-list li::before {
    top: 0.16em;
    width: 15px;
    height: 15px;
    background:
      linear-gradient(#0d79f2, #0d79f2) 50% 50% / 7px 2px no-repeat,
      linear-gradient(90deg, #0d79f2, #0d79f2) 50% 50% / 2px 7px no-repeat,
      #eef6ff;
  }

  .hero-summary {
    width: 100%;
    max-width: 100%;
    margin-top: 13px;
    padding: 13px 14px 13px 43px;
    border-radius: 15px;
    font-size: 13.6px;
    line-height: 1.36;
  }

  .hero-summary::before {
    left: 16px;
    width: 20px;
    height: 20px;
  }

  .hero-summary::after {
    left: 23px;
    width: 7px;
    height: 11px;
  }

  .hero-main-cta {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    margin-top: 0;
    font-size: 15px;
  }

  .hero-main-cta-mobile {
    display: inline-flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 4;
  }

  .hero-main-cta-desktop {
    display: none;
  }

  .hero-visual {
    position: absolute;
    left: -16px;
    right: -16px;
    bottom: 62px;
    top: auto;
    width: auto;
    height: min(32svh, 260px);
    min-height: 0;
    margin: 0;
    max-width: calc(100vw + 32px);
    pointer-events: none;
    z-index: 1;
  }

  .hero-visual-bg {
    inset: -18px -26px -16px -24px;
    height: auto;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.58) 10%, #000 22%, #000 100%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 16%, #000 34%, #000 76%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.58) 10%, #000 22%, #000 100%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 16%, #000 34%, #000 76%, transparent 100%);
  }

  .hero-map-layer {
    display: none;
  }

  .hero-metal-art {
    right: -36px;
    bottom: 0;
    width: min(455px, 118vw);
    filter: drop-shadow(0 22px 38px rgba(23,55,88,0.14));
  }
}

@media (max-width: 420px) {
  .hero-inner {
    width: calc(100% - 24px);
    padding-top: clamp(16px, 4svh, 24px);
  }

  .hero h1 {
    font-size: clamp(29px, 7.95vw, 34px);
    line-height: 1.08;
  }

  .hero-feature-list {
    font-size: 13.4px;
  }

  .hero-visual {
    height: min(31svh, 242px);
    bottom: 60px;
  }

  .hero-visual-bg {
    inset: -16px -22px -14px -20px;
    height: auto;
  }

  .hero-map-layer {
    display: none;
  }

  .hero-metal-art {
    right: -38px;
    bottom: 0;
    width: min(430px, 122vw);
  }
}

@media (min-width: 901px) {
  .hero {
    height: calc(100svh - var(--header-height, 74px)) !important;
    min-height: 0 !important;
    padding-top: 0 !important;
  }

  .hero-inner {
    align-items: start !important;
    height: 100% !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-content {
    padding-top: 0 !important;
    margin-top: clamp(42px, 6.2svh, 76px);
  }

  .hero-visual {
    top: 0 !important;
    height: 100% !important;
    min-height: 0 !important;
  }
}

@media (min-width: 901px) and (max-height: 860px) {
  .hero-content {
    margin-top: clamp(24px, 4svh, 42px);
  }

  .hero h1 {
    font-size: clamp(42px, 4.15vw, 62px);
    line-height: 1.04;
  }

  .hero-subtitle {
    margin-top: 20px;
  }

  .hero-feature-list {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-summary {
    margin-top: 20px;
  }
}

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

  .header,
  .hero {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .header-inner,
  .hero-inner {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
  }

  .header-cta {
    width: 126px !important;
    max-width: 126px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 11.8px !important;
  }

  .header-right {
    position: fixed !important;
    right: 16px !important;
    top: calc(var(--header-height, 76px) / 2) !important;
    flex: 0 0 auto !important;
    margin-left: 0 !important;
    min-width: 0 !important;
    transform: translateY(-50%);
  }

  .hero-content,
  .hero-content > * {
    max-width: 100% !important;
  }

  .hero-subtitle,
  .hero-feature-list,
  .hero-summary {
    overflow-wrap: anywhere;
  }

  .hero-summary {
    box-sizing: border-box;
    white-space: normal;
    font-size: 13.6px;
    line-height: 1.36;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-visual {
    left: 50% !important;
    right: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    transform: translateX(-50%);
  }

  .hero-metal-art {
    right: -24px !important;
    width: min(420px, 112vw) !important;
  }
}

/* ===== Problem market block restored from v1 ===== */
.problem-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-height, 74px);
  padding: clamp(58px, 6vw, 82px) 32px clamp(62px, 7vw, 88px) !important;
  background:
    radial-gradient(circle at 18% 16%, rgba(13,121,242,0.07), transparent 30%),
    linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 46%, #F5F8FC 100%) !important;
}

.problem-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,121,242,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,121,242,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.68), transparent 76%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.68), transparent 76%);
}

.problem-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px !important;
  margin: 0 auto;
}

.problem-head {
  max-width: 810px !important;
  margin-bottom: 28px !important;
}

.problem-overline {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px !important;
  padding: 10px 14px;
  color: var(--brand-primary);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(13,121,242,0.13);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(13,121,242,0.06);
  font-size: 11px !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.problem-overline::before {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(13,121,242,0.08);
}

.problem-head h2 {
  max-width: 680px !important;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(38px, 4.4vw, 60px) !important;
  font-weight: 750;
  line-height: 1.06 !important;
  letter-spacing: 0;
}

.problem-head p {
  max-width: 690px !important;
  margin: 14px 0 0 !important;
  color: var(--text-secondary);
  font-size: 17px !important;
  line-height: 1.5 !important;
}

.problem-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.problem-card {
  position: relative;
  min-height: 126px !important;
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  grid-template-rows: auto !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 18px !important;
  overflow: hidden;
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(239,246,255,0.62)),
    rgba(255,255,255,0.58) !important;
  border: 1px solid rgba(198,215,237,0.78) !important;
  border-radius: 18px !important;
  box-shadow:
    0 18px 44px rgba(15,18,23,0.052),
    inset 0 1px 0 rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}

.problem-card::before,
.problem-card::after {
  display: none !important;
}

.problem-card-top {
  position: relative;
  z-index: 1;
  display: block !important;
  align-items: center;
  justify-content: start;
  gap: 0;
}

.problem-index {
  display: none !important;
}

.problem-icon {
  position: relative;
  width: 48px !important;
  height: 48px !important;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(235,244,255,0.70)),
    rgba(13,121,242,0.08);
  border: 1px solid rgba(13,121,242,0.13);
  border-radius: 14px !important;
  box-shadow:
    0 12px 28px rgba(13,121,242,0.07),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.problem-icon svg {
  width: 28px !important;
  height: 28px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  color: var(--text-primary);
  font-size: 17px !important;
  font-weight: 750;
  line-height: 1.22 !important;
  letter-spacing: 0;
}

.problem-proof {
  display: none !important;
}

.problem-accent {
  position: relative;
  max-width: none !important;
  min-height: 126px;
  margin: 18px auto 0 !important;
  display: grid !important;
  grid-template-columns: 68px minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: center;
  overflow: hidden;
  padding: 24px 36px !important;
  color: var(--text-primary);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,255,255,0.54)),
    rgba(255,255,255,0.46) !important;
  border: 1px solid rgba(207,219,235,0.78) !important;
  border-radius: 20px !important;
  box-shadow:
    0 18px 54px rgba(15,18,23,0.05),
    inset 0 1px 0 rgba(255,255,255,0.84) !important;
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}

.problem-accent-icon {
  position: relative;
  z-index: 1;
  width: 58px !important;
  height: 58px !important;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(13,121,242,0.075);
  border: 1px solid rgba(13,121,242,0.16);
  border-radius: 50%;
}

.problem-accent p {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0;
  padding-left: 26px;
  border-left: 1px solid rgba(151,174,207,0.42);
  color: var(--text-primary);
  font-size: 18px !important;
  line-height: 1.42 !important;
}

@media (max-width: 980px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .problem-section {
    padding: 32px 16px 36px !important;
  }

  .problem-head {
    margin-bottom: 18px !important;
  }

  .problem-head h2 {
    max-width: 350px !important;
    font-size: clamp(30px, 8vw, 35px) !important;
    line-height: 1.08 !important;
  }

  .problem-head p {
    max-width: 340px !important;
    margin-top: 10px !important;
    font-size: 14.5px !important;
    line-height: 1.42 !important;
  }

  .problem-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .problem-card {
    min-height: 0 !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 15px !important;
  }

  .problem-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 13px !important;
  }

  .problem-icon svg {
    width: 26px !important;
    height: 26px !important;
  }

  .problem-card h3 {
    font-size: 15.8px !important;
    line-height: 1.22 !important;
  }

  .problem-accent {
    margin-top: 12px !important;
    min-height: 0;
    grid-template-columns: 40px 1fr !important;
    gap: 12px !important;
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .problem-accent-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .problem-accent p {
    padding-left: 13px;
    font-size: 15px !important;
    line-height: 1.38 !important;
  }
}

/* ===== Section labels follow hero overline ===== */
.problem-overline,
.income-calculator-overline,
.first-group-overline,
.how-to-join-overline,
.final-cta-overline {
  width: fit-content !important;
  display: block !important;
  margin: 0 0 20px !important;
  padding: 0 !important;
  color: #0d79f2 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.problem-overline::before,
.problem-overline::after,
.income-calculator-overline::before,
.income-calculator-overline::after,
.first-group-overline::before,
.first-group-overline::after,
.how-to-join-overline::before,
.how-to-join-overline::after,
.final-cta-overline::before,
.final-cta-overline::after,
.problem-overline span,
.first-group-overline span,
.how-to-join-overline span,
.final-cta-overline span {
  display: none !important;
}

@media (max-width: 680px) {
  .problem-overline,
  .income-calculator-overline,
  .first-group-overline,
  .how-to-join-overline,
  .final-cta-overline {
    margin-bottom: 12px !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.06em !important;
  }
}

/* ===== Post-hero typography and work area follow calculator ===== */
.problem-section,
.income-calculator-section,
.first-group-section,
.career-path-section,
.how-to-join-section,
.final-cta-section {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.problem-inner,
.income-calculator-inner,
.first-group-inner,
.career-path-inner,
.how-to-join-inner,
.final-cta-shell {
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.problem-head,
.income-calculator-head,
.first-group-head,
.career-path-head,
.how-to-join-head,
.final-cta-copy {
  max-width: 930px !important;
}

.problem-head h2,
.income-calculator-head h2,
.first-group-head h2,
.career-path-head h2,
.how-to-join-head h2,
.final-cta-copy h2 {
  max-width: 920px !important;
  margin: 0 !important;
  color: var(--text-primary) !important;
  font-size: clamp(42px, 4.4vw, 58px) !important;
  font-weight: 700 !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

.problem-head h2 span,
.income-calculator-head h2 span,
.first-group-head h2 span,
.career-path-head h2 span,
.how-to-join-head h2 span,
.final-cta-copy h2 span {
  color: var(--brand-primary) !important;
}

.problem-head p,
.income-calculator-head p,
.first-group-head p,
.career-path-head p,
.how-to-join-head p,
.final-cta-copy p {
  max-width: 760px !important;
  margin: 18px 0 0 !important;
  color: var(--text-secondary) !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
}

@media (min-width: 901px) {
  .first-group-inner,
  .how-to-join-inner,
  .final-cta-shell {
    padding-left: 54px !important;
    padding-right: 54px !important;
  }
}

@media (max-width: 680px) {
  .problem-section,
  .income-calculator-section,
  .first-group-section,
  .career-path-section,
  .how-to-join-section,
  .final-cta-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .problem-head,
  .income-calculator-head,
  .first-group-head,
  .career-path-head,
  .how-to-join-head,
  .final-cta-copy {
    max-width: 100% !important;
  }

  .problem-head h2,
  .income-calculator-head h2,
  .first-group-head h2,
  .career-path-head h2,
  .how-to-join-head h2,
  .final-cta-copy h2 {
    max-width: 100% !important;
    font-size: clamp(30px, 8vw, 35px) !important;
    line-height: 1.08 !important;
  }

  .problem-head p,
  .income-calculator-head p,
  .first-group-head p,
  .career-path-head p,
  .how-to-join-head p,
  .final-cta-copy p {
    max-width: 100% !important;
    margin-top: 10px !important;
    font-size: 14.5px !important;
    line-height: 1.42 !important;
  }
}

/* ===== Final unified label size ===== */
.hero .pre-headline,
.problem-overline,
.income-calculator-overline,
.first-group-overline,
.career-path-overline,
.how-to-join-overline,
.final-cta-overline {
  width: fit-content !important;
  display: block !important;
  margin-top: 0 !important;
  padding: 0 !important;
  color: #0d79f2 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.hero .pre-headline {
  margin-bottom: 20px !important;
}

.problem-overline,
.income-calculator-overline,
.first-group-overline,
.career-path-overline,
.how-to-join-overline,
.final-cta-overline {
  margin-bottom: 20px !important;
}

.hero .pre-headline span,
.problem-overline::before,
.problem-overline::after,
.income-calculator-overline::before,
.income-calculator-overline::after,
.first-group-overline::before,
.first-group-overline::after,
.career-path-overline::before,
.career-path-overline::after,
.how-to-join-overline::before,
.how-to-join-overline::after,
.final-cta-overline::before,
.final-cta-overline::after,
.problem-overline span,
.first-group-overline span,
.career-path-overline span,
.how-to-join-overline span,
.final-cta-overline span {
  display: none !important;
}

@media (max-width: 680px) {
  .hero .pre-headline,
  .problem-overline,
  .income-calculator-overline,
  .first-group-overline,
  .career-path-overline,
  .how-to-join-overline,
  .final-cta-overline {
    font-size: 10px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.06em !important;
  }
}

/* ===== Mobile hero label emphasis ===== */
@media (max-width: 680px) {
  .hero .pre-headline {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.18 !important;
    letter-spacing: 0.045em !important;
    margin-bottom: 18px !important;
  }
}

/* ===== First group desktop composition cleanup ===== */
@media (min-width: 901px) {
  .first-group-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.9fr);
    grid-template-areas:
      "head bonus"
      "cards cards"
      "button button"
      "note note";
    gap: 24px 34px;
    align-items: start;
  }

  .first-group-head {
    grid-area: head;
    max-width: none !important;
  }

  .first-group-bonus {
    grid-area: bonus;
    align-self: end;
    min-height: 220px;
  }

  .first-group-cards {
    grid-area: cards;
    margin-top: 0 !important;
  }

  .first-group-btn {
    grid-area: button;
    margin-top: 8px !important;
  }

  .first-group-note {
    grid-area: note;
    margin-top: -4px !important;
  }
}

/* ===== Career path placement after first group ===== */
.career-path-head {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

.career-path-overline {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ===== How to join desktop cleanup ===== */
@media (min-width: 901px) {
  .how-to-join-section {
    padding-top: 34px !important;
    padding-bottom: 42px !important;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FB 100%) !important;
  }

  .how-to-join-inner {
    padding: 54px !important;
    overflow: hidden;
    background:
      radial-gradient(circle at 88% 12%, rgba(13,121,242,0.10), transparent 32%),
      linear-gradient(135deg, rgba(255,255,255,0.94), rgba(235,244,255,0.72)) !important;
    border: 1px solid rgba(207,219,235,0.82) !important;
    border-radius: 28px !important;
    box-shadow:
      0 24px 70px rgba(15,18,23,0.06),
      inset 0 1px 0 rgba(255,255,255,0.92) !important;
  }

  .how-to-join-head {
    max-width: 100% !important;
  }

  .how-to-join-head h2 {
    max-width: none !important;
    white-space: nowrap;
  }

  .how-to-join-head p {
    max-width: none !important;
    white-space: nowrap;
  }

  .join-steps {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px !important;
  }

  .join-steps::before {
    display: none !important;
  }

  .join-step {
    min-height: 148px;
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: start !important;
    padding: 18px !important;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(207,219,235,0.78);
    border-radius: 18px;
    box-shadow:
      0 18px 44px rgba(15,18,23,0.052),
      inset 0 1px 0 rgba(255,255,255,0.9);
  }

  .join-step + .join-step {
    border-top: 1px solid rgba(207,219,235,0.78) !important;
  }

  .join-step-number {
    display: none !important;
  }

  .join-step-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
  }

  .join-step-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .join-step h3 {
    font-size: 19px !important;
    line-height: 1.18 !important;
  }

  .join-step p {
    max-width: none !important;
    margin-top: 7px !important;
    font-size: 14.2px !important;
    line-height: 1.34 !important;
  }

  .join-accent {
    margin-top: 16px !important;
    padding: 18px 22px !important;
    border-radius: 18px !important;
  }
}

/* ===== Final iPhone hero fix: content must never overlap visual art ===== */
@media (max-width: 900px) {
  .hero {
    height: auto !important;
    min-height: calc(100svh - var(--header-height, 76px)) !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  .header {
    overflow: visible !important;
  }

  .header-inner {
    position: relative !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .header-right {
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    width: auto !important;
    max-width: none !important;
    transform: translateY(-50%) !important;
  }

  .header-cta {
    position: static !important;
    width: auto !important;
    min-width: 148px !important;
    max-width: none !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    font-size: 12.4px !important;
  }

  .hero-inner {
    display: flex !important;
    flex-direction: column !important;
    width: calc(100vw - 32px) !important;
    max-width: 560px !important;
    height: auto !important;
    min-height: calc(100svh - var(--header-height, 76px)) !important;
    margin: 0 auto !important;
    padding: clamp(26px, 4.8svh, 38px) 0 max(28px, env(safe-area-inset-bottom)) !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .hero .pre-headline {
    margin-bottom: 12px !important;
    font-size: clamp(11px, 2.85vw, 13px) !important;
    line-height: 1.18 !important;
  }

  .hero h1 {
    max-width: min(100%, 352px) !important;
    font-size: clamp(28px, 7.9vw, 31px) !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere !important;
  }

  .hero-title-line {
    display: inline !important;
  }

  .hero-subtitle {
    max-width: 340px !important;
    margin-top: 18px !important;
    font-size: clamp(15px, 3.95vw, 16px) !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .hero-feature-list {
    max-width: 350px !important;
    gap: 8px !important;
    margin-top: 12px !important;
    font-size: clamp(13.6px, 3.65vw, 15px) !important;
    line-height: 1.34 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .hero-summary {
    display: none !important;
  }

  .hero-visual {
    position: relative !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    z-index: 1 !important;
    order: 2 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: clamp(178px, 36svh, 292px) !important;
    min-height: 0 !important;
    margin: -6px 0 12px !important;
    overflow: hidden !important;
    transform: translateX(-50%) !important;
  }

  .hero-visual-bg {
    inset: -12px -18px -14px -18px !important;
    overflow: hidden !important;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.72) 8%, #000 18%, #000 92%, transparent 100%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.84) 14%, #000 72%, transparent 100%) !important;
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.72) 8%, #000 18%, #000 92%, transparent 100%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.84) 14%, #000 72%, transparent 100%) !important;
  }

  .hero-metal-art {
    right: 50% !important;
    bottom: 6px !important;
    width: min(560px, 118vw) !important;
    max-width: none !important;
    transform: translateX(50%) !important;
  }

  .hero-main-cta-mobile {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 3 !important;
    order: 3 !important;
    width: 100% !important;
    min-height: 58px !important;
    margin-top: 0 !important;
    border-radius: 999px !important;
    font-size: 16px !important;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(27px, 7.6vw, 29px) !important;
  }

  .hero-feature-list {
    font-size: 13.6px !important;
  }

  .hero-visual {
    height: clamp(162px, 32svh, 230px) !important;
    margin-top: -4px !important;
  }
}

/* ===== Absolute last mobile header corrections (must stay at file end) ===== */
@media (max-width: 900px) {
  .header {
    overflow: hidden !important;
  }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    min-height: var(--header-height, 76px) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 14px !important;
  }

  .header-right {
    position: static !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    margin-left: auto !important;
    transform: none !important;
  }

  .header-cta {
    position: static !important;
    width: auto !important;
    min-width: 168px !important;
    max-width: none !important;
    min-height: 48px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    font-size: 14px !important;
    justify-content: center !important;
    z-index: auto !important;
  }

  .hero-main-cta-mobile {
    margin-top: 12px !important;
  }
}

@media (max-width: 900px) {
  .header-cta-full {
    display: inline !important;
  }

  .header-cta-short {
    display: none !important;
  }
}


/* ===== Header mobile final guard ===== */
@media (max-width: 900px) {
  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: var(--header-height, 76px) !important;
  }

  .header-right,
  .header-cta {
    position: static !important;
    inset: auto !important;
    transform: none !important;
  }

  .header-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 170px !important;
    min-height: 48px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }

  .header-cta-full {
    display: inline !important;
  }

  .header-cta-short {
    display: none !important;
  }
}
