/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #080808;
  --bg-2: #0d0d0d;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --accent: #D4A843;
  --accent-hover: #E8BF5A;
  --accent-dim: rgba(212, 168, 67, 0.12);
  --accent-dim-2: rgba(212, 168, 67, 0.06);
  --text: #F0EEE8;
  --text-2: #999;
  --text-3: #555;
  --border: #1A1A1A;
  --border-2: #242424;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 0 0 1px var(--border);
  --shadow-hover: 0 0 0 1px var(--border-2), 0 8px 32px rgba(0,0,0,0.4);
  --max-w: 1200px;
}

/* ===== TYPOGRAPHY ===== */
.display { font-size: clamp(52px, 8vw, 96px); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; }
h1 { font-size: clamp(40px, 5.5vw, 64px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.4; }
p { line-height: 1.7; }

.accent-text { color: var(--accent); }
.muted { color: var(--text-2); }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-heading {
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 18px;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.65;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-md { padding: 12px 24px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

.btn-primary {
  background: var(--white);
  color: #080808;
}
.btn-primary:hover {
  background: var(--accent);
  color: #080808;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

.btn-accent {
  background: var(--accent);
  color: #080808;
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--text-3);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

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

.btn-full { width: 100%; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 250;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links-desktop a {
  font-size: 15px;
  color: var(--text-2);
  transition: var(--transition);
}
.nav-links-desktop a:hover { color: var(--text); }

/* Mobile overlay — hidden by default, shown via JS */
.nav-links {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #0a0a0a;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 48px 32px 56px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title .accent-text {
  display: block;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
}

.trust-point-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(212, 168, 67, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-frame {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(212, 168, 67, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(212, 168, 67, 0.04) 0%, transparent 60%);
}

.hero-image-placeholder-text {
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
  z-index: 1;
}

.hero-image-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  z-index: 1;
}

/* Floating decorations */
.hero-stat-card {
  position: absolute;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat-card--1 {
  bottom: 32px;
  left: -40px;
}

.hero-stat-card--2 {
  top: 40px;
  right: -28px;
}

.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.4;
}

/* ===== WHO SECTION ===== */
.who-section {
  background: var(--bg);
}

.cards-grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.cards-grid-5 .card:nth-child(4),
.cards-grid-5 .card:nth-child(5) {
  grid-column: span 1;
}

.cards-grid-5 .cards-row-2 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(212, 168, 67, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  background: var(--bg-2);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 0;
}

.experience-text {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
}

.experience-boxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-box {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-2);
}

.exp-box--beginner {
  background: rgba(212, 168, 67, 0.06);
  border-color: rgba(212, 168, 67, 0.2);
}

.exp-box--advanced {
  background: var(--bg-card);
}

.exp-box-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.exp-box p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ===== RESULTS SECTION ===== */
.results-section {
  background: var(--bg);
}

.results-header {
  max-width: 700px;
  margin-bottom: 56px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 769px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  border-right: none;
  transition: var(--transition);
}

.result-item:hover {
  background: var(--bg-card);
}

@media (min-width: 769px) {
  .result-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .result-item:last-child:nth-child(odd) {
    grid-column: span 2;
    border-right: none;
  }
}

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

.result-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  min-width: 32px;
  opacity: 0.5;
}

.result-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
  padding-top: 4px;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  background: var(--bg-2);
}

.products-header {
  margin-bottom: 56px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.product-card--featured {
  border-color: rgba(212, 168, 67, 0.25);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.06) 0%, var(--bg-card) 60%);
  grid-column: span 2;
}

.product-card--featured:hover {
  border-color: rgba(212, 168, 67, 0.4);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  align-self: flex-start;
}

.product-featured-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}

.lectures-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.lecture-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.lecture-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 7px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
}

.lecture-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.lecture-info span {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.product-pricing {
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.pricing-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  margin-bottom: 20px;
}

.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.pricing-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.pricing-option:hover,
.pricing-option.active {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.pricing-option-label { font-size: 14px; font-weight: 500; }
.pricing-option-price { font-size: 18px; font-weight: 700; color: var(--accent); }

.pricing-note {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 20px;
  padding: 12px;
  background: var(--accent-dim-2);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-sm);
  line-height: 1.5;
}

/* Simple product cards */
.product-card-simple .product-cta {
  margin-top: auto;
  padding-top: 24px;
}

/* ===== FORMAT CHOOSER ===== */
.format-section {
  background: var(--bg);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}

.format-card:hover {
  border-color: var(--border-2);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.format-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.format-condition {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
}

.format-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.format-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 56px;
}

.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

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

.why-item-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.1em;
  padding-top: 6px;
}

.why-item p {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.about-image {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-3);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about-paragraphs p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
}

.about-note {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--bg-2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.trust-card {
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.trust-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  background: var(--bg-card-hover);
}

.trust-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}

.trust-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro p {
  font-size: 16px;
  color: var(--text-2);
  margin-top: 16px;
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--border-2);
  background: var(--bg-card);
}

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

.faq-question:hover { color: var(--white); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-2);
}

.faq-item.open .faq-icon {
  background: var(--accent-dim);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 120px 0;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.1;
}

.cta-section .subtitle {
  font-size: 18px;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-logo {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-2);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-3);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--text-2); }

.footer-copy {
  font-size: 13px;
  color: var(--text-3);
}

.footer-legal {
  width: 100%;
  font-size: 11px;
  color: var(--text-3);
  opacity: 0.5;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ===== PRODUCT PAGES ===== */
.product-hero {
  padding: 140px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.product-hero-back {
  display: block;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 16px;
  transition: var(--transition);
}

.buy-box-mobile { display: none; }
.product-hero-back:hover { color: var(--text); }
.product-hero-back svg { transition: var(--transition); }
.product-hero-back:hover svg { transform: translateX(-3px); }

.product-hero h1 {
  max-width: 700px;
  margin-bottom: 20px;
}

.product-hero .subtitle {
  font-size: 18px;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.65;
}

.product-page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  padding: 80px 0;
}

.product-page-main {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.product-page-sidebar {
  position: sticky;
  top: 100px;
}

.product-page-block h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

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

.product-outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.outcome-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}

.product-outcome-item p {
  font-size: 15px;
  line-height: 1.55;
}

.product-lectures-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-lecture-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.product-lecture-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.product-lecture-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.product-lecture-card--soon {
  pointer-events: none;
}

.product-lecture-card--soon .lecture-num,
.product-lecture-card--soon h4,
.product-lecture-card--soon p {
  opacity: 0.3;
  filter: grayscale(1);
}

.lecture-soon-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 3px 10px;
  margin-left: auto;
}

/* Sticky Buy Box */
.buy-box {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.buy-box-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  margin-bottom: 20px;
}

.buy-price-display {
  margin-bottom: 20px;
}

.buy-price-main {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.buy-price-note {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 6px;
}

.buy-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.buy-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg);
}

.buy-option:hover,
.buy-option.selected {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.buy-option-label { font-size: 14px; font-weight: 500; }
.buy-option-price { font-size: 16px; font-weight: 700; color: var(--accent); white-space: nowrap; flex-shrink: 0; }

.buy-note {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 20px;
  padding: 12px;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
}

/* Lead Form */
.lead-form {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}

.lead-form-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.lead-form-box h2 {
  margin-bottom: 12px;
}

.lead-form-box p {
  color: var(--text-2);
  margin-bottom: 36px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}

.form-input {
  padding: 13px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-input::placeholder { color: var(--text-3); }

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 360px; }
  .hero-stat-card--1 { left: 0; }
  .hero-stat-card--2 { right: 0; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 320px 1fr; gap: 48px; }
  .experience-grid { gap: 48px; }
  .product-hero h1 { font-size: 40px; }
  .product-page-grid { grid-template-columns: 1fr 340px; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 72px 0; }

  .nav-links-desktop { display: none; }
  .nav-links.is-open { display: flex; }
  .nav .container { gap: 16px; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: clamp(44px, 12vw, 64px); }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-visual { max-width: 100%; }
  .hero-image-frame { aspect-ratio: 4/3; }

  .giveaway-grid { grid-template-columns: 1fr !important; }
  .cards-grid-5 { grid-template-columns: 1fr; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card--featured { grid-column: span 1; }
  .product-featured-inner { grid-template-columns: 1fr; }

  .format-grid { grid-template-columns: 1fr; }
  .why-item { grid-template-columns: 48px 1fr; gap: 16px; }
  .why-item p { font-size: 18px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 1/1; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }

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

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { flex-wrap: wrap; }

  .product-page-grid { grid-template-columns: 1fr; }
  .product-page-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }

  .cta-section h2 { font-size: clamp(28px, 7vw, 40px); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
}

/* ══════════ CLIENTS BANNER ══════════ */
.clients-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}

.marquee-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-track img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.marquee-track img:hover {
  opacity: 1;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== HAMBURGER BUTTON ===== */
.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  position: relative;
  z-index: 300;
  transition: var(--transition);
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== RESPONSIVE GRID HELPERS (replace problematic inline styles) ===== */
.who-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mentorship-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.format-boxes-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.format-boxes-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ===== ADDITIONAL MOBILE OVERRIDES ===== */
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav .btn { display: none; }

  .nav-links a {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    padding: 14px 0;
    letter-spacing: -0.02em;
    width: 100%;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); opacity: 1; }

  /* Grid helpers → single column */
  .who-cards-row { grid-template-columns: 1fr; }
  .mentorship-inner { grid-template-columns: 1fr; gap: 20px; }
  .format-boxes-2,
  .format-boxes-3 { grid-template-columns: 1fr; }

  /* Hide floating stat cards that overflow on small screens */
  .hero-stat-card { display: none; }

  /* Reduce hero image height on mobile */
  .hero-image-frame { aspect-ratio: 3/2; }

  /* Smaller section padding on very small screens */
  section { padding: 56px 0; }

  /* ── Product pages ── */
  .product-hero { padding: 90px 0 40px; }
  .product-hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .product-hero .subtitle { font-size: 16px; }
  .buy-box-mobile { display: block; }
  .product-page-sidebar--hide-mobile { display: none; }

  .product-page-grid { padding: 36px 0; gap: 32px; }
  .product-page-main { gap: 36px; }
  .product-page-sidebar { order: 1; }
  .product-page-block h2 { font-size: 22px; margin-bottom: 18px; }

  .buy-box { padding: 20px; }
  .buy-box-title { margin-bottom: 14px; }
  .buy-price-main { font-size: 28px; }
  .buy-options { gap: 8px; margin-bottom: 16px; }
  .buy-note { margin-bottom: 16px; }

  .product-lecture-card { padding: 18px; }
  .product-lecture-card h4 { font-size: 15px; }

  .lecture-soon-badge { font-size: 10px; padding: 3px 8px; white-space: nowrap; }

  .lead-form { padding: 56px 0; }
  .lead-form-box { padding: 0 4px; }
}

.price-old {
  text-decoration: line-through;
  color: var(--text-3);
  font-weight: 400;
  margin-right: 4px;
}

/* ===== GEO OVERLAY ===== */
#geo-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 8, 8, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: geoFadeIn 0.35s ease forwards;
}

#geo-overlay.geo-overlay--out {
  animation: geoFadeOut 0.3s ease forwards;
}

@keyframes geoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes geoFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.geo-box {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: geoSlideUp 0.35s ease forwards;
}

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

.geo-logo-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
}

.geo-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 36px;
}

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

.geo-btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.geo-btn--ru {
  background: var(--accent);
  color: #080808;
}

.geo-btn--ru:hover {
  background: var(--accent-hover);
}

.geo-btn--eu {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}

.geo-btn--eu:hover {
  border-color: var(--text-3);
  background: var(--bg-2);
}
