@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --black:    #09090E;
  --surface:  #0F0F18;
  --surface2: #16162050;
  --gold:     #C9A84C;
  --gold-lt:  #E2CF8F;
  --gold-dk:  #8B7232;
  --white:    #EDE8DF;
  --muted:    #6B6878;
  --red:      #E04040;
  --glass:    rgba(255,255,255,0.04);
  --glass-b:  rgba(201,168,76,0.12);

  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-b);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-b); }

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

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container { width: min(1200px, 100% - 3rem); margin: 0 auto; }
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.display {
  font-family: var(--ff-d);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-xl { font-size: clamp(3.5rem, 9vw, 8rem); }
.display-lg { font-size: clamp(2.5rem, 6vw, 5.5rem); }
.display-md { font-size: clamp(1.8rem, 4vw, 3.2rem); }
.display-sm { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.italic { font-style: italic; }
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.center { text-align: center; }
.label {
  font-family: var(--ff-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────────── */
#announcement {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 200;
}
#announcement strong { font-weight: 700; }
#announcement .pulse { display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ─── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(9,9,14,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
}
.logo {
  font-family: var(--ff-d);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.logo span { color: var(--white); font-weight: 300; font-size: 0.7em; letter-spacing: 0.25em; display: block; line-height: 1; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.lang-btn {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--muted);
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); border-color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-lt); }

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 3rem;
}
/* Full-bleed background video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(9,9,14,0.9) 0%, rgba(9,9,14,0.62) 45%, rgba(9,9,14,0.78) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 42%;
  background: linear-gradient(to top, var(--black), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title { margin-bottom: 1.5rem; }
.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 { display: block; color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(237,232,223,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-price-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.hero-price-hint del { color: var(--muted); text-decoration: line-through; }
.hero-price-hint strong { color: var(--gold); font-size: 1.1em; }
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2.5s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  font-family: var(--ff-b);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.35); }
.btn-outline {
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.btn-lg { padding: 1.2rem 3rem; font-size: 0.9rem; }
.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.75rem; }

/* ─── COUNTDOWN ─────────────────────────────────────────────── */
#countdown-section {
  background: linear-gradient(90deg, var(--surface) 0%, #0D0D1C 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem 0;
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.countdown-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.countdown-label strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 0.25rem; }
.countdown-timer {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.countdown-unit {
  text-align: center;
}
.countdown-num {
  font-family: var(--ff-d);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  display: block;
  min-width: 2.2ch;
}
.countdown-sep {
  font-family: var(--ff-d);
  font-size: 2.5rem;
  color: var(--muted);
  line-height: 1;
  margin-top: -0.3rem;
}
.countdown-unit-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}
.spots-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(224,64,64,0.1);
  border: 1px solid rgba(224,64,64,0.3);
  padding: 0.75rem 1.25rem;
  border-radius: 3px;
}
.spots-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.spots-text { font-size: 0.8rem; color: var(--white); }
.spots-text strong { color: var(--red); font-weight: 600; }

/* ─── VALUE BLOCK ────────────────────────────────────────────── */
#value { background: var(--surface); }
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.value-items { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.value-item-text strong {
  display: block;
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: var(--white);
}
.value-item-text span { font-size: 0.9rem; color: var(--muted); }
.value-total {
  background: var(--glass-b);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  margin-top: 1rem;
}
.value-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.value-total-row:last-child { border-bottom: none; }
.value-total-row .price-cross { color: var(--muted); text-decoration: line-through; }
.value-total-sum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0;
  margin-top: 0.5rem;
}
.value-total-sum .label-price { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.price-block {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--glass);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.price-block::before {
  content: 'АКУЛА CLUB';
  position: absolute;
  top: -1rem; right: -2rem;
  font-family: var(--ff-d);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201,168,76,0.04);
  letter-spacing: -0.02em;
  pointer-events: none;
}
.price-old {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}
.price-new {
  font-family: var(--ff-d);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-period {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.currency-toggle {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0;
}
.curr-btn {
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--muted);
  border-radius: 2px;
  color: var(--muted);
  transition: all 0.2s;
}
.curr-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.price-savings {
  display: inline-block;
  background: rgba(224,64,64,0.15);
  border: 1px solid rgba(224,64,64,0.3);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-top: 0.5rem;
}

/* ─── PAIN CARDS ─────────────────────────────────────────────── */
#pains { background: var(--black); }
.pains-intro { text-align: center; margin-bottom: 4rem; }
.pains-intro p { max-width: 600px; margin: 1rem auto 0; color: var(--muted); }
.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid rgba(201,168,76,0.15);
}
.pain-card {
  background: var(--black);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.pain-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pain-card:hover { background: var(--surface); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-num {
  font-family: var(--ff-d);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  transition: color 0.3s;
}
.pain-card:hover .pain-num { color: rgba(201,168,76,0.5); }
.pain-title {
  font-family: var(--ff-d);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
}
.pain-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.pain-votes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}
.pain-vote-bar {
  height: 3px;
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.pain-vote-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
}
.pain-vote-count { font-size: 0.75rem; color: var(--muted); }
.pain-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}
.pain-card:hover .pain-link { opacity: 1; transform: translateX(0); }

/* ─── ABOUT ──────────────────────────────────────────────────── */
#about {
  background: var(--surface);
  overflow: hidden;
  position: relative;
}
#about::before {
  content: 'АКУЛА';
  position: absolute;
  top: 50%; left: -2rem;
  transform: translateY(-50%);
  font-family: var(--ff-d);
  font-size: 22vw;
  font-weight: 700;
  color: rgba(201,168,76,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
}
.about-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--surface));
}
.about-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-content { position: relative; }
.about-quote {
  font-family: var(--ff-d);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(237,232,223,0.85);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.tag {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── PROGRAMS ───────────────────────────────────────────────── */
#programs { background: var(--black); }
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.program-card {
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.program-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.program-card.featured { border-color: var(--gold); }
.program-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.program-header { padding: 3.5rem 2rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.programs-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .programs-3 { grid-template-columns: 1fr; } }
.program-name { font-family: var(--ff-d); font-size: 1.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.program-tagline { font-size: 0.9rem; color: var(--muted); }
.program-body { padding: 2rem; }
.program-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.program-features li {
  font-size: 0.9rem;
  color: rgba(237,232,223,0.8);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.program-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}
.program-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── FINAL CTA ─────────────────────────────────────────────── */
#final-cta {
  background: linear-gradient(135deg, #0A0A14 0%, #0F0F22 50%, #09090E 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.5rem;
}
.cta-guarantee::before { content: '✦'; color: var(--gold); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }
.social-links { display: flex; gap: 1rem; margin-top: 0.5rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ─── PAIN PAGE SPECIFIC ─────────────────────────────────────── */
.pain-hero {
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.pain-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(9,9,14,0.5) 0%, rgba(9,9,14,0.95) 100%);
}
.pain-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.pain-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2rem;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pain-problem {
  background: var(--surface);
  padding: 5rem 0;
}
.problem-symptoms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  margin-top: 3rem;
}
.symptom-card {
  background: var(--black);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.symptom-card .manifest-x { margin-top: 0.2rem; }
.symptom-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.symptom-text { font-size: 0.95rem; color: rgba(237,232,223,0.8); line-height: 1.55; }
.pain-solution { background: var(--black); padding: 5rem 0; }
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.week-program { display: flex; flex-direction: column; gap: 1rem; }
.week-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.week-item:hover { border-color: rgba(201,168,76,0.3); }
.week-num {
  font-family: var(--ff-d);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 2ch;
}
.week-text strong { display: block; font-weight: 500; margin-bottom: 0.2rem; }
.week-text span { font-size: 0.85rem; color: var(--muted); }
.pain-offer { background: var(--surface); padding: 5rem 0; text-align: center; }
.offer-price-block {
  max-width: 480px;
  margin: 2rem auto;
  padding: 3rem;
  background: var(--glass);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-in {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; }

/* ─── DIVIDER ────────────────────────────────────────────────── */
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.divider.center { margin: 1.5rem auto; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { display: flex; flex-direction: column; gap: 1.5rem; }
.testimonial {
  padding: 1.75rem;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.testimonial-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.08em; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  #hero { padding-top: 7rem; padding-bottom: 4rem; }
  .hero-scroll { display: none; }
}

@media (max-width: 900px) {
  .value-grid, .about-grid, .programs-grid, .solution-grid,
  .manifest-grid, .practice-grid, .free-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pains-grid { grid-template-columns: 1fr 1fr; }
  .private-grid { grid-template-columns: 1fr; }
  .countdown-inner { gap: 2rem; }
  .practice-grid { gap: 0; }
  .practice-video-wrap { min-height: 55vh; }
  .practice-content { padding: 4rem 1.5rem; }
  .free-cta-box { max-width: none; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .pains-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .countdown-inner { flex-direction: column; gap: 1.5rem; }
  .nav-cta { display: none; }
  .nav-links { display: none; }
  .about-img { aspect-ratio: 3/4; }
  .recoup-compare { grid-template-columns: 1fr; gap: 1rem; }
  .manifest-for { font-size: 1.1rem; padding: 1.25rem 1.5rem; }
}

/* ─── MANIFEST ───────────────────────────────────────────────── */
#manifest {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.manifest-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.manifest-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.manifest-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: rgba(237,232,223,0.85);
  line-height: 1.5;
}
.manifest-item em { color: var(--white); font-style: normal; font-weight: 500; }
.manifest-x {
  color: var(--red);
  font-size: 0.9rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.manifest-for {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  border-left: 2px solid var(--gold);
  background: var(--glass);
  font-family: var(--ff-d);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
}

/* ─── PRICE / RECOUP BLOCK ───────────────────────────────────── */
#price { background: var(--black); }
.price-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.recoup-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}
.recoup-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  background: var(--glass);
  text-align: center;
}
.recoup-card.highlight {
  border-color: var(--gold);
  background: var(--glass-b);
  position: relative;
}
.recoup-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.recoup-card.highlight .recoup-card-label { color: var(--gold); }
.recoup-price {
  font-family: var(--ff-d);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}
.recoup-card.highlight .recoup-price { color: var(--gold); }
.recoup-price small {
  display: block;
  font-family: var(--ff-b);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}
.recoup-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-style: italic;
  color: var(--muted);
  font-size: 1.2rem;
}
.recoup-statement {
  text-align: center;
  font-family: var(--ff-d);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.recoup-statement .gold { font-style: normal; }
.price-cta-box {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  background: var(--glass);
  position: relative;
  overflow: hidden;
}
.price-cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}
.price-big {
  font-family: var(--ff-d);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.price-big-period { font-size: 1rem; color: var(--muted); margin: 0.5rem 0 1.5rem; }

/* ─── PRACTICE VIDEO ─────────────────────────────────────────── */
#practice {
  background: var(--surface);
  padding: 0;
}
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.practice-video-wrap {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.practice-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.practice-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ─── FREE LESSONS + GALLERY ─────────────────────────────────── */
#free { background: var(--black); position: relative; overflow: hidden; }
.free-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.free-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 0.6rem;
}
.free-gallery .g-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.free-gallery .g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: grayscale(15%);
}
.free-gallery .g-item:hover img { transform: scale(1.08); filter: grayscale(0%); }
.free-gallery .g-item.tall { grid-row: span 2; aspect-ratio: 3 / 8; }
.free-cta-box { max-width: 460px; }
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}
.free-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1rem;
}
.free-note::before { content: '✈'; color: var(--gold); }

/* ─── LIGHTBOX ───────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9,9,14,0.94);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: min(90vw, 600px);
  max-height: 88vh;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
#lightbox .lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
#lightbox .lb-close:hover { opacity: 1; }

/* ─── CLUB TIERS ─────────────────────────────────────────────── */
.club-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.tier-card {
  padding: 2.25rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  background: var(--glass);
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.tier-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.tier-card.featured { border-color: var(--gold); background: var(--glass-b); }
.tier-badge {
  position: absolute;
  top: -0.7rem; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.tier-badge.alt { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.tier-name { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.tier-price { font-family: var(--ff-d); font-size: 2.3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.tier-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.85rem; line-height: 1.4; }

/* ─── INDIVIDUAL LESSONS ─────────────────────────────────────── */
#private { background: var(--surface); }
.private-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.private-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  background: var(--glass);
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.private-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.private-card.featured { border-color: var(--gold); background: var(--glass-b); }
.private-card-badge {
  position: absolute;
  top: -0.7rem; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
}
.private-qty { font-family: var(--ff-d); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.25rem; }
.private-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.private-price {
  font-family: var(--ff-d);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.private-per { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; }

/* ─── REVIEWS ────────────────────────────────────────────────── */
#reviews { background: var(--black); overflow: hidden; }
.reviews-track {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dk) transparent;
}
.reviews-track::-webkit-scrollbar { height: 6px; }
.reviews-track::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }
.review-card {
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.review-card img { width: 100%; height: auto; display: block; }
.reviews-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.reviews-hint::after { content: ' →'; color: var(--gold); }

/* ─── PAGE PHOTO STRIP (pain pages) ──────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.photo-strip .ps-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
}
.photo-strip .ps-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.photo-strip .ps-item:hover img { transform: scale(1.06); }

/* ─── SEO ARTICLE ────────────────────────────────────────────── */
.article { max-width: 820px; margin: 0 auto; }
.article-lead {
  font-family: var(--ff-d);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 2rem;
}
.article h3 {
  font-family: var(--ff-d);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 2.75rem 0 1rem;
}
.article p {
  color: rgba(237,232,223,0.82);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1.03rem;
}
.article ul { list-style: none; margin: 1rem 0 1.75rem; }
.article ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  color: rgba(237,232,223,0.82);
  line-height: 1.7;
}
.article ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
}
.article a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.35);
  transition: border-color 0.2s;
}
.article a:hover { border-color: var(--gold); }
.article strong { color: var(--white); font-weight: 500; }
.article-offer {
  margin: 2.5rem 0;
  padding: 2.25rem 2.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  background: var(--glass-b);
  position: relative;
  overflow: hidden;
}
.article-offer h3 { margin-top: 0; }
.article-offer p:last-of-type { margin-bottom: 0; }
.article-faq-q {
  font-family: var(--ff-b);
  font-weight: 600;
  color: var(--white);
  font-size: 1.05rem;
  margin: 1.75rem 0 0.5rem;
}

/* ─── LIVE REVIEWS (pain pages) ──────────────────────────────── */
.live-reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.live-review {
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--gold);
  background: var(--glass);
  border-radius: 4px;
}
.live-review p { font-style: italic; line-height: 1.7; margin-bottom: 1rem; color: rgba(237,232,223,0.9); }
.live-review .lr-author { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.06em; }

/* ─── FLOATING JOIN BTN ──────────────────────────────────────── */
#float-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--ff-b);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
  z-index: 50;
  transform: translateY(120px);
  transition: transform 0.4s var(--ease), box-shadow 0.2s;
  cursor: pointer;
}
#float-btn.show { transform: translateY(0); }
#float-btn:hover { box-shadow: 0 12px 40px rgba(201,168,76,0.55); transform: translateY(-2px); }

/* ─── RESPONSIVE OVERRIDES (must win — placed last) ──────────── */
@media (max-width: 900px) {
  .free-grid { grid-template-columns: 1fr; gap: 3rem; }
  .private-grid { grid-template-columns: 1fr; }
  .club-tiers { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .free-cta-box { max-width: none; }
}
@media (max-width: 700px) {
  .live-reviews { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .free-gallery { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .review-card { width: 270px; }
  .club-tiers { grid-template-columns: 1fr; }
  .article-offer { padding: 1.75rem 1.5rem; }
}

/* ── AD OFFER (лендинги болей) ─────────────────────────────── */
.offer-media { display: flex; flex-direction: column; gap: 1rem; }
.offer-video {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.9);
}
.offer-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.offer-photos .op-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  cursor: zoom-in;
}
.offer-photos .op-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offer-photos .op-item:hover img { transform: scale(1.06); }
.offer-point { display: flex; gap: 0.75rem; align-items: flex-start; }
.offer-point p { margin: 0; line-height: 1.55; }
.op-check { color: var(--gold); font-weight: 700; flex: none; }

/* ── FAQ (аккордеон) ───────────────────────────────────────── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 2.25rem 1.15rem 0;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  margin: 0 0 1.3rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}
