/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg: #08090A;
  --text: #F5F2EB;
  --accent: #E8DDC7;
  --border: rgba(255,255,255,0.09);
  --border-hover: rgba(232,221,199,0.35);
  --muted: rgba(245,242,235,0.38);
  --card-bg: rgba(255,255,255,0.028);

  --f-sans: 'Inter', system-ui, sans-serif;
  --f-display: 'Bebas Neue', sans-serif;

  --container: 1400px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --pad-y: clamp(3.75rem, 8vw, 6.25rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: clamp(0.96rem, 1.05vw, 1rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  background:
    radial-gradient(ellipse 1200px 800px at 80% 10%, rgba(78,133,191,0.10), transparent),
    radial-gradient(ellipse 1000px 700px at 20% 30%, rgba(255,61,119,0.08), transparent),
    radial-gradient(ellipse 1400px 900px at 50% 60%, rgba(74,24,32,0.10), transparent),
    radial-gradient(ellipse 1000px 700px at 80% 85%, rgba(78,133,191,0.08), transparent),
    linear-gradient(180deg, #08090A 0%, #0B0A0E 40%, #0A0A0C 70%, #08090A 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }
button { font: inherit; cursor: none; border: none; background: none; }
strong, .hi {
  font-weight: 700;
  color: var(--accent);
}
@media (hover: none) and (pointer: coarse) {
  body, button { cursor: auto; }
}

/* ============================================
   GRAIN
   ============================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ============================================
   CURSOR
   ============================================ */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  margin-left: -4px; margin-top: -4px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transition: width .18s var(--ease), height .18s var(--ease), margin .18s var(--ease);
}
.cursor-dot.is-hover { width: 16px; height: 16px; margin-left: -8px; margin-top: -8px; }
.cursor-trail {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9997;
}
.cursor-trail span {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  margin-left: -3px; margin-top: -3px;
  background: var(--text);
  border-radius: 50%;
  mix-blend-mode: difference;
  pointer-events: none;
}
.cursor-trail span:nth-child(1){opacity:.55}
.cursor-trail span:nth-child(2){opacity:.4}
.cursor-trail span:nth-child(3){opacity:.27}
.cursor-trail span:nth-child(4){opacity:.15}
.cursor-trail span:nth-child(5){opacity:.07}
@media (hover:none) and (pointer:coarse){
  .cursor-dot,.cursor-trail{display:none}
}

/* ============================================
   LAYOUT
   ============================================ */
.container { width:100%; max-width:var(--container); margin:0 auto; padding:0 var(--pad-x); }
.section-pad { padding: var(--pad-y) 0; }
.desktop-only { display: block; }
.mobile-only  { display: none; }

/* Sections with absolute-positioned children need relative */
.hero, .point-a-section, .prefooter-cta, .footer-wrap, #pricing { position: relative; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-title {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}
.section-title .hi {
  font-weight: 800;
  color: var(--accent);
}
.label {
  font-family: var(--f-sans);
  font-size: clamp(0.6rem, 0.72vw, 0.7rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-label { display: block; margin-bottom: 0.9rem; }

/* ============================================
   CTA BUTTONS — GLOW GRADIENT BORDER
   ============================================ */
.cta-btn {
  --btn-gradient: linear-gradient(137deg, #FF3D77 0%, #FFB1CE 45%, #FF9D3C 100%);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 100px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(0.88rem, 1vw, 1.05rem);
  letter-spacing: 0.01em;
  color: var(--text);
  border: 2px solid transparent;
  background:
    linear-gradient(#141416, #141416) padding-box,
    var(--btn-gradient) border-box;
  cursor: none;
  transition: transform 600ms var(--ease);
  z-index: 2;
  text-decoration: none;
}
.cta-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 100px;
  background: var(--btn-gradient);
  filter: blur(45px);
  opacity: 0.55;
  z-index: -1;
  transition: opacity 600ms ease;
}
.cta-btn:hover { transform: scale(1.03); }
.cta-btn:hover::before { opacity: 0.9; }
.cta-btn:active { transform: scale(0.97); }
.cta-btn--blue  { --btn-gradient: linear-gradient(137deg, #4361EE 0%, #E0AEFF 45%, #F72585 100%); }
.cta-btn--cyan  { --btn-gradient: linear-gradient(137deg, #FFFFFF 0%, #7DD3FC 45%, #06B6D4 100%); }
.cta-btn--fire  { --btn-gradient: linear-gradient(137deg, #FF3D77 0%, #FFB1CE 45%, #FF9D3C 100%); }
.cta-btn--large { padding: 20px 52px; font-size: clamp(1rem, 1.2vw, 1.15rem); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: clamp(80px, 10vh, 140px) clamp(20px, 5vw, 80px);
  overflow: visible;
  background: transparent;
}
.hero-video,
.hero-bg-video,
video.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* mask убран — переход делается через .hero::after */
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.10);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 40px);
  z-index: 10;
  position: relative;
}
.hero-eyebrow { margin-bottom: 1.4rem; opacity: 0; }
.hero-title {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: clamp(1rem, 1.8vw, 1.5rem);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-line {
  display: block;
  white-space: nowrap;
}

/* Word rotator — active = relative (takes space), inactive = absolute (overlaid) */
.hero-rotate-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  min-width: 0;
  width: auto;
  height: 1.1em;
  line-height: 1.1;
}
.hero-rotate-word {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 400ms ease, filter 400ms ease,
              transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--f-sans);
  font-weight: 900;
  color: var(--accent);
  white-space: nowrap;
  pointer-events: none;
}
.hero-rotate-word.active {
  position: relative;
  display: inline-block;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  pointer-events: auto;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: rgba(245,242,235,0.55);
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
  opacity: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
#hero-cta { opacity: 0; }

/* ============================================
   MARQUEE (JS position, smooth speed)
   ============================================ */
.marquee-eyebrow {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(245,242,235,0.4);
  text-align: center;
  margin-bottom: clamp(16px, 2vw, 24px);
  padding: 0 clamp(20px, 4vw, 60px);
}
.marquee-section {
  background: transparent !important;
  position: relative;
  z-index: 1;
  margin-top: -100px;
  padding-top: clamp(40px, 5vw, 70px);
  padding-bottom: clamp(40px, 5vw, 70px);
  overflow: hidden;
}
.marquee-outer { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--text);
  padding: 0.35em 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee-dot {
  color: var(--accent);
  margin: 0 0.4em;
  opacity: 0.5;
  font-family: var(--f-sans);
}

/* ============================================
   SCROLL-SNAP SLIDERS
   ============================================ */
.slider-scroll-wrap { position: relative; }
.slider-scroll {
  display: flex;
  gap: clamp(12px, 1.5vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding: 20px 0; /* room for hover lift */
}
.slider-scroll::-webkit-scrollbar { display: none; }
.slider-scroll:active { cursor: grabbing; }
.slider-progress-track {
  width: 100%; height: 2px;
  background: rgba(255,255,255,0.07);
  margin-top: 1.6rem;
  border-radius: 1px;
  overflow: hidden;
}
.slider-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   POINT A — TALL CARDS WITH GRADIENT BORDER
   ============================================ */
.point-a-section { overflow: visible; }
.slider-card {
  flex: 0 0 clamp(260px, 25vw, 320px);
  scroll-snap-align: start;
  border-radius: 24px;
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  min-height: clamp(420px, 40vw, 500px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  /* Gradient border */
  background:
    linear-gradient(#0F0F12, #0F0F12) padding-box,
    linear-gradient(137deg, rgba(67,97,238,0.5) 0%, rgba(224,174,255,0.3) 45%, rgba(247,37,133,0.5) 100%) border-box;
  border: 1px solid transparent;
}
.slider-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.card-top { display: flex; flex-direction: column; gap: 1rem; }
.card-icon-wrap {
  width: clamp(1.8rem, 3.5vw, 2.8rem);
  height: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--accent);
  opacity: 0.75;
}
.card-icon-wrap svg { width: 100%; height: 100%; }
.card-number { color: var(--accent); }
.card-title {
  font-weight: 600;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--text);
}
.card-title .hi { font-weight: 700; color: var(--accent); }
.card-list li {
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  color: rgba(245,242,235,0.55);
  font-size: clamp(0.82rem, 0.9vw, 0.9rem);
  position: relative;
  line-height: 1.55;
}
.card-list li::before { content:'—'; position:absolute; left:0; color:var(--accent); opacity:.4; }

/* ============================================
   FEATURES DEDICATED SLIDER
   ============================================ */
.features-slider-wrapper {
  width: 100%;
  overflow: visible;
  padding: 16px 0;
}
.features-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 32px clamp(20px, 5vw, 80px);
  cursor: grab;
}
.features-slider::-webkit-scrollbar { display: none; }
.features-slider.is-dragging { cursor: grabbing; }
.feature-card {
  flex: 0 0 clamp(280px, 28vw, 380px);
  min-height: 420px;
  scroll-snap-align: start;
  border-radius: 24px;
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background:
    linear-gradient(#0F0F12, #0F0F12) padding-box,
    linear-gradient(137deg, rgba(67,97,238,0.5) 0%, rgba(224,174,255,0.3) 45%, rgba(247,37,133,0.5) 100%) border-box;
  border: 1px solid transparent;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

/* Feature cards (smaller height) */
.slider-card--feature {
  min-height: clamp(260px, 28vw, 360px);
  justify-content: flex-start;
  gap: 1rem;
}
.feature-num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: rgba(232,221,199,0.1);
  line-height: 1;
}
.feature-body { flex: 1; }
.card-desc {
  color: rgba(245,242,235,0.55);
  font-size: clamp(0.82rem, 0.9vw, 0.9rem);
  line-height: 1.65;
  margin-top: 0.6rem;
}

/* ============================================
   OFFER BLOCK
   ============================================ */
.offer-block {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-left: 2px solid var(--accent);
  padding: clamp(1rem, 1.8vw, 1.5rem) clamp(1.2rem, 2vw, 2rem);
  background: rgba(232,221,199,0.04);
}
.offer-text { color: rgba(245,242,235,0.72); font-size: clamp(0.9rem, 1.1vw, 1.05rem); line-height: 1.7; max-width: 72ch; }

/* ============================================
   CTA STRIPE
   ============================================ */
.cta-stripe { padding: clamp(2rem, 3.5vw, 3rem) 0; }
.cta-stripe-inner { display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; }
.cta-stripe-text { font-weight: 300; font-size: clamp(1.3rem, 2.2vw, 2.2rem); letter-spacing: -0.025em; color: var(--text); }

/* ============================================
   ABOUT — ЗАГОЛОВОК + ФОТО + STATS
   ============================================ */
.about-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 0.95;
  margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
}
.about-role-text {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: clamp(0.62rem, 0.8vw, 0.75rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}
.about-bio {
  color: rgba(245,242,235,0.62);
  max-width: 60ch;
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

/* Photos — absolute centered overlap */
.about-photos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: clamp(2.5rem, 5vw, 5rem) auto;
  perspective: 1000px;
  min-height: clamp(240px, 30vw, 360px);
}
.photo {
  width: clamp(180px, 18vw, 260px);
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  position: absolute;
  left: 50%;
  top: 0;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: linear-gradient(135deg, rgba(78,133,191,0.18), rgba(255,61,119,0.12));
}
.photo-1 { transform: translateX(calc(-50% - 80px)) rotate(-6deg); z-index: 1; }
.photo-2 { transform: translateX(-50%) rotate(0deg);                z-index: 3; }
.photo-3 { transform: translateX(calc(-50% + 80px)) rotate(6deg);  z-index: 2; }
.about-photos:hover .photo-1 { transform: translateX(calc(-50% - 200px)) rotate(-10deg) translateY(-10px); filter: blur(0.5px); }
.about-photos:hover .photo-2 { transform: translateX(-50%) translateY(-20px) scale(1.05); }
.about-photos:hover .photo-3 { transform: translateX(calc(-50% + 200px)) rotate(10deg) translateY(-10px); filter: blur(0.5px); }

/* Stats grid — 4 cells, left-aligned */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 60px);
  text-align: left;
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  max-width: 1400px;
  padding: 0 clamp(20px, 4vw, 60px);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.stat-cell { /* legacy alias */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.stat-value, .stat-num {
  font-family: var(--f-sans);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.stat-label {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245,242,235,0.5);
  line-height: 1.4;
  margin-top: 12px;
  text-align: left;
}

/* ============================================
   PROGRAM — GRID WITH SLIDE-UP
   ============================================ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}
.program-grid-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(1.4rem, 2vw, 2rem);
  background: var(--card-bg);
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.program-grid-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
/* Last 2 modules span 2 columns each */
.program-grid-card:nth-child(5) { grid-column: 1 / 3; }
.program-grid-card:nth-child(6) { grid-column: 3 / 5; }

.program-num { display: block; margin-bottom: 0.6rem; }
.program-card-title {
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1rem;
}
.program-list li {
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  font-size: clamp(0.78rem, 0.85vw, 0.85rem);
  color: rgba(245,242,235,0.55);
  position: relative;
  line-height: 1.5;
}
.program-list li::before { content:'·'; position:absolute; left:0; color:var(--accent); }

/* ============================================
   ACCORDION (mobile only)
   ============================================ */
.program-accordion { border-top: 1px solid var(--border); }
.faq-list          { border-top: 1px solid var(--border); }
.acc-item          { border-bottom: 1px solid var(--border); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(0.9rem, 1.6vw, 1.3rem) 0;
  text-align: left;
  color: var(--text);
  transition: color .3s var(--ease);
}
.acc-head:hover { color: var(--accent); }
.acc-title { flex:1; font-size: clamp(0.9rem, 1vw, 0.98rem); font-weight: 600; line-height: 1.4; }
.acc-icon {
  width:28px; height:28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .4s var(--ease), border-color .3s;
  line-height: 1;
}
.acc-head[aria-expanded="true"] .acc-icon { transform: rotate(45deg); border-color: var(--accent); }
.acc-body { overflow: hidden; height: 0; }
.acc-body ul,.acc-body p { padding-bottom: clamp(0.8rem, 1.5vw, 1.3rem); color: rgba(245,242,235,0.6); font-size: clamp(0.85rem, 0.95vw, 0.95rem); line-height: 1.65; }
.acc-body li { padding-left:1rem; position:relative; margin-bottom:.4rem; }
.acc-body li::before { content:'—'; position:absolute; left:0; color:var(--accent); opacity:.4; }

/* ============================================
   REELS
   ============================================ */
.reels-sub { color: rgba(245,242,235,0.52); max-width: 60ch; margin-bottom: clamp(2rem, 3.5vw, 3rem); font-size: clamp(0.88rem, 1vw, 1rem); line-height: 1.65; }
.reels-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(0.75rem,1.2vw,1.1rem); }
.reel-card { display:flex; flex-direction:column; gap:0.75rem; }
.reel-video-wrap {
  position:relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0c0c10;
  transition: border-color .35s var(--ease);
}
.reel-card:hover .reel-video-wrap { border-color: var(--border-hover); }
.reel-video-wrap-inner {
  position:absolute; inset:0;
  overflow:hidden; border-radius:12px;
  transition: transform .4s var(--ease);
}
.reel-card:hover .reel-video-wrap-inner { transform: scale(1.03); }
.reel-video { width:100%; height:100%; object-fit:cover; }
.reel-overlay {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(8,9,10,.32); border-radius:12px;
  transition: opacity .3s var(--ease);
}
.reel-card:hover .reel-overlay { opacity:0; }
.reel-label { font-size:clamp(0.6rem,.72vw,.68rem); font-weight:500; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); text-align:center; }

/* ============================================
   BONUSES
   ============================================ */
.bonuses-sub { color:rgba(245,242,235,.52); max-width:60ch; margin-bottom:clamp(2rem,3.5vw,3rem); font-size:clamp(.88rem,1vw,1rem); line-height:1.65; }
.bonuses-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(.75rem,1.2vw,1.1rem); margin-bottom:clamp(1.5rem,3vw,2.5rem); }
.bonus-card {
  border:1px solid var(--border); border-radius:20px;
  padding:clamp(1.6rem,2.8vw,2.3rem);
  background:var(--card-bg);
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.bonus-card:hover { border-color:var(--border-hover); transform:translateY(-2px); }
.bonus-icon { font-size:clamp(1.8rem,2.5vw,2.3rem); margin-bottom:1rem; display:block; }
.bonus-title { font-weight:600; font-size:clamp(1.1rem,1.4vw,1.4rem); letter-spacing:-0.02em; color:var(--text); margin-bottom:.7rem; }
.bonus-desc { color:rgba(245,242,235,.52); font-size:clamp(.82rem,.95vw,.92rem); line-height:1.65; }
.bonus-quote {
  border-left:2px solid var(--accent); padding:clamp(1rem,1.8vw,1.4rem) clamp(1.2rem,2vw,1.8rem);
  background:rgba(232,221,199,.035); border-radius:0 8px 8px 0;
  font-size:clamp(.95rem,1.2vw,1.1rem); color:rgba(245,242,235,.68); line-height:1.65; font-weight:400;
}

/* ============================================
   PRICING — GIANT PRICE
   ============================================ */
.pricing-card {
  max-width: 560px; margin: 0 auto;
  border: 1px solid var(--border-hover); border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255,255,255,0.025);
  text-align: center;
  position: relative; z-index: 1;
}
.pricing-header { margin-bottom: clamp(1.5rem, 2.5vw, 2rem); }
.price-old {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: rgba(245,242,235,0.35);
  text-decoration: line-through;
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.price-new {
  font-family: var(--f-display);
  font-size: clamp(4.5rem, 10vw, 8rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 0.95;
  margin-bottom: .6rem;
}
.price-badge { display:inline-block; border:1px solid var(--border); border-radius:100px; padding:.3em 1.2em; font-size:clamp(.6rem,.72vw,.68rem); }
.pricing-list { text-align:left; margin-bottom:clamp(1.8rem,3vw,2.5rem); border-top:1px solid var(--border); }
.pricing-list li { display:flex; align-items:center; gap:.75rem; padding:.65rem 0; border-bottom:1px solid var(--border); font-size:clamp(.82rem,.92vw,.9rem); color:rgba(245,242,235,.75); }
.check { color:var(--accent); font-size:.8rem; flex-shrink:0; }
.pricing-note { margin-top:.9rem; font-size:clamp(.62rem,.75vw,.7rem); color:var(--muted); letter-spacing:.02em; }

/* ============================================
   PRE-FOOTER CTA
   ============================================ */
.prefooter-cta {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
  background: transparent !important;
  position: relative;
  overflow: hidden;
}
.prefooter-cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(
    ellipse 60% 50% at center,
    rgba(255, 61, 119, 0.15) 0%,
    rgba(255, 61, 119, 0.08) 30%,
    rgba(255, 61, 119, 0.03) 55%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
.prefooter-cta > * {
  position: relative;
  z-index: 1;
}
.prefooter-inner { position: relative; z-index: 1; }
.prefooter-title {
  font-family: var(--f-sans);
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 7rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.prefooter-sub { color:rgba(245,242,235,.52); font-size:clamp(.9rem,1.1vw,1.05rem); margin-bottom:clamp(1.8rem,3vw,2.8rem); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: transparent;
  position: relative;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px) clamp(30px, 4vw, 50px);
  border-top: 1px solid rgba(245, 242, 235, 0.08);
}

.footer-inner,
.footer-content,
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 60px);
}

@media (max-width: 768px) {
  .footer-inner,
  .footer-content,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-column h4,
.footer-column-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 242, 235, 0.4);
  margin-bottom: 20px;
}

.footer-column p,
.footer-column a,
.footer-column li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: rgba(245, 242, 235, 0.7);
  line-height: 1.8;
  text-decoration: none;
  display: block;
}

.footer-column a:hover {
  color: #F5F2EB;
}

.footer-col h3,
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 242, 235, 0.4);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: rgba(245, 242, 235, 0.7);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-col p:last-child,
.footer-col a:last-child {
  margin-bottom: 0;
}

.footer-col a:hover {
  color: #F5F2EB;
}

.footer-bottom {
  max-width: 1400px;
  margin: clamp(40px, 5vw, 80px) auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 242, 235, 0.05);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(245, 242, 235, 0.4);
  text-align: left;
}

/* ============================================
   STICKY TELEGRAM
   ============================================ */
.sticky-tg {
  position:fixed;
  bottom:calc(clamp(1.2rem,3vw,2rem) + env(safe-area-inset-bottom,0px));
  right:calc(clamp(1.2rem,3vw,2rem) + env(safe-area-inset-right,0px));
  width:56px; height:56px; border-radius:50%;
  background:rgba(245,242,235,.92);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  display:flex; align-items:center; justify-content:center;
  z-index:900;
  opacity:0; transform:scale(.8);
  transition:background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.sticky-tg:hover { background:rgba(245,242,235,1); transform:scale(1.06); box-shadow:0 8px 32px rgba(0,0,0,.35); }
.sticky-tg svg { fill:#08090A; }

/* ============================================
   SCROLL REVEAL BASE
   ============================================ */
.reveal { opacity:0; transform:translateY(28px); }
.section-title.reveal,.prefooter-title.reveal { opacity:0; transform:translateY(20px); filter:blur(8px); }

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width:1024px) {
  .desktop-only { display:none !important; }
  .mobile-only  { display:block !important; }
  .reels-grid { grid-template-columns:repeat(2,1fr); }
  .reel-card:last-child { grid-column:span 2; max-width:55%; margin:0 auto; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid>div:last-child { grid-column:span 2; }
  .program-grid { grid-template-columns:repeat(2,1fr); }
  .program-grid-card:nth-child(5),.program-grid-card:nth-child(6) { grid-column:auto; }
}

/* ============================================
   RESPONSIVE — 767px
   ============================================ */
@media (max-width:767px) {
  .hero-title { font-size:clamp(1.9rem,7.5vw,2.7rem); }
  .slider-card { flex:0 0 82vw; min-height:420px; }
  .slider-card--feature { flex:0 0 82vw; min-height:260px; }
  .cta-stripe-inner { flex-direction:column; text-align:center; }
  .bonuses-grid { grid-template-columns:1fr; }
  .reels-grid { grid-template-columns:1fr; }
  .reel-card:last-child { grid-column:auto; max-width:100%; margin:0; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-grid>div:last-child { grid-column:auto; }
  .footer-big-word { font-size:clamp(7rem,30vw,15rem); }
  .sticky-tg { width:48px; height:48px; }
  .about-photos { flex-direction:column; align-items:center; gap:16px; }
  .photo { width:min(65vw,240px); }
  .photo-1,.photo-2,.photo-3 { transform:none !important; }
  .about-photos:hover .photo-1,
  .about-photos:hover .photo-2,
  .about-photos:hover .photo-3 { transform:none !important; filter:none !important; }
  .program-grid { grid-template-columns:1fr; }
  .program-grid-card:nth-child(5),.program-grid-card:nth-child(6) { grid-column:auto; }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width:480px) {
  .pricing-card { padding:1.5rem 1.2rem; border-radius:16px; }
  .about-title { font-size:clamp(2.5rem,15vw,5rem); }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
  .marquee-track { transition: none !important; }
  .section-title.reveal,.prefooter-title.reveal { filter:none !important; }
}

/* ============================================
   NO SECTION BORDERS
   ============================================ */
section,
.ready-section,
.cta-final-section,
.faq-section,
.questions-section,
.faq-item,
.faq-item:last-child {
  border-bottom: none !important;
}

/* ============================================
   MOBILE FIXES — 768px
   ============================================ */
@media (max-width: 768px) {
  /* 2. Фото Даниила — вертикальная стопка */
  .about-photos {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px;
    min-height: auto !important;
    perspective: none;
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(20px, 5vw, 40px);
    margin: clamp(24px, 4vw, 40px) auto;
  }
  .about-photos .photo,
  .photo-1,
  .photo-2,
  .photo-3 {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 320px !important;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
    z-index: auto !important;
    filter: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }
  .about-photos:hover .photo-1,
  .about-photos:hover .photo-2,
  .about-photos:hover .photo-3 {
    transform: none !important;
    filter: none !important;
  }

  /* 3. Hero — 55% затемнение на мобилке */
  .hero::before {
    background: rgba(0, 0, 0, 0.55) !important;
  }
}

/* ============================================
   FINAL FIX — HERO OVERLAY CONTAINMENT
   ============================================ */

.hero {
  overflow: hidden !important;
  position: relative !important;
  isolation: isolate !important;
}

.hero::before {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  pointer-events: none !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.12) !important;
  z-index: 2 !important;
}

@media (max-width: 768px) {
  .hero::before {
    background: rgba(0, 0, 0, 0.35) !important;
  }
}

/* OVERRIDE — marquee всегда видим */
.marquee-section,
section.marquee-section {
  position: relative !important;
  z-index: 5 !important;
  background: transparent !important;
}

.marquee-eyebrow {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 10 !important;
}

/* SEAM FIX — стык Hero и Marquee */
.hero {
  background: transparent !important;
  background-color: transparent !important;
}

.marquee-section,
section.marquee-section {
  background: transparent !important;
  margin-top: 0 !important;
  padding-top: clamp(40px, 5vw, 70px) !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Тело страницы — сплошной чёрный фон без полос */
body {
  background-color: #08090A !important;
}

/* PAGE BG — плавный переход черный → синий сверху вниз */
html,
body {
  background: linear-gradient(
    180deg,
    #08090A 0%,
    #08090A 15%,
    #0A0E1A 35%,
    #0D1424 55%,
    #0F1A2E 75%,
    #0A1020 100%
  ) !important;
  background-color: #08090A !important;
  background-attachment: fixed !important;
  min-height: 100vh !important;
}

body::before,
body::after {
  display: none !important;
}

/* Все секции прозрачные — наследуют общий градиент body */
section,
.hero,
.marquee-section,
.point-a-section,
.about-section,
.stats-section,
.features-section,
.cta-stripe,
.program-section,
.styles-section,
.bonus-section,
.pricing-section,
.faq-section,
.ready-section,
.footer {
  background: transparent !important;
  background-color: transparent !important;
}

/* MOBILE TEXT SIZES — фикс выходов за края */
@media (max-width: 768px) {

  /* Все секции — гарантированный padding по бокам */
  section,
  .hero,
  .marquee-section,
  .point-a-section,
  .about-section,
  .stats-section,
  .features-section,
  .cta-stripe,
  .program-section,
  .styles-section,
  .bonus-section,
  .pricing-section,
  .faq-section,
  .ready-section,
  .footer,
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  body {
    overflow-x: hidden !important;
  }

  /* HERO заголовок — ротация на новой строке */
  .hero-title,
  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
  }

  .hero-rotate-wrapper {
    display: block !important;
    width: 100% !important;
    margin-top: 4px !important;
  }

  .hero-eyebrow {
    font-size: 0.65rem !important;
    letter-spacing: 0.25em !important;
  }

  .hero-subtitle,
  .hero p {
    font-size: 0.8rem !important;
    letter-spacing: 0.18em !important;
    line-height: 1.5 !important;
  }

  .cta-btn,
  .hero-cta,
  .btn {
    font-size: 0.9rem !important;
    padding: 14px 28px !important;
  }

  /* H2 заголовки секций */
  h2,
  .section-title {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
  }

  /* ПАКАЛИН ДАНИИЛ */
  .about-title,
  .name-title {
    font-size: clamp(2.2rem, 11vw, 3.5rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
    word-break: break-word !important;
  }

  /* Цена тарифа */
  .price-current,
  .price-main {
    font-size: clamp(3rem, 14vw, 4.5rem) !important;
    line-height: 1 !important;
  }

  .price-old {
    font-size: clamp(1.4rem, 6vw, 2rem) !important;
  }

  /* Подписи и body */
  p,
  li,
  .text-body {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  /* Eyebrow секций */
  .section-eyebrow {
    font-size: 0.65rem !important;
    letter-spacing: 0.25em !important;
  }

  /* Marquee на мобилке — меньше шрифт */
  .marquee-item,
  .marquee-content,
  .marquee-track span {
    font-size: 1.1rem !important;
    letter-spacing: 0.02em !important;
  }

  .marquee-eyebrow {
    font-size: 0.6rem !important;
    letter-spacing: 0.25em !important;
  }
}

/* TOCHKA A — полоска прогресса */
.tochka-a-progress {
  width: clamp(120px, 20vw, 200px);
  height: 2px;
  background: rgba(245, 242, 235, 0.1);
  margin: 24px auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.tochka-a-progress-bar {
  height: 100%;
  width: 33%;
  background: #E8DDC7;
  border-radius: 2px;
  transition: width 200ms ease;
  transform-origin: left;
}

@media (max-width: 768px) {
  .tochka-a-progress {
    width: 80px;
    margin-top: 20px;
  }
}

/* ЦЕНА НА МОБИЛКЕ — большие цифры */
@media (max-width: 768px) {
  .price-current,
  .price-main,
  .pricing-price,
  .price-new {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(5rem, 18vw, 7rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.02em !important;
    color: #F5F2EB !important;
  }

  .price-old,
  .price-strikethrough {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2.2rem, 8vw, 3rem) !important;
    color: rgba(245, 242, 235, 0.35) !important;
    text-decoration: line-through !important;
    margin-bottom: 12px !important;
  }
}

/* ============================================
   FINAL — .hero::after (единственное правило)
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  top: auto;
  height: 200px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(8, 9, 10, 0.3) 30%,
    rgba(8, 9, 10, 0.7) 60%,
    rgba(8, 9, 10, 0.95) 85%,
    #08090A 100%
  );
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero::after {
    height: 220px;
  }
}

/* ============================================
   FINAL — Tochka A slider (единственное правило)
   ============================================ */
.slider-scroll-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#scroll-pointa {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  justify-content: flex-start;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 16px;
  padding: 20px clamp(20px, 5vw, 60px);
  cursor: grab;
  scroll-behavior: smooth;
}

#scroll-pointa::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

#scroll-pointa .slider-card,
#scroll-pointa > * {
  flex: 0 0 clamp(300px, 32vw, 380px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (max-width: 768px) {
  .slider-scroll-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    padding: 0;
  }

  #scroll-pointa {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 20px 24px;
    cursor: grab;
    scroll-behavior: smooth;
    scroll-padding-left: 24px;
    scroll-padding-right: 24px;
    width: 100vw;
    box-sizing: border-box;
  }

  #scroll-pointa::-webkit-scrollbar {
    display: none;
  }

  #scroll-pointa .slider-card,
  #scroll-pointa > * {
    flex: 0 0 calc(100vw - 48px);
    min-width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    width: calc(100vw - 48px);
    min-height: 520px;
    box-sizing: border-box;
    padding: 32px 24px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin: 0;
  }
}

/* ============================================
   FINAL — Stats mobile (единственное правило)
   ============================================ */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
    text-align: left;
    padding: 0 20px;
    justify-items: start;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .stat-value,
  .stat-num {
    text-align: left;
    margin: 0;
    padding: 0;
    align-self: flex-start;
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1;
    letter-spacing: -0.03em;
    white-space: nowrap;
    max-width: 100%;
  }

  .stat-label {
    text-align: left;
    margin: 12px 0 0 0;
    padding: 0;
    align-self: flex-start;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    line-height: 1.4;
  }
}

