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

:root {
  --yellow: #F5D200;
  --yellow-dark: #D4B800;
  --black: #0D0D0D;
  --dark: #141414;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --white: #FFFFFF;
  --gray: #888888;
  --red: #E63535;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 48px;
}
.section-title.center { text-align: center; }
.accent { color: var(--yellow); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,210,0,0.3); }
.btn--yellow { background: var(--yellow); color: var(--black); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: var(--yellow); color: var(--yellow); box-shadow: none; }
.btn--lg { padding: 20px 48px; font-size: 17px; }

/* ── BADGE ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.badge--fire { background: rgba(245,210,0,0.15); border: 1px solid var(--yellow); color: var(--yellow); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,210,0,0.07) 0%, transparent 70%), var(--black);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--white);
}

.hero__desc {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__stats {
  display: flex;
  gap: 48px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--yellow);
  line-height: 1;
}
.stat__label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }

.hero__photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  max-height: 650px;
  display: flex;
  align-items: flex-start;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  display: block;
}

/* ── MANIFEST ─────────────────────────────────────────────── */
.manifest {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.manifest__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.manifest__lead {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}
.manifest__note { color: var(--gray); margin-bottom: 16px; }
.manifest__list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.manifest__list li {
  padding-left: 20px;
  position: relative;
  color: rgba(255,255,255,0.75);
}
.manifest__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--yellow);
}
.manifest__cta-text { font-size: 20px; font-weight: 800; margin-bottom: 24px; }

/* ── HARD ─────────────────────────────────────────────────── */
.hard__sub {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.hard__footer {
  margin-top: 48px;
  background: var(--dark3);
  border-left: 4px solid var(--yellow);
  padding: 20px 28px;
  font-weight: 600;
  border-radius: 0 8px 8px 0;
  color: rgba(255,255,255,0.85);
}

/* ── CARDS ────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-4px); }

.card--dark {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--yellow);
  line-height: 1;
}
.card--dark p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.6; }

.card--yellow-top { background: var(--dark2); border: 1px solid rgba(255,255,255,0.07); }
.card__img {
  height: 180px;
  background: var(--dark3);
  position: relative;
  overflow: hidden;
}
.card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,210,0,0.15) 0%, transparent 60%);
}
.card__img--1 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.card__img--2 { background: linear-gradient(135deg, #0f3460, #1a1a2e); }
.card__img--3 { background: linear-gradient(135deg, #16213e, #0f3460); }
.card__body { padding: 24px; }
.card__body h3 { font-size: 17px; font-weight: 800; margin-bottom: 12px; }
.card__body p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.65; }

/* ── FOR WHO ──────────────────────────────────────────────── */
.for-who { background: var(--black); }

/* ── FOUNDERS ─────────────────────────────────────────────── */
.founders { background: var(--dark2); }
.founders__grid { display: flex; flex-direction: column; gap: 32px; }
.founder-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  background: var(--dark3);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.founder-card--reverse { direction: rtl; }
.founder-card--reverse > * { direction: ltr; }
.founder-card__photo {
  min-height: 340px;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.founder-card__info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.founder-card__info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--yellow);
  line-height: 1;
  text-align: center;
}
.founder-card__info ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.founder-card__info li {
  padding-left: 20px;
  position: relative;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}
.founder-card__info li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
}

/* ── RESULTS ──────────────────────────────────────────────── */
.results { background: var(--black); }
.results__sub {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  margin-top: -28px;
  margin-bottom: 56px;
}
.checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--dark2);
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.06);
}
.check {
  font-size: 22px;
  color: var(--yellow);
  font-weight: 900;
  line-height: 1.4;
  flex-shrink: 0;
}
.check-item p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ── PROGRAM ──────────────────────────────────────────────── */
.program { background: var(--dark2); }
.program__list { display: flex; flex-direction: column; gap: 2px; }
.program__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  background: var(--dark3);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}
.program__item:hover { border-color: rgba(245,210,0,0.3); }
.program__num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
}
.program__body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program__body h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
}
.program__body p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.6; }
.program__result { color: var(--yellow); font-size: 14px; font-weight: 600; }

/* ── COMPARE ──────────────────────────────────────────────── */
.compare { background: var(--black); }
.compare__table-wrap { overflow-x: auto; margin-bottom: 40px; }
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare__table th, .compare__table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.compare__table thead th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--gray);
  background: var(--dark2);
  padding-top: 20px;
  padding-bottom: 20px;
}
.compare__table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.compare__table td:first-child { color: var(--gray); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.compare__table td { color: rgba(255,255,255,0.5); }
.highlight {
  background: rgba(245,210,0,0.08) !important;
  color: var(--yellow) !important;
  font-weight: 700 !important;
  border-left: 2px solid var(--yellow) !important;
}
.compare__table thead th.highlight { color: var(--yellow) !important; font-size: 22px; }
.compare__note {
  background: var(--dark2);
  border-left: 4px solid var(--yellow);
  padding: 28px 32px;
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 2;
}
.compare__note strong { color: var(--white); }

/* ── PRICE ────────────────────────────────────────────────── */
.price { background: var(--dark2); }
.price__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.price__live {
  background: var(--dark3);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.price__fire { font-size: 13px; font-weight: 800; color: var(--yellow); letter-spacing: 0.05em; margin-bottom: 4px; }
.live-dot { color: #ff4444; font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.price__counter { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--white); line-height: 1; }
.price__counter-label { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-bar__fill { height: 100%; background: var(--yellow); border-radius: 4px; }
.progress-bar__labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray);
}

.price__tiers { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.tier {
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--dark3);
  opacity: 0.5;
}
.tier--active {
  opacity: 1;
  border-color: var(--yellow);
  background: rgba(245,210,0,0.08);
}
.tier__badge { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; color: var(--gray); margin-bottom: 8px; text-transform: uppercase; }
.tier--active .tier__badge { color: var(--yellow); }
.tier__price { font-family: 'Bebas Neue', sans-serif; font-size: 40px; line-height: 1; color: var(--white); }
.tier__price span { font-size: 20px; color: var(--gray); }
.tier__alt { font-size: 12px; color: var(--gray); margin-top: 4px; }

.price__urgency { font-size: 13px; color: var(--yellow); font-weight: 600; }

.price__timer-box {
  background: var(--dark3);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(245,210,0,0.2);
}
.price__timer-box > p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 20px; }

.timer {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
}
.timer__unit {
  background: var(--dark2);
  border-radius: 10px;
  padding: 12px 20px;
  text-align: center;
  min-width: 72px;
}
.timer__unit span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--yellow);
  line-height: 1;
}
.timer__unit small { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }
.timer__sep { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--yellow); }

.bonuses { margin-bottom: 28px; }
.bonuses__title { font-size: 14px; font-weight: 800; letter-spacing: 0.04em; margin-bottom: 16px; color: var(--yellow); }
.bonuses ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bonuses li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}
.bonuses li::before { content: '🎁'; position: absolute; left: 0; font-size: 12px; }

.price__timer-box .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.price__watchers { font-size: 12px; color: var(--gray); text-align: center; margin-bottom: 20px; }
.price__watchers strong { color: var(--white); }
.price__big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--yellow);
  text-align: center;
  line-height: 1;
}
.price__big span { font-size: 32px; color: var(--gray); }
.price__big del { font-size: 32px; color: rgba(255,255,255,0.2); margin-left: 12px; text-decoration: line-through; }

/* ── EXAMPLES ─────────────────────────────────────────────── */
.examples { background: var(--black); }
.example-card {
  background: var(--dark2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, border-color 0.2s;
}
.example-card:hover { transform: translateY(-4px); border-color: rgba(245,210,0,0.3); }
.example-card__img {
  height: 200px;
  background: var(--dark3);
}
.example-card__img--1 { background: linear-gradient(135deg, #1a2535, #0d1520); }
.example-card__img--2 { background: linear-gradient(135deg, #251a35, #150d20); }
.example-card__img--3 { background: linear-gradient(135deg, #1a3525, #0d2015); }
.example-card__img--4 { background: linear-gradient(135deg, #352515, #20150d); }
.example-card__img--5 { background: linear-gradient(135deg, #15252a, #0d1520); }
.example-card__img--6 { background: linear-gradient(135deg, #2a1535, #15091d); }
.example-card p {
  padding: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--dark2); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: var(--dark3);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item[open] { border-color: rgba(245,210,0,0.3); }
.faq__item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 16px;
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-weight: 300;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item[open] summary { color: var(--yellow); }
.faq__item p {
  padding: 0 24px 20px;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.65;
}

/* ── FINAL CTA ────────────────────────────────────────────── */
.final-cta {
  background: var(--black);
  text-align: center;
  padding: 120px 0;
}
.final-cta__inner { max-width: 720px; margin: 0 auto; }
.final-cta .section-title { font-size: clamp(40px, 5vw, 72px); margin-bottom: 24px; }
.final-cta p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 12px; }
.final-cta .btn { margin-top: 36px; }
.final-cta__note { font-size: 14px; color: var(--gray); margin-top: 16px !important; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
}
.footer__links { display: flex; gap: 32px; }
.footer__links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.2s; }
.footer__links a:hover { color: var(--yellow); }
.footer__email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.footer__email:hover { color: var(--yellow); }
.footer__copy { font-size: 13px; color: var(--gray); }

/* ── ANIMATIONS ───────────────────────────────────────────── */

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delay */
.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; }

/* Hero title typing line */
.hero__title {
  position: relative;
}

/* Badge pulse */
.badge--fire {
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,210,0,0); }
  50% { box-shadow: 0 0 0 6px rgba(245,210,0,0.12); }
}

/* Button hover shimmer */
.btn--yellow {
  position: relative;
  overflow: hidden;
}
.btn--yellow::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn--yellow:hover::after { left: 150%; }

/* Card hover lift */
.card--dark, .card--yellow-top, .example-card, .check-item {
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, box-shadow 0.25s;
}
.card--dark:hover, .card--yellow-top:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: rgba(245,210,0,0.25);
}
.check-item:hover {
  transform: translateX(6px);
  border-color: rgba(245,210,0,0.25);
}

/* Program item hover */
.program__item {
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, box-shadow 0.25s;
}
.program__item:hover {
  transform: translateX(6px);
  border-color: rgba(245,210,0,0.35);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* FAQ hover */
.faq__item {
  transition: border-color 0.2s, transform 0.2s;
}
.faq__item:hover { transform: translateX(4px); }

/* Live dot blink */
.live-dot {
  animation: liveBlink 1.5s ease-in-out infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Progress bar fill animation */
@keyframes fillBar {
  from { width: 0; }
  to { width: 27%; }
}
.progress-bar__fill { animation: fillBar 1.2s cubic-bezier(0.16,1,0.3,1) 0.5s both; }

/* Founder card image zoom on hover */
.founder-card { overflow: hidden; }
.founder-card__photo img {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.founder-card:hover .founder-card__photo img { transform: scale(1.04); }

/* Hero photo parallax feel */
.hero__photo {
  transition: transform 0.3s ease;
}

/* Section title underline draw */
.section-title .accent {
  position: relative;
}

/* Tier hover */
.tier--active {
  transition: transform 0.2s, box-shadow 0.2s;
}
.tier--active:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245,210,0,0.15);
}

/* Footer links */
.footer__links a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__links a svg {
  flex-shrink: 0;
  transition: color 0.2s;
}
.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.25s ease;
}
.footer__links a:hover::after { width: 100%; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__right { display: none; }
  .manifest__inner { grid-template-columns: 1fr; gap: 32px; }
  .founder-card { grid-template-columns: 240px 1fr; }
  .price__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  /* Заголовки не вылезают за экран */
  .section-title { font-size: clamp(36px, 10vw, 64px); word-break: break-word; }

  .cards-grid--3 { grid-template-columns: 1fr; }
  .checks-grid { grid-template-columns: 1fr; }

  /* Программа */
  .program__item { grid-template-columns: 64px 1fr; }
  .program__num { font-size: 32px; }
  .program__body { padding: 20px 16px; }

  /* Основатель */
  .founder-card { grid-template-columns: 1fr; }
  .founder-card__photo { min-height: 320px; }
  .founder-card__info { padding: 24px; }
  .founder-card--reverse .founder-card__info { padding: 24px; }

  /* Цена */
  .price__inner { grid-template-columns: 1fr; }
  .price__counter { font-size: 48px; }
  .timer__unit { min-width: 56px; padding: 10px 12px; }
  .timer__unit span { font-size: 36px; }

  /* Таблица */
  .compare__table { font-size: 12px; }
  .compare__table th, .compare__table td { padding: 10px 8px; }

  /* Кнопки в ряд → стопка */
  .hero__btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  /* Футер */
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }

  /* Manifest */
  .manifest__inner { grid-template-columns: 1fr; gap: 32px; }

  /* Финальный CTA */
  .final-cta .section-title { font-size: clamp(28px, 8vw, 52px); }
}
