/* ═══════════════════════════════════════════════════
   AI INTENSIVE CLINIC — TERMINAL DARK THEME
   ═══════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --bg:          #0a0c0f;
  --bg-2:        #0f1218;
  --bg-3:        #141820;
  --bg-card:     #111318;
  --border:      #1e2530;
  --border-bright: #2a3545;
  --green:       #00ff88;
  --green-dim:   #00c46a;
  --green-glow:  rgba(0, 255, 136, 0.15);
  --green-glow2: rgba(0, 255, 136, 0.05);
  --amber:       #ffb830;
  --amber-dim:   #cc8f1a;
  --red:         #ff4757;
  --cyan:        #00d4ff;
  --white:       #e8edf5;
  --gray-1:      #8899aa;
  --gray-2:      #4a5568;
  --gray-3:      #2d3748;
  --font-mono:   'JetBrains Mono', 'Courier New', monospace;
  --font-ui:     'Space Grotesk', 'Inter', sans-serif;
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.2s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ─── OVERLAYS ─── */
.scanline {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0.06) 4px
  );
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.025;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION LABEL ─── */
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  opacity: 0.8;
}
.section-label .prompt { color: var(--gray-2); margin-right: 4px; }

/* ─── SECTION TITLE ─── */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

/* ═══════════════════ TERMINAL BAR ═══════════════════ */
.hero__terminal-bar,
.payment-card__terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-2);
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--red    { background: #ff5f57; }
.dot--yellow { background: #febc2e; }
.dot--green  { background: #28c840; }
.terminal-title {
  margin-left: 8px;
  color: var(--gray-2);
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,255,136,0.07) 0%, transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--border) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(0deg, var(--border) 1px, transparent 1px) 0 0 / 60px 60px;
  opacity: 0.25;
}

.hero__terminal-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,12,15,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-bright);
}

.hero .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.25);
  border-radius: 2px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}

.hero__tag-line {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gray-1);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__tag-line .prompt { color: var(--green); }
.typed {
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
  animation: titleFlicker 6s ease-in-out infinite;
}

@keyframes titleFlicker {
  0%   { opacity: 1; }
  92%  { opacity: 1; }
  93%  { opacity: 0.2; }
  94%  { opacity: 1; }
  96%  { opacity: 0.4; }
  97%  { opacity: 1; }
  98%  { opacity: 0.1; }
  99%  { opacity: 1; }
  100% { opacity: 1; }
}
.hero__title--accent {
  color: var(--green);
  display: block;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--gray-1);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* META ROW */
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-1);
}
.meta-item i { color: var(--green); }
.meta-item strong { color: var(--amber); }
.meta-sep { color: var(--gray-3); font-size: 16px; }
.seats-counter strong { color: var(--amber); }

/* CTA BUTTONS */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.hero__disclaimer {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-2);
}
.hero__disclaimer i { color: var(--green); margin-right: 4px; }

/* SCROLL */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray-2);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.04);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(0,255,136,0.25), 0 0 40px rgba(0,255,136,0.1);
}
.btn--primary:hover {
  background: #00ffaa;
  box-shadow: 0 0 30px rgba(0,255,136,0.4), 0 0 60px rgba(0,255,136,0.2);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
  box-shadow: inset 0 0 0 0 var(--green);
}
.btn--outline:hover {
  background: rgba(0,255,136,0.08);
  box-shadow: 0 0 20px rgba(0,255,136,0.15);
  transform: translateY(-1px);
}

.btn--full { width: 100%; justify-content: center; }

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn__icon { font-size: 14px; }
.btn__price {
  margin-left: auto;
  padding-left: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  opacity: 0.85;
  border-left: 1px solid rgba(0,0,0,0.2);
}
.btn--outline .btn__price { border-left-color: rgba(0,255,136,0.3); }

/* ═══════════════════ FOR WHOM ═══════════════════ */
.for-whom {
  padding: 100px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.card--who {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card--who::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.card--who:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,255,136,0.07);
}
.card--who:hover::before { opacity: 1; }

.card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--green);
}
.card--who h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}
.card--who p { font-size: 14px; color: var(--gray-1); line-height: 1.6; }

.alert-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,71,87,0.06);
  border: 1px solid rgba(255,71,87,0.25);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.7;
}
.alert-block__icon { color: var(--red); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.alert-block strong { color: var(--white); }

/* ═══════════════════ PROGRAM ═══════════════════ */
.program {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.program-block {
  margin-bottom: 56px;
}

.program-block__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  padding: 22px 28px;
  background: linear-gradient(100deg, rgba(0,255,136,0.06) 0%, rgba(0,255,136,0.02) 50%, transparent 100%);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--green);
  overflow: hidden;
  box-shadow: 0 0 24px rgba(0,255,136,0.04);
}

/* Большой фоновый номер */
.program-block__header::before {
  content: attr(data-block);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 72px;
  font-weight: 700;
  color: rgba(0,255,136,0.05);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}

.block-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #000;
  background: var(--green);
  letter-spacing: 0.15em;
  padding: 5px 10px;
  border-radius: 2px;
  flex-shrink: 0;
  font-weight: 700;
}
.block-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

/* MODULES */
.modules-list { display: flex; flex-direction: column; gap: 8px; }

.module {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.module:hover { border-color: var(--border-bright); }
.module--final { border-color: rgba(0,255,136,0.2); }

.module__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.module__header:hover { background: rgba(255,255,255,0.02); }

.module__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.1em;
  background: rgba(0,255,136,0.07);
  border: 1px solid rgba(0,255,136,0.15);
  padding: 4px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  white-space: nowrap;
}

.module__title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.module__toggle {
  color: var(--gray-2);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
}
.module.open .module__toggle {
  transform: rotate(180deg);
  color: var(--green);
}

.module__body {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px solid var(--border);
}
.module.open .module__body { display: block; }

.module__desc {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.7;
  padding-top: 16px;
  margin-bottom: 16px;
}

.module__tool {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
}
.tool-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--cyan);
  opacity: 0.7;
}
.tool-name {
  font-weight: 600;
  color: var(--cyan);
}
.tool-name i { margin-right: 4px; }
.tool-desc { color: var(--gray-1); }

.module__results { }
.results-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 10px;
}
.module__results ul { display: flex; flex-direction: column; gap: 6px; }
.module__results li {
  font-size: 13px;
  color: var(--gray-1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 4px;
}
.module__results li::before {
  content: '→';
  color: var(--green);
  flex-shrink: 0;
  font-family: var(--font-mono);
}

/* ═══════════════════ OUTCOMES ═══════════════════ */
.outcomes {
  padding: 100px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.outcome-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.outcome-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,255,136,0.06);
}

.outcome-card__num {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 700;
  color: var(--border-bright);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  user-select: none;
}
.outcome-card__icon {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 16px;
}
.outcome-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.outcome-card p { font-size: 14px; color: var(--gray-1); line-height: 1.6; }

/* ═══════════════════ STATS ═══════════════════ */
.stats {
  padding: 60px 0;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-item__num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}
.stat-item__label {
  font-size: 13px;
  color: var(--gray-1);
}

/* ═══════════════════ WHY OFFLINE ═══════════════════ */
.why-offline {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.why-item {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: all var(--transition);
}
.why-item:hover {
  border-color: rgba(0,255,136,0.25);
  background: rgba(0,255,136,0.02);
}

.why-item__icon {
  font-size: 26px;
  color: var(--green);
  margin-bottom: 16px;
}
.why-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.why-item p { font-size: 14px; color: var(--gray-1); line-height: 1.6; }

/* ═══════════════════ PAYMENT ═══════════════════ */
.payment {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,255,136,0.04) 0%, transparent 70%),
    var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}

.payment-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  transition: all var(--transition);
}

.payment-card--individual {
  background: var(--bg-card);
  border-color: rgba(0,255,136,0.3);
  box-shadow: 0 0 30px rgba(0,255,136,0.05);
}
.payment-card--individual:hover {
  border-color: rgba(0,255,136,0.5);
  box-shadow: 0 0 40px rgba(0,255,136,0.1);
  transform: translateY(-3px);
}

.payment-card--entity {
  background: var(--bg-card);
}
.payment-card--entity:hover {
  border-color: rgba(0,255,136,0.3);
  transform: translateY(-3px);
}

.payment-card__body { padding: 28px 24px; }

.payment-card__type {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-1);
  margin-bottom: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.payment-card__type i { color: var(--green); }

.payment-card__price {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.payment-card__includes { margin-bottom: 24px; }
.includes-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray-2);
  margin-bottom: 12px;
}
.payment-card__includes ul { display: flex; flex-direction: column; gap: 8px; }
.payment-card__includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-1);
}
.payment-card__includes li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }

.payment-card__note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-2);
  text-align: center;
  font-family: var(--font-mono);
}

/* SEATS WARNING */
.seats-warning {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,184,48,0.05);
  border: 1px solid rgba(255,184,48,0.25);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.7;
}
.seats-warning__icon { color: var(--amber); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.seats-warning strong { color: var(--amber); }

/* ═══════════════════ FAQ ═══════════════════ */
.faq {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-bright); }

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  user-select: none;
  transition: background var(--transition);
}
.faq-item__q:hover { background: rgba(255,255,255,0.02); }

.faq-item__q i {
  color: var(--green);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-item__q i { transform: rotate(45deg); }

.faq-item__a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-item__a { display: block; }

/* ═══════════════════ FINAL CTA ═══════════════════ */
.final-cta {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,255,136,0.06) 0%, transparent 70%),
    var(--bg-2);
}

.final-cta__terminal {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.terminal-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--green);
  margin-bottom: 24px;
}

.blink-cursor {
  animation: blink 1s step-end infinite;
  color: var(--green);
}

.final-cta__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.final-cta__title .accent { color: var(--green); }

.final-cta__sub {
  font-size: 16px;
  color: var(--gray-1);
  margin-bottom: 44px;
  line-height: 1.6;
}

.final-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer__logo {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.footer__logo .accent { color: var(--green); }

.footer__brand p { font-size: 14px; color: var(--gray-2); max-width: 360px; line-height: 1.6; }

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-1);
  font-family: var(--font-mono);
}
.footer__info-item i { color: var(--green); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--gray-2);
  font-family: var(--font-mono);
}

.footer__sys { letter-spacing: 0.05em; }
.status-ok {
  color: var(--green);
  animation: blink 2s ease-in-out infinite;
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@keyframes glitch {
  0%   { clip-path: inset(0 0 95% 0); transform: translate(-2px, 0); }
  20%  { clip-path: inset(60% 0 20% 0); transform: translate(2px, 0); }
  40%  { clip-path: inset(30% 0 50% 0); transform: translate(-1px, 0); }
  60%  { clip-path: inset(80% 0 5% 0); transform: translate(1px, 0); }
  80%  { clip-path: inset(10% 0 80% 0); transform: translate(-2px, 0); }
  100% { clip-path: inset(0 0 95% 0); transform: translate(0, 0); }
}

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

/* Glitch on hero title — только смещение без дублирования текста */
.hero__title { position: relative; }

.hero__title.glitching {
  animation: glitchShift 0.18s steps(2) forwards;
}

@keyframes glitchShift {
  0%   { transform: translate(-3px, 0); filter: hue-rotate(90deg); }
  25%  { transform: translate(3px, 1px); }
  50%  { transform: translate(-2px, -1px); filter: hue-rotate(0deg); }
  75%  { transform: translate(2px, 0); }
  100% { transform: translate(0, 0); }
}

/* ═══════════════════ SCROLL REVEAL ═══════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════ COUNTDOWN BADGE ═══════════════════ */
.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,184,48,0.07);
  border: 1px solid rgba(255,184,48,0.3);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--amber);
  margin-bottom: 24px;
  width: fit-content;
}
.countdown-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-2);
  margin-right: 4px;
}
.countdown-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
}
.countdown-unit {
  font-size: 10px;
  color: var(--gray-2);
  margin-right: 6px;
}

/* Scrolled terminal bar */
.hero__terminal-bar.scrolled {
  border-bottom-color: rgba(0,255,136,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 768px) {
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
  .hero__cta { flex-direction: column; }
  .btn { width: 100%; justify-content: space-between; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero__meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .meta-sep { display: none; }

  .module__title { font-size: 14px; }
  .payment-grid { grid-template-columns: 1fr; }

  .final-cta__btns { flex-direction: column; }
  .final-cta__btns .btn { width: 100%; justify-content: space-between; }

  .program-block__header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .section-title { margin-bottom: 32px; }
  .for-whom, .program, .outcomes, .why-offline, .payment, .faq, .final-cta {
    padding: 70px 0;
  }
  .stats { padding: 40px 0; }
  .module__num { font-size: 10px; padding: 3px 6px; }
  .module__header { gap: 10px; }
}
