/* ===========================================================
   ДоСкорой — First on Scene
   Brand colors: Red #FF3131 · White #ffffff · Charcoal #2e2b2b · Gold #dbc078
   =========================================================== */

:root {
  --red: #FF3131;
  --red-dark: #e21b1b;
  --red-soft: #fff1f1;
  --white: #ffffff;
  --charcoal: #2e2b2b;
  --charcoal-light: #4a4646;
  --gold: #dbc078;
  --gold-dark: #b89e54;
  --gray-50: #faf9f8;
  --gray-100: #f3f1ef;
  --gray-200: #e6e3df;
  --gray-300: #d1cdc7;
  --gray-500: #8a8580;
  --gray-700: #555149;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(46, 43, 43, 0.06);
  --shadow: 0 8px 28px rgba(46, 43, 43, 0.10);
  --shadow-lg: 0 20px 60px rgba(46, 43, 43, 0.16);

  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Unbounded', 'Manrope', sans-serif;

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--gray-700);
  max-width: 720px;
  margin: 0 0 56px;
}
.subsection-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  margin: 56px 0 24px;
  color: var(--charcoal);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow.gold { color: var(--gold-dark); }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.15);
  animation: pulse 2s infinite;
}
.eyebrow .dot.gold { background: var(--gold); box-shadow: 0 0 0 4px rgba(219, 192, 120, 0.2); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(255, 49, 49, 0.05); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 49, 49, 0.28);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 28px rgba(255, 49, 49, 0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gray-300);
}
.btn-ghost:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 8px 20px rgba(219, 192, 120, 0.35);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

.link-arrow {
  color: var(--red);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.link-arrow:hover { gap: 10px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition: transform 0.3s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled {
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: var(--gray-200);
  box-shadow: 0 4px 20px rgba(46, 43, 43, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; display: block; }
.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.15s ease;
  position: relative;
}
.main-nav a:hover { color: var(--red); }
.header-cta { flex-shrink: 0; gap: 6px; }
.cta-sub {
  font-weight: 600;
  font-size: 12px;
  opacity: 0.92;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
@media (max-width: 1180px) {
  .cta-sub { display: none; }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 85% 20%, rgba(255, 49, 49, 0.18), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(219, 192, 120, 0.10), transparent 60%),
    linear-gradient(180deg, #2e2b2b 0%, #1f1c1c 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 720px; }
.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 520px;
}
.hero-photo::before {
  content: '';
  position: absolute;
  width: 95%;
  height: 80%;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(50% 60% at 50% 50%,
    rgba(255, 49, 49, 0.45) 0%,
    rgba(255, 49, 49, 0.18) 40%,
    transparent 72%);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 0;
}
.hero-photo::after {
  content: '';
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1.5px solid rgba(219, 192, 120, 0.28);
  z-index: 0;
}
.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
}
.hero-photo-tag {
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.hero-photo-tag .dot-mini {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(219, 192, 120, 0.18);
}

.hero .eyebrow { color: var(--red); }
.hero .eyebrow .dot { background: var(--red); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 24px;
}
.hero-title .accent { color: var(--red); }
.hero-title .accent-gold { color: var(--gold); }
.hero-title .word-strike {
  position: relative;
  display: inline-block;
  color: var(--gray-300);
}
.hero-title .word-strike::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%;
  top: 52%;
  height: 6px;
  background: var(--red);
  border-radius: 3px;
  transform: rotate(-3deg);
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
  margin: 0 0 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}
.hero-cta-main { gap: 8px; }
.cta-meta {
  font-weight: 600;
  font-size: 14px;
  opacity: 0.92;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .cta-meta { display: none; }
}

.hero-text-link {
  display: inline-block;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 5px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.hero-text-link:hover {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  max-width: 760px;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--white);
}
.trust-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Urgency strip ---------- */
.urgency {
  background: var(--red-soft);
  padding: 72px 0;
}
.urgency-head {
  text-align: center;
  margin-bottom: 40px;
}
.urgency-head .eyebrow { color: var(--red); }
.urgency-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.urgency-item p {
  margin: 12px 0 0;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.55;
}
.urgency-item p strong { color: var(--charcoal); font-weight: 700; }
.urgency-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.urgency-num span {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-left: 4px;
}
.urgency-bridge {
  text-align: center;
  margin: 56px auto 0;
  max-width: 760px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: var(--charcoal);
  position: relative;
}
.urgency-bridge::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.bridge-fem {
  font-weight: 500;
  opacity: 0.7;
  font-size: 0.85em;
}

/* ---------- Transformation ---------- */
.transformation { background: var(--gray-50); }
.transform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin: 32px 0 48px;
}
.transform-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.transform-card.before { border: 2px solid var(--gray-200); }
.transform-card.after {
  border: 2px solid var(--red);
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}
.card-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  margin-bottom: 16px;
}
.transform-card.after .card-label { background: var(--red); color: var(--white); }
.quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--charcoal);
  margin: 0 0 20px;
}
.transform-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.55;
}
.transform-card.before ul li::before {
  content: '✕';
  position: absolute; left: 0; top: 0;
  color: var(--gray-500);
  font-weight: 700;
}
.transform-card.after ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--red);
  font-weight: 800;
}
.arrow {
  align-self: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  font-family: var(--font-display);
}
.transform-bridge {
  text-align: center;
  max-width: 820px;
  margin: 56px auto 0;
  padding: 0 24px;
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.7;
  color: var(--charcoal);
  font-weight: 500;
}
.transform-bridge::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 28px;
  border-radius: 2px;
}
.transform-bridge em {
  font-style: italic;
  color: var(--gray-700);
}
.transform-bridge strong { color: var(--red); font-weight: 700; }
.transform-cta { text-align: center; margin-top: 28px; }

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* 5-card layout: 3 in first row, 2 centered in second row */
.why-grid-5 {
  grid-template-columns: repeat(6, 1fr);
}
.why-grid-5 > .why-card { grid-column: span 2; }
.why-grid-5 > .why-card:nth-child(4) { grid-column: 2 / span 2; }
.why-grid-5 > .why-card:nth-child(5) { grid-column: 4 / span 2; }
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.why-card.highlight {
  background: linear-gradient(180deg, var(--charcoal) 0%, #1f1c1c 100%);
  color: var(--white);
  border-color: var(--charcoal);
}
.why-card.highlight h3, .why-card.highlight p { color: var(--white); }
.why-card.highlight p { color: rgba(255, 255, 255, 0.75); }

.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--red);
}
.why-icon svg {
  width: 26px;
  height: 26px;
}
.why-card.highlight .why-icon {
  background: rgba(219, 192, 120, 0.15);
  color: var(--gold);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--charcoal);
}
.why-card p { margin: 0; color: var(--gray-700); font-size: 15px; line-height: 1.55; }

/* ---------- Instructor ---------- */
.instructor {
  background: var(--charcoal);
  color: var(--white);
}
.instructor-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: start;
}
.instructor-photo { position: sticky; top: 100px; }
.instructor-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 540px;
}
/* Soft red atmospheric glow — brand colour without competing with the uniform */
.instructor-photo::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 80%;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(50% 60% at 50% 50%,
    rgba(255, 49, 49, 0.40) 0%,
    rgba(255, 49, 49, 0.18) 40%,
    transparent 70%);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 0;
}
/* Subtle gold ring — premium accent */
.instructor-photo::after {
  content: '';
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1.5px solid rgba(219, 192, 120, 0.28);
  z-index: 0;
}
.instructor-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}
.instructor-badge {
  position: absolute;
  bottom: 10%;
  right: 0;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-display);
  padding: 12px 18px;
  border-radius: 14px;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  z-index: 2;
}
.instructor-badge strong {
  display: block;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.instructor-badge span {
  display: block;
  font-weight: 600;
  font-size: 11px;
  opacity: 0.78;
  margin-top: 3px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.instructor .section-title { color: var(--white); }
.instructor .eyebrow { color: var(--gold); }
.instructor .eyebrow .dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(219, 192, 120, 0.2); }

.origin-story {
  margin: 8px 0 36px;
}
.origin-story p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
}
.origin-story p:last-child { margin-bottom: 0; }
.origin-story p strong {
  color: var(--white);
  font-weight: 700;
}
.origin-story p:first-child {
  position: relative;
  padding-left: 18px;
}
.origin-story p:first-child::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--red);
  border-radius: 2px;
}

.creds-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}
.creds-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.creds-list li span {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.01em;
}
.instructor-quote {
  display: block;
  margin: 32px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--red);
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.instructor-quote strong {
  color: var(--white);
  font-weight: 700;
  font-style: normal;
}
.instructor-quote::before {
  content: '"';
  display: inline-block;
  font-family: 'Unbounded', serif;
  color: var(--red);
  font-size: 32px;
  line-height: 0;
  vertical-align: -8px;
  margin-right: 4px;
  font-style: normal;
}

/* ---------- Course ---------- */
.course-format {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 48px;
}
.format-item {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.format-item.highlight {
  border-color: var(--red);
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}
.format-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.format-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 8px;
}
.format-item p {
  margin: 0;
  font-size: 14px;
  color: var(--gray-700);
}
.format-plus, .format-equals {
  align-self: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-300);
  font-family: var(--font-display);
}

.format-result {
  font-size: 28px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* Curriculum: collapsible 3-stage list with timeline visual.
   Compact when closed, full list reveals on click. */
.curriculum-hint {
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
  margin: 0 0 16px;
  text-align: center;
}
.curriculum {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

.cur-stage {
  border-top: 1px solid var(--gray-200);
  position: relative;
  background: var(--white);
}
.cur-stage:first-child { border-top: none; }
.cur-stage[open] { background: var(--gray-50); }

.cur-stage summary {
  display: grid;
  grid-template-columns: 100px 1fr 56px;
  gap: 28px;
  padding: 24px 24px 24px 0;
  align-items: center;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background 0.15s ease;
}
.cur-stage summary::-webkit-details-marker { display: none; }
.cur-stage summary:hover { background: var(--gray-50); }
.cur-stage[open] summary { background: var(--gray-50); }

.cur-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 0.9;
  letter-spacing: -0.03em;
  width: 100px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cur-head h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--charcoal);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.cur-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

.cur-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  justify-self: center;
}
.cur-stage:hover .cur-toggle { border-color: var(--red); color: var(--red); }
.cur-stage[open] .cur-toggle {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}

.cur-list {
  list-style: none;
  padding: 4px 24px 28px 128px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  animation: cur-slide 0.3s ease;
}
@keyframes cur-slide {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.cur-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-700);
}
.cur-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px;
  height: 2px;
  background: var(--gray-300);
  border-radius: 2px;
}
.cur-list li strong {
  color: var(--charcoal);
  font-weight: 700;
}

/* Critical stage — red emphasis */
.cur-stage-critical { border-top-color: var(--red); }
.cur-stage-critical .cur-num { color: var(--red); opacity: 0.55; }
.cur-stage-critical .cur-head h4 { color: var(--red); }
.cur-stage-critical .cur-tagline { color: var(--red); opacity: 0.85; font-weight: 700; }
.cur-stage-critical .cur-list li::before { background: var(--red); }
.cur-stage-critical[open] { background: linear-gradient(180deg, var(--gray-50) 0%, rgba(255, 49, 49, 0.04) 100%); }
.cur-stage-critical[open] summary { background: transparent; }

.course-bridge {
  text-align: center;
  max-width: 760px;
  margin: 40px auto 56px;
  padding: 0 24px;
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.65;
  color: var(--charcoal);
  font-style: italic;
}
.course-bridge::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.course-bridge strong { color: var(--red); font-weight: 700; font-style: normal; }

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.format-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.format-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.format-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--charcoal);
}
.format-card p {
  margin: 0 0 18px;
  color: var(--gray-700);
  font-size: 15px;
}
.hrda-note {
  margin-top: 32px;
  padding: 18px 24px;
  background: linear-gradient(90deg, rgba(219, 192, 120, 0.18), rgba(219, 192, 120, 0.06));
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--charcoal);
}
.hrda-note strong { color: var(--gold-dark); }

/* Featured "Для компании" card — subtle gold accent + inline HRDA pill */
.format-card-featured {
  border-color: var(--gold);
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 24px rgba(219, 192, 120, 0.18);
  position: relative;
}
.format-card-featured:hover {
  border-color: var(--gold-dark);
  border-top-color: var(--gold-dark);
  box-shadow: 0 14px 32px rgba(219, 192, 120, 0.28);
}
.format-hrda-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 7px 12px 7px 7px;
  background: rgba(219, 192, 120, 0.14);
  border: 1px solid rgba(219, 192, 120, 0.45);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}
.hrda-pill {
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ---------- Curriculum & Formats sections (split from old combined course section) ---------- */
.curriculum-section { background: var(--gray-50); }
.curriculum-section .eyebrow,
.formats-section .eyebrow { color: var(--red); }
.curriculum-section .section-sub,
.formats-section .section-sub { margin-bottom: 48px; }

/* ---------- Course-embedded gallery: visual proof inside the Course section ---------- */
.course-gallery {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--gray-200);
}
.course-gallery .gallery-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}
.course-gallery .gallery-head .eyebrow {
  justify-content: center;
}
.course-gallery .subsection-title {
  margin: 12px 0 12px;
  font-size: clamp(22px, 2.6vw, 30px);
}
.course-gallery-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--gray-700);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Gallery: magazine-style mosaic with photos + autoplay videos ---------- */
.gallery-head { margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.g-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0;
  padding: 0;
  border: none;
  font-family: inherit;
  text-align: left;
  width: 100%;
  display: block;
}
.g-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.g-tile-hero { grid-column: span 2; grid-row: span 2; }
.g-tile-wide { grid-column: span 2; }

/* Photos */
.g-tile.g-photo { background: var(--gray-200); }
.g-tile.g-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Hero (group) photo: standard center — original framing */
.g-tile-hero.g-photo img { object-position: center; }
.g-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(46, 43, 43, 0.85) 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Videos: full-bleed video with play overlay */
.g-tile.g-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.g-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(46, 43, 43, 0.15) 0%, rgba(46, 43, 43, 0.55) 100%);
  transition: background 0.2s ease;
}
.g-tile.g-video:hover .g-overlay {
  background: linear-gradient(180deg, rgba(46, 43, 43, 0.05) 0%, rgba(46, 43, 43, 0.45) 100%);
}
.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--red);
  padding-left: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.g-tile.g-video:hover .play-btn {
  transform: scale(1.08);
  background: var(--red);
  color: var(--white);
}
.g-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(46, 43, 43, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.gallery-note {
  margin-top: 28px;
  padding: 14px 20px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-700);
  text-align: center;
}
.course-cta { text-align: center; margin-top: 48px; }

/* ---------- Carousel (shared) ---------- */
.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--charcoal);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  padding-bottom: 4px;
}
.car-arrow:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.car-arrow:active { transform: translateY(-50%) scale(0.94); }
.car-arrow.car-prev { left: -20px; }
.car-arrow.car-next { right: -20px; }
.car-arrow:disabled { opacity: 0.35; cursor: not-allowed; }

.car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.car-dots button {
  width: 8px; height: 8px;
  padding: 0;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.car-dots button.is-active {
  background: var(--red);
  transform: scale(1.4);
}

/* ---------- Instagram showcase: feed-style topic cards ---------- */
.ig-showcase { background: var(--white); }
.ig-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.ig-head .section-sub { margin-bottom: 0; }
.ig-head .section-sub strong { color: var(--charcoal); font-weight: 700; }

/* Instagram-branded follow button */
.btn-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 39, 67, 0.4);
  color: var(--white);
}

/* IG Carousel: horizontal scrolling row of post screenshots, sized to native res */
.ig-carousel {
  position: relative;
}
.ig-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
}
.ig-track::-webkit-scrollbar { height: 6px; }
.ig-track::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 999px; }
.ig-track::-webkit-scrollbar-track { background: transparent; }

.ig-post {
  flex: 0 0 240px;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
  background: var(--gray-100);
}
.ig-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ig-post:hover img { transform: scale(1.04); }

.ig-post-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ig-post:hover .ig-post-overlay {
  opacity: 1;
  transform: none;
}
.ig-post-action { letter-spacing: 0.01em; }
.ig-post-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.ig-post:hover .ig-post-arrow {
  transform: translate(2px, -2px);
}

/* ---------- Reviews (carousel) ---------- */
.reviews { background: var(--gray-50); }
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.reviews-head .section-sub { margin-bottom: 0; }

.google-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.google-link:hover { border-color: var(--red); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.google-link .g-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC04 75%, #EA4335 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
}
.google-link strong { display: block; color: var(--charcoal); font-size: 14px; }
.google-link small { color: var(--gray-500); font-size: 12px; }

.reviews-carousel {
  position: relative;
  padding: 0 4px;
}
.rv-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
}
.rv-track::-webkit-scrollbar { height: 6px; }
.rv-track::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 999px; }

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.review-card p {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0 0 20px;
}
.review-card footer {
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card footer strong { color: var(--charcoal); font-size: 15px; }
.review-card footer span { color: var(--gray-500); font-size: 12px; }

/* ---------- Schedule ---------- */
.schedule { background: var(--white); }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.sch-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.sch-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-3px); }
.sch-card.featured {
  border: 2px solid var(--red);
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  box-shadow: var(--shadow);
}
.sch-card .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
}
.sch-month {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.sch-month span {
  font-size: 16px;
  color: var(--gray-500);
  font-weight: 600;
  margin-left: 4px;
}
.sch-dates {
  margin-bottom: 20px;
}
.sch-dates li {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--gray-200);
  font-size: 14px;
}
.sch-dates li:last-child { border-bottom: none; }
.sch-dates li > span:first-child {
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-display);
}
.sch-dates li > span:nth-child(2) { color: var(--gray-700); }
.sch-dates li em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
}
.sch-dates li.sch-practice em {
  background: var(--red);
  color: var(--white);
}
.sch-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  width: fit-content;
}
.sch-status .dot-mini {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.status-open { background: #effaf3; color: #1d6f3a; }
.status-open .dot-mini { background: #1d6f3a; }
.status-low {
  background: #fff4e0;
  color: #b86e00;
  animation: blink 2s infinite;
}
.status-low .dot-mini { background: #b86e00; }
.status-closed {
  background: var(--gray-100);
  color: var(--gray-700);
}
.status-closed .dot-mini { background: var(--gray-500); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

.sch-closed-btn {
  background: var(--gray-100);
  color: var(--gray-500);
  border-color: var(--gray-200);
  cursor: not-allowed;
  pointer-events: none;
}

.schedule-note {
  text-align: center;
  margin-top: 32px;
  color: var(--gray-700);
  font-size: 15px;
}
.schedule-note a { color: var(--red); font-weight: 700; }
.schedule-note a:hover { text-decoration: underline; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--red);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff 0%, #fffafa 100%);
}
.price-card .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--charcoal);
}
.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 18px;
}
.price .amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.price .period {
  font-size: 14px;
  color: var(--gray-700);
  flex-basis: 100%;
}
.price-note {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0 0 24px;
}
.price-card ul {
  flex: 1;
  margin-bottom: 24px;
}
.price-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 15px;
  color: var(--gray-700);
  border-bottom: 1px dashed var(--gray-200);
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  color: var(--red);
  font-weight: 800;
}
.pricing-coda {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 17px;
  line-height: 1.55;
  color: var(--charcoal);
  font-style: italic;
}
.pricing-coda strong {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--red); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev {
  font-size: 24px;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] .chev { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
}
/* Inline location link with map pin emoji — used in FAQ */
.loc-link {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(255, 49, 49, 0.35);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.loc-link:hover {
  color: var(--red-dark);
  text-decoration-color: var(--red);
}
.loc-link strong { color: inherit; }

/* ---------- Consequence / final push ---------- */
.consequence {
  position: relative;
  background:
    radial-gradient(800px 600px at 90% 20%, rgba(255, 49, 49, 0.28), transparent 60%),
    linear-gradient(180deg, #16100f 0%, #1f1c1c 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 110px 0 120px;
  overflow: hidden;
}
.consequence-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.consequence-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0;
}
.consequence-body p {
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 28px;
}
.consequence-body p:last-child { margin-bottom: 0; }
.consequence-emphasis {
  color: var(--red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 8px;
}

/* ---------- Booking ---------- */
.book {
  background:
    radial-gradient(600px 400px at 10% 50%, rgba(255, 49, 49, 0.20), transparent 60%),
    var(--charcoal);
  color: var(--white);
}
.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  align-items: start;
}
.book-header {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}
.book-header .section-title { margin-bottom: 16px; }
.book-header .book-lead { max-width: 680px; }
.book-content { padding-top: 0; order: 2; align-self: center; }
.book-form { order: 1; }
.book-lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 32px;
  max-width: 520px;
}
.contact-intro {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  color: var(--white);
}
.contact-btn:hover {
  background: rgba(255, 49, 49, 0.15);
  border-color: var(--red);
  transform: translateX(4px);
}
.contact-btn .ico {
  font-size: 24px;
  width: 44px; height: 44px;
  background: rgba(255, 49, 49, 0.20);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-btn .ico svg {
  width: 26px;
  height: 26px;
  display: block;
}
.contact-btn--phone .ico { background: var(--red); }
.contact-btn--wa .ico { background: #25D366; }
.contact-btn--tg .ico { background: #229ED9; }
.contact-btn--ig .ico {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 22%, #dc2743 47%, #cc2366 70%, #bc1888 100%);
}
.contact-btn span:last-child {
  display: flex; flex-direction: column;
}
.contact-btn small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-btn strong { font-size: 16px; }

.book-form {
  background: var(--white);
  color: var(--charcoal);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  scroll-margin-top: 88px;
}
.book-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 16px;
}
.form-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  flex-wrap: wrap;
}
.form-trust .ft-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.form-trust strong { color: var(--white); font-weight: 700; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 80px; }
.form-note {
  font-size: 12px;
  color: var(--gray-500);
  margin: 14px 0 0;
  line-height: 1.5;
}
/* ---------- Kommo CRM webform host ----------
   The form is rendered inside Kommo's iframe. Kommo's auto-resize via
   postMessage is unreliable in our embed, so we set a min-height that fits
   the current 4-field form. If Kommo manages to set a larger height (e.g.
   when more fields are added in the dashboard), inline height wins over
   our min-height and the iframe grows as needed. */
#kommoFormHost {
  width: 100%;
}
#kommoFormHost iframe {
  width: 100% !important;
  min-height: 620px;
  border: none !important;
  display: block;
}

/* ---------- Telegram-channel CTA (under contact buttons) ----------
   Was previously the post-submit modal — now always visible so it works
   regardless of Kommo's success-state behaviour. */
.tg-channel-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #229ED9 0%, #1976a8 100%);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  max-width: 480px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 20px rgba(34, 158, 217, 0.18);
}
.tg-channel-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(34, 158, 217, 0.32);
}
.tg-channel-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.20);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tg-channel-icon svg { width: 24px; height: 24px; color: #fff; }
.tg-channel-text { display: flex; flex-direction: column; gap: 2px; }
.tg-channel-text strong { font-size: 15px; font-weight: 700; }
.tg-channel-text span { font-size: 12px; color: rgba(255, 255, 255, 0.88); line-height: 1.4; }

/* ---------- Cookie consent banner (GDPR) ---------- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 22px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: cookieIn 0.35s ease;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-text {
  font-size: 14px;
  margin: 0;
  flex: 1 1 280px;
  color: var(--charcoal);
  line-height: 1.5;
}
.cookie-banner-text a { color: var(--red); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.cookie-btn-decline {
  background: var(--gray-100);
  color: var(--charcoal);
}
.cookie-btn-decline:hover { background: var(--gray-200); }
.cookie-btn-accept {
  background: var(--charcoal);
  color: var(--white);
}
.cookie-btn-accept:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 16px;
  }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ---------- Exit-intent popup ---------- */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-modal[hidden] { display: none; }
.exit-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 16, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: exitModalFade 0.22s ease;
}
.exit-modal-content {
  position: relative;
  background: var(--white);
  border-radius: calc(var(--radius-lg) + 4px);
  padding: 36px 28px 24px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: exitModalIn 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
  text-align: center;
}
.exit-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-700);
  transition: background 0.15s ease, color 0.15s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-modal-close:hover { background: var(--gray-200); color: var(--charcoal); }
.exit-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #229ED9 0%, #1976a8 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(34, 158, 217, 0.3);
}
.exit-modal-icon svg { width: 36px; height: 36px; }
.exit-modal h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.exit-modal p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0 0 22px;
}
.exit-modal p strong { color: var(--charcoal); }
.exit-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #229ED9 0%, #1976a8 100%);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 20px rgba(34, 158, 217, 0.3);
}
.exit-modal-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(34, 158, 217, 0.42);
}
.exit-modal-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
.exit-modal-dismiss {
  display: block;
  margin: 16px auto 0;
  padding: 8px 14px;
  background: transparent;
  border: none;
  color: var(--gray-500);
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
  font-family: inherit;
}
.exit-modal-dismiss:hover { color: var(--charcoal); }

body.exit-modal-open { overflow: hidden; }

@keyframes exitModalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes exitModalIn {
  from { opacity: 0; transform: scale(0.93) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1f1c1c;
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 20px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1fr;
  gap: 64px;
  margin-bottom: 40px;
  align-items: start;
}
.footer-logo { width: 160px; max-width: 100%; height: auto; margin-bottom: 18px; display: block; }
.footer-brand p {
  font-style: italic;
  max-width: 320px;
  line-height: 1.55;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.footer-col p { margin: 0 0 8px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--red); }
.footer-col .contact-line {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: baseline;
  margin: 0 0 10px;
}
.contact-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-legal-meta {
  line-height: 1.5;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
}
.footer-legal-links a {
  color: inherit;
  transition: color 0.15s ease;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-legal-links a:first-child { padding-left: 0; }
.footer-legal-links a:last-child { border-right: none; padding-right: 0; }
.footer-legal-links a:hover { color: var(--red); }

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 40;
  background: #25D366;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.floating-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45); }
.floating-cta .float-label { display: inline; }
.floating-cta-icon { width: 22px; height: 22px; display: block; flex-shrink: 0; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Cards inside horizontal carousels should always be visible — IntersectionObserver
   doesn't reliably trigger for items in horizontal scroll containers */
.rv-track .review-card, .ig-track .ig-slide { opacity: 1; transform: none; }

/* ---------- Lightbox (video + photo, shared styles) ---------- */
.video-overlay, .photo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  cursor: zoom-out;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.video-overlay video,
.photo-overlay img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  cursor: default;
}
.video-overlay video { background: #000; }
.photo-overlay img {
  object-fit: contain;
  display: block;
}
.po-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  max-width: 720px;
  padding: 0 16px;
}
.video-overlay .vo-close,
.photo-overlay .vo-close {
  position: absolute;
  top: 16px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: none;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}
.video-overlay .vo-close:hover,
.photo-overlay .vo-close:hover { background: rgba(255, 255, 255, 0.25); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  section { padding: 72px 0; }

  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .main-nav.is-open {
    display: block;
    position: fixed;
    top: 84px; left: 0; right: 0;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 49;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open ul {
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
  }
  .main-nav.is-open li {
    border-bottom: 1px solid var(--gray-100);
  }
  .main-nav.is-open a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }

  .hero { padding: 80px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { max-width: 100%; }
  .hero-photo { min-height: 380px; max-width: 360px; margin: 0 auto; }
  .hero-photo img { max-width: 340px; max-height: 440px; }
  .hero-photo-tag { top: 12px; right: 0; font-size: 12px; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .urgency-grid { grid-template-columns: repeat(6, 1fr); gap: 24px; }
  .urgency-grid > .urgency-item { grid-column: span 2; }
  .urgency-grid > .urgency-item:nth-child(4) { grid-column: 2 / span 2; }
  .urgency-grid > .urgency-item:nth-child(5) { grid-column: 4 / span 2; }

  .transform-grid { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); justify-self: center; }

  .why-grid, .formats-grid, .pricing-grid, .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .why-grid-5 > .why-card,
  .why-grid-5 > .why-card:nth-child(4),
  .why-grid-5 > .why-card:nth-child(5) { grid-column: auto; }
  .why-grid-5 > .why-card:nth-child(5) { grid-column: 1 / -1; max-width: 480px; justify-self: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-tile-hero { grid-column: span 2; grid-row: span 2; }
  .g-tile-wide { grid-column: span 2; }
  .review-card { flex: 0 0 calc((100% - 20px) / 2); }
  .ig-post { flex-basis: 220px; }
  .car-arrow.car-prev { left: 8px; }
  .car-arrow.car-next { right: 8px; }
  .reviews-head, .ig-head { flex-direction: column; align-items: flex-start; }

  /* Curriculum tablet */
  .cur-stage summary { grid-template-columns: 80px 1fr 44px; gap: 16px; padding: 20px 16px 20px 0; }
  .cur-num { font-size: 44px; width: 80px; }
  .curriculum::before { display: none; }
  .cur-head h4 { font-size: 22px; }
  .cur-toggle { width: 36px; height: 36px; font-size: 22px; }
  .cur-list { padding: 0 16px 24px 96px; gap: 10px 20px; }

  .instructor-inner, .book-inner, .consequence-inner { grid-template-columns: 1fr; gap: 40px; }
  .consequence { padding: 72px 0 80px; }
  .consequence-title { font-size: 38px; }
  .instructor-photo { max-width: 480px; margin: 0 auto; min-height: 480px; position: relative; top: 0; }

  .course-format { grid-template-columns: 1fr; }
  .format-plus, .format-equals { transform: rotate(90deg); justify-self: center; }


  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .price-card.featured { transform: none; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .container { padding: 0 18px; }

  .hero { padding: 60px 0; }
  .hero-photo { min-height: 320px; max-width: 280px; }
  .hero-photo img { max-width: 280px; max-height: 360px; }
  .hero-photo-tag { display: none; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 24px; }
  .trust-item strong { font-size: 18px; }

  .why-grid, .formats-grid, .pricing-grid, .schedule-grid {
    grid-template-columns: 1fr;
  }
  /* Curriculum mobile: single column list, smaller header */
  .cur-stage summary { grid-template-columns: 56px 1fr 36px; gap: 12px; padding: 16px 12px 16px 0; }
  .cur-num { font-size: 32px; width: 56px; }
  .cur-head h4 { font-size: 19px; }
  .cur-tagline { font-size: 12px; }
  .cur-toggle { width: 32px; height: 32px; font-size: 20px; }
  .cur-list { grid-template-columns: 1fr; padding: 0 16px 20px 76px; gap: 10px; }
  .why-grid-5 { grid-template-columns: 1fr; }
  .why-grid-5 > .why-card:nth-child(5) { max-width: none; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-tile-hero, .g-tile-wide { grid-column: span 1; grid-row: span 1; }
  .g-tile-hero { grid-row: span 2; }
  .review-card { flex: 0 0 85%; min-width: unset; }
  .ig-post { flex-basis: 200px; }
  .sch-card.featured { transform: none; }
  .sch-dates li { grid-template-columns: 70px 1fr auto; gap: 8px; font-size: 13px; }
  .play-btn { width: 56px; height: 56px; font-size: 22px; }

  .urgency-grid { grid-template-columns: 1fr; gap: 24px; }
  .urgency-grid > .urgency-item,
  .urgency-grid > .urgency-item:nth-child(4),
  .urgency-grid > .urgency-item:nth-child(5) { grid-column: auto; }
  .urgency-num { font-size: 44px; }

  .creds-list li { grid-template-columns: 100px 1fr; gap: 12px; font-size: 13px; }
  .creds-list li span { font-size: 12px; }
  .origin-story p { font-size: 16px; }

  .book-form { padding: 24px; }

  .consequence-title { font-size: 30px; }
  .consequence-body p { font-size: 16px; }
  .consequence-emphasis { font-size: 18px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .floating-cta .float-label { display: none; }
  .floating-cta { padding: 14px; }
  .floating-cta-icon { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
