/* ═══════════════════════════════════════════════
   club.allznaika.ru — Landing CSS v2
   Palette: White / Red / Black
   ═══════════════════════════════════════════════ */

/* ── Design tokens ── */
:root {
  --white:  #ffffff;
  --black:  #111111;
  --red:    #e44c43;
  --red-dark: #c73b32;
  --surface: #f7f7f5;
  --surface-soft: #fbfbfa;
  --line: rgba(17, 17, 17, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 18px 60px rgba(17, 17, 17, 0.08);
  --shadow-lift: 0 24px 80px rgba(17, 17, 17, 0.14);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --grey-100: #f5f5f5;
  --grey-200: #ebebeb;
  --grey-400: #999999;
  --grey-600: #555555;

  --font-head: "Onest", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --container: 1180px;
  --radius: 8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; background: none; }
p { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
table { border-collapse: collapse; }

/* ── Base ── */
body.club-page--home {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.club-page--home a:focus-visible,
body.club-page--home button:focus-visible,
body.club-page--home input:focus-visible,
body.club-page--home select:focus-visible,
body.club-page--home summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════ */

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-title--white { color: var(--white); }

.section-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--grey-600);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-sub--white { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 72px;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  min-width: 0;
}

.nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  align-self: stretch;
  flex-shrink: 0;
  background: var(--red);
}

.nav-logo-svg {
  width: 56px;
  height: 56px;
  filter: brightness(0) invert(1);
}

.nav-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 8px;
}

.nav-logo-copy strong {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-logo-copy span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: stretch;
}

.nav-btn-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  background: none;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease;
  letter-spacing: 0.02em;
}

.nav-btn-menu:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.nav-btn-login:hover {
  background: var(--red);
  color: var(--white);
}

/* ══════════════════════════════════════════
   MENU OVERLAY
══════════════════════════════════════════ */

body.nav-open { overflow: hidden; }

.nav-overlay {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  overflow-y: auto;
  max-height: calc(100vh - 72px);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
  transition: clip-path 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-overlay.is-open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav-overlay__panel {
  position: relative;
}

.nav-overlay__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  padding: 40px 0 52px;
}

.nav-overlay__nav {
  border-right: 1px solid var(--grey-200);
  padding-right: 48px;
}

.nav-item {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  gap: 0 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-200);
  color: var(--black);
  text-decoration: none;
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity 0.32s ease var(--d, 0s),
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s),
    background-color 0.14s ease,
    padding-left 0.18s ease;
}

.nav-item:last-child { border-bottom: none; }

.nav-item:nth-child(1) { --d: 0.10s; }
.nav-item:nth-child(2) { --d: 0.16s; }
.nav-item:nth-child(3) { --d: 0.22s; }
.nav-item:nth-child(4) { --d: 0.28s; }
.nav-item:nth-child(5) { --d: 0.34s; }
.nav-item:nth-child(6) { --d: 0.40s; }
.nav-item:nth-child(7) { --d: 0.46s; }

.nav-overlay.is-open .nav-item {
  opacity: 1;
  transform: translateY(0);
}

.nav-item:hover {
  background: var(--grey-100);
  padding-left: 10px;
  padding-right: 10px;
}

.nav-item:hover .nav-item__arrow {
  transform: translateX(5px);
  color: var(--red);
}

.nav-item__num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: center;
}

.nav-item__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}

.nav-item__desc {
  font-size: 13px;
  color: var(--grey-600);
  font-weight: 500;
  line-height: 1.4;
}

.nav-item__arrow {
  color: var(--grey-400);
  transition: transform 0.2s ease, color 0.2s ease;
  justify-self: end;
}

.nav-overlay__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 48px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.32s ease 0.36s, transform 0.32s ease 0.36s;
}

.nav-overlay.is-open .nav-overlay__aside {
  opacity: 1;
  transform: translateY(0);
}

.nav-aside__promo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-aside__promo strong {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.nav-aside__promo p {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.55;
}

.nav-aside__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-aside__cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.nav-overlay__close-corner {
  position: absolute;
  top: 16px;
  right: 24px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: none;
  border: 1px solid var(--grey-200);
  color: var(--grey-600);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.14s ease, border-color 0.14s ease, background 0.14s ease;
  letter-spacing: 0.02em;
  z-index: 2;
}

.nav-overlay__close-corner:hover {
  color: var(--black);
  border-color: var(--black);
  background: var(--grey-100);
}

/* ══════════════════════════════════════════
   HERO — v2 with headline text + bullets
══════════════════════════════════════════ */

.hero {
  padding: 36px 0 44px;
  background: linear-gradient(to bottom, var(--grey-100) 60%, var(--white) 100%);
}

.hero__card {
  position: relative;
  overflow: hidden;
  background: var(--black);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.12),
    0 16px 48px rgba(0,0,0,0.28),
    0 40px 100px rgba(0,0,0,0.20);
}

.hero__bg {
  position: absolute;
  inset: -60px;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  will-change: transform;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(228,76,67,0.18) 0%, transparent 58%);
  will-change: transform;
  pointer-events: none;
}

.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
}

.hero__billboard {
  position: relative;
  z-index: 1;
  padding: 56px 64px 52px;
}

.hero__headline {
  margin: 0 0 20px;
}

.hero__headline-main {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  max-width: 720px;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.01em;
  margin-top: 0;
  max-width: 620px;
  line-height: 1.55;
}

/* Буллеты */
.hero__bullets {
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
}

.hero__bullets li::before {
  content: '—';
  flex-shrink: 0;
  color: var(--red);
  font-weight: 800;
}

/* CTA group */
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.hero__cta-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.hero__cta-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

button.hero__cta-secondary {
  cursor: pointer;
}

.hero__micro {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  max-width: 520px;
}

/* Floating chips */
.hero__chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  pointer-events: none;
}

.hero__chip span {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__chip strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

.hc1 {
  top: 26%;
  right: 220px;
  transform: rotate(-4deg);
}

.hc2 {
  top: 52%;
  right: 80px;
  transform: rotate(3deg);
}

/* Bottom features */
.hero__features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 3px solid var(--red);
}

.hero__feat {
  padding: 28px 32px;
  border-right: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__feat:last-child { border-right: none; }

.hero__feat strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero__feat p {
  font-size: 13px;
  color: var(--grey-600);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero__billboard { padding: 44px 40px 48px; }
  .hc1, .hc2 { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 16px 0 20px; }
  .hero__billboard { padding: 28px 20px 36px; }
  .hero__headline-main { font-size: clamp(26px, 7vw, 40px); }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-primary, .hero__cta-secondary { width: 100%; justify-content: center; text-align: center; }
  .hero__features { grid-template-columns: 1fr; }
  .hero__feat { padding: 20px; border-right: none; border-bottom: 1px solid var(--grey-200); }
  .hero__feat:last-child { border-bottom: none; }
}

@media (max-width: 380px) {
  .hero__billboard { padding: 22px 16px 28px; }
}

/* ── Header mobile ── */
@media (max-width: 520px) {
  .nav-logo-copy span { display: none; }
  .nav-logo-mark { width: 72px; }
  .nav-logo-svg { width: 40px; height: 40px; }
  .nav-btn-menu { padding: 0 18px; font-size: 13px; gap: 8px; }
  .nav-btn-login { padding: 0 16px; }
  .nav-btn-login span { display: none; }
  .site-header { min-height: 62px; }
}

/* Menu overlay mobile */
@media (max-width: 720px) {
  .nav-overlay__inner {
    grid-template-columns: 1fr;
    padding: 28px 0 40px;
  }
  .nav-overlay__nav { border-right: none; padding-right: 0; }
  .nav-overlay__aside {
    padding-left: 0;
    padding-top: 24px;
    border-top: 1px solid var(--grey-200);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }
  .nav-aside__promo { display: none; }
  .nav-aside__cta { flex: 1; min-width: 180px; }
  .nav-item__title { font-size: 22px; }
  .nav-item__desc { display: none; }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */

.js [data-reveal] {
  opacity: 1;
  transform: translateY(20px);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal="left"] { transform: translateX(-24px); }
.js [data-reveal="right"] { transform: translateX(24px); }
.js [data-reveal="scale"] { transform: scale(0.98) translateY(12px); }
.js [data-reveal].is-revealed { transform: none; }

/* ══════════════════════════════════════════
   BLOCK 2. TRY SECTION — «Как попробовать»
══════════════════════════════════════════ */

.try-section {
  padding: 96px 0 104px;
  background: linear-gradient(to bottom, var(--white) 70%, var(--grey-100) 100%);
}

.try-head {
  text-align: center;
  margin-bottom: 56px;
}

.try-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-top: 3px solid var(--black);
}

.try-card {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.try-card--primary {
  background: var(--white);
  border-right: 1px solid var(--grey-200);
  border-bottom: 3px solid var(--red);
}

.try-card--dark {
  background: var(--black);
  border-bottom: 3px solid var(--black);
}

.try-card__num {
  font-family: var(--font-head);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--red);
  line-height: 1;
}

.try-card__title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.try-card--primary .try-card__title { color: var(--black); }
.try-card--dark .try-card__title { color: var(--white); }

.try-card__desc {
  font-size: 14px;
  line-height: 1.65;
}

.try-card--primary .try-card__desc { color: var(--grey-600); }
.try-card--dark .try-card__desc { color: rgba(255,255,255,0.55); }

.try-card__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 14px 24px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  margin-top: auto;
}

.try-card__cta--red {
  background: var(--red);
  color: var(--white);
}

.try-card__cta--red:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.try-card__cta--white {
  background: var(--white);
  color: var(--black);
}

.try-card__cta--white:hover {
  background: var(--grey-100);
  transform: translateY(-1px);
}

.try-footnote {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.6;
}

.try-footnote a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.try-footnote a:hover { color: var(--red-dark); }

@media (max-width: 720px) {
  .try-section { padding: 64px 0 72px; }
  .try-grid { grid-template-columns: 1fr; }
  .try-card--primary { border-right: none; }
  .try-card { padding: 32px 24px; }
}

/* ══════════════════════════════════════════
   BLOCK 3. RESULTS — «Что получит ребёнок»
══════════════════════════════════════════ */

.results-section {
  padding: 96px 0 104px;
  background: linear-gradient(to bottom, var(--grey-100) 70%, var(--white) 100%);
}

.results-head {
  text-align: center;
  margin-bottom: 56px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 3px solid var(--black);
}

.result-card {
  position: relative;
  padding: 36px 32px;
  background: var(--white);
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  transition: background 0.18s ease;
  overflow: hidden;
}

.result-card:nth-child(2n) { border-right: none; }
.result-card:nth-child(3), .result-card:nth-child(4) { border-bottom: none; }
.result-card:hover { background: var(--grey-100); }

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.result-card:hover::before { transform: scaleY(1); }

.result-card__num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.result-card__title {
  font-family: var(--font-head);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 10px;
}

.result-card__desc {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.65;
}

.results-disclaimer {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--grey-100);
  border-left: 3px solid var(--red);
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.65;
}

.results-disclaimer strong {
  color: var(--black);
}

@media (max-width: 600px) {
  .results-section { padding: 64px 0 72px; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card:nth-child(2n) { border-right: none; }
  .result-card:nth-child(3) { border-bottom: 1px solid var(--grey-200); }
  .result-card { padding: 28px 20px; }
}

/* ══════════════════════════════════════════
   BLOCK 4. VIBE CODING
══════════════════════════════════════════ */

.vibe-section {
  padding: 96px 0 104px;
  background: var(--black);
}

.vibe-head {
  text-align: center;
  margin-bottom: 56px;
}

.vibe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 3px solid rgba(255,255,255,0.15);
}

.vibe-col {
  padding: 40px 36px;
}

.vibe-col:first-child {
  border-right: 1px solid rgba(255,255,255,0.1);
}

.vibe-col__title {
  font-family: var(--font-head);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.vibe-col__text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}

.vibe-col__text:last-child { margin-bottom: 0; }

.vibe-accent {
  margin-top: 48px;
  padding: 32px 40px;
  background: var(--red);
  border-left: 4px solid var(--white);
}

.vibe-accent p {
  font-family: var(--font-head);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .vibe-section { padding: 64px 0 72px; }
  .vibe-grid { grid-template-columns: 1fr; }
  .vibe-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .vibe-col { padding: 28px 20px; }
  .vibe-accent { padding: 24px 20px; margin-top: 32px; }
}

/* ══════════════════════════════════════════
   BLOCK 5. ROADMAP
══════════════════════════════════════════ */

.roadmap-section {
  padding: 96px 0 104px;
  background: linear-gradient(to bottom, var(--white) 70%, var(--grey-100) 100%);
}

.roadmap-head {
  text-align: center;
  margin-bottom: 56px;
}

.roadmap-timeline {
  border-top: 3px solid var(--black);
}

.roadmap-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--grey-200);
  transition: background 0.18s ease;
}

.roadmap-item:hover { background: var(--grey-100); }

.roadmap-item__body {
  transition: transform 0.18s ease;
}

.roadmap-item:hover .roadmap-item__body {
  transform: translateX(4px);
}

.roadmap-item__num {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--red);
  line-height: 1;
}

.roadmap-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roadmap-item__title {
  font-family: var(--font-head);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.2;
}

.roadmap-item__desc {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.65;
}

.roadmap-item__goal {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  font-style: italic;
}

.roadmap-footnote {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .roadmap-section { padding: 64px 0 72px; }
  .roadmap-item { grid-template-columns: 56px 1fr; gap: 0 16px; padding: 24px 0; }
  .roadmap-item:hover .roadmap-item__body { transform: none; }
}

/* ══════════════════════════════════════════
   BLOCK 6. COMPARE — «Кружок vs Клуб»
══════════════════════════════════════════ */

.compare-section {
  padding: 96px 0 104px;
  background: var(--black);
}

.compare-head {
  text-align: center;
  margin-bottom: 56px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: stretch;
  gap: 0;
}

.compare-col { display: flex; flex-direction: column; }

.compare-col--muted .compare-col__header {
  padding: 20px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
}

.compare-col--muted .compare-col__label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.compare-col--muted .compare-list {
  border: 1px solid rgba(255,255,255,0.1);
  flex: 1;
}

.compare-col--accent .compare-col__header {
  padding: 20px 32px;
  background: var(--red);
  border: 1px solid var(--red);
  border-bottom: none;
}

.compare-col--accent .compare-col__label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.compare-col--accent .compare-list {
  border: 1px solid rgba(228,76,67,0.4);
  flex: 1;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  padding: 0 4px;
}

.compare-list { margin: 0; padding: 0; list-style: none; }

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 28px;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.compare-item:last-child { border-bottom: none; }

.compare-item--no { color: rgba(255,255,255,0.35); }

.compare-item--no::before {
  content: '\2715';
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  margin-top: 2px;
}

.compare-item--yes { color: var(--white); font-weight: 500; }

.compare-item--yes::before {
  content: '\2713';
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  margin-top: 1px;
}

@media (max-width: 720px) {
  .compare-section { padding: 64px 0 72px; }
  .compare-grid { grid-template-columns: 1fr; gap: 4px; }
  .compare-vs { display: none; }
  .compare-col--muted { order: 2; }
  .compare-col--accent { order: 1; }
  .compare-item { padding: 14px 20px; font-size: 14px; }
  .compare-col__header { padding: 16px 20px !important; }
}

/* ══════════════════════════════════════════
   BLOCK 7. CASES — «Кейсы учеников»
══════════════════════════════════════════ */

.cases-section {
  padding: 96px 0 104px;
  background: linear-gradient(to bottom, var(--white) 60%, var(--grey-100) 100%);
}

.cases-head {
  text-align: center;
  margin-bottom: 56px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 3px solid var(--black);
}

.case-card {
  padding: 36px 32px;
  background: var(--white);
  border-right: 1px solid var(--grey-200);
  border-bottom: 3px solid var(--black);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s ease;
}

.case-card:last-child { border-right: none; }
.case-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.10); z-index: 1; }

.case-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-card__name {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.case-card__title {
  font-family: var(--font-head);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.2;
}

.case-card__desc {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.65;
}

.case-card__result {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  font-style: italic;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--grey-200);
}

.cases-disclaimer {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--grey-100);
  border-left: 3px solid var(--red);
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.65;
}

.cases-disclaimer strong { color: var(--black); }

@media (max-width: 900px) {
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { border-right: none; }
}

@media (max-width: 600px) {
  .cases-section { padding: 64px 0 72px; }
  .case-card { padding: 28px 20px; }
}

/* ══════════════════════════════════════════
   BLOCK 8. MONEY — «Про монетизацию честно»
══════════════════════════════════════════ */

.money-section {
  padding: 96px 0 104px;
  background: var(--black);
}

.money-head {
  text-align: center;
  margin-bottom: 56px;
}

.money-table-wrap {
  max-width: 820px;
  margin: 0 auto 40px;
  overflow-x: auto;
}

.money-table__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.money-table {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
}

.money-table th {
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.money-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.money-table td:last-child {
  font-family: var(--font-body);
  font-weight: 600;
  color: rgba(255,255,255,0.74);
  white-space: normal;
}

.money-table tr:last-child td { border-bottom: none; }

.money-warnings {
  max-width: 820px;
  margin: 0 auto 40px;
}

.money-warnings__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 16px;
}

.money-warnings__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.money-warnings__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
}

.money-warnings__list li::before {
  content: '\2715';
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  margin-top: 3px;
}

.money-bottom {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.money-bottom p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  font-weight: 500;
}

@media (max-width: 600px) {
  .money-section { padding: 64px 0 72px; }
  .money-table td, .money-table th { padding: 12px 14px; font-size: 13px; }
  .money-bottom { padding: 20px; }
}

/* ══════════════════════════════════════════
   BLOCK 9. FAQ
══════════════════════════════════════════ */

.faq-section {
  padding: 96px 0 104px;
  background: linear-gradient(to bottom, var(--white) 50%, var(--grey-100) 100%);
}

.faq-head {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 3px solid var(--black);
}

.faq-item {
  border-bottom: 1px solid var(--grey-200);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}

.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: var(--red); }

.faq-icon {
  flex-shrink: 0;
  color: var(--grey-400);
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), color 0.15s ease;
}

.faq-summary:hover .faq-icon { color: var(--red); }
details[open] > .faq-summary .faq-icon { transform: rotate(180deg); color: var(--red); }
details[open] > .faq-summary { color: var(--red); }

.faq-body {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 620px;
}

@media (max-width: 600px) {
  .faq-section { padding: 64px 0 72px; }
  .faq-summary { font-size: 15px; padding: 20px 0; }
  .faq-body { font-size: 14px; }
}

/* ══════════════════════════════════════════
   BLOCK 10. SAFETY — «Безопасность»
══════════════════════════════════════════ */

.safety-section {
  padding: 96px 0 104px;
  background: linear-gradient(to bottom, var(--grey-100) 0%, var(--white) 100%);
}

.safety-head {
  text-align: center;
  margin-bottom: 56px;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 3px solid var(--black);
}

.safety-card {
  padding: 36px 32px;
  background: var(--white);
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  transition: background 0.18s ease;
}

.safety-card:nth-child(2n) { border-right: none; }
.safety-card:nth-child(3), .safety-card:nth-child(4) { border-bottom: none; }
.safety-card:hover { background: var(--grey-100); }

.safety-card__title {
  font-family: var(--font-head);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 10px;
}

.safety-card__desc {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.65;
}

@media (max-width: 600px) {
  .safety-section { padding: 64px 0 72px; }
  .safety-grid { grid-template-columns: 1fr; }
  .safety-card:nth-child(2n) { border-right: none; }
  .safety-card:nth-child(3) { border-bottom: 1px solid var(--grey-200); }
  .safety-card { padding: 28px 20px; }
}

/* ══════════════════════════════════════════
   BLOCK 11. PRICING — «Тарифы»
══════════════════════════════════════════ */

.pricing-section {
  padding: 96px 0 104px;
  background: linear-gradient(to bottom, var(--white) 0%, var(--grey-100) 50%, var(--white) 100%);
}

.pricing-head {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 3px solid var(--black);
  max-width: 820px;
  margin: 0 auto;
  overflow: visible;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 40px 44px;
  background: var(--white);
  border-right: 1px solid var(--grey-200);
  border-bottom: 3px solid var(--black);
  transition: box-shadow 0.25s ease;
}

.plan-card:last-child { border-right: none; }
.plan-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.10); z-index: 1; }

.plan-card--featured {
  background: var(--black);
  border-right: none;
  border-bottom-color: var(--red);
  padding-top: 40px;
}

.plan-card__featured-label {
  display: inline-block;
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 20px;
}

.plan-card__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 12px;
}

.plan-card__tag--light { color: rgba(255,255,255,0.4); }

.plan-card__name {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
}

.plan-card--featured .plan-card__name { color: var(--white); }

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-200);
}

.plan-card--featured .plan-card__price { border-bottom-color: rgba(255,255,255,0.12); }

.plan-card__amount {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}

.plan-card--featured .plan-card__amount { color: var(--white); }

.plan-card__period { font-size: 14px; color: var(--grey-400); font-weight: 500; }
.plan-card--featured .plan-card__period { color: rgba(255,255,255,0.35); }

.plan-card__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--black);
  line-height: 1.5;
}

.plan-card__list li::before {
  content: '\2713';
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  margin-top: 1px;
}

.plan-card--featured .plan-card__list li { color: rgba(255,255,255,0.85); }

.plan-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.plan-card__btn--primary {
  background: var(--red);
  color: var(--white);
}

.plan-card__btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.plan-card__btn--secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid rgba(255,255,255,0.2);
}

.plan-card__btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: translateY(-1px);
}

/* Price comparison table */
.pricing-compare {
  max-width: 820px;
  margin: 48px auto 0;
}

.pricing-compare__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 16px;
}

.pricing-compare__table {
  width: 100%;
  border: 1px solid var(--grey-200);
}

.pricing-compare__table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-200);
}

.pricing-compare__table td:last-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  text-align: right;
}

.pricing-compare__table tr:last-child td { border-bottom: none; }

.pricing-compare__highlight td {
  background: rgba(228,76,67,0.06);
  color: var(--black) !important;
  font-weight: 600;
}

.pricing-compare__highlight td:last-child {
  color: var(--red) !important;
}

.pricing-footnote {
  max-width: 620px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.7;
}

@media (max-width: 680px) {
  .pricing-section { padding: 64px 0 72px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .plan-card { border-right: none; border-bottom: 1px solid var(--grey-200); padding: 32px 24px 36px; }
  .plan-card--featured { border-bottom: 3px solid var(--red); }
  .plan-card:last-child { border-bottom: none; }
  .plan-card--featured { order: -1; }
  .pricing-compare__table td { padding: 12px 14px; font-size: 13px; }
}

/* ══════════════════════════════════════════
   BLOCK 12. GUARANTEE
══════════════════════════════════════════ */

.guarantee-section {
  padding: 96px 0 104px;
  background: var(--black);
  border-top: 6px solid var(--red);
}

.guarantee-head {
  text-align: center;
  margin-bottom: 56px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 3px solid rgba(255,255,255,0.15);
}

.guarantee-step {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.18s ease;
}

.guarantee-step:last-child { border-right: none; }
.guarantee-step:hover { background: rgba(255,255,255,0.04); }

.guarantee-step__num {
  font-family: var(--font-head);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--red);
  line-height: 1;
  margin-bottom: 20px;
}

.guarantee-step__title {
  font-family: var(--font-head);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.guarantee-step__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.guarantee-note {
  margin-top: 40px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--red);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-note p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.guarantee-note strong {
  color: var(--white);
}

@media (max-width: 720px) {
  .guarantee-section { padding: 64px 0 72px; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 28px 20px; }
  .guarantee-step:last-child { border-bottom: none; }
  .guarantee-note { padding: 20px; }
}

/* ══════════════════════════════════════════
   BLOCK 13. SIGNUP — Финальный CTA + форма
══════════════════════════════════════════ */

.signup-section {
  background: var(--grey-100);
  border-top: 6px solid var(--red);
}

.signup-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 480px);
  min-height: 560px;
}

.signup-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 40px;
  background: var(--black);
}

.signup-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.signup-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 28px;
}

.signup-big-card {
  padding: 24px 28px;
  background: var(--red);
  margin-bottom: 24px;
}

.signup-big-card__title {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.signup-big-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 8px;
}

.signup-big-card__desc:last-child { margin-bottom: 0; }

.signup-alt-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signup-alt-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.signup-alt-link:hover { color: var(--white); }

.signup-alt-micro {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.signup-form-panel {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-left: 1px solid var(--grey-200);
}

.signup-form-card {
  padding: 48px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.signup-form-card--masterclass {
  justify-content: center;
}

.signup-masterclass {
  width: 100%;
}

.form-box { padding: 0; background: transparent; border: none; }

.fstep { display: none; }
.fstep.active { display: block; }

.f-label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.f-input {
  width: 100%;
  margin-bottom: 14px;
  padding: 13px 16px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 0;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
  appearance: none;
}

.f-input::placeholder { color: var(--grey-400); }
.f-input:focus { border-color: var(--red); background: var(--white); }
.f-input.err { border-color: #f87171; }

.f-err {
  margin-top: -10px;
  margin-bottom: 12px;
  color: #f87171;
  font-size: 12px;
  display: none;
}

.f-err.v { display: block; }

.sub-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 24px;
  border: none;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  transition: background 0.18s ease, transform 0.12s ease;
}

.sub-btn:hover:not(:disabled) { background: var(--red-dark); transform: translateY(-1px); }
.sub-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.spin {
  width: 17px;
  height: 17px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 999px;
  animation: landing-spin 0.7s linear infinite;
}

.sub-btn.ld .spin { display: block; }
.sub-btn.ld .bt { display: none; }

@keyframes landing-spin { to { transform: rotate(360deg); } }

.f-alert { display: none; margin-bottom: 14px; padding: 11px 15px; border-radius: 10px; font-size: 13px; }
.f-alert.v { display: block; }
.f-alert-e { border-left: 3px solid var(--red); background: rgba(228, 76, 67, 0.08); color: var(--red); }

.ok-wrap { padding: 10px 0; text-align: center; }

.ok-icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: var(--red);
}

.ok-icon svg { color: var(--white); }

.ok-h {
  margin-bottom: 8px;
  color: var(--black);
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
}

.ok-sub { color: var(--grey-600); font-size: 14px; line-height: 1.6; }

.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }

.consent-cb {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--red);
  cursor: pointer;
}

.consent-lbl { color: var(--grey-600); font-size: 12px; line-height: 1.5; cursor: pointer; }
.consent-lbl a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.consent-lbl a:hover { color: var(--red-dark); }

.f-err-consent { margin-top: -12px; margin-bottom: 12px; color: #f87171; font-size: 12px; display: none; }
.f-err-consent.v { display: block; }

.signup-masterclass.is-request-success .reg-panel-label,
.signup-masterclass.is-request-success .reg-tabs,
.signup-masterclass.is-request-success #landing-pane-req .req-hint {
  display: none;
}

/* Request success modal */
.request-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 18, 22, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.request-modal__card {
  width: min(100%, 560px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.request-modal__top {
  padding: 26px 26px 22px;
  background: linear-gradient(180deg, rgba(228, 76, 67, 0.12), rgba(228, 76, 67, 0.02)), var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.request-modal__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-modal__title {
  margin: 0;
  color: var(--black);
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.request-modal__text {
  max-width: 460px;
  margin: 14px 0 0;
  color: var(--grey-600);
  font-size: 15px;
  line-height: 1.65;
}

.request-modal__body { padding: 22px 26px 26px; }

.request-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.request-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid transparent;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.request-modal__cta:hover { transform: translateY(-1px); }
.request-modal__cta--tg { background: #229ed9; color: var(--white); }
.request-modal__cta--max { background: var(--black); color: var(--white); }

.request-modal__fallback { color: var(--grey-600); font-size: 13px; line-height: 1.6; }
.request-modal__fallback strong { color: var(--black); }

.request-modal__close {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--grey-200);
  background: var(--grey-100);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.request-modal__close:hover { background: var(--white); border-color: var(--grey-400); }
body.request-modal-open { overflow: hidden; }

@media (max-width: 860px) {
  .signup-inner { grid-template-columns: 1fr; }
  .signup-copy { padding: 56px 40px 48px; }
  .signup-form-panel { border-left: none; border-top: 1px solid var(--grey-200); }
  .signup-form-card { padding: 36px 24px 40px; }
  .request-modal__actions { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .signup-copy { padding: 40px 20px 36px; }
  .signup-title { font-size: clamp(26px, 7vw, 36px); }
  .signup-form-card { padding: 30px 20px 34px; }
  .signup-big-card { padding: 20px; }
  .request-modal { padding: 16px; }
  .request-modal__top, .request-modal__body { padding-inline: 18px; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

.footer-top {
  background: var(--black);
  padding: 64px 0 56px;
  border-top: 3px solid rgba(255,255,255,0.08);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 48px;
  align-items: start;
}

.footer-brand-col { display: flex; flex-direction: column; gap: 16px; }

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

.footer-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--red);
  flex-shrink: 0;
}

.footer-logo-svg { width: 22px; height: 22px; filter: brightness(0) invert(1); }

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
  max-width: 280px;
}

.footer-tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-tg:hover { color: var(--red); }

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto repeat(2, auto);
  gap: 10px 24px;
}

.footer-nav-label {
  grid-column: 1 / -1;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav a:hover { color: var(--white); }

.footer-cta-col { display: flex; flex-direction: column; gap: 16px; }

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.footer-cta-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.footer-bottom {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.15s ease; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 760px) {
  .footer-top-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { gap: 12px; }
}

/* ═══════════════════════════════════════════════
   PREMIUM POLISH — calmer hierarchy, lifted cards
   ═══════════════════════════════════════════════ */

.section-title,
.hero__headline-main,
.hero__sub,
.nav-logo-copy strong,
.nav-item__title,
.try-card__title,
.result-card__title,
.vibe-col__title,
.roadmap-item__title,
.case-card__title,
.plan-card__name,
.plan-card__amount,
.guarantee-step__num,
.signup-title,
.request-modal__title,
.footer-brand-name {
  letter-spacing: 0;
}

.section-title {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  color: rgba(17, 17, 17, 0.62);
}

.section-sub--white {
  color: rgba(255, 255, 255, 0.62);
}

.hero {
  padding: 44px 0 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 247, 245, 0.98)),
    var(--surface);
}

.hero__card {
  min-height: 642px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 36px 120px rgba(17, 17, 17, 0.24);
}

.hero__bg {
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 62px 62px;
}

.hero__glow {
  inset: auto 0 0 auto;
  width: 46%;
  height: 100%;
  background: linear-gradient(90deg, rgba(228,76,67,0), rgba(228,76,67,0.16));
}

.hero__billboard {
  min-height: 508px;
  padding: 68px 72px 56px;
}

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero__kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
}

.hero__headline-main {
  max-width: 760px;
  text-wrap: balance;
}

.hero__sub {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
}

.hero__bullets {
  gap: 12px;
}

.hero__bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--red);
}

.hero__cta-primary,
.hero__cta-secondary,
.try-card__cta,
.nav-aside__cta,
.plan-card__btn,
.sub-btn,
.footer-cta-btn,
.request-modal__cta,
.request-modal__close {
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.12);
}

.hero__cta-primary:hover,
.hero__cta-secondary:hover,
.try-card__cta:hover,
.nav-aside__cta:hover,
.plan-card__btn:hover,
.sub-btn:hover:not(:disabled),
.footer-cta-btn:hover,
.request-modal__cta:hover {
  transform: translateY(-2px);
}

.hero__chip {
  min-width: 232px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.16);
  border-left: 3px solid var(--red);
  background: rgba(17, 17, 17, 0.74);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero__chip span {
  color: rgba(255, 255, 255, 0.48);
}

.hc1 {
  top: 84px;
  right: 72px;
  transform: none;
}

.hc2 {
  top: 188px;
  right: 72px;
  transform: none;
}

.hero__features {
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.hero__feat {
  border: none;
  background: var(--white);
}

.try-section,
.roadmap-section,
.pricing-section {
  background: var(--surface);
}

.results-section,
.cases-section,
.faq-section,
.safety-section,
.signup-section {
  background: var(--surface-soft);
}

.try-grid,
.results-grid,
.safety-grid,
.cases-grid,
.pricing-grid {
  gap: 16px;
  border-top: 0;
}

.try-card,
.result-card,
.safety-card,
.case-card,
.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    border-color 0.18s ease,
    background 0.18s ease;
}

.try-card--primary,
.try-card--dark,
.result-card:nth-child(2n),
.result-card:nth-child(3),
.result-card:nth-child(4),
.safety-card:nth-child(2n),
.safety-card:nth-child(3),
.safety-card:nth-child(4),
.case-card,
.case-card:last-child,
.plan-card,
.plan-card:last-child {
  border: 1px solid var(--line);
}

.try-card:hover,
.result-card:hover,
.safety-card:hover,
.case-card:hover,
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  background: var(--white);
}

.try-card--dark,
.plan-card--featured {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 80px rgba(17, 17, 17, 0.18);
}

.try-card--dark:hover,
.plan-card--featured:hover {
  background: var(--black);
}

.results-disclaimer,
.cases-disclaimer,
.money-bottom,
.guarantee-note,
.signup-big-card,
.request-modal__card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.vibe-grid,
.compare-grid,
.guarantee-grid {
  gap: 16px;
  border-top: 0;
}

.vibe-col,
.compare-col,
.guarantee-step {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.vibe-col:first-child,
.guarantee-step:last-child {
  border-right: 1px solid var(--line-dark);
}

.vibe-accent {
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(228, 76, 67, 0.24);
}

.roadmap-timeline {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.roadmap-item {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    border-color 0.18s ease,
    background 0.18s ease;
}

.roadmap-item:hover {
  border-color: rgba(228, 76, 67, 0.42);
  background: var(--white);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.roadmap-item:hover .roadmap-item__body {
  transform: none;
}

.roadmap-item__num {
  color: rgba(228, 76, 67, 0.86);
}

.compare-col {
  overflow: hidden;
}

.compare-col--muted .compare-col__header,
.compare-col--accent .compare-col__header,
.compare-col--muted .compare-list,
.compare-col--accent .compare-list {
  border: 0;
}

.money-table-wrap,
.pricing-compare {
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.money-table,
.pricing-compare__table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.money-table td:first-child,
.pricing-compare__table td:first-child {
  font-weight: 700;
}

.money-table tbody tr,
.pricing-compare__table tbody tr {
  transition: background 0.16s ease;
}

.money-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.pricing-compare__table tbody tr:hover {
  background: rgba(17, 17, 17, 0.035);
}

.faq-list {
  max-width: 820px;
  padding: 12px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.signup-inner {
  background: var(--white);
}

.signup-copy {
  background:
    linear-gradient(135deg, rgba(228, 76, 67, 0.18), rgba(228, 76, 67, 0) 42%),
    var(--black);
}

.signup-form-panel {
  background: var(--surface-soft);
}

.signup-form-card {
  justify-content: center;
}

.f-input,
.f-alert {
  border-radius: 8px;
}

.ok-icon,
.footer-brand-mark,
.nav-logo-mark {
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .hero__billboard {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .try-grid,
  .results-grid,
  .safety-grid,
  .cases-grid,
  .pricing-grid,
  .vibe-grid,
  .compare-grid,
  .guarantee-grid {
    gap: 12px;
  }

  .try-card,
  .result-card,
  .safety-card,
  .case-card,
  .plan-card,
  .roadmap-item,
  .vibe-col,
  .compare-col,
  .guarantee-step {
    transform: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 18px 0 24px;
  }

  .hero__card {
    min-height: 0;
  }

  .hero__billboard {
    padding: 30px 22px 34px;
  }

  .hero__kicker {
    margin-bottom: 18px;
  }

  .hero__features {
    gap: 0;
  }

  .faq-list,
  .money-table-wrap,
  .pricing-compare {
    padding: 16px;
  }
}

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