/* ==========================================================================
   Webinar Landing — Школа Андрея Ткаленко · Системная нумерология
   ВАРИАНТ А — палитра «Cool» (МИР-эстетика)
   Дизайн в логике mir-webinar.vercel.app / orderndl.tkalenkoandrey.com
   ========================================================================== */

/* ─── TOKENS ─── */
:root {
  --bg-cool:    #EAF3F8;
  --bg-warm:    #F5EBE0;
  --bg-base:    #FFFFFF;
  --bg-dark:    #1A2B38;
  --bg-darker:  #111E28;

  --teal:       #5B8FA0;
  --gold:       #C4956A;
  --gold-dark:  #A07040;

  --text:       #1A2B38;
  --text-muted: #6B7E8A;
  --line:       rgba(91,143,160,0.18);

  --ff-display: 'Montserrat', sans-serif;
  --ff-script:  'Cormorant Garamond', serif;

  --r-card:     20px;
  --r-button:   12px;

  --shadow-card:  0 4px 24px rgba(26,43,56,0.08);
  --shadow-hover: 0 8px 36px rgba(26,43,56,0.14);

  --transition: 0.22s ease;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-display);
  color: var(--text);
  background: var(--bg-base);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input { font: inherit; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── SECTION BASE ─── */
.section { padding: 80px 0 88px; }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__script {
  font-family: var(--ff-script);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.section__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}
.section__sub em {
  display: block;
  font-style: italic;
  font-family: var(--ff-script);
  font-size: 19px;
  color: var(--text);
  margin-top: 14px;
}

/* ─── HEADER ─── */
.header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.header__brand {
  font-family: var(--ff-script);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.2px;
}
.header__nav {
  display: flex;
  gap: 28px;
}
.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.header__nav a:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  background: var(--bg-cool);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,149,106,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content {
  padding-top: 0;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 20px 40px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-base);
  border-radius: var(--r-button);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(196,149,106,0.35);
}
.hero__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,149,106,0.5);
}
.hero__eyebrow {
  font-family: var(--ff-script);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.hero__desc:last-of-type { margin-bottom: 28px; }
.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.55);
  border-radius: 0 12px 12px 0;
}
.hero__meta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--teal);
}
.hero__meta-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.hero__meta-value span { color: var(--text-muted); font-weight: 500; }
.hero__meta-meta {
  font-size: 14px;
  color: var(--text-muted);
}
/* Hero photo */
.hero__image-wrap {
  text-align: center;
}
.hero__image {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(26,43,56,0.18));
}

/* ─── ANCHOR (новый чистый блок цены-якоря) ─── */
.anchor {
  background: var(--bg-base);
  padding: 88px 0;
}
.anchor__card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-cool);
  border-radius: 24px;
  padding: 56px 56px 48px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 8px 36px rgba(26,43,56,0.06);
}
.anchor__script {
  font-family: var(--ff-script);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.anchor__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 36px;
  color: var(--text);
}
.anchor__compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.anchor__compare-item {
  background: var(--bg-base);
  border-radius: 16px;
  padding: 20px 28px;
  min-width: 200px;
}
.anchor__compare-item--muted {
  border: 1.5px dashed var(--line);
}
.anchor__compare-item--accent {
  background: var(--text);
  color: var(--bg-base);
  box-shadow: 0 8px 24px rgba(26,43,56,0.18);
}
.anchor__compare-label {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text-muted);
}
.anchor__compare-item--accent .anchor__compare-label {
  color: rgba(255,255,255,0.7);
}
.anchor__compare-price {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.anchor__compare-item--accent .anchor__compare-price {
  color: var(--gold);
}
.anchor__compare-divider {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0;
}
.anchor__lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: left;
}
.anchor__points {
  list-style: none;
  margin: 28px 0;
  text-align: left;
  background: var(--bg-base);
  border-radius: 12px;
  padding: 22px 28px;
}
.anchor__points li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}
.anchor__points li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 14px; height: 2px;
  background: var(--gold);
}
.anchor__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 18px 36px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-base);
  border-radius: var(--r-button);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(196,149,106,0.35);
}
.anchor__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,149,106,0.5);
}

/* MOBILE для якоря */
@media (max-width: 700px) {
  .anchor__card { padding: 36px 24px 32px; }
  .anchor__compare { flex-direction: column; gap: 12px; }
  .anchor__compare-divider { transform: rotate(90deg); }
  .anchor__compare-item { width: 100%; }
}

/* ─── FOR-WHOM CTA (кнопка под блоком «кому подойдёт») ─── */
.for-whom__cta {
  text-align: center;
  margin-top: 48px;
}
.for-whom__cta .anchor__cta {
  font-size: 15px;
  padding: 22px 44px;
}
.for-whom__cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── REGISTRATION (LEGACY — старый стиль, не используется) ─── */
.register {
  background: var(--bg-warm);
  padding: 80px 0;
}
.register__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: center;
}
.register__text {
  padding: 8px 0;
}
.register__script {
  font-family: var(--ff-script);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.register__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 38px);
  text-transform: uppercase;
  letter-spacing: -0.4px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.register__sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.register__points {
  list-style: none;
  margin-bottom: 24px;
}
.register__points li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}
.register__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 16px;
  height: 1.5px;
  background: var(--gold);
}
.register__honest {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 8px;
}
.register__honest--soft {
  color: var(--text-muted);
  font-size: 13px;
}
.register__form-card {
  background: var(--bg-base);
  border-radius: var(--r-card);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 40px 36px;
  text-align: center;
}
.register__form-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,149,106,0.12);
  border-radius: 100px;
  margin-bottom: 18px;
}
.register__form-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}
.register__form-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.register__form-btn,
.final__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-base);
  border-radius: var(--r-button);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(196,149,106,0.35);
  cursor: pointer;
  border: none;
}
.register__form-btn:hover,
.final__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,149,106,0.5);
}
.final__cta {
  margin: 8px 0 20px;
  padding: 22px 48px;
  font-size: 15px;
}
.form-container {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-container input[type="email"],
.form-container input[type="text"],
.form-container input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-base);
  color: var(--text);
  transition: border var(--transition);
}
.form-container input:focus {
  outline: none;
  border-color: var(--gold);
}
.form-container button,
.form-container input[type="submit"] {
  width: 100%;
  padding: 16px 24px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-base);
  border: none;
  border-radius: var(--r-button);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(196,149,106,0.35);
}
.form-container button:hover,
.form-container input[type="submit"]:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 28px rgba(196,149,106,0.5);
  transform: translateY(-2px);
}
/* ─── ABOUT ─── */
.about {
  background: var(--bg-base);
}
.about__card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg-base);
  border-radius: var(--r-card);
  padding: 48px;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-card);
}
.about__head-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.about__photo-wrap {
  flex-shrink: 0;
  display: block;
}
.about__photo {
  width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(26,43,56,0.22));
}
.about__name {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
  line-height: 1.1;
}
.about__role {
  font-family: var(--ff-script);
  font-style: italic;
  font-size: 19px;
  color: var(--gold);
}
.about__bio {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about__bio:last-of-type { margin-bottom: 28px; }
.about__facts {
  list-style: none;
  margin-bottom: 28px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.about__facts li {
  padding: 12px 0 12px 24px;
  position: relative;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.about__facts li:last-child { border-bottom: none; }
.about__facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
}
.about__quote {
  position: relative;
  padding: 22px 0 22px 28px;
  border-left: 3px solid var(--gold);
  font-family: var(--ff-script);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
}

/* ─── PROGRAM ─── */
.program {
  background: var(--bg-cool);
}
.program__list {
  max-width: 820px;
  margin: 0 auto;
}
.program__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.program__item:last-child { border-bottom: none; }
.program__num {
  font-family: var(--ff-script);
  font-style: italic;
  font-weight: 500;
  font-size: 60px;
  color: var(--gold);
  line-height: 0.9;
}
.program__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.program__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── FOR WHOM (pain-grid 2col) ─── */
.for-whom {
  background: var(--bg-warm);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.pain-card {
  background: var(--bg-base);
  border-radius: var(--r-card);
  border: 1.5px solid var(--line);
  padding: 28px 28px 28px 60px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.pain-card::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 34px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='rgba(91,143,160,0.12)'/%3E%3Ccircle cx='10' cy='10' r='3' fill='%235B8FA0'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pain-card p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}
.for-whom__note {
  max-width: 620px;
  margin: 40px auto 0;
  text-align: center;
  font-family: var(--ff-script);
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
}

/* ─── CASES ─── */
.cases {
  background: var(--bg-base);
}
.cases__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.case-card {
  background: var(--bg-base);
  border: 1.5px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.case-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.case-card__head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.case-card__name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.case-card__meta {
  font-family: var(--ff-script);
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
}
.case-card__row {
  margin-bottom: 16px;
}
.case-card__row:last-child { margin-bottom: 0; }
.case-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.case-card__row p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
}

/* ─── FINAL CTA (dark navy, как в МИР) ─── */
.final {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.92);
  padding: 96px 0 100px;
}
.final__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.final__script {
  font-family: var(--ff-script);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.final__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  letter-spacing: -0.4px;
  color: #FFFFFF;
  margin-bottom: 18px;
  line-height: 1.2;
}
.final__text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 26px;
}
.final__date {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 32px;
}
.final__date span { color: rgba(255,255,255,0.6); font-weight: 500; }
.final__form {
  background: var(--bg-base);
  color: var(--text);
  border-radius: var(--r-card);
  padding: 32px;
  max-width: 480px;
  margin: 0 auto 16px;
  text-align: left;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border: 1px solid rgba(196,149,106,0.3);
}
button.final__btn,
.final__btn {
  display: inline-block !important;
  background: var(--gold) !important;
  color: #FFFFFF !important;
  font-family: var(--ff-display) !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  letter-spacing: 0.3px !important;
  padding: 18px 36px !important;
  border-radius: var(--r-button) !important;
  border: none !important;
  cursor: pointer !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(196,149,106,0.35) !important;
  min-width: 280px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
}
.final__btn:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,149,106,0.45) !important;
  color: #FFFFFF !important;
}
.final__btn:active { transform: translateY(0); }
.final__note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: 14px;
}
.final__note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* «Что входит» список внутри финального CTA */
.final__includes {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  max-width: 480px;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,149,106,0.18);
  border-radius: 14px;
  padding: 22px 26px;
}
.final__includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  color: rgba(255,255,255,0.85);
  font-size: 15.5px;
  line-height: 1.5;
}
.final__includes li span {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── MANAGER CONTACT (связь с менеджером) ─── */
.manager {
  background: var(--bg-cool);
  padding: 80px 0 90px;
  border-top: 1px solid rgba(91,143,160,0.15);
}
.manager__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.manager__script {
  font-family: var(--ff-script);
  font-style: italic;
  font-size: 22px;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}
.manager__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.manager__text {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.manager__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.manager__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-button);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: var(--shadow-card);
  min-width: 170px;
  justify-content: center;
}
.manager__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.manager__btn--tg  { background: #229ED9; }
.manager__btn--wa  { background: #25D366; }
.manager__btn--max { background: #1E1E1E; }
.manager__btn svg { flex-shrink: 0; }
.manager__note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}
.manager__note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(91,143,160,0.4);
}
.manager__note a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 560px) {
  .manager { padding: 56px 0 64px; }
  .manager__buttons {
    flex-direction: column;
    gap: 12px;
  }
  .manager__btn {
    width: 100%;
    min-width: 0;
  }
  .final__includes {
    padding: 18px 20px;
    font-size: 14.5px;
  }
}

/* ─── FAQ ─── */
.faq {
  background: var(--bg-base);
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq__q:hover { color: var(--gold); }
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transition: transform var(--transition);
}
.faq__icon::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__item[aria-expanded="true"] .faq__a {
  max-height: 600px;
}
.faq__a-inner {
  padding: 0 0 24px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.62);
  padding: 64px 0 32px;
  font-size: 14px;
  line-height: 1.7;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__col--brand { padding-right: 12px; }
.footer__brand {
  font-family: var(--ff-script);
  font-size: 24px;
  color: rgba(255,255,255,0.95);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.footer__tagline {
  color: rgba(255,255,255,0.5);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.6;
}
.footer__heading {
  font-family: var(--ff-display, var(--ff-script));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 16px;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list li {
  margin-bottom: 8px;
}
.footer__list--small li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.footer__bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.3px;
}
.footer a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer a:hover { color: var(--gold); }

@media (max-width: 820px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .footer { padding: 48px 0 28px; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
}

/* ─── POPUP MODAL (GetCourse widget) ─── */
.gc-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.gc-modal[aria-hidden="false"] {
  display: flex;
  animation: gcFade 0.2s ease;
}
.gc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,43,56,0.88);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.gc-modal__content {
  position: relative;
  background: var(--bg-base);
  border-radius: var(--r-card);
  padding: 40px 36px 32px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: gcIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto 0;
}
@keyframes gcFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes gcIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.gc-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-modal__close:hover {
  background: rgba(91,143,160,0.08);
  color: var(--text);
}
.gc-modal__head {
  text-align: center;
  margin-bottom: 16px;
  padding-right: 32px;
}
.gc-modal__script {
  font-family: var(--ff-script);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.gc-modal__title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.gc-modal__date {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.gc-modal__date strong {
  color: var(--text);
  font-weight: 700;
}
.gc-modal__widget {
  min-height: 280px;
  position: relative;
}
.gc-modal__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--ff-script);
  font-style: italic;
}

@media (max-width: 600px) {
  .gc-modal { padding: 20px 12px; }
  .gc-modal__content { padding: 32px 20px 24px; }
  .gc-modal__title { font-size: 18px; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0 64px; }
  .header__nav { display: none; }

  .hero { padding: 48px 0 64px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__content { order: 1; }
  .hero__image-wrap { order: 2; }
  .hero__image { max-width: 220px; }
  .hero__cta {
    width: 100%;
    padding: 18px 24px;
    font-size: 13px;
  }

  .register { padding: 56px 0 64px; }
  .register__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .register__form-card { padding: 28px 22px; }

  .about__card { padding: 32px 24px; }
  .about__head-row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    align-items: center;
  }
  .about__photo { width: 180px; }

  .program__item {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 24px 0;
  }
  .program__num { font-size: 44px; }
  .program__title { font-size: 19px; }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .case-card { padding: 24px 22px; }
  .final { padding: 64px 0; }
  .final__form { padding: 24px; }

  .faq__q { font-size: 16px; padding: 20px 0; }
}
