/* ============================================
   IKIGAI AI-Intensive Landing Page
   Design System + Full Styles
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-alt: #FFF5FA;
  --bg-dark: #0B0A12;
  --bg-dark-card: #161320;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --text-on-dark: #E5E7EB;
  --accent: #E11D74;
  --accent-hover: #C2185B;
  --accent-light: #FCE4EF;
  --accent-glow: rgba(225, 29, 116, 0.15);
  --lime: #C8FF3E;
  --lime-light: #F2FFC2;
  --border: #E5E7EB;
  --border-light: #F3F4F6;

  /* Typography */
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing */
  --section-py: 96px;
  --section-py-mobile: 56px;
  --container: 1200px;
  --gap: 24px;
  --gap-lg: 48px;

  /* Radius */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-accent: 0 4px 24px rgba(225, 29, 116, 0.2);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: var(--fw-regular);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--accent-hover);
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Base --- */
.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

/* --- Typography --- */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section--dark .section-tag {
  background: rgba(225, 29, 116, 0.2);
  color: #C4B5FD;
}

h1 {
  font-size: 52px;
  font-weight: var(--fw-extrabold);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

h2 {
  font-size: 40px;
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 8px;
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 680px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.highlight {
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 18px;
  font-weight: var(--fw-bold);
  padding: 18px 40px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  gap: 8px;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(225, 29, 116, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--accent);
}

.btn--white:hover {
  background: #F3F4F6;
  color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: 20px;
  padding: 22px 48px;
  border-radius: 14px;
}

/* ============================================
   HEADER (Sticky)
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--duration) var(--ease);
}

.header--scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__nav-link {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.header__nav-link:hover {
  color: var(--accent);
}

.header__cta {
  font-size: 15px;
  font-weight: var(--fw-bold);
  padding: 10px 24px;
  border-radius: 10px;
}

/* ============================================
   1. HERO
   ============================================ */
.hero {
  padding: 120px 0 var(--section-py);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--accent);
  background: var(--accent-light);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__badge > span:empty {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* Двухстрочный вариант бейджа: дата сверху + 3 дня + цена снизу */
.hero__badge--two-line {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 26px;
  border-radius: 24px;
  font-size: 15px;
  line-height: 1.3;
  text-align: center;
}
.hero__badge--two-line .hero__badge-line {
  display: block;
}
.hero__badge--two-line .hero__badge-price {
  font-size: 20px;
  font-weight: var(--fw-bold, 700);
  color: var(--accent);
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .hero__badge--two-line {
    padding: 10px 18px;
    font-size: 13px;
  }
  .hero__badge--two-line .hero__badge-price {
    font-size: 17px;
  }
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero__sub {
  font-size: 22px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
}

.hero__meta-item--accent .hero__meta-value {
  color: var(--accent);
  font-weight: var(--fw-extrabold);
  background: var(--accent-light);
  padding: 2px 12px;
  border-radius: 6px;
  display: inline-block;
}

.hero__meta-label {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__meta-value {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--text);
}

/* Hero — Countdown Timer */
.countdown {
  margin-bottom: 32px;
}

.countdown__label {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.countdown__boxes {
  display: flex;
  gap: 12px;
}

.countdown__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent-light);
  border: 1px solid rgba(225, 29, 116, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 72px;
}

.countdown__num {
  font-size: 28px;
  font-weight: var(--fw-extrabold);
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__unit {
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Hero Visual — Neural Network Animation */
.hero__visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 24px;
}

.neural-net {
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
  position: relative;
}

.neural-net canvas {
  width: 100%;
  height: 100%;
}

/* ============================================
   1.5 CREDENTIALS
   ============================================ */
.credentials {
  padding: 32px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}

.credentials__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.credentials__icon {
  width: 56px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}

.credentials__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.credentials__text {
  display: flex;
  flex-direction: column;
}

.credentials__text strong {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--text);
}

.credentials__text span {
  font-size: 12px;
  color: var(--text-muted);
}

.credentials__link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.credentials__link:hover {
  opacity: 0.7;
}

.credentials__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.credentials__badge-ah {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: #16a34a;
}

/* ============================================
   2. PROBLEM
   ============================================ */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.problem__card {
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.problem__card--positive {
  background: var(--white);
  border-color: var(--lime);
  border-left: 4px solid var(--lime);
}

.problem__card--negative {
  background: var(--white);
  border-color: #FCA5A5;
  border-left: 4px solid #EF4444;
}

.problem__card-icon {
  margin-bottom: 16px;
}

.problem__card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.problem__card ul {
  list-style: none;
  padding: 0;
}

.problem__card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

.problem__card--positive li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: var(--fw-bold);
}

.problem__card--negative li::before {
  content: '\00D7';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: var(--fw-bold);
  font-size: 18px;
}

.problem__bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  font-weight: var(--fw-semibold);
  color: var(--text);
}

/* ============================================
   3. PROGRAM
   ============================================ */
.program__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.program__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.program__card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.program__card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 18px;
  font-weight: var(--fw-extrabold);
  border-radius: 12px;
  margin-bottom: 20px;
}

.program__card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.program__card ul {
  list-style: none;
  padding: 0;
}

.program__card li {
  font-size: 16px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.program__card li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ============================================
   4. RESULTS
   ============================================ */
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.results__card {
  text-align: center;
  padding: 32px 24px;
}

.results__icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.results__card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.results__card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   4.5 TESTIMONIALS — Video Reviews
   ============================================ */
.testimonials__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto 16px;
  padding: 0 24px;
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}

.testimonials__arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.testimonials__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2 + 24px)) 20px;
  cursor: grab;
  scrollbar-width: none;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonials__track:active {
  cursor: grabbing;
}

.testimonials__card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-dark-card);
  border: 2px solid var(--lime);
  box-shadow: 0 0 20px rgba(132, 204, 22, 0.12);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 32px rgba(132, 204, 22, 0.25);
}

.testimonials__video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  cursor: pointer;
}

.testimonials__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
  pointer-events: none;
}

.testimonials__card:hover .testimonials__play {
  background: rgba(225, 29, 116, 0.85);
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonials__play svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 3px;
}

.testimonials__title {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--text-on-dark);
  line-height: 1.4;
}

.testimonials__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   5. AUDIENCE
   ============================================ */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.audience__card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid transparent;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.audience__card:hover {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.audience__emoji {
  margin-bottom: 16px;
}

.audience__card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.audience__card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   5.5 POWER — Claude Code Section
   ============================================ */
.power__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.power__card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--duration) var(--ease);
}

.power__card:hover {
  border-color: var(--lime);
  box-shadow: 0 0 24px rgba(132, 204, 22, 0.15);
}

.power__card-icon {
  margin-bottom: 20px;
}

.power__card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.power__card p {
  font-size: 15px;
  color: var(--text-on-dark);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 16px;
}

.power__link {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--lime);
  transition: opacity var(--duration) var(--ease);
}

.power__link:hover {
  color: var(--lime);
  opacity: 0.8;
}

/* ============================================
   6. SPEAKER
   ============================================ */
.speaker__layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}

.speaker__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0B0A12;
}

.speaker__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  mix-blend-mode: normal;
}

.speaker__info h2 {
  margin-bottom: 8px;
}

.speaker__title {
  font-size: 20px;
  color: var(--accent);
  font-weight: var(--fw-bold);
  margin-bottom: 24px;
}

.speaker__stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.speaker__stat {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.4;
}

.speaker__stat strong {
  color: var(--accent);
  font-size: 18px;
  font-weight: var(--fw-extrabold);
}

.speaker__bio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.speaker__bio p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.speaker__role-highlight {
  font-weight: var(--fw-bold);
  color: var(--accent) !important;
  font-size: 17px !important;
}

.speaker__role-highlight a,
.speaker__bio a,
.team__member a,
.team__together a,
.footer__text a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.speaker__role-highlight a:hover,
.speaker__bio a:hover,
.team__member a:hover,
.team__together a:hover,
.footer__text a:hover {
  opacity: 0.7;
}

/* ============================================
   6.5 TEAM
   ============================================ */
.team__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.team__photo-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0B0A12;
}

.team__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team__info h2 {
  margin-bottom: 24px;
}

.team__members {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.team__member {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.team__member h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team__member-role {
  font-size: 14px;
  color: var(--accent);
  font-weight: var(--fw-semibold);
  margin-bottom: 8px;
}

.team__member p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.team__together {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.team__awards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.award {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.award__icon {
  width: 64px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

.award__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award__text h4 {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--text);
  margin-bottom: 2px;
}

.award__text p {
  font-size: 14px;
  color: var(--text-muted);
}

.award--link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.award--link:hover {
  opacity: 0.7;
}

/* ============================================
   7. EXPECTATIONS
   ============================================ */
.expect__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.expect__card {
  padding: 36px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.expect__card:hover {
  border-color: var(--accent);
}

.expect__card-icon {
  margin-bottom: 16px;
}

.expect__card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.expect__card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   7.5 FAQ
   ============================================ */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.faq__item.active {
  border-color: var(--accent);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 17px;
  font-weight: var(--fw-semibold);
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color var(--duration) var(--ease);
}

.faq__question:hover {
  color: var(--accent);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
  color: var(--text-muted);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 0 24px;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq__item--wide.active .faq__answer {
  max-height: 1400px;
}

.faq__answer p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.faq__answer ul {
  margin: 12px 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__answer li {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   8. PRICING
   ============================================ */
.pricing__card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.pricing__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--lime));
}

.pricing__amount {
  font-size: 64px;
  font-weight: var(--fw-extrabold);
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pricing__currency {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
}

.pricing__note {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.pricing__extras {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 32px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  line-height: 1.6;
}

.pricing__extras strong {
  color: var(--text);
}

.pricing__cta {
  margin-bottom: 16px;
}

.pricing__cta .btn {
  width: 100%;
}

.pricing__guarantee {
  font-size: 14px;
  color: var(--text-light);
}

/* ============================================
   8.5 VENUE
   ============================================ */
.venue__card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.venue__info h3 {
  font-size: 26px;
  margin-bottom: 24px;
}

.venue__details {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.venue__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: var(--text-muted);
}

.venue__detail svg {
  flex-shrink: 0;
  color: var(--accent);
}

.venue__map-btn {
  gap: 8px;
}

/* ============================================
   9. URGENCY (Dark CTA)
   ============================================ */
.urgency {
  text-align: center;
}

.urgency h2 {
  color: var(--white);
  font-size: 44px;
  margin-bottom: 20px;
}

.urgency__text {
  font-size: 20px;
  color: var(--text-on-dark);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0.8;
}

.urgency .btn {
  font-size: 20px;
}

/* ============================================
   10. UPSELL
   ============================================ */
.upsell__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.upsell__step {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: all var(--duration) var(--ease);
}

.upsell__step:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(225, 29, 116, 0.2);
}

.upsell__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(225, 29, 116, 0.2);
  color: #C4B5FD;
  font-size: 14px;
  font-weight: var(--fw-extrabold);
  border-radius: 10px;
  margin-bottom: 14px;
}

.upsell__step h4 {
  font-size: 17px;
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: 8px;
}

.upsell__step p {
  font-size: 14px;
  color: var(--text-on-dark);
  opacity: 0.7;
  line-height: 1.5;
}

.upsell__bottom {
  text-align: center;
}

.upsell__meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.upsell__meta-item {
  font-size: 16px;
  color: var(--text-on-dark);
  opacity: 0.7;
}

.upsell__meta-item strong {
  font-size: 28px;
  font-weight: var(--fw-extrabold);
  color: var(--white);
  display: block;
  opacity: 1;
}

.upsell__result {
  font-size: 17px;
  color: var(--text-on-dark);
  opacity: 0.8;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* ============================================
   10.5 COMMUNITY
   ============================================ */
.community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  max-width: 900px;
  margin: 0 auto;
}

.community__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--duration) var(--ease);
  position: relative;
}

.community__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.community__card--wa:hover {
  border-color: #25D366;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.15);
}

.community__card--tg:hover {
  border-color: #2AABEE;
  box-shadow: 0 4px 24px rgba(42, 171, 238, 0.15);
}

.community__icon {
  flex-shrink: 0;
}

.community__info h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--text);
}

.community__meta-line {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.community__meta-line strong {
  color: var(--accent);
}

.community__card--wa .community__meta-line strong {
  color: #25D366;
}

.community__card--tg .community__meta-line strong {
  color: #2AABEE;
}

.community__info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.community__join {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--accent);
  margin-top: auto;
  transition: gap var(--duration) var(--ease);
}

.community__card--wa .community__join {
  color: #25D366;
}

.community__card--tg .community__join {
  color: #2AABEE;
}

.community__card:hover .community__join {
  gap: 4px;
}

/* ============================================
   11. FOOTER
   ============================================ */
.footer {
  padding: 48px 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  height: 48px;
  width: auto;
  max-width: 280px;
}

.footer__text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease);
}

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

/* ============================================
   NEON GLOW EFFECT (cursor-following)
   ============================================ */
.glow-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  overflow: hidden;
}

.glow-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  background: radial-gradient(
    300px circle at var(--mouse-x) var(--mouse-y),
    rgba(225, 29, 116, 0.12),
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.glow-card:hover::after {
  opacity: 1;
}

/* Neon border glow */
.glow-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  background: radial-gradient(
    250px circle at var(--mouse-x) var(--mouse-y),
    rgba(225, 29, 116, 0.4),
    transparent 60%
  );
  z-index: -1;
  pointer-events: none;
}

.glow-card:hover::before {
  opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .hero { padding: 100px 0 72px; }
  .hero__sub { font-size: 19px; }
  .section { padding: 72px 0; }

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

  .hero__visual {
    display: none;
  }

  .results__grid,
  .audience__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .speaker__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .speaker__photo {
    max-width: 360px;
  }

  .team__layout {
    gap: 40px;
  }

  .credentials__inner {
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body { font-size: 16px; }
  h1 { font-size: 32px; line-height: 1.15; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  .container { padding: 0 20px; }
  .section { padding: var(--section-py-mobile) 0; }

  .hero {
    padding: 88px 0 var(--section-py-mobile);
  }
  .hero__sub { font-size: 17px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__meta { gap: 20px; }

  .countdown__boxes { gap: 8px; }
  .countdown__box { min-width: 60px; padding: 10px 12px; }
  .countdown__num { font-size: 22px; }

  .testimonials__card { flex: 0 0 240px; }

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

  .hero__visual {
    display: none;
  }

  .credentials {
    padding: 24px 0;
  }

  .credentials__inner {
    flex-direction: column;
    gap: 16px;
  }

  .credentials__divider {
    width: 60%;
    height: 1px;
  }

  .problem__grid,
  .program__grid {
    grid-template-columns: 1fr;
  }

  .problem__card { padding: 28px; }
  .program__card { padding: 28px; }

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

  .results__card {
    padding: 24px 16px;
  }

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

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

  .speaker__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .speaker__photo {
    max-width: 280px;
  }

  .speaker__stats {
    flex-direction: column;
    gap: 8px;
  }

  .team__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .pricing__card {
    padding: 40px 24px;
  }

  .pricing__amount {
    font-size: 48px;
  }

  .urgency h2 {
    font-size: 30px;
  }

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

  .upsell__step {
    padding: 20px 16px;
  }

  .upsell__meta {
    gap: 24px;
  }

  .upsell__meta-item strong {
    font-size: 22px;
  }

  .venue__card {
    padding: 32px 20px;
  }

  .venue__info h3 {
    font-size: 22px;
  }

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

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .btn--lg {
    font-size: 18px;
    padding: 18px 36px;
  }

  .header__logo {
    height: 32px;
  }

  .header__nav {
    display: none;
  }

  .header__cta span {
    display: none;
  }
}

/* ============================================
   INITIATION (WOW секция — мир до / мир после)
   ============================================ */
.initiation {
  position: relative;
  background: #0A0816;
  color: var(--text-on-dark);
  overflow: hidden;
  padding: 120px 0;
  isolation: isolate;
}

.initiation__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.initiation__orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.initiation__orb--left {
  top: 10%;
  left: -180px;
  background: radial-gradient(circle, #E11D74 0%, transparent 70%);
}
.initiation__orb--right {
  bottom: 10%;
  right: -180px;
  background: radial-gradient(circle, #C8FF3E 0%, transparent 70%);
  animation-delay: -5s;
}

.initiation__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(225, 29, 116, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 29, 116, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(60px, -40px) scale(1.08); }
}

/* Head */
.initiation__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.initiation__badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(225, 29, 116, 0.15);
  border: 1px solid rgba(225, 29, 116, 0.4);
  color: #C4B5FD;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.initiation__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.initiation__word {
  background: linear-gradient(135deg, #E11D74 0%, #C084FC 35%, #C8FF3E 70%, #E11D74 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 4s ease-in-out infinite;
  text-shadow: 0 0 60px rgba(225, 29, 116, 0.6);
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.initiation__lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: #E5E7EB;
  opacity: 0.9;
}
.initiation__lead b {
  color: #fff;
  font-weight: 700;
}

/* Split: before / portal / after */
.initiation__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto 64px;
}

.initiation__side {
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(15, 13, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.initiation__side--before {
  opacity: 0.72;
  filter: grayscale(0.5);
}
.initiation__side--before:hover {
  opacity: 0.95;
  filter: grayscale(0);
}

.initiation__side--after {
  background: linear-gradient(160deg, rgba(225, 29, 116, 0.12) 0%, rgba(132, 204, 22, 0.08) 100%);
  border: 1px solid rgba(225, 29, 116, 0.35);
  box-shadow: 0 20px 80px -20px rgba(225, 29, 116, 0.4);
}
.initiation__side--after:hover {
  transform: translateY(-4px);
  border-color: rgba(132, 204, 22, 0.5);
}

.initiation__side h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.initiation__mark {
  display: inline-block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #9CA3AF;
  margin-bottom: 14px;
}
.initiation__mark--glow {
  background: linear-gradient(90deg, #E11D74, #C8FF3E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(225, 29, 116, 0.5);
}

.initiation__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.initiation__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}
.initiation__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.initiation__list span {
  font-weight: 600;
  color: #E5E7EB;
}
.initiation__list em {
  font-style: normal;
  font-size: 13px;
  color: #9CA3AF;
  text-align: right;
  max-width: 60%;
}
.initiation__list--glow em {
  color: #C4B5FD;
  font-weight: 500;
}

/* Portal */
.initiation__portal {
  position: relative;
  width: 120px;
  height: 120px;
  align-self: center;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.initiation__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(225, 29, 116, 0.5);
  animation: ringPulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.initiation__ring--1 {
  width: 60px;
  height: 60px;
  animation-delay: 0s;
}
.initiation__ring--2 {
  width: 88px;
  height: 88px;
  animation-delay: 0.6s;
  border-color: rgba(132, 204, 22, 0.45);
}
.initiation__ring--3 {
  width: 120px;
  height: 120px;
  animation-delay: 1.2s;
  border-color: rgba(225, 29, 116, 0.25);
}

@keyframes ringPulse {
  0% { transform: scale(0.6); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.initiation__core {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E11D74 0%, #C8FF3E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 0 40px rgba(225, 29, 116, 0.8),
    0 0 80px rgba(132, 204, 22, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  animation: coreFloat 3s ease-in-out infinite alternate;
}

@keyframes coreFloat {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* Manifest */
.initiation__manifest {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.45;
  font-weight: 500;
  color: #E5E7EB;
  letter-spacing: -0.01em;
}
.initiation__manifest b {
  color: #fff;
  font-weight: 800;
}

/* CTA */
.initiation__cta {
  text-align: center;
}
.initiation__cta .btn--white {
  padding: 18px 44px;
  font-size: 17px;
  box-shadow:
    0 0 0 4px rgba(225, 29, 116, 0.25),
    0 20px 60px -15px rgba(225, 29, 116, 0.6);
  transition: all 0.4s var(--ease);
}
.initiation__cta .btn--white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 6px rgba(132, 204, 22, 0.25),
    0 30px 80px -15px rgba(225, 29, 116, 0.8);
}
.initiation__hint {
  margin-top: 16px;
  font-size: 13px;
  color: #9CA3AF;
  letter-spacing: 0.03em;
}

/* Mobile */
@media (max-width: 900px) {
  .initiation { padding: 80px 0; }
  .initiation__split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .initiation__portal {
    width: 80px;
    height: 80px;
    transform: rotate(90deg);
  }
  .initiation__ring--1 { width: 40px; height: 40px; }
  .initiation__ring--2 { width: 58px; height: 58px; }
  .initiation__ring--3 { width: 80px; height: 80px; }
  .initiation__core { width: 36px; height: 36px; }
  .initiation__side { padding: 24px 20px; }
  .initiation__head { margin-bottom: 40px; }
  .initiation__orb { width: 360px; height: 360px; filter: blur(80px); }
  .initiation__list li { font-size: 14px; }
  .initiation__list em { font-size: 12px; max-width: 55%; }
  .initiation__cta .btn--white { padding: 16px 32px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .initiation__orb,
  .initiation__ring,
  .initiation__core,
  .initiation__word { animation: none; }
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 24px 24px;
  max-width: 440px;
  width: 90%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 50%;
  z-index: 10;
  transition: color 0.2s;
}

.modal__close:hover {
  color: var(--text);
}

.modal__widget {
  width: 100%;
}

.modal__widget > * {
  max-width: 100%;
}

/* Tablet — upsell grid */
@media (max-width: 1024px) {
  .upsell__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .upsell__grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }

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

  .hero__meta {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   PRICING REVISION (2026-05-07)
   Trust-bar, new Pricing, ROI, Sticky CTA
   ============================================ */

/* --- Hero meta-item: price accent --- */
.hero__meta-item--price .hero__meta-value {
  color: var(--accent);
  font-weight: var(--fw-bold);
}

/* --- Trust-bar --- */
.trust-bar {
  padding: 56px 0 24px;
  background: var(--bg-alt);
}
.trust-bar__lead,
.trust-bar__caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 16px;
}
.trust-bar__caption {
  margin: 16px 0 0;
  font-size: 13px;
}
.trust-bar__milestone {
  text-align: center;
  margin: 18px auto 0;
  max-width: 720px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--accent-light, #FCE4EF) 0%, #F2FFC2 100%);
  border: 1.5px solid var(--accent, #E11D74);
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text, #1A1A2E);
}
.trust-bar__milestone strong {
  color: var(--accent, #E11D74);
  font-weight: 800;
  font-size: 16px;
}
@media (max-width: 640px) {
  .trust-bar__milestone {
    font-size: 13px;
    padding: 12px 16px;
    margin: 14px 12px 0;
  }
  .trust-bar__milestone strong { font-size: 14px; }
}
.trust-bar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 32px;
}
.trust-bar__logo {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-family: var(--font);
  font-weight: var(--fw-semibold);
  font-size: 15px;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.trust-bar__logo:hover {
  color: var(--text);
  border-color: var(--accent);
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .trust-bar__logos { gap: 10px; }
  .trust-bar__logo { font-size: 13px; padding: 6px 12px; }
}

/* --- Pricing: new layout --- */
.pricing__amount-inline {
  color: var(--accent);
  white-space: nowrap;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}
.pricing__grid .pricing__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  max-width: none;
  margin: 0;
  min-width: 0;
  text-align: left;
  width: 100%;
}
.pricing__card--includes { border-top: 4px solid var(--accent); }
.pricing__card--compare  { border-top: 4px solid var(--lime); }
.pricing__card--excludes { border-top: 4px solid var(--text-muted); }
.pricing__card--payment  { border-top: 4px solid var(--accent); }

.pricing__card-title {
  font-size: 20px;
  font-weight: var(--fw-bold);
  margin: 0 0 20px;
  color: var(--text);
  text-align: center;
}

.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing__list li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}
.pricing__list--neutral li,
.pricing__list--payment li {
  display: block;
}
.pricing__list--neutral li::before {
  content: "—";
  color: var(--text-muted);
  margin-right: 8px;
  font-weight: var(--fw-bold);
}
.pricing__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  font-size: 13px;
  font-weight: var(--fw-bold);
  line-height: 1;
}

/* Compare table */
.pricing__compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pricing__compare th,
.pricing__compare td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.pricing__compare th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: var(--fw-semibold);
}
.pricing__compare td:last-child,
.pricing__compare th:last-child {
  text-align: right;
  white-space: nowrap;
}
.pricing__compare-highlight td {
  background: linear-gradient(90deg, transparent 0%, var(--accent-light) 100%);
  border-bottom: none;
  color: var(--text);
  font-size: 16px;
}
.pricing__compare-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Guarantee box */
.pricing__guarantee-box {
  margin-top: 20px;
  padding: 16px;
  background: var(--lime-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.pricing__guarantee-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

/* CTA block under cards */
.pricing__cta-block {
  margin-top: 48px;
  text-align: center;
}
.pricing__cta-block .btn {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing__card { padding: 24px; }
  .pricing__compare {
    font-size: 13px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* --- ROI section --- */
.roi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}
.roi__card {
  position: relative;
  padding: 32px 24px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.roi__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.roi__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-weight: var(--fw-bold);
  font-size: 16px;
  margin-bottom: 16px;
}
.roi__title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  margin: 0 0 12px;
  color: var(--text);
}
.roi__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.roi__text strong { color: var(--text); }
.roi__caption {
  margin: 32px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
}
@media (max-width: 768px) {
  .roi__grid { grid-template-columns: 1fr; }
}

/* --- Sticky CTA --- */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 12px 12px 20px;
  max-width: 720px;
  width: calc(100% - 32px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.16);
  transform: translateX(-50%) translateY(140%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
  opacity: 0;
  pointer-events: none;
}
.sticky-cta--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta--hidden-by-modal {
  transform: translateX(-50%) translateY(140%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.sticky-cta__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.sticky-cta__price {
  font-weight: var(--fw-extrabold);
  font-size: 18px;
  color: var(--text);
  line-height: 1.1;
}
.sticky-cta__meta {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__btn {
  white-space: nowrap;
  border-radius: 999px;
}
@media (max-width: 640px) {
  .sticky-cta {
    left: 8px;
    right: 8px;
    bottom: 8px;
    max-width: none;
    width: auto;
    border-radius: 14px;
    padding: 10px 10px 10px 16px;
    transform: translateY(140%);
    gap: 10px;
  }
  .sticky-cta--visible { transform: translateY(0); }
  .sticky-cta--hidden-by-modal { transform: translateY(140%) !important; }
  .sticky-cta__price { font-size: 16px; }
  .sticky-cta__meta  { font-size: 11px; }
  .sticky-cta__btn   { padding: 10px 14px; font-size: 14px; }
}

/* ============================================
   DAY-1 PREP BLOCK (после блока «Программа»)
   ============================================ */
.day1-prep {
  background: linear-gradient(135deg, #FFF5FA 0%, #FFF7ED 50%, #F2FFC2 100%);
  padding: 88px 0;
}
.day1-prep__card {
  background: #FFFFFF;
  border: 1.5px solid #C8FF3E;
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 20px 60px rgba(225, 29, 116, 0.10), 0 4px 20px rgba(132, 204, 22, 0.10);
}
.day1-prep__head {
  text-align: center;
  margin-bottom: 36px;
}
.day1-prep__badge {
  display: inline-block;
  background: linear-gradient(135deg, #E11D74, #C8FF3E);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(225, 29, 116, 0.25);
}
.day1-prep__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #1A1A2E;
}
.day1-prep__lead {
  font-size: 17px;
  line-height: 1.55;
  color: #4B5563;
  max-width: 720px;
  margin: 0 auto;
}
.day1-prep__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.day1-prep__day {
  background: linear-gradient(135deg, #FFF5FA 0%, #FCE4EF 100%);
  border: 1.5px solid rgba(225, 29, 116, 0.18);
  border-radius: 16px;
  padding: 22px 22px 24px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.day1-prep__day:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(225, 29, 116, 0.16);
}
.day1-prep__day--main {
  background: linear-gradient(135deg, #161320 0%, #2D1B69 100%);
  border-color: rgba(132, 204, 22, 0.4);
  color: #fff;
}
.day1-prep__day--main .day1-prep__day-num { color: #C8FF3E; }
.day1-prep__day--main .day1-prep__day-date { color: #C4B5FD; }
.day1-prep__day--main .day1-prep__day-desc { color: rgba(255,255,255,0.86); }
.day1-prep__day-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E11D74;
  margin-bottom: 6px;
}
.day1-prep__day-date {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1A1A2E;
  margin-bottom: 12px;
  line-height: 1.3;
}
.day1-prep__day-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #4B5563;
}
.day1-prep__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FFF7ED 100%);
  border: 1.5px solid #F59E0B;
  border-left: 6px solid #F59E0B;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.day1-prep__guarantee-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.day1-prep__guarantee-text {
  font-size: 15px;
  line-height: 1.55;
  color: #78350F;
}
.day1-prep__cta {
  text-align: center;
}
.day1-prep__cta-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #6B7280;
  font-style: italic;
}

@media (max-width: 768px) {
  .day1-prep { padding: 56px 0; }
  .day1-prep__card { padding: 28px 22px; border-radius: 20px; }
  .day1-prep__grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
  .day1-prep__day { padding: 18px 18px 20px; }
  .day1-prep__day-date { font-size: 16px; }
  .day1-prep__lead { font-size: 15px; }
  .day1-prep__guarantee { flex-direction: column; gap: 8px; padding: 16px 18px; }
  .day1-prep__guarantee-text { font-size: 14px; }
}
