/* ─── Hero ─────────────────────────────────── */
.hero { padding-block: clamp(40px, 6vw, 96px) clamp(56px, 8vw, 120px); position: relative; overflow: hidden; }
.hero-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 120px);
  display: grid;
  gap: clamp(40px, 6vw, 80px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.2fr 1fr; }
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-bottom: var(--s-8); }

.hero-portrait-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-hero);
  overflow: hidden;
  background: var(--surface-1);
}
.portrait-card { position: absolute; inset: 0; }
.portrait-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait-card::after {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-protect);
  pointer-events: none;
}
.portrait-chip {
  position: absolute;
  bottom: var(--s-6);
  left: var(--s-6);
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 14px;
  font-weight: 700;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-float);
  z-index: 4;
}
.portrait-chip img { width: 32px; height: 32px; border-radius: 999px; object-fit: cover; }

/* Orbs */
.orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb-grad {
  width: 60%; aspect-ratio: 1;
  background: var(--grad-orb);
  top: -10%; right: -10%;
  filter: blur(2px);
  opacity: 0.85;
  z-index: 1;
}
.orb-solid {
  width: 30%; aspect-ratio: 1;
  background: var(--indigo);
  bottom: -8%; left: -8%;
  z-index: 1;
}

/* Countdown */
.countdown { display: flex; align-items: center; gap: var(--s-4); flex-wrap: wrap; }
.countdown-blocks { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.cd-block { background: var(--surface-2); border-radius: var(--r-card); padding: 10px 16px; text-align: center; min-width: 64px; }
.cd-num { display: block; font-size: 24px; font-weight: 800; }
.cd-lbl { display: block; font-size: 11px; color: var(--fg-3); margin-top: 2px; }

/* ─── Authority strip ─────────────────────── */
.authority {
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse at top, rgba(73,71,255,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.authority-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 120px);
}
@media (min-width: 768px) { .authority-list { grid-template-columns: repeat(4, 1fr); } }
.authority-list li { display: flex; flex-direction: column; gap: 6px; }
.auth-num {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1;
  color: var(--fg);
  background: linear-gradient(135deg, #FFFFFF 30%, #8B89FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.auth-num.accent { color: var(--fg); }
.auth-lbl { font-size: 13px; color: var(--fg-2); line-height: 1.3; }

/* ─── Stats strip (from old site enrichment) ─── */
.stats-strip {
  padding-block: clamp(40px, 5vw, 64px);
  background:
    radial-gradient(ellipse at 80% 50%, rgba(73,71,255,0.10), transparent 60%),
    var(--surface-1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: linear-gradient(155deg, rgba(73,71,255,0.10) 0%, var(--surface-2) 55%);
  border-radius: var(--r-card-lg);
  padding: var(--s-7);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}
.stat-card::before {
  content: "";
  position: absolute;
  top: -20%; right: -20%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(73,71,255,0.22), transparent 70%);
  pointer-events: none;
}
.stat-num {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FFFFFF 20%, #8B89FF 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}
.stat-lbl {
  font-size: 14px;
  color: var(--fg-2);
  margin-top: var(--s-4);
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.stat-source { font-size: 11px; color: var(--fg-4); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; position: relative; z-index: 1; }

/* ─── WhyNow ──────────────────────────────── */
.whynow-card {
  background:
    radial-gradient(ellipse at top right, rgba(73,71,255,0.22), transparent 55%),
    var(--surface-1);
  border-radius: var(--r-promo);
  padding: clamp(40px, 6vw, 80px);
  border: 1px solid rgba(73,71,255,0.16);
}
.whynow-card h2 { max-width: 800px; line-height: 1.05; }
.whynow-card .lead { max-width: 760px; }
.whynow-card .lead.accent-line { color: var(--fg); font-weight: 700; font-size: clamp(20px, 2.2vw, 28px); margin-top: var(--s-6); }

/* ─── Feature grid ────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 700px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feat .card-title, .card-title { font-weight: 700; font-size: 24px; line-height: 1.1; letter-spacing: var(--letter-tight); }
.feat-num { display: inline-block; font-size: 14px; font-weight: 700; color: var(--fg-3); margin-bottom: var(--s-6); }
.card.promo .feat-num { color: rgba(255,255,255,0.7); }
.feat .card-title { margin-bottom: var(--s-3); }

/* ─── Value props grid (with checklist rail) ─ */
.value-grid {
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 960px) { .value-grid { grid-template-columns: 1fr 1fr; } }
.checklist, .learn-list { display: flex; flex-direction: column; gap: var(--s-5); }
.checklist li, .learn-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--s-4);
  align-items: start;
}
.learn-list li { grid-template-columns: 26px 1fr; }

/* ─── WhoFor (white block) ───────────────── */
.whofor {
  background: #fff;
  color: #000;
  border-radius: var(--r-hero);
  padding: clamp(40px, 6vw, 80px);
}
.h2.dark { color: #000; margin-bottom: var(--s-7); }
.card-title.dark { color: #000; }
.dark-muted { color: #444; }
.whofor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 700px) { .whofor-grid { grid-template-columns: repeat(2, 1fr); } }
.whofor-tile {
  background: #F1F1F1;
  border-radius: var(--r-card-lg);
  padding: var(--s-7);
}

/* ─── Tech pills section ──────────────────── */
.tech-section { background: var(--surface-1); border-radius: var(--r-promo); }
@media (min-width: 600px) { .tech-section { margin-inline: clamp(20px, 5vw, 120px); } }
.tech-pills { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-4); }

/* ─── Speakers ────────────────────────────── */
.speakers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 768px) { .speakers-grid { grid-template-columns: 1fr 1fr; } }
.speaker-card {
  background: var(--surface-1);
  border-radius: var(--r-card-lg);
  padding: var(--s-7);
}
.speaker-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-card);
  margin-bottom: var(--s-6);
  background: var(--black);
}
.speaker-card .caption { margin-bottom: var(--s-5); }
.speaker-meta { display: flex; flex-direction: column; gap: var(--s-3); }
.speaker-meta li { padding-left: var(--s-4); position: relative; }
.speaker-meta li::before { content: "—"; position: absolute; left: 0; color: var(--indigo); }

/* Mentors row (smaller cards for spikery page) */
.mentors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 700px) { .mentors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .mentors-grid { grid-template-columns: repeat(3, 1fr); } }
.mentor-card {
  background: var(--surface-2);
  border-radius: var(--r-card);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.mentor-photo {
  width: 96px; height: 96px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--surface-3);
}

/* ─── Tariffs ─────────────────────────────── */
.tariff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-top: var(--s-8);
}
@media (min-width: 900px) { .tariff-grid { grid-template-columns: repeat(3, 1fr); } }
.tariff-card {
  background:
    linear-gradient(155deg, rgba(73,71,255,0.06), transparent 50%),
    var(--surface-2);
  border-radius: var(--r-card-lg);
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.tariff-card .price-num {
  background: linear-gradient(135deg, #FFFFFF 30%, #8B89FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tariff-card.highlighted .price-num {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.tariff-card.highlighted {
  background:
    radial-gradient(ellipse at top right, #5D5BFF, var(--indigo) 60%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 80px -20px rgba(73,71,255,0.5);
}
.tariff-card.highlighted::before {
  content: "Хит";
  position: absolute; top: var(--s-5); right: var(--s-5);
  background: #fff; color: var(--indigo);
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
}
.price { display: flex; align-items: baseline; gap: 6px; }
.price-num { font-size: clamp(32px, 4vw, 48px); font-weight: 800; }
.price-cur { font-size: 24px; font-weight: 700; opacity: 0.85; }
.tariff-list { display: flex; flex-direction: column; gap: var(--s-3); margin: var(--s-3) 0 auto; }
.tariff-list li { display: flex; align-items: center; gap: var(--s-3); }
.tariff-cta { width: 100%; margin-top: var(--s-5); }

/* ─── Diploma + License ───────────────────── */
.diploma-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (min-width: 900px) { .diploma-grid { grid-template-columns: 1.2fr 1fr; } }
.license-card { background: var(--surface-1); border-radius: var(--r-card-lg); padding: var(--s-7); }
.license-meta { display: flex; flex-direction: column; gap: var(--s-4); margin-top: var(--s-5); }
.license-meta > div { display: grid; grid-template-columns: 130px 1fr; gap: var(--s-4); align-items: start; }
.license-meta dt { color: var(--fg-3); margin: 0; }
.license-meta dd { margin: 0; color: var(--fg-2); }

/* ─── Bonus pack ──────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-7);
}
@media (min-width: 700px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .bonus-grid { grid-template-columns: repeat(4, 1fr); } }
.bonus-card {
  background:
    linear-gradient(145deg, rgba(73,71,255,0.08), transparent 60%),
    var(--surface-2);
  border-radius: var(--r-card);
  padding: var(--s-6);
  border: 1px solid rgba(255,255,255,0.05);
}
.bonus-card .pill { font-size: 11px; padding: 4px 12px; margin-bottom: var(--s-4); background: var(--indigo); color: #fff; }
.bonus-title { font-weight: 700; font-size: 18px; line-height: 1.2; margin-bottom: var(--s-3); color: var(--fg); }
.bonus-card p { color: var(--fg-2); }

/* ─── Solutions teaser (8 готовых решений) ── */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-7);
}
@media (min-width: 600px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .solutions-grid { grid-template-columns: repeat(4, 1fr); } }
.solution-card {
  background: var(--surface-2);
  border-radius: var(--r-card);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  overflow: hidden;
}
.solution-num {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 56px;
  font-weight: 800;
  color: rgba(73,71,255,0.18);
  line-height: 1;
}
.solution-card .card-title { font-size: 18px; }

/* ─── Boxed.AI partnership ────────────────── */
.boxed-banner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  align-items: center;
  justify-content: space-between;
  padding: clamp(32px, 4vw, 56px);
  background:
    radial-gradient(ellipse at top right, #5D5BFF, var(--indigo) 50%, #3735E6 100%);
  border-radius: var(--r-promo);
  color: #fff;
  box-shadow: 0 32px 80px -24px rgba(73,71,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
}
.boxed-banner h2 { color: #fff; margin: 0; }
.boxed-banner .eyebrow { color: rgba(255,255,255,0.7); }

/* ─── Program teaser (на главной) ─────────── */
.program-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-7);
}
@media (min-width: 760px) { .program-teaser { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .program-teaser { grid-template-columns: repeat(4, 1fr); } }
.teaser-card {
  background: var(--surface-2);
  border-radius: var(--r-card);
  padding: var(--s-6);
}
.teaser-card .pill { font-size: 11px; padding: 4px 12px; margin-bottom: var(--s-3); }
.teaser-title { font-weight: 700; font-size: 18px; line-height: 1.2; margin-bottom: var(--s-3); }
.teaser-list { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--fg-2); }

/* ─── Signup ──────────────────────────────── */
.signup-section { background: var(--surface-1); border-radius: var(--r-hero); }
@media (min-width: 600px) { .signup-section { margin-inline: clamp(20px, 5vw, 120px); } }
.signup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.signup-grid > * { min-width: 0; }
@media (min-width: 960px) { .signup-grid { grid-template-columns: 1fr 1fr; } }
/* Same min-width:0 fix on other grids that contain wide tables / form rows */
.value-grid > *, .diploma-grid > * { min-width: 0; }
.price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: var(--s-6); }
.price-table {
  width: 100%;
  min-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 600px) {
  .price-table { font-size: 15px; }
  .price-table th, .price-table td { padding: 14px 16px; }
}
.price-table thead th { color: var(--fg-3); font-weight: 500; font-size: 13px; }
.price-table tr.active td { color: var(--fg); background: var(--surface-2); font-weight: 700; }
.price-table tr.active td:first-child { border-radius: 12px 0 0 12px; }
.price-table tr.active td:last-child { border-radius: 0 12px 12px 0; }

.signup-form { display: flex; flex-direction: column; gap: var(--s-4); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field input, .field select, .field textarea {
  background: var(--surface-2);
  border: 2px solid transparent;
  color: var(--fg);
  padding: 18px 22px;
  border-radius: var(--r-input);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: var(--letter-tight);
  transition: border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  background: var(--surface-3);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-3); }

/* ─── FAQ block ───────────────────────────── */
.faq-section .container { max-width: 880px; }

/* ─── Programma page ──────────────────────── */
.prog-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px);
  align-items: flex-end;
  padding-top: var(--s-4);
}
.prog-stats > div { display: flex; flex-direction: column; gap: 4px; }
.prog-stat-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FFFFFF 30%, #8B89FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.prog-stat-lbl { font-size: 13px; color: var(--fg-3); }

.prog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (min-width: 1100px) { .prog-layout { grid-template-columns: 260px 1fr; } }

.prog-toc {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.prog-toc a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--s-3);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-3);
  padding: 10px 12px 10px 0;
  border-left: 2px solid transparent;
  transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
  align-items: center;
  border-radius: 0 8px 8px 0;
}
.prog-toc a .toc-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--fg-4);
  font-variant-numeric: tabular-nums;
  padding-left: var(--s-4);
}
.prog-toc a em { font-style: normal; color: var(--indigo); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; margin-left: 4px; }
.prog-toc a:hover { color: var(--fg); background: rgba(255,255,255,0.02); }
.prog-toc a:hover .toc-num { color: var(--fg-2); }
.prog-toc a.is-active { color: var(--fg); border-left-color: var(--indigo); }
.prog-toc a.is-active .toc-num { color: var(--indigo); }

.week-block {
  background: var(--surface-1);
  border-radius: var(--r-card-lg);
  padding: clamp(32px, 4vw, 56px);
  margin-bottom: var(--s-6);
  scroll-margin-top: 100px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.04);
}
.week-block.killer {
  background:
    radial-gradient(ellipse at top right, rgba(73,71,255,0.12), transparent 60%),
    var(--surface-1);
  border: 1px solid rgba(73,71,255,0.22);
}
.week-block.business {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 60%),
    var(--surface-1);
  border: 1px solid rgba(255,255,255,0.10);
}

.week-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  margin-bottom: var(--s-8);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--border);
}
.week-number {
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #FFFFFF 20%, #8B89FF 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.week-block.killer .week-number {
  background: linear-gradient(135deg, #FFFFFF 10%, #5D5BFF 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.week-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 11px;
  font-weight: 700;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--s-3);
}
.week-block h2 { margin-bottom: var(--s-3); font-size: clamp(24px, 3vw, 36px); }
.week-module { font-size: 16px; font-weight: 500; color: var(--fg-2); line-height: 1.4; margin-bottom: 0; }
.week-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--fg-2);
  margin-bottom: var(--s-3);
}

.lesson-list { display: flex; flex-direction: column; }
.lesson-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast) var(--ease-out);
}
.lesson-list li:last-child { border-bottom: 0; }
.lesson-list li:hover { background: rgba(73,71,255,0.04); }
.lesson-num {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--fg-3);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color var(--t-fast) var(--ease-out);
}
.lesson-list li:hover .lesson-num { color: var(--indigo); }
.lesson-text {
  font-size: 16px;
  line-height: 1.45;
  color: var(--fg);
  font-weight: 500;
}
.lesson-text a.accent { font-weight: 700; }

/* Highlighted ("killer") lessons */
.lesson-list li.is-highlight { background: linear-gradient(90deg, rgba(73,71,255,0.10), transparent); border-radius: 8px; padding-left: var(--s-4); padding-right: var(--s-4); margin: 4px 0; border-bottom: 0; }
.lesson-list li.is-highlight + li { border-top: 1px solid var(--border); }
.lesson-list li.is-highlight .lesson-num { color: var(--indigo); }

.week-outcome {
  margin-top: var(--s-7);
  padding: var(--s-6);
  background: var(--surface-2);
  border-radius: var(--r-card);
  font-size: 14px;
  line-height: 1.5;
  border-left: 3px solid var(--indigo);
}
.week-outcome strong { color: var(--indigo); display: inline-block; margin-right: 6px; }

/* Mobile compact */
@media (max-width: 700px) {
  .week-header { grid-template-columns: 1fr; gap: var(--s-4); }
  .week-number { font-size: 56px; }
  .lesson-list li { grid-template-columns: 44px 1fr; gap: var(--s-3); padding: var(--s-4) 0; }
  .lesson-num { font-size: 20px; }
  .lesson-text { font-size: 15px; }
}

/* ─── Tarify page ─────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: var(--s-7);
  font-size: 14px;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table thead th {
  position: sticky; top: 64px;
  background: var(--surface-1);
  font-weight: 700;
  font-size: 13px;
  z-index: 2;
}
.compare-table thead th:nth-child(3) { color: var(--indigo); }
.compare-table tbody tr:hover td { background: rgba(255,255,255,0.03); }
.compare-table td.has-check::before { content: "✓"; color: var(--indigo); font-weight: 700; margin-right: 6px; }
.compare-table td.no-check { color: var(--fg-4); }
.compare-table td.no-check::before { content: "—"; color: var(--fg-4); margin-right: 6px; }

.tax-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-6);
}
@media (min-width: 760px) { .tax-row { grid-template-columns: repeat(2, 1fr); } }
.tax-card { background: var(--surface-2); border-radius: var(--r-card); padding: var(--s-6); }
.tax-card .pill { font-size: 11px; padding: 4px 12px; margin-bottom: var(--s-4); }
.tax-card .price-num { font-size: 28px; }

/* ─── Cases / solutions catalogue page ────── */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 700px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
.case-card {
  background: var(--surface-1);
  border-radius: var(--r-card-lg);
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: relative;
  overflow: hidden;
}
.case-card .solution-num {
  font-size: 96px;
}
