/* ===== База — Скандинавский туман (Nordic Fog) ===== */
:root {
  --bg-body: #F0F4F8;          /* Основной фон страницы — чистый холодный серо-голубой */
  --bg-card: #FFFFFF;          /* Карточки, модалки, плашки */
  --bg-alt: #E2E8F0;           /* Чередующиеся секции, блок квиза, плашки шагов */
  --border-subtle: #CBD5E1;    /* Тонкие границы карточек и разделители */
  
  --text-main: #1E293B;        /* Основной текст и заголовки — сланцевый графит */
  --text-muted: #64748B;       /* Второстепенный текст, пояснения, подписи */
  
  --accent-primary: #4F6B84;   /* Холодный припыленный индиго (кнопки, активные элементы) */
  --accent-hover: #3B5267;     /* Hover-состояние для кнопок */
  --accent-secondary: #475569; /* Сдержанный графит для бейджей и мелких акцентов */
  
  --card-shadow: 0 8px 24px rgba(148, 163, 184, 0.15); /* Мягкая прохладная тень */
  --card-shadow-hover: 0 12px 32px rgba(79, 107, 132, 0.18);

  /* Алиасы для совместимости */
  --bg: var(--bg-body);
  --card: var(--bg-card);
  --alt: var(--bg-alt);
  --line: var(--border-subtle);
  --dark: var(--text-main);
  --text: var(--text-main);
  --text-soft: var(--text-muted);
  --accent: var(--accent-primary);
  --accent-dark: var(--accent-hover);
  --shadow: var(--card-shadow);
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
  font-family: Georgia, "Times New Roman", "Playfair Display", serif;
  line-height: 1.25;
  font-weight: 600;
  color: var(--text-main);
}
h4 {
  color: var(--text-main);
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ===== Шапка ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(240, 244, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.logo { font-size: 18px; color: var(--text-main); text-decoration: none; }
.nav { display: flex; gap: 22px; }
.nav a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .15s ease; }
.nav a:hover { color: var(--accent-primary); }
@media (max-width: 640px) { .nav { display: none; } }

/* ===== Первый экран ===== */
.hero { padding: 64px 0 56px; background-color: var(--bg-body); }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } .hero-card { display: none; } }
.hero-kicker { color: var(--accent-primary); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.hero h1 { font-size: clamp(30px, 4.6vw, 46px); color: var(--text-main); margin-bottom: 16px; }
.hero-sub { font-size: 17px; color: var(--text-muted); max-width: 540px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-note { font-size: 13px; color: var(--text-muted); }

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--card-shadow);
}
.hero-img { width: 100%; border-radius: var(--radius); box-shadow: var(--card-shadow); margin-bottom: 14px; display: block; }
.mini-card {
  display: flex; gap: 12px; align-items: center; padding: 10px 14px;
  border-radius: 12px; background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  margin-bottom: 8px;
}
.mini-card:last-of-type { margin-bottom: 0; }
.mini-emoji { font-size: 26px; }
.mini-card strong { font-size: 15px; color: var(--text-main); }
.mini-card small { color: var(--text-muted); }
.hero-card-note { text-align: center; margin-top: 12px; font-size: 13px; color: var(--accent-primary); font-weight: 500; }

/* ===== Секции ===== */
.section { padding: 64px 0; background-color: var(--bg-body); }
.section-alt { background-color: var(--bg-alt); }
#cards, #why, #quiz, #trainings, #about, #faq {
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}
.section-kicker {
  color: var(--accent-secondary);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}
.section-title {
  text-align: center;
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--text-main);
  margin-bottom: 14px;
}
.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 16px;
}
.section-note {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 14px;
}

/* ===== А зачем мне это? ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-bottom: 36px; }
.why-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
}
.why-icon { font-size: 30px; margin-bottom: 10px; }
.why-item h3 { font-size: 17px; margin-bottom: 8px; color: var(--text-main); }
.why-item p { font-size: 14px; color: var(--text-muted); }

.why-table {
  background: transparent;
  padding: 0;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-table h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-main);
}
.why-row {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  gap: 16px;
  align-items: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.why-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}
.why-cell {
  font-size: 14px;
  line-height: 1.45;
  border-radius: 12px;
  padding: 12px 14px;
}
.why-from {
  background: #F8FAFC;
  color: #334155;
  border-left: 3px solid #94A3B8;
  text-align: left;
}
.why-from strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #64748B;
  margin-bottom: 4px;
}
.why-to {
  background: #F0FDF4;
  color: #166534;
  border-left: 3px solid #22C55E;
  text-align: left;
}
.why-to strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #15803D;
  margin-bottom: 4px;
}
.why-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .why-table { gap: 12px; }
  .why-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
  }
  .why-arrow {
    transform: rotate(90deg);
    width: 28px;
    height: 28px;
    font-size: 13px;
    margin: 2px auto;
  }
  .why-cell { padding: 10px 12px; font-size: 13.5px; }
}

/* ===== Лестница состояний ===== */
.ladder {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; margin-top: 14px;
}
.ladder-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 12px 14px; min-width: 118px; text-align: center;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--card-shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ladder-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}
.ladder-step span { font-family: Georgia, serif; font-size: 16px; font-weight: 600; color: var(--text-main); }
.ladder-step small { color: var(--text-muted); font-size: 12px; }
.step-num {
  display: block; color: var(--accent-primary); font-size: 11px; margin-bottom: 2px; font-weight: 700;
}
.ladder-arrow { align-self: center; color: var(--accent-primary); font-size: 18px; opacity: .7; }
.ladder-goal {
  background: #FFFFFF;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 10px 28px rgba(79, 107, 132, 0.22);
}
.ladder-goal span { color: var(--text-main); font-weight: 700; }
.ladder-goal small { color: var(--text-muted); }
.ladder-goal .step-num { color: var(--accent-primary); }

@media (max-width: 860px) {
  .ladder {
    flex-direction: column;
    gap: 10px;
    max-width: 440px;
    margin: 20px auto 0;
    padding: 0 4px;
  }
  .ladder-arrow { display: none; }
  .ladder-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 3px;
    align-items: center;
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: var(--card-shadow);
    position: relative;
    min-width: 0;
  }
  .ladder-step:active { transform: scale(0.99); }
  .step-num {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    border: 1.5px solid var(--border-subtle);
  }
  .ladder-step span:not(.step-num) {
    grid-column: 2;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.25;
  }
  .ladder-step small {
    grid-column: 2;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.35;
  }
  .ladder-step:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 38px;
    width: 2px;
    height: 10px;
    background: var(--border-subtle);
    z-index: 1;
  }
  .ladder-step.ladder-goal {
    background: #FFFFFF;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 8px 24px rgba(79, 107, 132, 0.22);
    padding: 16px 18px;
  }
  .ladder-step.ladder-goal .step-num {
    background: var(--accent-primary);
    color: #FFFFFF;
    border-color: var(--accent-primary);
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(79, 107, 132, 0.35);
  }
  .ladder-step.ladder-goal span:not(.step-num) {
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ladder-step.ladder-goal span:not(.step-num)::after {
    content: "✨ Цель пути";
    font-size: 11px;
    letter-spacing: .06em;
    background: rgba(79, 107, 132, 0.12);
    color: var(--accent-primary);
    padding: 3px 9px;
    border-radius: 999px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
  }
  .ladder-step.ladder-goal small {
    color: var(--text-muted);
    font-size: 14px;
  }
}

/* ===== Карточки архетипов ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.archetype-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--card-shadow);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  cursor: pointer;
}
.archetype-card:hover, .archetype-card:focus {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent-primary);
  outline: none;
}
.archetype-card:focus-visible { outline: 2px solid var(--accent-primary); }
.a-img { width: 100%; border-radius: 12px; margin-bottom: 12px; display: block; aspect-ratio: 1; object-fit: cover; }
.archetype-card .a-emoji { font-size: 22px; line-height: 1; }
.archetype-card h3 { font-size: 19px; display: flex; align-items: center; gap: 8px; margin: 6px 0 4px; color: var(--text-main); }
.archetype-card .a-tagline { font-size: 13px; color: var(--accent-primary); font-style: italic; margin-bottom: 10px; }
.archetype-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.archetype-card .a-label { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); font-weight: 600; }
.archetype-card .a-shadow-label { color: #E11D48; }
.a-more { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--accent-primary); }

/* ===== Модальное окно архетипа ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  width: 100%; max-width: 640px;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.35);
}
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  background: #FFFFFF;
  color: var(--text-main);
  font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: background .15s ease, transform .15s ease;
}
.modal-close:hover { background: var(--bg-alt); transform: scale(1.05); }
.modal-content { width: 100%; display: block; }
.modal-cover {
  background: #F8FAFC;
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 28px 20px 8px; box-sizing: border-box; text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}
.modal-cover img {
  width: 100%; max-width: 340px; height: auto; display: block;
  margin: 0 auto; border-radius: 16px; object-fit: cover;
}
.modal-body { padding: 24px; }
.modal-head { text-align: center; margin-bottom: 16px; }
.modal-emoji { font-size: 26px; line-height: 1; }
.modal-name { font-size: 28px; color: var(--text-main); display: flex; align-items: center; justify-content: center; gap: 10px; }
.modal-tagline { color: var(--accent-primary); font-style: italic; font-size: 15px; margin-top: 4px; }
.modal-section { margin-bottom: 16px; }
.modal-section h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-secondary); margin-bottom: 6px; }
.modal-section p { font-size: 15px; color: var(--text-main); }
.modal-section ul { list-style: none; }
.modal-section li { font-size: 15px; color: var(--text-main); padding-left: 22px; position: relative; margin-bottom: 6px; }
.modal-section li::before { content: "—"; position: absolute; left: 2px; color: var(--accent-primary); font-weight: 700; }
.modal-scenes { background: var(--bg-body); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 16px; }
.modal-scenes h4 { color: var(--accent-primary); }
.modal-trouble li::before { color: #E11D48; }
.modal-hidden { background: #F1F5F9; border: 1px solid var(--border-subtle); border-radius: 12px; padding: 16px; margin-bottom: 16px; }
.modal-hidden h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-primary); margin-bottom: 6px; }
.modal-hidden p { font-size: 15px; color: var(--text-main); }
.modal-cta { text-align: center; background: var(--bg-body); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 18px; margin-top: 8px; }
.modal-cta p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.modal-cta .btn { margin: 4px; }

/* ===== Квиз ===== */
.quiz-section { background-color: var(--bg-alt); }
.quiz-container { max-width: 640px; margin: 0 auto; }
.quiz-app {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  margin-top: 8px;
}
.quiz-progress { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.quiz-progress-bar { flex: 1; height: 8px; background: var(--bg-alt); border-radius: 99px; overflow: hidden; }
.quiz-progress-bar-fill { height: 100%; background: var(--accent-primary); border-radius: 99px; transition: width .3s ease; }
.quiz-progress-text { font-size: 13px; color: var(--text-muted); white-space: nowrap; font-weight: 500; }
.quiz-question h3 { font-size: 20px; margin-bottom: 18px; color: var(--text-main); }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  text-align: left; cursor: pointer; font: inherit; font-size: 15px; color: var(--text-main);
  background: var(--bg-body);
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px; padding: 14px 16px;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.quiz-option:hover {
  border-color: var(--accent-primary);
  background-color: #FFFFFF;
}
.quiz-option.selected {
  border-color: var(--accent-primary);
  background-color: #E2E8F0;
  box-shadow: 0 0 0 1px var(--accent-primary);
  font-weight: 600;
}
.quiz-nav { display: flex; justify-content: space-between; margin-top: 20px; gap: 10px; }

/* ===== Кнопки ===== */
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 12px; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; text-decoration: none; text-align: center;
  transition: transform .1s ease, background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: scale(.98); }
.btn-primary {
  background-color: var(--accent-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(79, 107, 132, 0.22);
}
.btn-primary:hover {
  background-color: var(--accent-hover);
  color: #FFFFFF;
}
.btn-ghost {
  background-color: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border-subtle);
}
.btn-ghost:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background-color: var(--bg-alt);
}
.btn-light {
  background-color: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-full { width: 100%; }

/* Кнопка WhatsApp — яркая контрастная для высокой конверсии */
#wa-razbor-btn, .btn-wa {
  background-color: #25D366 !important;
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3) !important;
}
#wa-razbor-btn:hover, .btn-wa:hover {
  background-color: #1EBE5D !important;
}

/* ===== Результат квиза ===== */
.quiz-result { text-align: center; }
.result-badge { font-size: 52px; margin-bottom: 8px; }
.result-title { font-size: 26px; color: var(--text-main); margin-bottom: 6px; }
.result-sub { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.result-block {
  text-align: left;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: 12px; padding: 16px; margin-bottom: 12px;
}
.result-block h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; color: var(--text-main); }
.result-shadow h4 { color: #E11D48; }
.result-sleeping h4 { color: var(--accent-primary); }
.result-block p { font-size: 15px; color: var(--text-main); }
.result-next { font-size: 14px; color: var(--text-muted); margin-top: 16px; }

/* ===== Захват WhatsApp ===== */
.wa-capture {
  text-align: center;
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px 20px;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(148, 163, 184, 0.12);
}
.wa-capture h4 { font-size: 17px; margin-bottom: 6px; color: var(--text-main); }
.wa-capture p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.wa-form { display: flex; flex-direction: column; gap: 10px; max-width: 360px; margin: 0 auto; }
.wa-form input {
  font: inherit; font-size: 15px; padding: 13px 14px; border-radius: 10px;
  border: 1.5px solid var(--border-subtle); background: #FFFFFF;
  color: var(--text-main);
}
.wa-form input:focus { outline: none; border-color: var(--accent-primary); }
.wa-hint { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.wa-success { color: #166534; font-size: 15px; padding: 12px; }

/* ===== Тренинги ===== */
.trainings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; max-width: 880px; margin: 0 auto; }
.training-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.training-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}
.training-card:focus-visible { outline: 2px solid var(--accent-primary); }
.training-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent-primary);
  background: rgba(79, 107, 132, 0.1);
  padding: 3px 8px; border-radius: 999px;
  margin-bottom: 8px; font-weight: 600;
}
.training-card h3 { font-size: 20px; color: var(--text-main); margin-bottom: 10px; }
.training-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.training-list { list-style: none; margin-bottom: 18px; }
.training-list li { font-size: 14px; color: var(--text-main); padding-left: 20px; position: relative; margin-bottom: 6px; }
.training-list li::before { content: "✔"; position: absolute; left: 0; color: var(--accent-primary); font-weight: 700; }
.training-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.price { font-family: Georgia, serif; font-size: 22px; font-weight: 600; color: var(--text-main); }
.training-featured {
  border: 2px solid var(--accent-primary);
  box-shadow: 0 12px 32px rgba(79, 107, 132, 0.16);
}
.training-dark {
  background: #1E293B;
  border-color: #334155;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
}
.training-dark h3, .training-dark .price { color: #FFFFFF; }
.training-dark p, .training-dark li { color: #CBD5E1; }
.training-dark .training-tag { color: #93C5FD; background: rgba(147, 197, 253, 0.15); }
.training-dark .training-list li::before { color: #60A5FA; }
.training-dark .training-more { color: #FFFFFF; border-color: #475569; }
.training-dark .training-more:hover { background: #334155; border-color: #64748B; }

/* ===== О Лене ===== */
.about-inner { display: grid; grid-template-columns: 240px 1fr; gap: 44px; align-items: center; }
@media (max-width: 700px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 240px; margin: 0 auto 24px; }
  .about-text .section-kicker, .about-text .section-title { text-align: center; }
}
.about-photo {
  display: flex; align-items: center; justify-content: center;
}
.about-photo img {
  width: 100%; max-width: 240px; height: auto; display: block;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  object-fit: cover;
}
.about-text .section-kicker, .about-text .section-title { text-align: left; }
.about-text p { font-size: 15px; color: var(--text-muted); margin-bottom: 12px; }
.about-list { list-style: none; margin-top: 12px; }
.about-list li { font-size: 14px; margin-bottom: 6px; color: var(--text-main); }

/* ===== FAQ ===== */
.faq-container { max-width: 680px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px; padding: 16px 20px; margin-bottom: 10px;
  box-shadow: var(--card-shadow);
}
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 15px; color: var(--text-main); }
.faq-item p { margin-top: 10px; font-size: 14px; color: var(--text-muted); }
.faq-cta { text-align: center; margin-top: 28px; }
.faq-cta p { margin-bottom: 12px; color: var(--text-muted); }

/* ===== Футер ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 36px 0;
}
.footer-inner { text-align: center; }
.footer-inner .logo { color: var(--text-main); margin-bottom: 6px; }
.footer-inner p { font-size: 13px; }
.footer-note { opacity: .7; margin-top: 8px; }

/* ===== Тренинг: попап «Подробнее» ===== */
.training-more { width: 100%; margin-top: 10px; }
.train-hero { text-align: center; margin-bottom: 14px; }
.train-badge {
  display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent-secondary);
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 999px; padding: 4px 12px; margin-bottom: 10px; font-weight: 600;
}
.train-hero h3 { font-size: 26px; color: var(--text-main); margin-bottom: 4px; }
.train-hero .train-sub { color: var(--text-muted); font-size: 15px; }
.train-price { font-family: Georgia, serif; font-size: 30px; font-weight: 600; color: var(--accent-primary); margin-top: 8px; }
.train-quote {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: 12px; padding: 14px 16px; font-size: 15px; color: var(--text-main); margin-bottom: 16px;
}
.train-format { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.train-chip {
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 999px; padding: 6px 12px; font-size: 13px;
  color: var(--text-main); font-weight: 500;
}
.review-placeholder {
  background: var(--bg-body);
  border: 1px dashed var(--border-subtle);
  border-radius: 12px; padding: 14px 16px; font-size: 14px; color: var(--text-muted);
}
.train-buy-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.modal-cta .train-price { font-size: 24px; }
