/* ============================================
   Doktor Xabibullayev — Snoring & Apnea Landing
   Theme: "Midnight" — кинематографичная тёмная сцена сна
   Brand alignment: Corel Med (navy + gold), но переинтерпретировано
   ============================================ */

:root {
  /* Midnight palette */
  --c-midnight: #0A1020;         /* основной тёмный фон */
  --c-midnight-2: #131B33;       /* поднятый слой / hover */
  --c-midnight-3: #1E2740;       /* секции на тёмной */
  --c-cream: #F8F4ED;            /* кремовая тёплая бумага */
  --c-cream-2: #EFEADF;          /* подложка карточек на cream */
  --c-paper: #FFFFFF;

  /* Brand */
  --c-navy: #0F1A33;             /* Corel Med navy */
  --c-gold: #D4AF7A;             /* warm light gold (для тёмного фона) */
  --c-gold-deep: #B89968;        /* классический Corel Med gold (на cream) */
  --c-gold-soft: rgba(212, 175, 122, 0.16);

  /* Text */
  --c-ink: #0F1A33;              /* на cream */
  --c-ink-2: #4A5066;            /* secondary */
  --c-on-dark: #E6E8EE;          /* на midnight */
  --c-on-dark-2: #9CA3B5;        /* secondary на тёмном */
  --c-rule-dark: rgba(255, 255, 255, 0.08);
  --c-rule-light: rgba(15, 26, 51, 0.10);

  --c-error: #E2807A;

  --font-display: 'Fraunces', 'Manrope', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --container: 1240px;
  --container-narrow: 920px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--c-midnight); }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 80px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-navy); text-decoration: none; }
a:hover { color: var(--c-gold-deep); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--c-gold-soft); color: var(--c-ink); }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}
h1 {
  font-size: clamp(36px, 6.4vw, 68px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.h1-explainer {
  display: inline;
  font-family: var(--font-body);
  font-size: 0.42em;
  font-weight: 400;
  font-style: normal;
  color: var(--c-on-dark-2, rgba(255,255,255,0.65));
  letter-spacing: 0.01em;
  vertical-align: 0.18em;
  white-space: normal;
  margin: 0 0.15em;
}
@media (max-width: 600px) {
  .h1-explainer { display: block; margin: 6px 0 4px; vertical-align: baseline; font-size: 0.32em; }
}
h2 {
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 400;
  margin-bottom: 20px;
}
h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 500; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.005em; }
p { margin-bottom: 12px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold-deep);
  box-shadow: 0 0 0 0 var(--c-gold-deep);
  animation: pulse 2.8s var(--ease) infinite;
}
.section-navy .eyebrow,
.video-section .eyebrow,
.case-section .eyebrow,
.hero .eyebrow {
  color: var(--c-gold);
}
.section-navy .eyebrow::before,
.video-section .eyebrow::before,
.case-section .eyebrow::before,
.hero .eyebrow::before {
  background: var(--c-gold);
  box-shadow: 0 0 0 0 var(--c-gold);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  70% { box-shadow: 0 0 0 12px transparent; opacity: 0.4; }
  100% { box-shadow: 0 0 0 0 transparent; opacity: 1; }
}

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
@media (min-width: 768px) { section { padding: 100px 0; } }
@media (min-width: 1024px) { section { padding: 128px 0; } }

.section-gray,
.section-cream { background: var(--c-cream); color: var(--c-ink); }
.section-cream-2 { background: var(--c-cream-2); color: var(--c-ink); }
.section-navy { background: var(--c-midnight); color: var(--c-on-dark); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--c-cream); }
.section-navy a { color: var(--c-gold); }

.section-title { text-align: left; margin-bottom: 16px; max-width: 22ch; }
.section-title.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-subtitle {
  text-align: left;
  color: var(--c-ink-2);
  font-size: 17px;
  max-width: 60ch;
  margin: 0 0 56px;
  line-height: 1.6;
}
.section-navy .section-subtitle,
.video-section .section-subtitle,
.case-section .section-subtitle { color: var(--c-on-dark-2); }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}
.section-head.centered { text-align: center; align-items: center; }
.section-head.centered .section-title,
.section-head.centered .section-subtitle { text-align: center; }
.section-head.centered .section-title { margin-left: auto; margin-right: auto; }
.section-head.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* Decorative rule */
.rule-thin {
  width: 48px;
  height: 1px;
  background: var(--c-gold-deep);
  margin: 24px 0;
}
.section-navy .rule-thin { background: var(--c-gold); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--c-gold);
  color: var(--c-midnight);
  box-shadow: 0 8px 28px -10px var(--c-gold);
}
.btn-primary:hover { background: var(--c-gold-deep); color: var(--c-midnight); }

/* on cream backgrounds */
.section-cream .btn-primary,
.section-cream-2 .btn-primary,
section:not(.section-navy):not(.video-section):not(.case-section):not(.hero) .btn-primary {
  background: var(--c-navy);
  color: var(--c-cream);
  box-shadow: 0 8px 28px -10px rgba(15, 26, 51, 0.6);
}
section:not(.section-navy):not(.video-section):not(.case-section):not(.hero) .btn-primary:hover {
  background: var(--c-midnight);
  color: var(--c-gold);
}
.btn-outline {
  background: transparent;
  color: var(--c-on-dark);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--c-gold); color: var(--c-gold); }
section:not(.section-navy):not(.video-section):not(.case-section):not(.hero) .btn-outline {
  color: var(--c-navy);
  border-color: rgba(15, 26, 51, 0.20);
}
section:not(.section-navy):not(.video-section):not(.case-section):not(.hero) .btn-outline:hover {
  border-color: var(--c-navy);
  background: var(--c-navy);
  color: var(--c-cream);
}
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* Breathing pulse on primary hero CTA */
.btn-breathe::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 1px solid var(--c-gold);
  opacity: 0.6;
  animation: breathe 3.6s var(--ease) infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.06); opacity: 0; }
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 237, 0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--c-rule-light);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.header.scrolled { background: rgba(248, 244, 237, 0.96); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand-logo { height: 32px; width: auto; display: block; }
@media (min-width: 768px) { .brand-logo { height: 40px; } }
.nav { display: none; gap: 28px; align-items: center; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-size: 14px;
  color: var(--c-ink);
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--c-gold-deep);
  transition: right 0.3s var(--ease);
}
.nav a:hover { color: var(--c-navy); }
.nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.lang-switch a {
  padding: 6px 8px;
  color: var(--c-ink-2);
  border-bottom: 1px solid transparent;
  text-decoration: none;
}
.lang-switch a + a { margin-left: 4px; }
.lang-switch a.active { color: var(--c-navy); border-bottom-color: var(--c-gold-deep); }
.header-phone {
  color: var(--c-navy);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--c-rule-light);
  border-radius: 999px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.header-phone:hover { border-color: var(--c-gold-deep); background: var(--c-paper); }
@media (max-width: 767px) {
  .header-phone span { display: none; }
  .header-phone { padding: 8px; }
}

/* ===== HERO — Midnight cinematic ===== */
.hero {
  position: relative;
  background: var(--c-midnight);
  color: var(--c-on-dark);
  overflow: hidden;
  padding: 64px 0 80px;
  isolation: isolate;
}
.hero::before {
  /* soft top vignette + star noise */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(212, 175, 122, 0.18), transparent 60%),
    radial-gradient(900px 500px at 20% 110%, rgba(80, 110, 180, 0.18), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero::after {
  /* sound wave at bottom */
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0 60 Q 60 20 120 60 T 240 60 T 360 60 T 480 60 T 600 60 T 720 60 T 840 60 T 960 60 T 1080 60 T 1200 60 T 1320 60 T 1440 60' fill='none' stroke='%23D4AF7A' stroke-width='1.2' stroke-opacity='0.35'/><path d='M0 60 Q 80 30 160 60 T 320 60 T 480 60 T 640 60 T 800 60 T 960 60 T 1120 60 T 1280 60 T 1440 60' fill='none' stroke='%23D4AF7A' stroke-width='1' stroke-opacity='0.18'/></svg>");
  background-size: 100% 120px;
  background-repeat: repeat-x;
  pointer-events: none;
  opacity: 0.9;
  z-index: -1;
}
@media (min-width: 768px) { .hero { padding: 96px 0 120px; } }
.hero h1 { color: var(--c-cream); margin-bottom: 24px; max-width: 18ch; }
.hero h1 em {
  font-style: italic;
  color: var(--c-gold);
  font-weight: 400;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
.hero-sub {
  font-size: 17px;
  color: var(--c-on-dark-2);
  margin-bottom: 28px;
  max-width: 56ch;
  line-height: 1.7;
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-rule-dark);
}
.trust-item {
  font-size: 13px;
  color: var(--c-on-dark-2);
  letter-spacing: 0.02em;
}
.trust-item strong {
  display: block;
  color: var(--c-gold);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

/* Old trust-badges class kept for compatibility but restyled */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-rule-dark);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-on-dark-2);
  font-weight: 500;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.hero-bullets { margin: 0 0 32px; }
.hero-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--c-on-dark);
  line-height: 1.55;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 1px;
  background: var(--c-gold);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-cta .btn { flex: 0 1 auto; min-width: 200px; }
@media (max-width: 480px) { .hero-cta .btn { width: 100%; } }
.hero-social-proof {
  font-size: 13px;
  color: var(--c-on-dark-2);
  letter-spacing: 0.02em;
}

/* Micro-meta line under Hero CTAs — снимает фрикцию */
.cta-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 14px 0 8px;
  font-size: 12px;
  color: var(--c-on-dark-2);
  letter-spacing: 0.04em;
}
.cta-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cta-meta-item::before {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--c-gold);
  flex-shrink: 0;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
}
.cta-meta strong { color: var(--c-cream); font-weight: 600; }

/* trust-line: featured item (для цены) */
.trust-item.trust-item-featured strong { color: var(--c-cream); }
.trust-item.trust-item-featured {
  position: relative;
  padding-left: 16px;
}
.trust-item.trust-item-featured::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 2px;
  background: var(--c-gold);
}

/* Bot-strip — компактная плашка про Telegram-бота под CTA */
.bot-strip {
  margin-top: 32px;
  padding: 18px 22px;
  border: 1px solid rgba(212, 175, 122, 0.25);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(212, 175, 122, 0.06), rgba(212, 175, 122, 0.02));
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  max-width: 560px;
  position: relative;
}
.bot-strip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bot-strip-icon svg { width: 22px; height: 22px; }
.bot-strip-body { line-height: 1.5; }
.bot-strip-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--c-cream);
  margin-bottom: 4px;
}
.bot-strip-title .badge-247 {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1;
}
.bot-strip-text {
  font-size: 13px;
  color: var(--c-on-dark-2);
  margin: 0;
}
.bot-strip-note {
  font-size: 11px;
  color: var(--c-on-dark-2);
  opacity: 0.75;
  margin-top: 6px;
  font-style: italic;
}
.bot-strip-link {
  color: var(--c-gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 175, 122, 0.4);
  white-space: nowrap;
}
.bot-strip-link:hover { color: var(--c-cream); border-color: var(--c-cream); }

/* On cream sections — variation */
.bot-strip.bot-strip-light {
  background: var(--c-paper);
  border-color: var(--c-rule-light);
}
.bot-strip-light .bot-strip-title { color: var(--c-navy); }
.bot-strip-light .bot-strip-text,
.bot-strip-light .bot-strip-note { color: var(--c-ink-2); }
.bot-strip-light .bot-strip-link { color: var(--c-gold-deep); border-color: rgba(184, 153, 104, 0.5); }
.bot-strip-light .bot-strip-link:hover { color: var(--c-navy); border-color: var(--c-navy); }
.bot-strip-light .badge-247 { color: var(--c-gold-deep); border-color: var(--c-gold-deep); }

/* Tertiary CTA — Telegram primary equivalent */
.btn-telegram {
  background: var(--c-cream);
  color: var(--c-midnight);
}
.btn-telegram:hover { background: var(--c-gold); color: var(--c-midnight); }

/* Patient review section — vertical 9:16 player + quote */
.patient-review-section {
  padding: 80px 0;
  background: var(--c-paper, #F5F1EA);
  position: relative;
}
.patient-review-section .container {
  max-width: 1100px;
}
.review-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .review-layout {
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .review-layout {
    grid-template-columns: 360px 1fr;
    gap: 64px;
  }
}
.review-video {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: var(--c-midnight, #0F0F15);
  box-shadow: 0 24px 60px -12px rgba(15, 26, 51, 0.35);
}
@media (min-width: 768px) {
  .review-video { margin: 0; max-width: 100%; }
}
.review-video .video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  background: var(--c-midnight, #0F0F15);
}
.review-video .video-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.review-video .video-play-icon {
  position: relative;
  z-index: 1;
}
.review-video-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 15, 21, 0.78);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.review-content .eyebrow { margin-bottom: 12px; }
.review-content h2 {
  margin-bottom: 20px;
}
.review-quote {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.45;
  color: var(--c-navy);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--c-gold);
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-size: 14px;
  color: var(--c-ink-2, #666);
  margin-bottom: 24px;
}
.review-meta strong { color: var(--c-navy); font-weight: 600; }
.review-meta .dot { color: var(--c-gold); }
.review-cta { margin-top: 8px; }

/* Compact video for USP block — sits inside cream section */
.video-usp {
  max-width: 720px;
  margin: 0 auto 40px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--c-midnight);
  position: relative;
  box-shadow: 0 18px 40px rgba(15, 15, 21, 0.20);
  border: 1px solid var(--c-rule-light, #E5E5E5);
}
.video-usp .video-placeholder { background: var(--c-midnight); }
.video-usp .video-placeholder img { opacity: 0.45; }

/* Placeholder for missing-language video version */
.video-other-lang {
  max-width: 800px;
  margin: 0 auto 28px;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--c-paper, #F5F1EA);
  border: 1px dashed rgba(184, 153, 104, 0.4);
  text-align: center;
}
.video-other-lang-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.video-other-lang-text {
  font-size: 14px;
  color: var(--c-ink-2, #555);
  margin: 0;
}
.video-other-lang a {
  color: var(--c-gold-deep, #9C8050);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}
.video-other-lang.video-other-lang-dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(212, 175, 122, 0.4);
}
.video-other-lang-dark .video-other-lang-title { color: var(--c-cream, #fff); }
.video-other-lang-dark .video-other-lang-text { color: rgba(255,255,255,0.78); }
.video-other-lang-dark a { color: var(--c-gold, #B89968); }

/* Section banner image (16:9 wide, for Surgery block) */
.section-banner {
  max-width: 1000px;
  margin: 0 auto 48px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 15, 21, 0.18);
  aspect-ratio: 16 / 9;
  position: relative;
}
.section-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-banner-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(15,15,21,0.7) 0%, rgba(15,15,21,0) 100%);
  color: var(--c-cream, #fff);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Consultation block — 2-column with side photo */
.consultation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .consultation-grid { grid-template-columns: 0.85fr 1fr; gap: 48px; }
}
.consultation-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 40px rgba(15, 15, 21, 0.15);
  position: relative;
}
@media (min-width: 900px) {
  .consultation-photo {
    position: sticky;
    top: 90px;
  }
}
.consultation-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.consultation-photo-caption {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: rgba(15, 15, 21, 0.78);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
}

/* Case section — portrait alongside quote */
.case-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .case-layout { grid-template-columns: 0.7fr 1.3fr; gap: 56px; }
}
.case-portrait {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 122, 0.2);
}
.case-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-layout .case-quote { text-align: left; margin: 0; }
@media (max-width: 767px) {
  .case-portrait { max-width: 280px; margin: 0 auto; }
  .case-layout .case-quote { text-align: center; }
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 70% 30%, rgba(212, 175, 122, 0.18), transparent 60%),
    linear-gradient(160deg, #1B2440 0%, #0A1020 100%);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(212, 175, 122, 0.18);
}
.hero-photo:not(:has(img))::after {
  content: 'PORTRET';
  color: rgba(212, 175, 122, 0.3);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.4em;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: var(--c-cream);
  font-size: 12px;
  letter-spacing: 0.04em;
  background: linear-gradient(to top, rgba(10, 16, 32, 0.85), transparent);
  padding: 24px 8px 0;
}

/* Compliance disclaimer (после hero) */
.hero-disclaimer {
  background: var(--c-midnight);
  padding: 16px 0 20px;
  text-align: center;
  font-size: 11px;
  color: var(--c-on-dark-2);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--c-rule-dark);
}

/* ===== Video block (theatre dark) ===== */
.video-section {
  background: var(--c-midnight);
  color: var(--c-on-dark);
  position: relative;
}
.video-section h2 { color: var(--c-cream); }
.video-wrapper {
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  box-shadow:
    0 60px 100px -30px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(212, 175, 122, 0.2);
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 122, 0.08), transparent 70%),
    linear-gradient(180deg, #1A2240 0%, #07091A 100%);
  cursor: pointer;
}
.video-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.video-play-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(212, 175, 122, 0.4), 0 0 60px rgba(212, 175, 122, 0.4);
}
.video-placeholder:hover .video-play-icon { transform: scale(1.08); }
.video-play-icon::after {
  content: '';
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--c-midnight);
  margin-left: 6px;
}
.video-placeholder-text {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-on-dark-2);
  position: relative;
  z-index: 1;
}
.video-description {
  text-align: center;
  margin: 32px auto 32px;
  max-width: 680px;
  color: var(--c-on-dark-2);
  font-size: 16px;
  line-height: 1.7;
}
.video-cta { text-align: center; }
.video-cta .btn-note {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--c-on-dark-2);
  letter-spacing: 0.04em;
}

/* ===== Symptoms — minimal grid с тонкими линиями ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-rule-light);
}
@media (min-width: 600px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: transparent;
  border-right: 1px solid var(--c-rule-light);
  border-bottom: 1px solid var(--c-rule-light);
  padding: 32px 28px;
  transition: background 0.3s var(--ease);
}
.card:hover { background: rgba(212, 175, 122, 0.04); }
@media (min-width: 600px) { .cards-grid > .card:nth-child(2n) { border-right: none; } }
@media (min-width: 1024px) {
  .cards-grid > .card { border-right: 1px solid var(--c-rule-light); }
  .cards-grid > .card:nth-child(3n) { border-right: none; }
}
.card-icon {
  font-size: 22px;
  margin-bottom: 16px;
  display: inline-flex;
  width: 44px; height: 44px;
  border: 1px solid var(--c-gold-deep);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: var(--c-gold-soft);
}
.card h3 { margin-bottom: 8px; font-size: 19px; font-family: var(--font-display); font-weight: 500; }
.card h4 { margin-bottom: 8px; font-size: 17px; }
.card p { color: var(--c-ink-2); font-size: 15px; margin: 0; }
.cta-after { text-align: center; margin-top: 48px; }

.emotional-text {
  max-width: 64ch;
  margin: 56px auto 0;
  text-align: center;
  font-size: 19px;
  color: var(--c-navy);
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
}

/* ===== Danger cards (4 risks) — minimal ===== */
.consequence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 56px;
  border-top: 1px solid var(--c-rule-light);
}
@media (min-width: 768px) { .consequence-grid { grid-template-columns: repeat(2, 1fr); } }
.consequence-card {
  background: transparent;
  border-bottom: 1px solid var(--c-rule-light);
  padding: 32px 28px;
}
@media (min-width: 768px) {
  .consequence-card { border-right: 1px solid var(--c-rule-light); }
  .consequence-card:nth-child(2n) { border-right: none; }
}
.consequence-card .card-icon { color: var(--c-gold-deep); background: var(--c-gold-soft); }
.consequence-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 500;
}
.consequence-card p { color: var(--c-ink-2); font-size: 15px; margin: 0; line-height: 1.6; }

.doctor-quote {
  background: transparent;
  border-left: 1px solid var(--c-gold-deep);
  padding: 8px 0 8px 28px;
  margin: 0 auto;
  max-width: 820px;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  color: var(--c-navy);
  line-height: 1.55;
}
.section-navy .doctor-quote,
.video-section .doctor-quote { color: var(--c-cream); border-left-color: var(--c-gold); }
.doctor-quote-author {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  color: var(--c-ink-2);
  letter-spacing: 0.04em;
}
.section-navy .doctor-quote-author,
.video-section .doctor-quote-author { color: var(--c-on-dark-2); }

/* ===== USP — Split-screen with central golden divider ===== */
.usp-section {
  background: var(--c-midnight);
  color: var(--c-on-dark);
  position: relative;
}
.usp-section h2,
.usp-section h3 { color: var(--c-cream); }
.usp-section .section-subtitle { color: var(--c-on-dark-2); }

.usp-diagram {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 16px 0 56px;
  position: relative;
  border-top: 1px solid var(--c-rule-dark);
}
@media (min-width: 900px) {
  .usp-diagram { grid-template-columns: 1fr 1fr; }
  .usp-diagram::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 64px;
    bottom: 64px;
    width: 1px;
    background: var(--c-gold);
    opacity: 0.4;
  }
}
.usp-center {
  grid-column: 1 / -1;
  display: inline-flex;
  align-self: center;
  justify-self: center;
  align-items: center;
  gap: 12px;
  margin: 32px auto 0;
  padding: 12px 28px;
  border: 1px solid var(--c-gold);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(212, 175, 122, 0.06);
}
.usp-center::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
}
.usp-arrows, .usp-cards { display: none; }
.usp-card {
  padding: 48px 32px;
  border-bottom: 1px solid var(--c-rule-dark);
  position: relative;
  background: transparent;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .usp-card[data-pos="1"] { padding-right: 48px; }
  .usp-card[data-pos="2"] { padding-left: 48px; border-bottom: 1px solid var(--c-rule-dark); }
  .usp-card[data-pos="3"] {
    grid-column: 1 / -1;
    border-top: 1px solid var(--c-rule-dark);
    border-bottom: none;
    padding: 56px 32px 8px;
    text-align: center;
    align-items: center;
  }
  .usp-card[data-pos="3"] .usp-card-when,
  .usp-card[data-pos="3"] ul { text-align: left; }
  .usp-card[data-pos="3"] .usp-card-result { text-align: center; max-width: 64ch; }
}
.usp-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.usp-card h3 {
  font-size: clamp(28px, 3.4vw, 36px);
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 400;
}
.usp-card-when {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-on-dark-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 12px 0 10px;
}
.usp-card ul { padding: 0; margin: 0 0 16px; max-width: 56ch; }
.usp-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-on-dark);
}
.usp-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--c-gold);
}
.usp-card-result {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--c-rule-dark);
  font-size: 14px;
  color: var(--c-cream);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  max-width: 56ch;
}

.usp-trust-block {
  border-top: 1px solid var(--c-rule-dark);
  padding-top: 40px;
  max-width: 880px;
  margin: 56px auto 0;
}
.usp-trust-block h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-weight: 400;
}
.usp-trust-block p {
  font-size: 16px;
  color: var(--c-on-dark);
  margin: 0;
  line-height: 1.7;
}

/* ===== Diagnostics — chip-like rows ===== */
.diag-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-rule-light);
}
@media (min-width: 768px) { .diag-grid { grid-template-columns: repeat(2, 1fr); } }
.diag-card {
  background: transparent;
  border-bottom: 1px solid var(--c-rule-light);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .diag-card { border-right: 1px solid var(--c-rule-light); }
  .diag-card:nth-child(2n) { border-right: none; }
}
.diag-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.diag-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-gold-soft);
  border: 1px solid var(--c-gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.diag-card h3 { font-size: 19px; margin: 0; font-family: var(--font-display); font-weight: 500; }
.diag-card p { font-size: 15px; color: var(--c-ink); margin: 6px 0; line-height: 1.55; }
.diag-card .diag-meta { font-size: 13px; color: var(--c-ink-2); margin-top: 4px; }
.diag-card .diag-price {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-gold-deep);
  letter-spacing: -0.01em;
}

/* ===== Surgery methods cards ===== */
.methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-rule-light);
}
@media (min-width: 768px) { .methods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .methods-grid { grid-template-columns: repeat(3, 1fr); } }
.method-card {
  background: transparent;
  border-bottom: 1px solid var(--c-rule-light);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .method-card { border-right: 1px solid var(--c-rule-light); }
  .method-card:nth-child(2n) { border-right: none; }
}
@media (min-width: 1024px) {
  .method-card { border-right: 1px solid var(--c-rule-light); }
  .method-card:nth-child(2n) { border-right: 1px solid var(--c-rule-light); }
  .method-card:nth-child(3n) { border-right: none; }
}
.method-card h4 {
  font-size: 20px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--c-navy);
}
.method-card .method-meta { font-size: 14px; color: var(--c-ink-2); margin-bottom: 6px; line-height: 1.55; }
.method-card .method-meta strong { color: var(--c-navy); font-weight: 600; }
.method-card .method-price {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--c-gold-deep);
  letter-spacing: -0.01em;
}

.included-block {
  margin-top: 48px;
  padding: 32px 0 0;
  border-top: 1px solid var(--c-rule-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.included-block h3 {
  margin-bottom: 18px;
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 500;
}
.included-block ul { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0; }
@media (min-width: 768px) { .included-block ul { grid-template-columns: repeat(2, 1fr); } }
.included-block li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--c-ink);
  line-height: 1.55;
}
.included-block li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 1px;
  background: var(--c-gold-deep);
}

/* ===== CPAP service cards ===== */
.cpap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-rule-light);
}
@media (min-width: 768px) { .cpap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cpap-grid { grid-template-columns: repeat(3, 1fr); } }
.cpap-card {
  background: transparent;
  border-bottom: 1px solid var(--c-rule-light);
  padding: 28px 24px;
}
@media (min-width: 768px) {
  .cpap-card { border-right: 1px solid var(--c-rule-light); }
  .cpap-card:nth-child(2n) { border-right: none; }
}
@media (min-width: 1024px) {
  .cpap-card { border-right: 1px solid var(--c-rule-light); }
  .cpap-card:nth-child(2n) { border-right: 1px solid var(--c-rule-light); }
  .cpap-card:nth-child(3n) { border-right: none; }
}
.cpap-card .card-icon { width: 38px; height: 38px; font-size: 18px; margin-bottom: 12px; }
.cpap-card h4 { margin-bottom: 8px; font-size: 16px; font-family: var(--font-display); font-weight: 500; }
.cpap-card p { font-size: 14px; color: var(--c-ink-2); margin: 0; line-height: 1.55; }

/* ===== Myth / Truth ===== */
.myths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .myths-grid { grid-template-columns: repeat(2, 1fr); } }
.myth-card {
  background: var(--c-paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-rule-light);
}
.myth-card-myth, .myth-card-truth {
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.55;
}
.myth-card-myth {
  background: var(--c-cream-2);
  border-bottom: 1px solid var(--c-rule-light);
  color: var(--c-ink-2);
}
.myth-card-truth { background: var(--c-paper); color: var(--c-ink); }
.myth-label {
  display: inline-block;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-right: 8px;
  margin-bottom: 4px;
}
.myth-card-myth .myth-label { color: #B86B5E; }
.myth-card-truth .myth-label { color: var(--c-gold-deep); }

/* ===== About doctor — editorial split ===== */
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .doctor-grid { grid-template-columns: 1fr 1.3fr; gap: 80px; } }
.doctor-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 70% 30%, rgba(212, 175, 122, 0.2), transparent 60%),
    linear-gradient(160deg, #1B2440 0%, #0A1020 100%);
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(15, 26, 51, 0.35);
}
.doctor-photo:not(:has(img))::after {
  content: 'PORTRET';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 175, 122, 0.35);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.4em;
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-photo-caption {
  margin-top: 14px;
  font-size: 12px;
  color: var(--c-ink-2);
  letter-spacing: 0.04em;
  text-align: center;
}
.doctor-info h2 {
  margin-bottom: 8px;
  font-size: clamp(32px, 4vw, 44px);
}
.doctor-title {
  color: var(--c-ink-2);
  font-size: 16px;
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.doctor-credentials { margin-bottom: 28px; }
.doctor-credentials h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold-deep);
  margin-bottom: 12px;
  font-weight: 700;
  font-family: var(--font-body);
}
.doctor-credentials ul { padding: 0; margin-bottom: 16px; }
.doctor-credentials li {
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 4px;
  color: var(--c-ink);
}

.principles-block {
  background: var(--c-midnight);
  color: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.principles-block::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 122, 0.18), transparent 70%);
  pointer-events: none;
}
.principles-block h3 {
  color: var(--c-cream);
  font-size: 22px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 400;
}
.principles-block ul { padding: 0; position: relative; }
.principles-block li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}
.principles-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-weight: 700;
}

.doctor-personal {
  border-left: 1px solid var(--c-gold-deep);
  padding: 8px 0 8px 28px;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--c-navy);
  margin: 32px 0;
  line-height: 1.6;
  font-weight: 400;
}
.doctor-personal-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold-deep);
  margin-bottom: 12px;
  font-style: normal;
}

/* ===== Stats — huge cinematic numbers ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-rule-light);
}
@media (min-width: 600px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: transparent;
  border-right: 1px solid var(--c-rule-light);
  border-bottom: 1px solid var(--c-rule-light);
  padding: 32px 20px;
  text-align: center;
}
.stats-grid > .stat-card:nth-child(2n) { border-right: none; }
@media (min-width: 600px) {
  .stats-grid > .stat-card { border-right: 1px solid var(--c-rule-light); }
  .stats-grid > .stat-card:nth-child(4n) { border-right: none; }
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 96px);
  color: var(--c-gold-deep);
  line-height: 0.95;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 12px;
  color: var(--c-ink-2);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stats-extra {
  margin-top: 56px;
  padding: 32px 0 0;
  border-top: 1px solid var(--c-rule-light);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.stats-extra h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
}
.stats-extra ul { padding: 0; display: grid; gap: 10px; }
.stats-extra li {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  color: var(--c-ink);
}
.stats-extra li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--c-gold-deep);
}

/* ===== Golden case (dark theatre) ===== */
.case-section {
  background: var(--c-midnight);
  color: var(--c-cream);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.case-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 50% 50%, rgba(212, 175, 122, 0.10), transparent 70%);
  pointer-events: none;
}
.case-section .section-title { color: var(--c-cream); }
.case-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.45;
  color: var(--c-cream);
  position: relative;
}
.case-quote p { margin-bottom: 24px; }
.case-quote .case-highlight {
  display: inline;
  color: var(--c-gold);
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
  background: linear-gradient(transparent 70%, rgba(212, 175, 122, 0.25) 70%);
  padding: 0 2px;
}
.case-author {
  display: block;
  margin-top: 24px;
  font-size: 13px;
  font-family: var(--font-body);
  font-style: normal;
  color: var(--c-on-dark-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.case-cta { text-align: center; margin-top: 56px; }

/* ===== Consultation timeline ===== */
.timeline { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--c-rule-light); }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-rule-light);
  align-items: baseline;
}
.timeline-time {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--c-gold-deep);
  letter-spacing: -0.01em;
}
.timeline-content h4 {
  margin-bottom: 6px;
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 500;
}
.timeline-content p { font-size: 14px; color: var(--c-ink-2); margin: 0; line-height: 1.55; }

.consult-includes {
  border-top: 1px solid var(--c-rule-light);
  padding-top: 32px;
  max-width: 800px;
  margin: 48px auto 0;
}
.consult-includes h3 {
  font-size: 19px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-weight: 500;
}
.consult-includes ul { padding: 0; }
.consult-includes li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--c-ink);
}
.consult-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--c-gold-deep);
}

/* ===== Prices ===== */
.price-section { background: var(--c-cream-2); }
.price-block {
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 20px;
  border: 1px solid var(--c-rule-light);
}
.price-block h3 {
  font-size: 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-rule-light);
  font-family: var(--font-display);
  font-weight: 500;
}
.price-block h3 span {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--c-gold-deep);
  color: var(--c-gold-deep);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 24px;
  margin-right: 12px;
  vertical-align: 2px;
  font-family: var(--font-body);
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid var(--c-rule-light); }
.price-table tr:last-child { border-bottom: none; }
.price-table td {
  padding: 16px 8px;
  font-size: 15px;
  vertical-align: top;
  line-height: 1.5;
}
.price-table td:first-child { color: var(--c-ink); padding-right: 16px; }
.price-table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--c-gold-deep);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  .price-table td { font-size: 14px; padding: 12px 6px; }
  .price-block { padding: 24px 22px; }
}
.price-cpap-note {
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 20px;
  border: 1px solid var(--c-rule-light);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink);
}
.price-cpap-note h3 {
  font-size: 20px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-rule-light);
  font-family: var(--font-display);
  font-weight: 500;
}
.price-extras-block {
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  border: 1px solid var(--c-rule-light);
}
.price-extras-block ul { padding: 0; display: grid; gap: 10px; }
@media (min-width: 768px) { .price-extras-block ul { grid-template-columns: repeat(2, 1fr); } }
.price-extras-block li { font-size: 14px; line-height: 1.55; }

.compliance-disclaimer {
  margin-top: 40px;
  font-size: 12px;
  color: var(--c-ink-2);
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  padding: 16px 0 0;
  border-top: 1px solid var(--c-rule-light);
  letter-spacing: 0.02em;
}

/* ===== FAQ ===== */
.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--c-rule-light); }
.faq-item {
  border: none;
  border-bottom: 1px solid var(--c-rule-light);
  border-radius: 0;
  margin: 0;
  background: transparent;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--c-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  transition: color 0.25s var(--ease);
}
.faq-question:hover { color: var(--c-gold-deep); background: transparent; }
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--c-rule-light);
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.faq-item.open .faq-toggle { border-color: var(--c-gold-deep); transform: rotate(180deg); }
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--c-gold-deep);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 10px; height: 1px; }
.faq-toggle::after { width: 1px; height: 10px; transition: opacity 0.3s var(--ease); }
.faq-item.open .faq-toggle::after { opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner { padding: 0 40px 24px 0; font-size: 15px; line-height: 1.7; color: var(--c-ink); }
.faq-item.open .faq-answer { max-height: 1200px; }

/* ===== Final CTA + Contacts ===== */
.final-cta-form {
  max-width: 560px;
  margin: 0 auto 64px;
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--c-rule-light);
  box-shadow: 0 30px 60px -30px rgba(15, 26, 51, 0.25);
}
.final-cta-form h3 {
  margin-bottom: 6px;
  font-size: 24px;
  font-family: var(--font-display);
  font-weight: 500;
}
.final-cta-form-sub {
  color: var(--c-ink-2);
  font-size: 14px;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink-2);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-rule-light);
  border-radius: 8px;
  font: inherit;
  background: var(--c-paper);
  color: var(--c-ink);
  transition: border-color 0.2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-gold-deep);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--c-ink-2);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-checkbox input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--c-gold-deep); }
.form-note {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--c-ink-2);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 768px) { .contacts-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.contact-info h3 {
  margin-bottom: 18px;
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 500;
}
.contact-info p { font-size: 15px; margin-bottom: 10px; line-height: 1.55; }
.contact-info a { color: var(--c-navy); font-weight: 500; border-bottom: 1px solid var(--c-gold-deep); }
.contact-info a:hover { color: var(--c-gold-deep); }
.contacts-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-cream-2);
  border: 1px solid var(--c-rule-light);
}
.contacts-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== Footer (deep midnight) ===== */
.footer {
  background: var(--c-midnight);
  color: rgba(255,255,255,0.78);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-rule-dark);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 {
  color: var(--c-cream);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  font-weight: 700;
  font-family: var(--font-body);
}
.footer ul li { margin-bottom: 8px; font-size: 14px; }
.footer a { color: rgba(255,255,255,0.78); border-bottom: none; }
.footer a:hover { color: var(--c-gold); }
.footer-logo { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.6; max-width: 38ch; }
.footer-bottom {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) { .footer-bottom { grid-template-columns: 2fr 1fr; align-items: end; } }
.footer-bottom-right { text-align: left; }
@media (min-width: 768px) { .footer-bottom-right { text-align: right; } }
.footer-disclaimer { line-height: 1.7; }

/* ===== Sticky Mobile Bar (dark) ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--c-midnight);
  border-top: 1px solid var(--c-rule-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 68px;
  backdrop-filter: blur(10px);
}
.sticky-bar a, .sticky-bar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-cream);
  background: transparent;
  border: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sticky-bar > * { border-right: 1px solid var(--c-rule-dark); }
.sticky-bar > *:last-child { border-right: none; }
.sticky-bar a:hover, .sticky-bar button:hover { color: var(--c-gold); }
.sticky-bar svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (min-width: 768px) {
  .sticky-bar { display: none; }
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 32, 0.85);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  backdrop-filter: blur(8px);
}
.modal-backdrop.open { display: flex; animation: modalFade 0.25s var(--ease); }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  margin: auto 0;
  position: relative;
  animation: modalSlide 0.3s var(--ease);
  border: 1px solid var(--c-rule-light);
}
@keyframes modalSlide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--c-ink);
  line-height: 1;
}
.modal-close:hover { background: var(--c-cream-2); }
.modal h3 {
  margin-bottom: 6px;
  font-size: 24px;
  font-family: var(--font-display);
  font-weight: 500;
}
.modal-sub {
  color: var(--c-ink-2);
  font-size: 14px;
  margin-bottom: 24px;
}
.modal-alt {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--c-rule-light);
  text-align: center;
  font-size: 13px;
  color: var(--c-ink-2);
}
.modal-alt-buttons { display: flex; gap: 10px; margin-top: 12px; }
.modal-alt-buttons a {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  background: var(--c-cream);
  color: var(--c-navy);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  border: 1px solid var(--c-rule-light);
}
.modal-alt-buttons a:hover { background: var(--c-navy); color: var(--c-cream); border-color: var(--c-navy); }
.modal-disclaimer {
  margin-top: 18px;
  font-size: 11px;
  color: var(--c-ink-2);
  text-align: center;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.shown { display: block; }
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-midnight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}

/* ===== Utility / Animations ===== */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

/* Fade-up on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
