/* ════════════════════════════════════════════════════════════════
   academy-global.css  |  borisov.academy
   Обновлено: 2026-03-27
   Шрифт: Manrope (везде, без исключений)
   Бренд-акцент: #1e3a5f (тёмный индиго)
   Telegram: #2AABEE | MAX: #E8950A
   ════════════════════════════════════════════════════════════════ */

/* ── Assembler theme override ── */
:root {
  --wp--style--global--content-size: 1280px !important;
  --wp--style--global--wide-size: 1280px !important;
}
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.wp-site-blocks {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.has-global-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.entry-content, .wp-block-post-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.wp-site-blocks > header,
.wp-site-blocks > footer,
.site-header, .site-footer,
.entry-title, .post-title { display: none !important; }

/* ── ТОКЕНЫ ── */
:root {
  /* Поверхности */
  --bg:        #F7F9FC;
  --surface:   #FFFFFF;
  --surface2:  #EEF2F7;
  --surface3:  #E2E8F0;
  --border:    #CBD5E1;
  --border-lt: #E2E8F0;

  /* Текст */
  --ink:       #0F172A;
  --body:      #334155;
  --muted:     #64748B;

  /* Бренд-акцент (индиго) */
  --accent:    #1e3a5f;
  --accent-lt: #e8f0fe;

  /* UI-синий (label, ссылки, теги) */
  --blue:      #2563EB;
  --blue-dk:   #1D4ED8;
  --blue-lt:   #EFF6FF;
  --blue-pale: #DBEAFE;
  --label:     #2563EB;

  /* Зелёный (outcomes) */
  --emerald:   #059669;
  --emerald-lt:#ECFDF5;

  /* Мессенджеры */
  --tg-blue:   #2AABEE;
  --max-gold:  #E8950A;

  /* Типографика */
  --font: 'Manrope', system-ui, sans-serif;
}

/* ── СБРОС ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--ink); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; color: var(--accent); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 700; }
a { text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

.label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
  font-weight: 700;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-lt) 25%, var(--border-lt) 75%, transparent);
  margin: 0 auto;
  max-width: 1100px;
}

/* ── NAV ── */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,249,252,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-lt);
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }

/* Гамбургер (мобильный) */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
}
.nav-hamburger svg { width: 22px; height: 22px; display: block; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 72px;
  padding: 120px 32px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.78rem;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--blue);
  display: block;
}

.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--blue); }

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-facts { display: flex; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-fact  { display: flex; align-items: baseline; gap: 10px; }
.hero-fact-num   { font-size: 2.4rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.hero-fact-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; line-height: 1.4; font-weight: 500; }

/* PHOTO CARD */
.photo-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface2);
  border: 1px solid var(--border-lt);
  box-shadow: 0 20px 60px rgba(15,23,42,0.08);
  max-width: 360px;
  width: 100%;
}
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-badge {
  position: absolute;
  top: 20px; right: -1px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 7px 16px 7px 14px;
  border-radius: 3px 0 0 3px;
  text-transform: uppercase;
}
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px 20px;
  background: linear-gradient(transparent, rgba(255,255,255,0.95));
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ── CTA КНОПКИ ── */
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn-tg {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--tg-blue); color: #fff;
  font-family: var(--font); font-weight: 600; font-size: 0.88rem;
  padding: 14px 24px; border-radius: 4px; transition: all 0.2s;
  border: none;
}
.btn-tg:hover { background: #1a9bd8; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,171,238,0.3); }

.btn-max {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--max-gold);
  font-family: var(--font); font-weight: 600; font-size: 0.88rem;
  padding: 13px 24px; border-radius: 4px;
  border: 1.5px solid var(--max-gold); transition: all 0.2s;
}
.btn-max:hover { background: var(--max-gold); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,149,10,0.25); }

/* SVG-иконки кнопок через CSS (WordPress вырезает inline svg) */
.btn-tg::before {
  content: '';
  display: inline-block; width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.944 0A12 12 0 1 0 24 12 12 12 0 0 0 11.944 0zm5.92 7.3l-2.02 9.537c-.145.658-.537.818-1.084.508l-3-2.21-1.447 1.394c-.16.16-.295.295-.605.295l.213-3.053 5.56-5.023c.242-.213-.054-.333-.373-.12L7.17 13.503l-2.962-.924c-.643-.203-.657-.643.136-.953l11.57-4.462c.537-.194 1.006.131.95.937z'/%3E%3C/svg%3E") no-repeat center/contain;
  flex-shrink: 0;
}
.btn-max::before {
  content: '';
  display: inline-block; width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23E8950A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='4'/%3E%3Cpath d='M7 17V10l4 4 4-4v7'/%3E%3C/svg%3E") no-repeat center/contain;
  flex-shrink: 0;
}
.btn-max:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='4'/%3E%3Cpath d='M7 17V10l4 4 4-4v7'/%3E%3C/svg%3E");
}

/* ── STATS BAR ── */
.stats-bar { background: var(--accent); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; display: block; letter-spacing: -0.03em; }
.stat-num span { color: rgba(255,255,255,0.5); font-size: 0.55em; font-weight: 600; }
.stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }

/* Stats-grid 3 колонки (обернуть в .home-stats) */
.home-stats .stats-grid { grid-template-columns: repeat(3, 1fr); }

/* ── AUDIENCE ── */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border-lt); border-radius: 6px; overflow: hidden; border: 1px solid var(--border-lt); }
.audience-card { background: var(--surface); padding: 36px 28px; transition: background 0.2s; }
.audience-card:hover { background: var(--accent-lt); }
.audience-icon  { font-size: 2rem; margin-bottom: 16px; display: block; }
.audience-title { font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 10px; }
.audience-desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── PROGRAM ── */
.program-wrap { background: var(--surface); border: 1px solid var(--border-lt); border-radius: 6px; overflow: hidden; }
.module { display: grid; grid-template-columns: 88px 1fr; gap: 0; border-bottom: 1px solid var(--border-lt); transition: background 0.2s; }
.module:last-child { border-bottom: none; }
.module:hover { background: var(--blue-lt); }
.module-num-wrap { display: flex; align-items: start; justify-content: center; padding: 32px 0; border-right: 1px solid var(--border-lt); }
.module-num { font-size: 2.8rem; font-weight: 800; color: var(--border); line-height: 1; letter-spacing: -0.04em; transition: color 0.2s; }
.module:hover .module-num { color: var(--blue); }
.module-content { padding: 32px 32px 32px 36px; }
.module-header  { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.module-title   { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.module-hours   { font-size: 0.72rem; color: var(--blue); background: var(--blue-lt); padding: 4px 10px; border-radius: 3px; letter-spacing: 0.08em; white-space: nowrap; font-weight: 600; }
.module-topics  { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-tag { font-size: 0.73rem; color: var(--body); background: var(--surface2); border: 1px solid var(--border-lt); padding: 5px 12px; border-radius: 3px; transition: all 0.15s; font-weight: 500; }
.topic-tag:hover { background: var(--blue-lt); border-color: var(--blue-pale); color: var(--blue-dk); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--accent-lt);
  border: 1px solid #c5d8f6;
  border-radius: 6px;
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin: 72px auto;
  max-width: 1100px;
  position: relative; overflow: hidden;
}
.cta-strip::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.cta-strip-text { font-size: 1.05rem; color: var(--ink); font-weight: 600; }
.cta-strip-text span { color: var(--accent); }

/* ── OUTCOMES ── */
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border-lt); border-radius: 6px; overflow: hidden; border: 1px solid var(--border-lt); }
.outcome { background: var(--surface); padding: 32px 28px; display: flex; gap: 16px; align-items: start; transition: background 0.2s; }
.outcome:hover { background: var(--emerald-lt); }
.outcome-check { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: var(--emerald-lt); border: 1.5px solid var(--emerald); display: flex; align-items: center; justify-content: center; margin-top: 1px; transition: all 0.2s; }
.outcome:hover .outcome-check { background: var(--emerald); }
.outcome-text { font-size: 0.95rem; color: var(--body); line-height: 1.6; }
.outcome-check::before {
  content: '';
  display: block; width: 12px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' stroke='%23059669' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E") no-repeat center/contain;
}
.outcome:hover .outcome-check::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' stroke='%23fff' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
}

/* ── FORMATS ── */
.formats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border-lt); border-radius: 6px; overflow: hidden; border: 1px solid var(--border-lt); }
.format-card  { background: var(--surface); padding: 36px 28px; text-align: center; transition: background 0.2s; }
.format-card:hover { background: var(--accent-lt); }
.format-icon  { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.format-title { font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 10px; }
.format-desc  { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border-lt);
  border-radius: 8px; padding: 36px 28px; position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(15,23,42,0.08); }
.pricing-card.featured { border-color: var(--blue); border-width: 2px; }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 14px; border-radius: 20px; text-transform: uppercase; white-space: nowrap;
}
.pricing-icon   { font-size: 2rem; margin-bottom: 16px; display: block; }
.pricing-format { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 8px; display: block; }
.pricing-desc   { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.pricing-price  { font-size: 2rem; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; display: block; }
.pricing-note   { font-size: 0.78rem; color: var(--muted); }

/* ── SPEAKER ── */
.speaker-section { background: var(--surface); border: 1px solid var(--border-lt); border-radius: 6px; overflow: hidden; display: grid; grid-template-columns: 300px 1fr; gap: 0; }
.speaker-photo { overflow: hidden; position: relative; flex-shrink: 0; }
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; }
.speaker-photo--avatar { width: 200px; height: 200px; border-radius: 12px; }
.speaker-info       { padding: 48px 40px; }
.speaker-name       { font-size: 1.7rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.02em; }
.speaker-role       { font-size: 0.75rem; color: var(--blue); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-bottom: 24px; display: block; }
.speaker-bio        { font-size: 0.95rem; color: var(--body); line-height: 1.75; margin-bottom: 28px; }
.speaker-stats      { display: flex; gap: 36px; margin-bottom: 28px; flex-wrap: wrap; }
.speaker-stat-num   { font-size: 1.8rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 4px; display: block; letter-spacing: -0.03em; }
.speaker-stat-label { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.08em; font-weight: 600; }
.speaker-venues     { display: flex; flex-wrap: wrap; gap: 8px; }
.venue-tag { font-size: 0.7rem; color: var(--body); background: var(--surface2); border: 1px solid var(--border-lt); padding: 4px 10px; border-radius: 3px; font-weight: 500; }

/* ── CLIENTS ── */
.clients-section { margin-top: 8px; }
.client-group { margin-bottom: 36px; }
.client-group:last-child { margin-bottom: 0; }
.client-group-title {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border-lt);
}
.client-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.client-tag {
  font-size: 0.82rem; color: var(--ink); background: var(--surface);
  border: 1px solid var(--border-lt); padding: 8px 16px; border-radius: 4px;
  font-weight: 600; transition: all 0.15s; letter-spacing: -0.01em;
}
.client-tag:hover { background: var(--blue-lt); border-color: var(--blue-pale); color: var(--blue-dk); }
.client-tag.accent { background: var(--blue-lt); border-color: var(--blue-pale); color: var(--blue-dk); }
.clients-summary {
  margin-top: 32px; padding: 20px 24px;
  background: var(--surface); border: 1px solid var(--border-lt);
  border-radius: 6px; display: flex; gap: 40px; flex-wrap: wrap;
}
.clients-summary-item  { display: flex; align-items: baseline; gap: 8px; }
.clients-summary-num   { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.clients-summary-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

/* ── LEVELS / NEXT STEPS ── */
.levels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border-lt); border-radius: 6px; overflow: hidden; border: 1px solid var(--border-lt); }
.level-card       { background: var(--surface); padding: 32px 24px; transition: background 0.2s, box-shadow 0.2s; }
.level-card:hover { background: var(--accent-lt); box-shadow: inset 0 0 0 2px var(--blue); }
a.level-card      { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.level-name  { font-weight: 700; color: var(--ink); margin-bottom: 6px; font-size: 0.95rem; }
.level-hours { font-size: 0.72rem; color: var(--blue); font-weight: 600; margin-bottom: 10px; display: block; }
.level-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ── THEME CARDS ── */
.theme-card {
  border: 1px solid var(--border-lt); border-radius: 8px;
  padding: 40px 36px; overflow: hidden; background: var(--surface);
  margin-bottom: 16px;
}
.theme-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 24px;
}
.theme-card-col-title {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 12px; display: block;
}
.theme-card-list { list-style: none; }
.theme-card-list li {
  font-size: 0.88rem; color: var(--body); line-height: 1.6;
  padding: 6px 0; border-bottom: 1px solid var(--border-lt);
}
.theme-card-list li:last-child { border-bottom: none; }
.theme-card-footer {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border-lt);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--surface2); border-radius: 8px; padding: 32px;
  border-left: 4px solid var(--accent);
}
.testimonial-text {
  font-size: 0.95rem; line-height: 1.7; color: var(--body);
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.testimonial-role   { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* ── LOGO STRIP ── */
.logo-strip { padding: 48px 0; overflow: hidden; }
.logo-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 32px 48px;
}
.logo-grid img {
  height: 40px; width: auto;
  filter: grayscale(100%); opacity: 0.55; transition: all 0.3s;
}
.logo-grid img:hover { filter: grayscale(0); opacity: 1; }

/* ── GEO TAGS ── */
.geo-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.geo-tag {
  display: inline-block; padding: 6px 14px;
  background: var(--accent-lt); border-radius: 20px;
  font-size: 0.82rem; color: var(--accent); font-weight: 500;
}
.geo-tag.accent { background: var(--accent); color: #fff; }

/* ── CHANNEL BANNER ── */
.channel-banner {
  display: flex; align-items: center; gap: 16px;
  background: #f0f8ff; border-radius: 8px;
  padding: 20px 28px; border: 1px solid #d0e8ff;
}
.channel-banner-icon { font-size: 28px; flex-shrink: 0; }
.channel-banner-text { font-size: 0.95rem; line-height: 1.5; }
.channel-banner-text a { color: var(--tg-blue); font-weight: 600; }

/* ── SITE NAV GRID ── */
.site-nav-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.site-nav-link {
  display: block; background: var(--surface); border: 1px solid var(--border-lt);
  border-radius: 6px; padding: 20px 22px; transition: all 0.2s;
  color: inherit;
}
.site-nav-link:hover { border-color: var(--blue-pale); background: var(--blue-lt); box-shadow: 0 4px 16px rgba(15,23,42,0.06); }
.site-nav-link-title { font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 6px; }
.site-nav-link-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-lt); padding: 28px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-q { font-weight: 700; font-size: 1.02rem; color: var(--ink); margin-bottom: 12px; }
.faq-a { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--accent); border-radius: 8px;
  padding: 80px 64px; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(42,171,238,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(232,149,10,0.12) 0%, transparent 60%);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p  { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.final-cta .cta-row { justify-content: center; }

/* ── FOOTER ── */
.site-footer-custom {
  background: var(--surface2); border-top: 1px solid var(--border-lt);
  padding: 32px; text-align: center;
}
.site-footer-custom p { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; font-weight: 500; line-height: 1.9; }
.site-footer-custom a { color: var(--muted); transition: color 0.15s; }
.site-footer-custom a:hover { color: var(--accent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero > * { animation: fadeUp 0.7s ease both; }
.hero > *:nth-child(1) { animation-delay: 0.1s; }
.hero > *:nth-child(2) { animation-delay: 0.35s; }

/* ── RESPONSIVE 900px ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; gap: 48px; }
  .photo-card { max-width: 320px; aspect-ratio: 1/1; margin: 0 auto; order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat:nth-child(2) { border-right: none; }
  .audience-grid  { grid-template-columns: 1fr; }
  .module { grid-template-columns: 1fr; }
  .module-num-wrap { justify-content: flex-start; padding: 24px 32px 0; border-right: none; }
  .module-content { padding: 12px 32px 28px; }
  .outcomes-grid  { grid-template-columns: 1fr; }
  .formats-row    { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .speaker-section { grid-template-columns: 1fr; }
  .speaker-photo  { max-height: 360px; }
  .levels-grid    { grid-template-columns: repeat(2, 1fr); }
  .theme-card-grid { grid-template-columns: 1fr; gap: 24px; }
  .theme-card     { background-image: none !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE 600px ── */
@media (max-width: 600px) {
  .container  { padding: 0 20px; }
  .section    { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
  .hero-facts { flex-direction: column; gap: 16px; }
  .final-cta  { padding: 48px 24px; }
  .cta-strip  { padding: 24px; margin: 40px auto; }
  .speaker-info   { padding: 32px 24px; }
  .speaker-stats  { gap: 20px; }
  .clients-summary { gap: 20px; }
  .levels-grid    { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .site-nav-grid  { grid-template-columns: 1fr; }
  .nav-links      { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 56px; left: 0; right: 0;
    background: rgba(247,249,252,0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-lt);
    padding: 12px 0;
    z-index: 99;
  }
  .nav-links.open a { padding: 12px 32px; text-transform: none; font-size: 0.9rem; }
  .nav-hamburger  { display: flex; }
  .home-stats .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
