/* ============================================
   LETTA GROUP — WOW Landing
   GSAP + Lenis + SplitType powered
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #F7F6F3;
  --black: #1A1A1A;
  --burgundy: #7A1F1F;
  --burgundy-light: #9A3333;
  --beige: #D8D2C8;
  --beige-light: #EDE9E3;
  --gray: #4A4A4A;
  --gray-light: #666666;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1280px;
  --container-pad: clamp(20px, 4vw, 60px);
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; cursor: none; }
ul, ol { list-style: none; }
button { cursor: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---- Custom Cursor ---- */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__ring {
  position: absolute; top: -16px; left: -16px;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s, border-color 0.3s;
}
.cursor--hover .cursor__ring {
  width: 60px; height: 60px;
  top: -26px; left: -26px;
  border-color: rgba(255,255,255,0.8);
}
.cursor--click .cursor__dot { transform: translate(-50%, -50%) scale(2); }

/* ---- Loader ---- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.loader__inner { text-align: center; }
.loader__text {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--white);
  opacity: 0;
}
.loader__line {
  width: 0;
  height: 1px;
  background: var(--burgundy);
  margin: 0 auto 20px;
  transition: none;
}

/* ---- Section Commons ---- */
.section-tag {
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--burgundy); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1; font-weight: 400;
  margin-bottom: 48px;
}
/* Hero title hidden until JS runs split animation */
.hero__title { opacity: 0; }

/* SplitType word wrappers — GSAP controls transforms */
.section-title .word, .hero__title .word, .author-panel__name .word, .final-cta__title .word {
  display: inline-block;
  overflow: hidden;
}
.section-title .char, .hero__title .char, .author-panel__name .char, .final-cta__title .char {
  display: inline-block;
  will-change: transform;
}

/* Reveal helper */
[data-reveal] { opacity: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 16px 36px; border-radius: 60px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  border: none; text-decoration: none; position: relative; overflow: hidden;
  transition: box-shadow 0.4s;
}
.btn span { position: relative; z-index: 1; }
.btn--primary { background: var(--burgundy); color: var(--white); }
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--burgundy-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 60px;
}
.btn--primary:hover::before { transform: scaleX(1); }
.btn--primary:hover { box-shadow: 0 8px 30px rgba(122, 31, 31, 0.4); }

.btn--ghost {
  background: transparent; color: var(--black);
  border: 1.5px solid var(--beige); position: relative; overflow: hidden;
}
.btn--ghost::before {
  content: ''; position: absolute; inset: 0;
  background: var(--black); border-radius: 60px;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--ghost:hover::before { transform: scaleX(1); }
.btn--ghost:hover { color: var(--white); border-color: var(--black); }
.btn--full { width: 100%; }
.btn--lg { padding: 20px 48px; font-size: 1.05rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all 0.4s ease;
}
.nav--scrolled {
  background: rgba(247,246,243,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px 0; box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { font-size: 1.2rem; font-weight: 600; letter-spacing: 0.1em; }
.nav__logo span { font-weight: 300; color: var(--gray); }
.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 0.85rem; font-weight: 500; position: relative;
  transition: color 0.3s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: var(--burgundy);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__links a:hover::after { width: 100%; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__cta {
  font-size: 0.85rem; font-weight: 500; padding: 10px 24px;
  border-radius: 50px; background: var(--burgundy); color: var(--white);
  transition: all 0.3s;
}
.nav__cta:hover { background: var(--burgundy-light); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 999px;
  background: rgba(247, 246, 243, 0.9);
}
.lang-switch__btn {
  border: 0;
  background: transparent;
  color: var(--gray);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.3s, color 0.3s;
}
.lang-switch__btn.is-active {
  background: var(--black);
  color: var(--white);
}
a.lang-switch__btn { display: inline-block; text-decoration: none; cursor: none; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--black); transition: all 0.3s; }
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1001; background: var(--white);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }

/* Mobile menu header — только крестик справа */
.mobile-menu__header {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 20px var(--container-pad);
  flex-shrink: 0;
}
.mobile-menu__close {
  width: 44px; height: 44px; background: none; border: none;
  position: relative; flex-shrink: 0;
}
.mobile-menu__close span {
  position: absolute; top: 50%; left: 50%;
  width: 20px; height: 2px; background: var(--black);
  border-radius: 2px;
}
.mobile-menu__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-menu__close span:last-child  { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile menu body — центр */
.mobile-menu__body {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 16px var(--container-pad) 48px;
  text-align: center;
}
.mobile-menu__lang {
  margin-bottom: 36px;
}
.mobile-menu__links {
  display: flex; flex-direction: column; gap: 0;
  width: 100%; margin-bottom: 40px;
}
.mobile-menu__links li { border-bottom: 1px solid var(--beige); }
.mobile-menu__links li:first-child { border-top: 1px solid var(--beige); }
.mobile-menu__links a {
  font-family: var(--font-display); font-size: 1.6rem;
  display: block; padding: 20px 0;
  transition: color 0.3s;
}
.mobile-menu__links a:hover { color: var(--burgundy); }
.mobile-menu__cta {
  display: block; width: 100%; padding: 16px 24px; background: var(--burgundy);
  color: var(--white) !important; border-radius: 50px;
  font-family: var(--font-body) !important; font-size: 1rem !important;
  text-align: center;
  transition: background 0.3s;
}
.mobile-menu__cta:hover { background: var(--burgundy-light); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 100px; padding-bottom: 60px; overflow: hidden;
}

/* Floating shapes */
.hero__shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.4;
  will-change: transform;
}
.hero__shape--1 { width: 400px; height: 400px; background: var(--burgundy); top: 10%; right: 15%; opacity: 0.15; }
.hero__shape--2 { width: 300px; height: 300px; background: var(--beige); bottom: 20%; left: 10%; opacity: 0.3; }
.hero__shape--3 { width: 200px; height: 200px; background: var(--burgundy-light); top: 60%; right: 40%; opacity: 0.1; }
.hero__shape--4 { width: 350px; height: 350px; background: var(--beige-light); top: -10%; left: 30%; opacity: 0.2; }

.hero__bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 20rem);
  color: var(--beige); opacity: 0;
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}

.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.hero__tag {
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--burgundy); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0;
}
.hero__tag-line {
  display: inline-block; width: 0; height: 1px;
  background: var(--burgundy);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 1.05; font-weight: 400; margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.1rem; line-height: 1.7; color: var(--gray);
  max-width: 480px; margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__meta { display: flex; gap: 40px; }
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-num { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.hero__meta-num--plus::after { content: '+'; font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.hero__meta-suffix { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.hero__meta-label { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }

/* Hero Visual */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__image-wrapper { position: relative; width: 85%; max-width: 440px; }
.hero__image-reveal {
  overflow: hidden; border-radius: 24px;
  clip-path: inset(100% 0 0 0);
}
.hero__image {
  width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover;
  transform: scale(1.2);
}
.hero__video-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.18);
  color: var(--white);
  display: none; /* temporarily hidden — no video yet */
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: visible;
  opacity: 0;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  z-index: 2;
}
.hero__video-trigger::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  pointer-events: none;
  animation: heroPlayPulse 2.2s ease-out infinite;
}
.hero__video-trigger:hover {
  transform: translate(-50%, -50%) scale(1.03);
  background: rgba(15, 15, 15, 0.28);
  border-color: rgba(255,255,255,1);
}
.hero__video-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-left: 3px;
}
.hero__video-trigger-icon svg {
  display: block;
}
@keyframes heroPlayPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}
.hero__image-accent {
  position: absolute; top: -20px; right: -20px;
  width: 100%; height: 100%; border: 2px solid var(--beige);
  border-radius: 24px; z-index: -1; opacity: 0;
}
.hero__price-badge {
  position: absolute; bottom: 40px; right: -10px;
  background: var(--black); color: var(--white);
  padding: 20px 28px; border-radius: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  opacity: 0; transform: scale(0.8) rotate(-5deg);
}
.hero__price-old { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; }
.hero__price-new { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.hero__price-label {
  font-size: 0.75rem; font-weight: 600; color: var(--burgundy-light);
  background: rgba(122,31,31,0.15); padding: 2px 10px; border-radius: 20px;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--gray); opacity: 0;
}
.hero__scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--gray-light);
  border-radius: 12px; position: relative;
}
.hero__scroll-wheel {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: var(--burgundy);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   TICKER
   ============================================ */
.ticker {
  padding: 28px 0;
  background: var(--black); color: var(--white);
  overflow: hidden; white-space: nowrap;
}
.ticker__track {
  display: flex; gap: 0; align-items: center;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
  will-change: transform;
}
.ticker__item {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  padding: 0 20px;
}
.ticker__sep {
  color: var(--burgundy-light); font-size: 0.8rem; padding: 0 10px;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   PROBLEMS
   ============================================ */
.problems {
  padding: var(--section-pad) 0;
  background: var(--black); color: var(--white);
}
.problems .section-tag { color: var(--burgundy-light); }
.problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: border-color 0.5s;
}
.problem-card:hover { border-color: rgba(122,31,31,0.4); }
.problem-card--wide { grid-column: span 2; }

/* Glow effect on hover */
.problem-card__glow {
  position: absolute; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(122,31,31,0.25) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
  opacity: 0; transition: opacity 0.5s;
  transform: translate(-50%, -50%);
}
.problem-card:hover .problem-card__glow { opacity: 1; }

.problem-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 22px;
  color: var(--burgundy-light);
  background: rgba(122,31,31,0.12);
  border: 1px solid rgba(122,31,31,0.2);
}
.problem-card__title {
  font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 400; margin-bottom: 14px; line-height: 1.2;
}
.problem-card__text { font-size: 1rem; line-height: 1.65; color: var(--gray-light); }

/* ============================================
   AUTHORS
   ============================================ */
.authors { padding: var(--section-pad) 0; }
.authors__horizontal {
  overflow: hidden; position: relative;
  width: 100%;
}
.authors__track {
  display: flex; gap: 60px;
  padding: 0 var(--container-pad);
  width: max-content;
}
.author-panel {
  display: flex; gap: 60px; align-items: center;
  min-width: calc(100vw - 2 * var(--container-pad));
  flex-shrink: 0;
}
.author-panel__image-wrap { position: relative; flex: 0 0 400px; }
.author-panel__image-reveal {
  overflow: hidden; border-radius: 24px;
}
.author-panel__image { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.author-panel__social {
  position: absolute; bottom: 16px; right: 16px;
  width: 48px; height: 48px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.author-panel__social:hover { background: var(--burgundy); color: var(--white); transform: scale(1.1); }
.author-panel__name {
  font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 8px; font-weight: 400;
}
.author-panel__role { font-size: 1rem; color: var(--gray); margin-bottom: 40px; }
.author-panel__stats { display: flex; gap: 36px; }
.author-panel__stat { display: flex; flex-direction: column; align-items: flex-start; }
.author-panel__stat-value {
  display: flex; align-items: baseline;
}
.author-panel__stat-num {
  font-family: var(--font-display); font-size: 3.5rem;
  line-height: 1; color: var(--burgundy);
}
.author-panel__stat-suffix {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--burgundy); margin-left: 2px;
}
.author-panel__stat-label { font-size: 0.85rem; color: var(--gray); margin-top: 6px; line-height: 1.4; }

/* ============================================
   PROJECTS
   ============================================ */
.projects { padding: var(--section-pad) 0; background: var(--beige-light); }
.projects__wrapper { overflow: hidden; position: relative; }
.projects__track {
  display: flex; gap: 24px;
  padding: 0 var(--container-pad);
  width: max-content;
}
.project-card {
  flex: 0 0 350px; border-radius: 20px;
  overflow: hidden; background: var(--white);
}
.project-card__img-wrap {
  overflow: hidden; height: 260px;
}
.project-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover .project-card__img { transform: scale(1.08); }
.project-card__info { padding: 20px 24px; }
.project-card__info h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 4px; }
.project-card__info span { font-size: 0.8rem; color: var(--gray); }

/* ============================================
   CLIENTS — Photo carousel with hover review (same as projects)
   ============================================ */
.clients { padding: var(--section-pad) 0; background: var(--black); color: var(--white); }
.clients .section-header { margin-bottom: clamp(32px, 4vw, 56px); }
.clients__wrapper { overflow: hidden; position: relative; }
.clients__track {
  display: flex; gap: 24px;
  padding: 0 var(--container-pad);
  width: max-content;
}
.client-card {
  flex: 0 0 240px; position: relative;
  border-radius: 16px;
  overflow: hidden; background: #222;
}
.client-card__logo-wrap {
  overflow: hidden; height: 160px;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  background: #2a2a2a;
}
.client-card__logo {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.client-card:hover .client-card__logo { transform: scale(1.05); }
.client-card__name {
  display: none;
}
.client-card__review {
  display: none;
}
.client-card__review p {
  font-size: 0.95rem; line-height: 1.6;
  color: var(--white); margin-bottom: 14px;
  font-style: italic;
}
.client-card__review span { font-size: 0.78rem; color: var(--burgundy-light); }

/* ============================================
   PROGRAM — Stacked sticky cards
   ============================================ */
.program { padding: var(--section-pad) 0; }
.program__stack { position: relative; }
.program-card {
  position: sticky; top: 100px;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 28px; padding: 48px 44px;
  display: flex; gap: 40px;
  margin-bottom: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  transform-origin: top center;
  will-change: transform;
}
.program-card:hover {
  box-shadow: 0 16px 50px rgba(122,31,31,0.1);
}
.program-card__left { flex: 0 0 280px; display: flex; flex-direction: column; gap: 8px; }
.program-card__right { flex: 1; }
/* Кнопка в левой колонке — только desktop */
.program-card__btn-left { margin-top: 20px; }
.program-card__btn-right { display: none; }
.program-card__week {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--burgundy);
  background: rgba(122,31,31,0.08); padding: 4px 14px;
  border-radius: 20px; display: inline-block; margin-bottom: 16px;
}
.program-card__title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; margin-bottom: 8px; }
.program-card__question { font-size: 1rem; color: var(--gray); font-family: var(--font-accent); font-style: italic; }
.program-card__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.program-card__list li {
  font-size: 0.9rem; padding-left: 16px; position: relative; line-height: 1.5;
}
.program-card__list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; background: var(--beige); border-radius: 50%;
}
.program-card__bonus {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; background: var(--beige-light);
  border-radius: 14px; font-size: 0.85rem; font-weight: 500;
  color: var(--burgundy);
}
.program-card__bonus svg { flex-shrink: 0; color: var(--burgundy); }

/* ============================================
   FORMAT
   ============================================ */
.format { padding: var(--section-pad) 0; background: var(--black); color: var(--white); position: relative; z-index: 2; }
.format .section-tag { color: var(--burgundy-light); }

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-modal__dialog {
  position: relative;
  width: min(960px, calc(100vw - 48px));
  z-index: 1;
}
.video-modal__frame {
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,0.32);
}
.video-modal__video {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 96px);
  background: #000;
}
.video-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
  z-index: 2;
}
.video-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--black);
}
.video-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.video-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.format-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px;
  display: flex; gap: 20px; flex-wrap: wrap;
  transition: all 0.4s; position: relative; overflow: visible;
  transform-style: preserve-3d;
}
.format-card__content { flex: 1; min-width: 200px; }
.format-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); }
.format-card__icon {
  width: 56px; height: 56px;
  background: rgba(122,31,31,0.2); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--burgundy-light);
}
.format-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 8px; }
.format-card__text { font-size: 0.9rem; line-height: 1.6; color: var(--gray-light); margin-bottom: 8px; }
.format-card__duration {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--burgundy-light); background: rgba(122,31,31,0.15);
  padding: 3px 12px; border-radius: 20px;
}

/* ============================================
   RESULTS
   ============================================ */
.results { padding: var(--section-pad) 0; position: relative; }
.results__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.result-card {
  padding: 44px 40px; border: 1px solid var(--beige);
  border-radius: 24px; position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.4s, transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s;
}
.result-card:hover {
  border-color: var(--beige);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Result card photo */
.result-card__photo {
  position: absolute; inset: 0;
  overflow: hidden;
  opacity: 0.18;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.result-card:hover .result-card__photo {
  opacity: 0.3;
}
.result-card__img {
  position: absolute; inset: 0;
  object-fit: cover;
  display: block;
  will-change: transform;
  filter: grayscale(100%) contrast(1.1);
}
.result-card__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--white) 30%, transparent 80%);
  pointer-events: none;
}

.result-card__icon {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--beige); margin-bottom: 16px; line-height: 1;
  position: relative; z-index: 1;
}
.result-card h3 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400; margin-bottom: 12px; line-height: 1.3;
  position: relative; z-index: 1;
}
.result-card p { font-size: 0.9rem; line-height: 1.6; color: var(--gray); position: relative; z-index: 1; }
.result-card:hover .result-card__icon { color: var(--burgundy); }

/* ============================================
   PRICING
   ============================================ */
.pricing { padding: var(--section-pad) 0; background: var(--beige-light); }
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pricing__note { font-size: 1rem; line-height: 1.7; color: var(--gray); max-width: 400px; }
.pricing__card {
  position: relative; background: var(--white);
  border-radius: 28px; padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  overflow: visible; transform-style: preserve-3d;
}
.pricing__card-tag {
  position: absolute; top: -14px; right: 32px;
  background: var(--burgundy); color: var(--white);
  font-size: 0.85rem; font-weight: 600; padding: 6px 18px; border-radius: 20px;
  z-index: 2;
}
.pricing__card-price { display: flex; align-items: baseline; gap: 16px; margin-bottom: 32px; }
.pricing__card-old { font-size: 1.4rem; color: var(--gray); text-decoration: line-through; }
.pricing__card-new { font-family: var(--font-display); font-size: 4rem; line-height: 1; }
.pricing__card-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.pricing__card-features li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.pricing__card-features svg { flex-shrink: 0; color: var(--burgundy); }
.pricing__card-start { text-align: center; font-size: 0.8rem; color: var(--gray); margin-top: 16px; }

/* Shine effect */
.pricing__card-shine {
  position: absolute; top: -100%; left: -100%;
  width: 200%; height: 200%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255,255,255,0.4) 50%,
    transparent 60%
  );
  transform: rotate(25deg);
  pointer-events: none;
  border-radius: 28px;
  overflow: hidden;
  clip-path: inset(0 round 28px);
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding: var(--section-pad) 0; }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--beige); }
.faq-item:first-child { border-top: 1px solid var(--beige); }
.faq-item__question {
  width: 100%; background: none; border: none;
  padding: 24px 0; font-family: var(--font-body);
  font-size: 1.05rem; font-weight: 500; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  color: var(--black); transition: color 0.3s;
}
.faq-item__question:hover { color: var(--burgundy); }
.faq-item__icon {
  width: 24px; height: 24px; position: relative; flex-shrink: 0;
}
.faq-item__icon span {
  position: absolute; background: var(--black);
  border-radius: 2px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__icon span:first-child { width: 16px; height: 2px; top: 11px; left: 4px; }
.faq-item__icon span:last-child { width: 2px; height: 16px; top: 4px; left: 11px; }
.faq-item__question[aria-expanded="true"] .faq-item__icon span:last-child {
  transform: rotate(90deg); opacity: 0;
}
.faq-item__question[aria-expanded="true"] .faq-item__icon span:first-child {
  background: var(--burgundy);
}
.faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__answer p { padding-bottom: 24px; font-size: 0.95rem; line-height: 1.7; color: var(--gray); }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta { padding: var(--section-pad) 0; background: var(--black); color: var(--white); }
.final-cta__inner { text-align: center; max-width: 700px; margin: 0 auto; }
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.15; font-weight: 400; margin-bottom: 16px;
}
.final-cta__text { font-size: 1.1rem; color: var(--gray-light); margin-bottom: 36px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 40px 0; border-top: 1px solid var(--beige); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer__logo { font-size: 1rem; font-weight: 600; letter-spacing: 0.1em; }
.footer__logo span { font-weight: 300; color: var(--gray); }
.footer__copy { font-size: 0.75rem; color: var(--gray); margin-top: 4px; }
.footer__center a { font-size: 0.85rem; color: var(--gray); transition: color 0.3s; }
.footer__center a:hover { color: var(--burgundy); }
.footer__right { display: flex; align-items: center; gap: 20px; }
.footer__social { color: var(--black); transition: color 0.3s; }
.footer__social:hover { color: var(--burgundy); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: 0.75rem; color: var(--gray); transition: color 0.3s; }
.footer__links a:hover { color: var(--burgundy); }

/* ============================================
   WHY SECTION
   ============================================ */
.why {
  padding: var(--section-pad) 0;
}
.why__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.why__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 48px;
}
.why__points {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.why__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--gray);
  padding: 10px 20px;
  background: var(--beige-light);
  border-radius: 40px;
}
.why__point-icon {
  color: var(--burgundy);
  font-weight: 700;
  font-size: 0.9rem;
}
.why__bottom {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--black);
}
.why__bottom strong {
  color: var(--burgundy);
}

/* ============================================
   FORMAT — Pillars + Warning
   ============================================ */
.format__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.format__warning {
  text-align: center;
  padding: 48px 40px;
  background: rgba(122,31,31,0.15);
  border: 1px solid rgba(122,31,31,0.3);
  border-radius: 24px;
}
.format__warning-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--burgundy-light);
}
.format__warning-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.format__warning-points p {
  font-size: 1rem;
  color: var(--gray-light);
}
.format__warning-bottom {
  font-size: 1.05rem;
  color: var(--white);
  font-family: var(--font-accent);
  font-style: italic;
}

/* ============================================
   PROBLEMS — conclusion
   ============================================ */
.problems__conclusion {
  text-align: center;
  margin-top: 48px;
  font-size: 1.2rem;
  color: var(--gray-light);
  line-height: 1.6;
}
.problems__conclusion strong {
  color: var(--white);
  font-size: 1.4rem;
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 400;
}

/* ============================================
   HERO — desc line
   ============================================ */
.hero__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  font-weight: 500;
  max-width: 480px;
  margin-bottom: 36px;
}

/* ============================================
   SERVICES — Entry Level Cards
   ============================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--beige-light);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transform-style: preserve-3d;
  transition: box-shadow 0.4s, transform 0.5s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.service-card--recommended {
  border: 2px solid var(--burgundy);
}
.service-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.service-card__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}
.service-card__meta {
  font-size: 0.85rem;
  color: var(--gray);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}
.service-card__section {
  margin-bottom: 16px;
}
.service-card__section h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.service-card__section ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service-card__section ul li {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--gray);
  padding-left: 14px;
  position: relative;
}
.service-card__section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--beige);
}
.service-card__note-inline {
  font-size: 0.85rem;
  color: var(--black);
  font-family: var(--font-accent);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.5;
}
.service-card__note-small {
  font-size: 0.82rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 6px;
}
.service-card__quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-card__quotes span {
  font-size: 0.8rem;
  color: var(--gray);
  background: var(--beige-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-accent);
  font-style: italic;
}
.service-card__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card__step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.service-card__step-num {
  width: 28px;
  height: 28px;
  background: var(--beige-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--burgundy);
  flex-shrink: 0;
}
.service-card__step strong {
  font-size: 0.88rem;
  display: block;
  margin-bottom: 2px;
}
.service-card__step p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.4;
}
.service-card__results {
  margin-bottom: 16px;
  padding: 16px;
  background: var(--beige-light);
  border-radius: 16px;
}
.service-card__results h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  margin-bottom: 10px;
}
.service-card__results ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card__results li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}
.service-card__results svg {
  flex-shrink: 0;
  color: var(--burgundy);
}
.service-card__important {
  font-size: 0.82rem;
  color: var(--gray);
  padding: 12px 16px;
  background: rgba(122,31,31,0.05);
  border-left: 3px solid var(--burgundy);
  border-radius: 0 12px 12px 0;
  margin-bottom: 20px;
  line-height: 1.5;
}
.service-card .btn {
  margin-top: auto;
}

/* ============================================
   PROGRAM — Additional styles for consulting cards
   ============================================ */
.program-card__price-tag {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--burgundy);
}
.program-card__price-tag span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
}
.program-card__subsection {
  margin-bottom: 16px;
}
.program-card__subsection h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.program-card__subtext {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 6px;
}
.program-card__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.program-card__checks span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--burgundy);
  background: rgba(122,31,31,0.06);
  padding: 6px 14px;
  border-radius: 20px;
}
.program-card__checks svg {
  flex-shrink: 0;
  color: var(--burgundy);
}
.program-card__note {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 12px 16px;
  background: var(--beige-light);
  border-left: 3px solid var(--beige);
  border-radius: 0 12px 12px 0;
  line-height: 1.5;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: var(--section-pad) 0;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--beige);
  border-radius: 24px;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.process-step:hover {
  border-color: var(--burgundy);
  box-shadow: 0 12px 40px rgba(122,31,31,0.08);
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--beige);
  display: block;
  margin-bottom: 18px;
  line-height: 1;
  transition: color 0.4s;
}
.process-step:hover .process-step__num {
  color: var(--burgundy);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.process-step__text {
  font-size: 0.98rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   ANTI-CLIENT
   ============================================ */
.anti-client {
  padding: var(--section-pad) 0;
  background: var(--black);
  color: var(--white);
}
.anti-client .section-tag { color: var(--burgundy-light); }
.anti-client__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.anti-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 32px 28px;
  transition: border-color 0.4s;
}
.anti-card:hover {
  border-color: rgba(122,31,31,0.5);
}
.anti-card--wide {
  grid-column: span 2;
}
.anti-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(122,31,31,0.2);
  border-radius: 50%;
  color: var(--burgundy-light);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.anti-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.anti-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
}
.anti-client__positive {
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
}
.anti-client__positive h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.anti-client__positive-list {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.anti-client__positive-list span {
  font-size: 0.95rem;
  padding: 8px 20px;
  background: rgba(122,31,31,0.15);
  border-radius: 30px;
  color: var(--burgundy-light);
  font-weight: 500;
}

/* ============================================
   FINAL CTA — actions row
   ============================================ */
.final-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .btn--ghost {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.final-cta .btn--ghost:hover {
  border-color: var(--white);
}
.final-cta .btn--ghost::before {
  background: var(--white);
}
.final-cta .btn--ghost:hover {
  color: var(--black);
}

/* Author description */
.author-panel__desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 20px;
  font-family: var(--font-accent);
  font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .cursor { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }

  .nav__links, .nav__cta { display: none; }
  .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .hero { min-height: auto; padding-top: 140px; padding-bottom: 90px; }
  .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: 36px; align-items: start; }
  .hero__title { font-size: clamp(3rem, 6vw, 4.8rem); }
  .hero__subtitle { max-width: 100%; font-size: 1rem; }
  .hero__actions { margin-bottom: 32px; }
  .hero__meta { gap: 24px; flex-wrap: wrap; }
  .hero__image-wrapper { width: 100%; max-width: 380px; }
  .hero__video-trigger {
    width: 78px;
    height: 78px;
  }
  .hero__video-trigger-icon {
    width: 100%;
    height: 100%;
  }
  .hero__bg-text { font-size: clamp(6rem, 16vw, 10rem); }
  .author-panel { gap: 32px; min-width: 0; }
  .author-panel__image-wrap { flex: 0 0 320px; }
  .author-panel__stats { gap: 24px; flex-wrap: wrap; }
  .authors__horizontal { overflow: visible; }
  .authors__track { gap: 32px; width: 100%; }
  .projects__wrapper {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-left: 24px;
    overscroll-behavior-x: contain;
  }
  .projects__wrapper::-webkit-scrollbar { display: none; }
  .projects__track { gap: 20px; padding: 0 24px; }
  .project-card { flex-basis: min(320px, calc(100vw - 72px)); }
  .project-card { scroll-snap-align: start; }
  .project-card__img-wrap { height: 220px; }
  .clients__wrapper {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-left: 24px;
    overscroll-behavior-x: contain;
  }
  .clients__wrapper::-webkit-scrollbar { display: none; }
  .clients__track { gap: 20px; padding: 0 24px; }
  .client-card { flex-basis: min(220px, calc(100vw - 72px)); scroll-snap-align: start; }
  .client-card__logo-wrap { height: 140px; }
  .format__pillars { grid-template-columns: repeat(2, 1fr); }
  .program-card {
    position: static;
    top: auto;
    flex-direction: column;
    padding: 36px 32px;
    gap: 28px;
  }
  .program-card__left { flex: 0 0 auto; display: block; }
  .program-card__btn-left { display: none; }
  .program-card__btn-right { display: block; margin-top: 20px; }
  .services__grid { grid-template-columns: 1fr; gap: 24px; }
  .service-card { padding: 28px 24px; }
  .service-card__header { flex-wrap: wrap; gap: 8px 14px; }
  .service-card__badge { right: 20px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-step { padding: 32px 20px; }
  .anti-client__positive { padding: 32px 24px; }
  .final-cta__actions { gap: 12px; }
  .btn--lg { padding: 18px 30px; }
}

@media (max-width: 860px) {
  .hero { padding-top: 112px; padding-bottom: 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__content { text-align: left; }
  .hero__visual { display: flex; order: -1; }
  .hero__image-wrapper { max-width: 340px; }
  .hero__video-trigger::before {
    inset: -8px;
  }
  .video-modal {
    padding: 20px;
  }
  .video-modal__dialog {
    width: min(960px, calc(100vw - 24px));
  }
  .video-modal__close {
    top: -12px;
    right: -4px;
  }
  .hero__bg-text { font-size: clamp(4rem, 20vw, 7rem); opacity: 0.18; }
  .hero__title { font-size: clamp(2.6rem, 11vw, 4rem); }
  .hero__subtitle { font-size: 0.98rem; line-height: 1.65; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__meta { gap: 18px; justify-content: space-between; }
  .hero__meta-item { min-width: 92px; }
  .hero__meta-num { font-size: 2rem; }
  .hero__scroll-hint { display: none; }
  .section-title { margin-bottom: 32px; }
  .problems__grid { grid-template-columns: 1fr; }
  .problem-card--wide { grid-column: span 1; }
  .problem-card { padding: 28px 24px; }
  .problem-card__icon { width: 48px; height: 48px; margin-bottom: 18px; }
  .problem-card__title { font-size: 1.55rem; }
  .problem-card__text { font-size: 0.95rem; }
  .author-panel { flex-direction: column; align-items: flex-start; gap: 24px; }
  .author-panel__image-wrap { width: 100%; max-width: 320px; flex-basis: auto; }
  .author-panel__role { margin-bottom: 24px; }
  .author-panel__stats { flex-direction: column; gap: 16px; }
  .authors__track { display: grid; gap: 40px; width: 100%; }
  .projects__wrapper { scroll-padding-left: 22px; }
  .projects__track { gap: 18px; padding: 0 22px; }
  .project-card { flex-basis: min(300px, calc(100vw - 68px)); }
  .clients__wrapper { scroll-padding-left: 22px; }
  .clients__track { gap: 18px; padding: 0 22px; }
  .client-card__name { padding: 18px 20px 8px; }
  .project-card__info { padding: 18px 20px; }
  .program-card { padding: 28px 22px; border-radius: 24px; }
  .program-card__title { font-size: 1.5rem; }
  .program-card__price-tag { font-size: 1.7rem; }
  .program-card__checks { gap: 6px; }
  .program-card__checks span { width: 100%; justify-content: flex-start; }
  .service-card { border-radius: 24px; }
  .service-card__title { font-size: 1.9rem; }
  .service-card__results li { align-items: flex-start; }
  .format-card { padding: 24px 20px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__right { flex-direction: column; }
  .format__pillars { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .process-step { text-align: left; }
  .process-step__title { font-size: 1.4rem; }
  .process-step__text { font-size: 0.94rem; }
  .anti-client__grid { grid-template-columns: 1fr; }
  .anti-card--wide { grid-column: span 1; }
  .why__points { flex-direction: column; align-items: center; }
  .final-cta__actions { flex-direction: column; align-items: stretch; }
  .final-cta__actions .btn { width: 100%; }
  .anti-client__positive-list { gap: 10px; }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 72px;
    --container-pad: 16px;
  }

  .nav { padding: 14px 0; }
  .nav--scrolled { padding: 10px 0; }
  .nav__logo { font-size: 1rem; letter-spacing: 0.08em; }
  .hero { padding-top: 96px; padding-bottom: 60px; }
  .hero__title { font-size: 2.2rem; line-height: 1.08; }
  .hero__subtitle { font-size: 0.92rem; }
  .hero__meta { flex-direction: column; gap: 14px; }
  .hero__meta-num { font-size: 1.8rem; }
  .hero__image-wrapper { max-width: 100%; }
  .hero__image { height: 350px; }
  .hero__video-trigger {
    width: 70px;
    height: 70px;
  }
  .hero__video-trigger-icon {
    width: 100%;
    height: 100%;
  }
  .hero__video-trigger::before {
    inset: -6px;
  }
  .hero__image-accent { top: -10px; right: -10px; border-width: 1px; }
  .video-modal {
    padding: 12px;
  }
  .video-modal__frame {
    border-radius: 18px;
  }
  .video-modal__close {
    width: 42px;
    height: 42px;
    top: -10px;
    right: -2px;
  }
  .section-tag { font-size: 0.72rem; }
  .section-title { font-size: 2rem; line-height: 1.1; }
  .problem-card { padding: 24px 20px; border-radius: 20px; }
  .problem-card__icon { width: 44px; height: 44px; border-radius: 14px; }
  .problem-card__title { font-size: 1.35rem; }
  .problem-card__text { font-size: 0.92rem; }
  .ticker { padding: 20px 0; }
  .ticker__item { padding: 0 14px; }
  .service-card { padding: 24px 18px; }
  .service-card__badge {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
    transform: none;
  }
  .service-card__price { font-size: 2.5rem; }
  .service-card__title { font-size: 1.7rem; }
  .service-card__quotes span,
  .program-card__checks span,
  .anti-client__positive-list span { width: 100%; justify-content: center; }
  .program-card { padding: 24px 18px; }
  .program-card__title { font-size: 1.35rem; }
  .program-card__question { font-size: 0.92rem; }
  .format-card { border-radius: 18px; }
  .author-panel__name { font-size: 2rem; }
  .author-panel__image-wrap { width: 100%; }
  .authors__track { gap: 32px; }
  .projects__wrapper { scroll-padding-left: 20px; }
  .projects__track { gap: 16px; padding: 0 20px; }
  .project-card { flex-basis: calc(100vw - 56px); }
  .clients__wrapper { scroll-padding-left: 20px; }
  .clients__track { gap: 16px; padding: 0 20px; }
  .client-card { flex-basis: 180px; }
  .client-card__logo-wrap { height: 120px; }
  .process-step,
  .anti-card,
  .anti-client__positive { padding: 24px 18px; border-radius: 20px; }
  .process-step__num { font-size: 2rem; margin-bottom: 14px; }
  .process-step__title { font-size: 1.25rem; }
  .process-step__text { font-size: 0.9rem; }
  .anti-card h3,
  .anti-client__positive h3 { font-size: 1.15rem; }
  .btn,
  .btn--lg { width: 100%; padding: 16px 22px; font-size: 0.95rem; }
}