/* =========================================================
   sayme.education — dark, muted, glassy, blocky
   ========================================================= */

:root {
  --bg-0: #14161c;
  --bg-1: #1a1d25;
  --bg-2: #1e2129;
  --bg-3: #262932;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --text: #ebebef;
  --text-soft: rgba(235, 235, 239, 0.7);
  --text-mute: rgba(235, 235, 239, 0.5);

  --lemon: #e6ee85;
  --lemon-soft: #d7df74;
  --periwinkle: #b6c0dd;
  --periwinkle-soft: #98a6cc;
  --cream: #f5efd4;
  --graphite: #2f323b;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 40px;

  --shadow-card: 0 30px 80px -40px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --shadow-soft: 0 18px 50px -30px rgba(0, 0, 0, 0.55);

  --container: 1280px;

  --font: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body { overflow-x: clip; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }

/* ------------- atmosphere ------------- */
.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}
.bg-blob {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.45;
}
.bg-blob--a { width: 620px; height: 620px; top: -200px; left: -160px; background: #2b3a55; }
.bg-blob--b { width: 540px; height: 540px; top: 40%; right: -200px; background: #3a3a2a; opacity: 0.35; }
.bg-blob--c { width: 700px; height: 700px; bottom: -260px; left: 20%; background: #1f3b4a; opacity: 0.35; }

main, header.topbar, footer.footer { position: relative; z-index: 1; }

/* ------------- layout ------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ------------- topbar ------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 22, 28, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand span { color: var(--text-mute); font-weight: 500; }
.brand--footer { font-size: 24px; }

.nav {
  display: flex;
  gap: 28px;
  margin-left: 8px;
}
.nav a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.cta--ghost {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-strong);
  color: var(--text);
}
.cta--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.cta--solid {
  background: var(--lemon);
  color: #18181c;
  padding: 16px 26px;
  font-size: 15px;
  box-shadow: 0 14px 30px -10px rgba(230, 238, 133, 0.35);
}
.cta--solid:hover { transform: translateY(-1px); background: #eef474; }

.cta__arrow {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #18181c;
  color: var(--lemon);
  font-size: 9px;
}

/* ------------- tags / pills ------------- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: lowercase;
  white-space: nowrap;
  width: fit-content;
  align-self: flex-start;
}
.tag--lemon { background: var(--lemon); color: #1c1d20; }
.tag--lemon-soft { background: rgba(230, 238, 133, 0.18); color: var(--lemon); border: 1px solid rgba(230, 238, 133, 0.3); }
.tag--periwinkle { background: var(--periwinkle); color: #1c1d20; }
.tag--ghost { background: rgba(255, 255, 255, 0.08); color: var(--text); border: 1px solid var(--line-strong); }
.tag--dark { background: var(--graphite); color: var(--text); }
.tag--large { padding: 10px 18px; font-size: 14px; }

/* ------------- helpers ------------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 14px;
}
.h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.accent { color: var(--lemon); font-style: italic; font-weight: 700; }
.accent-soft { color: var(--periwinkle); font-style: italic; font-weight: 700; }
.lead {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 640px;
}
.lead--narrow { max-width: 460px; }
.muted { color: var(--text-mute); }

.section-head { margin-bottom: 48px; }
.section-head--row {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 760px;
  padding: 100px 0 56px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(0.55) saturate(0.85);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(20, 22, 28, 0.95) 30%, transparent 75%),
    linear-gradient(to bottom, rgba(20, 22, 28, 0.55) 0%, rgba(20, 22, 28, 0.15) 35%, rgba(20, 22, 28, 0.85) 100%);
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  gap: 56px;
}
.hero__pills {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.pill {
  background: rgba(255, 255, 255, 0.92);
  color: #15171c;
  padding: 18px 22px;
  border-radius: var(--r-md);
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
  box-shadow: var(--shadow-card);
}
.pill__label {
  background: var(--lemon);
  color: #1c1d20;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
  text-transform: lowercase;
}
.pill__body {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #1c1d20;
}
.pill .muted { color: rgba(28, 29, 32, 0.55); font-weight: 500; font-size: 13px; }

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__left { max-width: 880px; }
.hero__left .tag { margin-bottom: 22px; }
.hero__title {
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #fff;
}
.hero__title-soft {
  display: inline-block;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
  margin-top: 12px;
  letter-spacing: -0.015em;
}

/* ============ WHY ============ */
.why { padding: 120px 0 60px; }
.why__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: stretch;
}
.why__copy { display: flex; flex-direction: column; }
.why__copy .h2 { margin-bottom: 28px; }
.why__copy .lead { margin-bottom: 32px; }
.qa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: auto;
}
.qa__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 130px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.qa__card .tag { align-self: flex-start; }
.qa__card p {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  margin-top: auto;
}
.why__art {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 480px;
}
.why__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.95);
}
.why__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(20, 22, 28, 0.55) 100%);
}

/* ============ AUDIENCE ============ */
.audience { padding: 80px 0; }
.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.aud {
  border-radius: var(--r-lg);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.aud__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.aud__num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  opacity: 0.45;
  font-feature-settings: "tnum";
}
.aud p {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  margin-top: auto;
}
.aud--periwinkle { background: var(--periwinkle); color: #1c1d20; }
.aud--periwinkle .aud__num { color: #1c1d20; opacity: 0.4; }
.aud--lemon { background: var(--lemon); color: #1c1d20; }
.aud--lemon .aud__num { color: #1c1d20; opacity: 0.4; }
.aud--graphite { background: var(--graphite); color: var(--text); border: 1px solid var(--line); }
.aud--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* fix tag contrast on colored audience cards */
.aud--periwinkle .tag--periwinkle { background: rgba(255, 255, 255, 0.85); color: #1c1d20; }
.aud--lemon .tag--dark { background: #1c1d20; color: var(--text); }
.aud--graphite .tag--periwinkle { background: var(--periwinkle); color: #1c1d20; }

/* ============ CASES ============ */
.cases { padding: 100px 0 80px; }
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  position: relative;
}
.case__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.case__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--periwinkle) 0%, var(--lemon) 100%);
  color: #1c1d20;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
}
.case__name { font-weight: 700; font-size: 16px; }
.case__role { font-size: 13px; color: var(--text-mute); }
.case__num {
  margin-left: auto;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-mute);
  font-feature-settings: "tnum";
}
.case__text { color: var(--text-soft); font-size: 16px; line-height: 1.55; }
.case__text strong { color: var(--lemon); font-weight: 700; }

/* ============ PROGRAM OVERVIEW ============ */
.program { padding: 100px 0 60px; }
.days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.day {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 220px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.day--vip {
  background: rgba(182, 192, 221, 0.12);
  border-color: rgba(182, 192, 221, 0.25);
}
.day__head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.day__num {
  margin-left: auto;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-mute);
}
.day__text { color: var(--text); font-size: 15px; line-height: 1.5; font-weight: 500; margin-top: auto; }

/* ============ DAY FULL ============ */
.day-full {
  padding: 90px 0 30px;
  position: relative;
}
.day-full__head { margin-bottom: 48px; max-width: 720px; }
.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.module {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  box-shadow: var(--shadow-card);
}
.module--vip {
  background: rgba(182, 192, 221, 0.1);
  border-color: rgba(182, 192, 221, 0.22);
}
.module__head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.module__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 26px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: -0.02em;
}
.module__title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
}
.module__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.module__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.module__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lemon);
}
.module--vip .module__list li::before { background: var(--periwinkle); }

/* ------------- result blocks ------------- */
.result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 40px;
}
.result__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.result__card--wide { grid-column: 1 / -1; }
.result__card p { color: var(--text); font-size: 16px; line-height: 1.5; font-weight: 500; }
.result__card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.result__card ul li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 14px;
}
.result__card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lemon);
}

/* ============ VIP ============ */
.vip {
  padding: 120px 0 80px;
  position: relative;
}
.vip__intro {
  max-width: 880px;
  margin-bottom: 48px;
}
.vip__intro .h2 { margin-bottom: 22px; }
.vip__intro .lead { margin-bottom: 28px; }
.vip__bonus {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.vip__bonus .tag { align-self: flex-start; }
.vip__bonus ul { display: flex; flex-direction: column; gap: 10px; }
.vip__bonus li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}
.vip__bonus li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lemon);
}

.vip__tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.vip-track {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}
.vip-track__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vip-track__num {
  margin-left: auto;
  font-size: 26px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
}
.vip-track ul { display: flex; flex-direction: column; gap: 14px; }
.vip-track li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
}
.vip-track li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lemon);
}
.vip-track:nth-child(2) li::before { background: var(--periwinkle); }

/* ============ PRICING ============ */
.pricing { padding: 100px 0 80px; }
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.plan {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  position: relative;
}
.plan--vip {
  background: linear-gradient(160deg, rgba(182, 192, 221, 0.15), rgba(182, 192, 221, 0.05));
  border-color: rgba(182, 192, 221, 0.3);
}
.plan__head { display: flex; align-items: center; gap: 12px; }
.plan__num {
  margin-left: auto;
  font-size: 26px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
}
.plan__desc { color: var(--text); font-size: 16px; line-height: 1.5; font-weight: 500; }
.plan__includes { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 12px; }
.plan__includes li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}
.plan__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lemon);
}
.plan--vip .plan__includes li::before { background: var(--periwinkle); }
.plan__price {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan__amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.plan--vip .plan__amount { color: #fff; }
.plan__sub { font-size: 13px; color: var(--text-mute); }
.plan__cta { align-self: flex-start; }
.plan--vip .plan__cta { background: var(--periwinkle); box-shadow: 0 14px 30px -10px rgba(182, 192, 221, 0.4); }
.plan--vip .plan__cta:hover { background: #c2cce6; }
.plan--vip .plan__cta .cta__arrow { color: var(--periwinkle); }

/* ============ FINALE ============ */
.finale {
  position: relative;
  margin-top: 80px;
  padding: 140px 0 160px;
  overflow: hidden;
  isolation: isolate;
}
.finale__bg { position: absolute; inset: 0; z-index: -1; }
.finale__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.4) saturate(0.7);
}
.finale__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20, 22, 28, 0.7) 0%, rgba(20, 22, 28, 0.4) 50%, rgba(20, 22, 28, 0.9) 100%);
}
.finale__content { text-align: center; max-width: 780px; margin: 0 auto; }
.finale__title { margin: 14px 0 24px; }
.finale__lead { margin: 0 auto 36px; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  padding: 60px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 48px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p.muted { margin-top: 14px; max-width: 360px; font-size: 14px; }
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer__cols a {
  display: block;
  color: var(--text-soft);
  margin-bottom: 10px;
  font-size: 15px;
  transition: color 0.2s;
}
.footer__cols a:hover { color: var(--text); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .topbar__inner { padding: 14px 24px; }
  .nav { display: none; }
  .why__grid { grid-template-columns: 1fr; }
  .why__art { min-height: 280px; order: -1; }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .cases__grid { grid-template-columns: 1fr 1fr; }
  .days { grid-template-columns: 1fr 1fr; }
  .modules { grid-template-columns: 1fr; }
  .result { grid-template-columns: 1fr; }
  .result__card ul { grid-template-columns: 1fr; }
  .vip__tracks { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .topbar__inner { padding: 12px 18px; gap: 14px; }
  .cta--ghost { padding: 10px 16px; font-size: 13px; }
  .hero { padding: 80px 0 40px; min-height: 680px; }
  .hero__pills { justify-content: flex-start; }
  .pill { min-width: unset; flex: 1 1 100%; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .why { padding: 70px 0 40px; }
  .qa { grid-template-columns: 1fr; }
  .audience__grid { grid-template-columns: 1fr; }
  .aud { min-height: unset; }
  .cases__grid { grid-template-columns: 1fr; }
  .days { grid-template-columns: 1fr; }
  .plan { padding: 28px 24px 32px; }
  .plan__amount { font-size: 36px; }
  .finale { padding: 100px 0 110px; }
}
