/* ═══════════════════════════════════════════
   DARK OLIVE BRAND SYSTEM
   Dark Olive #2E311E · Muted Gold #E1AF81
   Muted Eucalyptus #5F6D4C · Pale Sage #79927D
   Skipping Stone #B1BFB0 · Font: Montserrat
═══════════════════════════════════════════ */
:root {
  /* Тёмные — dark olive */
  --navy:        #2E311E;   /* DARK OLIVE — основной тёмный */
  --navy-body:   #1A1C10;   /* глубокий оливковый фон */
  --navy-mid:    #252817;   /* тёмная зелень */
  --navy-light:  #3D4228;   /* средний оливковый */
  /* Золото — Muted Gold */
  --gold:        #E1AF81;   /* MUTED GOLD #E1AF81 */
  --gold-light:  #F5E8D4;   /* светлый тёплый кремовый */
  --gold-dark:   #B8865A;   /* тёмное золото */
  /* Sage — зелёные акценты */
  --sage:        #5F6D4C;   /* MUTED EUCALYPTUS */
  --sage-light:  #79927D;   /* PALE SAGE */
  --sage-muted:  #B1BFB0;   /* SKIPPING STONE */
  /* Amber — акцент цифр (через muted gold) */
  --amber:       #E1AF81;   /* Muted Gold как числовой акцент */
  --amber-light: #FBF0E4;
  /* Светлые */
  --cream:       #F3F5EF;   /* лёгкий sage-tinted cream */
  --cream-mid:   #E8EDDF;   /* Pale Sage светлый */
  --white:       #FFFFFF;
  /* Текст */
  --text:        #2E311E;   /* DARK OLIVE */
  --text-mid:    #3D4228;   /* оливковый средний */
  --text-light:  #5F6D4C;   /* MUTED EUCALYPTUS */
  /* Статус */
  --ok:          #5F6D4C;   /* MUTED EUCALYPTUS */
  --ok-light:    #EBF0E7;
  /* Градиенты */
  --grad-navy:   linear-gradient(135deg, #3D4228 0%, #2E311E 100%);
  --grad-gold:   linear-gradient(135deg, #E1AF81 0%, #B8865A 100%);
  --grad-amber:  linear-gradient(135deg, #E1AF81 0%, #C49060 100%);
  --grad-cream:  linear-gradient(135deg, #F3F5EF 0%, #E8EDDF 100%);
  --phi: 1.618;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══ LAYOUT ═══ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--navy); }
.section-navy { background: var(--navy-mid); }
.section-cream { background: var(--cream-mid); }
.section-white { background: var(--white); }

.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage); margin-bottom: 16px;
}
.section-tag-light { color: rgba(121,146,125,0.85); }
.section-title {
  font-size: 44px; font-weight: 900; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 20px;
}
.section-title-lg { font-size: 52px; }
.section-desc { font-size: 18px; color: var(--text-mid); max-width: 620px; line-height: 1.7; }
.section-desc-light { color: rgba(255,255,255,0.65); }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-gold { color: var(--gold); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-block; padding: 16px 36px;
  border-radius: 10px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 16px;
  cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s;
  text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--grad-gold);
  color: var(--navy); border-bottom: 3px solid #8A6030;
  box-shadow: 0 6px 28px rgba(225,175,129,0.45);
}
.btn-gold:hover { box-shadow: 0 10px 36px rgba(225,175,129,0.6); }
.btn-navy {
  background: var(--navy);
  color: #fff; border-bottom: 3px solid #1A1C10;
}
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-lg { padding: 20px 48px; font-size: 18px; border-radius: 12px; }
.btn-xl { padding: 24px 56px; font-size: 20px; border-radius: 12px; }

/* ═══ HEADER ═══ */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(46,49,30,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(225,175,129,0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.logo {
  font-weight: 900; font-size: 24px; letter-spacing: 3px;
  color: var(--white);
}
.logo span { color: var(--gold); }
.header-badges { display: flex; gap: 12px; }
.header-badge {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(225,175,129,0.2);
  padding: 5px 12px; border-radius: 100px;
  white-space: nowrap;
}
.header-right { display: flex; align-items: center; gap: 20px; }
.header-phone {
  font-size: 14px; font-weight: 700; color: var(--white);
  transition: color .2s; display: block; line-height: 1.4;
}
.header-phone:hover { color: var(--gold); }
.header-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5F6D4C;
  box-shadow: 0 0 6px #5F6D4C;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* ═══ HERO ═══ */
.hero {
  background: var(--navy-body);   /* Dark Olive — #1A1C10 */
  position: relative; overflow: hidden;
  padding: 50px 0 0;
}
/* Золотое сечение — декоративная спираль */
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,175,129,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,66,40,0.8) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 56px; align-items: end;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(225,175,129,0.12);
  border: 1px solid rgba(225,175,129,0.3);
  color: var(--gold); padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 58px; font-weight: 900; color: var(--white);
  line-height: 1.08; letter-spacing: -2px; margin-bottom: 12px;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: 20px; color: rgba(255,255,255,0.55);
  line-height: 1.6; margin-bottom: 20px;
}
li.hero-sub:not(:last-child) {
  margin-bottom: 5px;
}
li.hero-sub {
  list-style-type: none;
}
.hero-price-card {
  background: rgba(225,175,129,0.1);
  border: 1.5px solid rgba(225,175,129,0.3);
  border-radius: 20px; padding: 28px 32px; margin-bottom: 36px;
}
.hpc-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.hpc-amount {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px;
}
.hpc-num {
  font-size: 56px; font-weight: 900; color: var(--white);
  letter-spacing: -2px; line-height: 1;
}
.hpc-per { font-size: 20px; color: rgba(255,255,255,0.5); }
.hpc-day { font-size: 15px; color: rgba(255,255,255,0.4); }
.hpc-includes {
  display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 16px; overflow: hidden;
}
.hpc-pill {
  font-size: 12px; font-weight: 500;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  padding: 5px 12px; border-radius: 100px;
}
.hero-cta { display: flex; flex-direction: column; gap: 14px; }
.hero-cta-note {
  font-size: 13px; color: rgba(255,255,255,0.3); text-align: center;
}

/* Hero — правая: фото пациента */
.hero-photo-col {
  position: relative;
  align-self: stretch;
  display: flex; align-items: flex-end;
}
/* Декоративная спираль φ за фото */
.hero-photo-spiral {
  position: absolute; top: -60px; right: -60px;
  width: 360px; height: 360px;
  pointer-events: none; z-index: 0;
  opacity: 0.6;
}
.hero-photo-frame {
  position: relative; z-index: 1;
  width: 100%;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  /* Золотое сечение: высота = ширина × φ */
  aspect-ratio: 1 / 1.618;
  border: 1px solid rgba(225,175,129,0.25);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(225,175,129,0.12);
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: grayscale(10%) contrast(1.05);
}
/* Золотой градиент снизу поверх фото */
.hero-photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(46,49,30,0.85) 0%,
    rgba(46,49,30,0.3) 35%,
    transparent 65%
  );
}
/* Значок Care Plan поверх фото */
.hero-photo-badge {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  z-index: 2;
  background: rgba(46,49,30,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(225,175,129,0.3);
  border-radius: 16px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-photo-badge-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero-photo-badge-text strong {
  display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px;
}
.hero-photo-badge-text span {
  font-size: 12px; color: rgba(255,255,255,0.5);
}
/* Золотая рамка — декор */
.hero-photo-accent {
  position: absolute; top: 24px; right: -12px; z-index: 2;
  background: var(--grad-gold);
  color: var(--navy); font-size: 11px; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(225,175,129,0.5);
}

/* ═══ STATS ═══ */
.stats-bar { background: var(--white); box-shadow: 0 4px 24px rgba(46,49,30,0.08); }
.stats-inner {
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.stat-item { padding: 32px 20px; text-align: center; }
.stat-item + .stat-item { border-left: 1px solid #E5EAD8; }
.stat-num {
  font-size: 40px; font-weight: 900;
  color: var(--navy); letter-spacing: -1.5px;
  line-height: 1; margin-bottom: 6px;
}
.stat-num .acc { color: var(--amber); }
.stat-label { font-size: 13px; color: var(--text-light); line-height: 1.4; }

/* ═══ WHAT IS CARE PLAN ═══ */
.careplan-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.careplan-visual {
  background: var(--navy);
  border-radius: 28px; padding: 48px;
  position: relative; overflow: hidden;
}
.careplan-visual::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(225,175,129,0.08);
}
.cp-vs {
  display: flex; flex-direction: column; gap: 16px;
}
.cp-vs-row {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center;
}
.cp-box {
  border-radius: 14px; padding: 16px 20px;
}
.cp-box-bad {
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.2);
}
.cp-box-good {
  background: rgba(225,175,129,0.1);
  border: 1px solid rgba(225,175,129,0.3);
}
.cp-box .lbl { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.cp-box-bad .lbl { color: rgba(220,38,38,0.7); }
.cp-box-good .lbl { color: var(--gold); }
.cp-box .val { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.3; }
.cp-arrow { font-size: 22px; color: var(--gold); text-align: center; }
.cp-total {
  margin-top: 8px; padding: 16px 20px;
  background: rgba(225,175,129,0.15);
  border: 1px solid rgba(225,175,129,0.4);
  border-radius: 14px; text-align: center;
}
.cp-total .t { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.cp-total .v { font-size: 24px; font-weight: 900; color: var(--gold); letter-spacing: -0.5px; }
.cp-total .sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

.careplan-text { }
.careplan-text h2 { font-size: 40px; font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px; }
.careplan-text h2 em { color: var(--gold); font-style: normal; }
.careplan-points {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  padding-left: 40px;
  margin-top: 28px;
}
/* Вертикальная пунктирная линия */
.careplan-points::before {
  content: '';
  position: absolute;
  left: 19px; /* центр кружка 38px / 2 */
  top: 19px;
  bottom: 19px;
  width: 0;
  border-left: 2px dashed rgba(225,175,129,0.45);
  pointer-events: none;
  z-index: 0;
}
.cp-point {
  display: flex; gap: 20px; align-items: flex-start;
  position: relative; z-index: 1;
  margin-bottom: 36px;
}
.cp-point:last-child { margin-bottom: 0; }
.cp-dot {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px var(--white), 0 0 0 6px rgba(225,175,129,0.25);
  margin-left: -40px;
  position: relative; z-index: 2;
}
.cp-dot svg { width: 16px; height: 16px; }
.cp-point-text { padding-top: 8px; }
.cp-point-text strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.cp-point-text span { font-size: 14px; color: var(--text-mid); line-height: 1.55; }

/* ═══ PRICING ═══ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.price-card {
  background: var(--white); border-radius: 24px;
  border: 1.5px solid #DDE3D4;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(46,49,30,0.12); }
.price-card-featured {
  background: var(--navy);
  border-color: rgba(225,175,129,0.4);
  transform: scale(1.04);
  box-shadow: 0 24px 56px rgba(46,49,30,0.25);
}
.price-card-featured:hover { transform: scale(1.04) translateY(-6px); }
.price-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid #E5EAD8;
}
.price-card-featured .price-header { border-color: rgba(225,175,129,0.15); }
.price-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--grad-gold); color: var(--navy);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.price-name {
  font-size: 20px; font-weight: 700; margin-bottom: 6px;
}
.price-card-featured .price-name { color: #fff; }
.price-desc { font-size: 13px; color: var(--text-light); }
.price-card-featured .price-desc { color: rgba(255,255,255,0.5); }
.price-body { padding: 24px 32px; }
.price-monthly {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px;
}
.price-monthly-num {
  font-size: 44px; font-weight: 900; letter-spacing: -1.5px; line-height: 1;
  color: var(--navy);
}
.price-card-featured .price-monthly-num { color: var(--gold); }
.price-monthly-per { font-size: 16px; color: var(--text-light); }
.price-card-featured .price-monthly-per { color: rgba(255,255,255,0.4); }
.price-day { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.price-card-featured .price-day { color: rgba(255,255,255,0.4); }

.price-breakdown { margin-bottom: 28px; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid #E2E8D5;
  font-size: 14px;
}
.price-card-featured .price-row { border-color: rgba(255,255,255,0.07); }
.price-row:last-child { border-bottom: none; }
.price-row-lbl { color: var(--text-mid); }
.price-card-featured .price-row-lbl { color: rgba(255,255,255,0.55); }
.price-row-val { font-weight: 700; color: var(--text); }
.price-card-featured .price-row-val { color: #fff; }
.price-row-val.gold { color: var(--gold-dark); }
.price-card-featured .price-row-val.gold { color: var(--gold); }
.price-total-row {
  display: flex; justify-content: space-between;
  background: #E8EDDF; border-radius: 10px;
  padding: 12px 16px; margin-top: 16px;
  font-size: 13px;
}
.price-card-featured .price-total-row { background: rgba(225,175,129,0.1); }
.price-total-row .lbl { color: var(--text-light); }
.price-card-featured .price-total-row .lbl { color: rgba(255,255,255,0.4); }
.price-total-row .val { font-weight: 700; color: var(--text-mid); font-size: 14px; }
.price-card-featured .price-total-row .val { color: rgba(255,255,255,0.6); }

.price-footer { padding: 0 32px 32px; }
.price-note {
  font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px;
  line-height: 1.5;
}
.price-card-featured .price-note { color: rgba(255,255,255,0.3); }

/* ═══ ALIGNER MODELS ═══ */
.card_eligner {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-top:56px;
}
.models-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px;
}
/* Каждая карточка — золотое сечение: width auto, height = width * 1.618 */
.model-card {
  background: var(--white); border-radius: 20px;
  border: 1.5px solid #DDE3D4;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.model-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(46,49,30,0.1); }
.model-visual {
  aspect-ratio: 1 / 1.618;
  background: var(--grad-navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 24px;
}
.model-visual::before {
  content: ''; position: absolute;
  top: -30%; left: -30%;
  width: 120%; height: 120%;
  background: radial-gradient(circle at 38.2% 61.8%, rgba(225,175,129,0.15) 0%, transparent 60%);
}
/* Декоративная дуга — элайнер */
.aligner-arch {
  width: 100%; position: relative; z-index: 1;
}
.model-info { padding: 20px 22px 24px; }
.model-type {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.model-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.model-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.model-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.model-chip {
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
  background: rgba(95,109,76,0.1); color: var(--sage);
  border: 1px solid rgba(95,109,76,0.2);
}

/* Большой элайнер — 2 колонки, акцент */
.model-card-wide {
  grid-column: span 2;
}
.model-card-wide .model-visual {
  aspect-ratio: 2.618 / 1.618; /* Двойное золотое сечение */
}

/* ═══ WHATS INCLUDED ═══ */
.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
.included-card {
  background: var(--white); border-radius: 18px;
  border: 1.5px solid #DDE3D4; padding: 28px;
}
.included-icon {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 20px;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px var(--white), 0 0 0 6px rgba(225,175,129,0.25);
  flex-shrink: 0;
}
.included-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.included-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.included-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--text-mid); line-height: 1.5;
}
.included-list li::before {
  content: '✓'; color: var(--ok); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.not-included { color: var(--text-light); font-size: 13px; margin-top: 8px; }
.not-included::before { content: '→ '; }

/* ═══ GUARANTEES ═══ */
.guarantees-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.guarantee-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(225,175,129,0.2);
  border-radius: 24px; padding: 36px 32px;
  position: relative; overflow: hidden;
}
.guarantee-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(225,175,129,0.05);
}
.guarantee-num {
  font-size: 64px; font-weight: 900;
  color: rgba(225,175,129,0.12); line-height: 1;
  position: absolute; top: 16px; right: 24px;
  letter-spacing: -3px;
}
.guarantee-icon { display: none; }
.guarantee-title {
  font-size: 20px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; line-height: 1.3;
  position: relative; z-index: 1;
}
.guarantee-title em { color: var(--gold); font-style: normal; }
.guarantee-desc {
  font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65;
  position: relative; z-index: 1;
}
.guarantee-quote {
  margin-top: 20px; padding: 16px 20px;
  background: rgba(225,175,129,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  font-size: 13px; color: rgba(255,255,255,0.65);
  font-style: italic; line-height: 1.6;
  position: relative; z-index: 1;
}

/* ═══ PAUSE FEATURE ═══ */
.pause-block {
  background: var(--navy-light);
  border-radius: 28px; padding: 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
.pause-block::before {
  content: '⏸';
  position: absolute; right: -30px; top: -40px;
  font-size: 240px; line-height: 1;
  opacity: 0.04;
}
.pause-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(225,175,129,0.15);
  border: 1px solid rgba(225,175,129,0.3);
  color: var(--gold); padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.pause-block h3 {
  font-size: 36px; font-weight: 900; color: #fff;
  line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px;
}
.pause-block h3 em { color: var(--gold); font-style: normal; }
.pause-block p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.pause-conditions { display: flex; flex-direction: column; gap: 16px; }
.pause-cond {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 20px;
}
.pause-cond-ico { display: none; }
.pause-cond strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pause-cond span { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ═══ HOW TO START ═══ */
.start-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px;
  position: relative;
}
/* Сквозная пунктирная линия через все шаги */
.start-steps::before {
  content: '';
  position: absolute;
  top: 28px; /* центр кружка */
  left: calc(12.5%); /* от центра первого кружка */
  right: calc(12.5%); /* до центра последнего кружка */
  height: 0;
  border-top: 2px dashed rgba(225,175,129,0.45);
  pointer-events: none;
  z-index: 0;
}
.start-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; padding: 0 16px;
  position: relative; z-index: 1;
  text-align: center;
}
.step-circle {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: var(--navy);
  box-shadow: 0 0 0 6px var(--cream-mid), 0 0 0 7px rgba(225,175,129,0.25);
  position: relative; z-index: 2;
}
.start-step h4 { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.start-step p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.start-step .chip {
  font-size: 12px; font-weight: 600; color: var(--ok);
  background: var(--ok-light); padding: 4px 12px; border-radius: 100px;
  width: fit-content;
}

/* ═══ DOCTORS ═══ */
.doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.doctor-card {
  background: var(--white); border-radius: 24px;
  border: 1.5px solid #DDE3D4; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.doctor-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(46,49,30,0.1); }
.doctor-photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #3D4228 0%, #2E311E 100%);
  display: flex; align-items: flex-end; justify-content: center;
  position: relative; overflow: hidden;
  font-size: 90px;
}
.doctor-photo-placeholder {
  line-height: 1; padding-bottom: 0;
  color: rgba(225,175,129,0.3);
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.doctor-exp-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--grad-gold); color: var(--navy);
  font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 100px;
}
.doctor-info { padding: 24px 24px 28px; }
.doctor-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.doctor-title { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.doctor-rating {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-mid);
}
.stars { color: #E1AF81; letter-spacing: 1px; }

/* ═══ REVIEWS ═══ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border-radius: 20px;
  border: 1.5px solid #DDE3D4; padding: 28px;
}
.review-stars { color: #E1AF81; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.review-text em { color: var(--navy); font-style: normal; font-weight: 600; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.review-source { font-size: 12px; color: var(--text-light); }
.review-care-badge {
  margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
  background: rgba(95,109,76,0.1); color: var(--sage);
  border: 1px solid rgba(95,109,76,0.25);
}

/* ═══ FAQ ═══ */
.faq-list { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  background: var(--white); border-radius: 16px;
  border: 1.5px solid #DDE3D4; overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 24px 28px; font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after {
  content: '+'; font-size: 24px; font-weight: 300; color: var(--gold);
  flex-shrink: 0; transition: transform .25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 20px 28px 24px;
  font-size: 15px; color: var(--text-mid); line-height: 1.75;
  border-top: 1px solid #E5EAD8;
}
/* .faq-item.open .faq-a { display: block; padding-top: 20px; } */

/* ═══ OFFER / FORM ═══ */
.offer-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.offer-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,175,129,0.06) 0%, transparent 70%);
}
.offer-grid {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 64px; align-items: start;
  position: relative; z-index: 2;
}
.offer-left h2 {
  font-size: 44px; font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
}
.offer-left h2 em { color: var(--gold); font-style: normal; }
.offer-left p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 32px; }
.offer-checklist { display: flex; flex-direction: column; gap: 12px; }
.offer-check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: rgba(255,255,255,0.7);
}
.offer-check::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.offer-deadline {
  margin-top: 28px; padding: 14px 20px;
  background: rgba(225,175,129,0.1);
  border: 1px solid rgba(225,175,129,0.3);
  border-radius: 12px;
  font-size: 14px; color: rgba(255,255,255,0.6);
}
.offer-deadline strong { color: var(--gold); }

.form-card {
  background: var(--white); border-radius: 24px; padding: 40px;
}
.form-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.form-card-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea, .hero-card select {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  border: 1.5px solid #CDD5C0; font-family: 'Montserrat', sans-serif;
  font-size: 15px; color: var(--text);
  transition: border-color .2s;
  background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus, .hero-card select {
  outline: none; border-color: var(--gold);
}
.form-group select, .hero-card select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%; padding: 18px; border-radius: 12px;
  background: var(--grad-gold); color: var(--navy);
  border-bottom: 3px solid #8A6030;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 700; cursor: pointer;
  box-shadow: 0 6px 24px rgba(225,175,129,0.45);
  transition: transform .15s, box-shadow .15s;
  margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(225,175,129,0.55); }
.form-legal { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ═══ FOOTER ═══ */
footer {
  background: var(--navy-body);
  padding: 48px 0;
  border-top: 1px solid rgba(225,175,129,0.1);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-size: 22px; font-weight: 900; letter-spacing: 3px; color: var(--gold); }
.footer-contacts { display: flex; flex-direction: column; gap: 6px; }
.footer-phone { font-size: 14px; font-weight: 700; color: #fff; display: block; line-height: 1.4; }
.footer-address { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-rights { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ═══ ENGRAVING ILLUSTRATIONS ═══ */
/* Контейнер для гравюр */
.eng-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.eng-wrap svg { overflow: visible; }
/* Декоративная гравюра в Hero — правый фон */
.hero-arch-bg {
  position: absolute; right: -60px; bottom: 0;
  width: 520px; height: 520px; opacity: 0.07;
  pointer-events: none; z-index: 1;
}
/* Секция с иллюстрацией — 2 колонки */
.illus-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-top: 56px;
}
.illus-split-right { grid-column: 2; }
/* Карточки моделей — обновлённые */
.model-visual-eng {
  aspect-ratio: 1 / 1.618;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 16px;
}
.model-visual-eng::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,175,129,0.12) 0%, transparent 70%);
}
.model-card-wide .model-visual-eng {
  aspect-ratio: 2.618 / 1.618;
}
/* Декоратор в секциях */
.section-eng-deco {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  opacity: 0.06; pointer-events: none;
}
/* Иконки шагов в стиле гравюры */
.step-eng-icon {
  width: 72px; height: 72px; margin-bottom: -4px;
  opacity: 0.75;
  transition: opacity .25s;
}
.start-step:hover .step-eng-icon { opacity: 1; }
/* Гравюрный разделитель */
.eng-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 0; opacity: 0.35;
}
/* Engraving icons hover */
.start-step { cursor: default; }
/* Фоновая гравюра в секции гарантий */
.guarantee-arch-bg {
  position: absolute; right: -40px; bottom: -40px;
  opacity: 0.05; pointer-events: none;
}
.spasibo {
    color: #fff;
    text-align: center;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.spasibo__title {
  font-size: 28px;
}
@media (max-width: 900px) {
  .illus-split { grid-template-columns: 1fr; }
  .hero-arch-bg { display: none; }
  .section-eng-deco { display: none; }
}

/* ═══ UTILITY BELT ═══ */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

/* ═══ MEDIA ═══ */
@media (max-width: 1024px) {
  .hero-grid, .careplan-grid, .offer-grid { grid-template-columns: 1fr; }
  .hero-photo-col { display: none; }
  .pricing-grid, .models-grid { grid-template-columns: 1fr 1fr; }
  .model-card-wide { grid-column: span 2; }
  .start-steps {
    grid-template-columns: 1fr 1fr;
    gap: 48px 0;
  }
  .start-steps::before { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-title { font-size: 32px; }
  .hero h1 { font-size: 40px; }
  .hpc-num { font-size: 42px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .doctors-grid, .reviews-grid,
  .included-grid, .guarantees-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr 1fr; }
  .price-card-featured { transform: none; }
  .pause-block { grid-template-columns: 1fr; padding: 36px; }
  .header-badges { display: none; }
    .hero-grid, .careplan-grid, .offer-grid {
    display: block;
  }
  .hpc-includes {
    flex-direction: column;
}
.btn-lg {
    padding: 20px 17px;
}
.cp-vs-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.cp-box {
    width: 100%;
    text-align: center;
}
.cp-arrow {
    transform: rotate(90deg);
}
.card_eligner {
    grid-template-columns:1fr;
}
.btn-gold {
    margin: auto;
    width: 100%;
}
.review-care-badge {
    min-width: 150px;
}
.offer-left h2 {
    font-size: 34px;
}
.offer-deadline {
    margin-bottom: 20px;
}
.hero {
    padding: 50px 0 0;
}
.careplan-visual {
    margin-bottom: 20px;
}
}

/* ══════════════════════════════════════════════════════
   REDESIGN IMPROVEMENTS — TASTE SKILL
   Палитра бренда сохранена полностью.
   Dark Olive #2E311E · Muted Gold #E1AF81
   Muted Eucalyptus #5F6D4C · Montserrat
══════════════════════════════════════════════════════ */

/* --- Skip-to-content --- */
.skip-link {
  position: fixed; top: -60px; left: 20px; z-index: 9999;
  background: var(--grad-gold); color: var(--navy);
  padding: 10px 24px; border-radius: 10px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.3px;
  transition: top .2s ease;
  box-shadow: 0 4px 20px rgba(225,175,129,0.5);
}
.skip-link:focus { top: 20px; }

/* --- Типографика — баланс переносов --- */
h1, h2, h3, h4, .section-title, .section-title-lg {
  text-wrap: balance;
}

/* --- Focus ring --- */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Кнопки: физический отклик при нажатии --- */
.btn:active {
  transform: scale(0.97) translateY(1px) !important;
  box-shadow: none !important;
  transition-duration: 0.05s !important;
}
.btn-gold {
  box-shadow: 0 6px 28px rgba(184,134,90,0.4) !important;
}
.btn-gold:hover {
  box-shadow: 0 14px 44px rgba(184,134,90,0.5) !important;
}

/* --- Scroll-reveal --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Карточки: тёмный тинтованный hover-shadow --- */
.price-card:hover {
  box-shadow: 0 20px 52px rgba(46,49,30,0.14) !important;
}
.doctor-card:hover {
  box-shadow: 0 18px 46px rgba(46,49,30,0.13) !important;
}
.model-card:hover {
  box-shadow: 0 18px 46px rgba(46,49,30,0.1) !important;
}
.review-card {
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(46,49,30,0.1);
}
.included-card {
  transition: transform .25s, box-shadow .25s;
}
.included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(46,49,30,0.1);
}
.guarantee-card {
  transition: transform .25s;
}
.guarantee-card:hover { transform: translateY(-4px); }

/* --- Pricing featured: усиленное выделение --- */
.price-card-featured {
  outline: 2px solid rgba(225,175,129,0.45);
  outline-offset: -2px;
}
.hero-card select {
  height: 60px;
}
/* --- Форма: focus glow --- */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.hero-card select {
  box-shadow: 0 0 0 3px rgba(225,175,129,0.2) !important;
}

/* --- Reviews: разрываем 3-равные-колонки ---
   Первый отзыв — featured полной ширины,
   два следующих — по 1fr рядом              */
@media (min-width: 769px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .reviews-grid .review-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 280px;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }
  .reviews-grid .review-card:first-child .review-content {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .reviews-grid .review-card:first-child .review-text {
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 20px;
  }
  .reviews-grid .review-card:first-child .review-stars {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .reviews-grid .review-card:first-child .review-meta {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .review-featured-photo {
    display: none;
  }
  .reviews-grid .review-card:first-child .review-featured-photo {
    display: block;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
  }
  .reviews-grid .review-card:first-child .review-featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
  }
}



/* --- Hero h1: чуть плотнее трекинг --- */
.hero h1 { letter-spacing: -2.5px !important; }

/* --- Гарантии: толще левая полоска цитаты --- */
.guarantee-quote { border-left-width: 4px !important; }

/* --- Scrollbar: брендовый --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(46,49,30,0.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(46,49,30,0.4); }

.error {
    border: 1px solid #ff4d4f !important;
}

.error-message {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 5px;
}
.consultation-section{
    padding:100px 20px;
}

.container{
    max-width:1200px;
    margin:0 auto;
}

.consultation-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

    background:#fff;
    border-radius:32px;
    padding:60px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.consultation-left{
    flex:1;
    max-width:520px;
}

.consultation-left h2{
    font-size:48px;
    line-height:1.1;
    margin-bottom:20px;
    color:#1d1d1d;
}

.consultation-subtitle{
    font-size:18px;
    line-height:1.6;
    color:#666;
    margin-bottom:35px;
}

.consultation-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.consultation-form input{
    height:60px;
    padding:0 20px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:16px;
}

.consultation-form button{
    height:60px;
}

.form-legal{
    font-size:12px;
    color:#999;
    text-align:center;
    line-height:1.5;
}

.consultation-right{
    position:relative;
    flex:1;
    display:flex;
    justify-content:center;
}

.consultation-right img{
    width:100%;
    max-width:450px;
    border-radius:24px;
    object-fit:cover;
}

.doctor-badge{
    position:absolute;
    bottom:20px;
    left:20px;

    background:#fff;
    padding:14px 18px;
    border-radius:14px;

    font-size:14px;
    font-weight:600;

    box-shadow:0 10px 30px rgba(0,0,0,.1);
}
.consultation-card.hero-card {
    box-shadow: none;
    padding: 0;
    width: 100%;
    background: none;
    justify-content: flex-start;
    margin-bottom: 20px;
}

@media(max-width:991px){

    .consultation-card{
        flex-direction:column;
        padding:40px 25px;
    }

    .consultation-left{
        max-width:none;
        width:100%;
    }

    .consultation-left h2{
        font-size:34px;
    }

    .consultation-right img{
        max-width:100%;
    }
  .consultation-section {
    padding: 50px 0px;
}
.consultation-card.hero-card {
    display: block;
}
}
/* --- Doctors: ведущий врач — шире --- */
@media (min-width: 769px) {
  .doctors-grid {
    grid-template-columns: 1.55fr 1fr 1fr;
  }
  .doctors-grid .doctor-card:first-child .doctor-photo {
    aspect-ratio: 3 / 2.2;
  }

}
.cta-premium{
    padding:120px 20px;
    background:#f5f5f5;
}

.container{
    max-width:1200px;
    margin:0 auto;
}

.cta-premium-card{
    background:#2e311e;

    border-radius:32px;
    padding:80px 70px;

    position:relative;
    overflow:hidden;
}

.cta-premium-card::before{
    content:"";
    position:absolute;

    width:450px;
    height:450px;

    right:-120px;
    top:-120px;

    border-radius:50%;

    background:rgba(255,255,255,.04);
}

.cta-premium-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.cta-label{
    display:inline-block;

    padding:10px 18px;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);

    border-radius:50px;

    color:var(--gold);
    font-size:14px;
    letter-spacing:.5px;
}

.cta-premium h2{
    margin:24px 0 20px;

    color:#fff;
    font-size:58px;
    line-height:1.1;
    font-weight:600;
}

.cta-premium p{
    max-width:700px;

    color:rgba(255,255,255,.75);

    font-size:20px;
    line-height:1.7;

    margin-bottom:50px;
}

.cta-benefits{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

    margin-bottom:50px;
}

.benefit-card{
    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:25px;

    backdrop-filter:blur(10px);
}

.benefit-icon{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#fff;

    color:#111;

    font-weight:700;

    margin-bottom:18px;
}

.benefit-title{
    color:#fff;

    font-size:17px;
    line-height:1.5;
    font-weight:500;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:68px;
    padding:0 42px;

    background:#fff;

    color:#111;
    text-decoration:none;

    border-radius:16px;

    font-size:18px;
    font-weight:600;

    transition:.3s ease;
}

.cta-btn:hover{
    transform:translateY(-2px);
}

@media(max-width:991px){

    .cta-premium-card{
        padding:50px 30px;
    }

    .cta-premium h2{
        font-size:40px;
    }

    .cta-benefits{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .cta-premium{
        padding:40px 0;
    }

    .cta-premium h2{
        font-size:32px;
    }

    .cta-premium p{
        font-size:16px;
    }

    .cta-benefits{
        grid-template-columns:1fr;
    }

    .cta-btn{
        width:100%;
    }
    .cta-premium-content .btn {
      padding: 16px 10px;
    }

}
.mobile-sticky-cta{ display:none; } /* Мобильная версия */ @media (max-width:768px){ .mobile-sticky-cta{ display:block; position:fixed; left:0; right:0; bottom:0; z-index:9999; padding: 12px 15px calc(12px + env(safe-area-inset-bottom)); background-color: transparent;   animation:slideUp .4s ease; } .mobile-sticky-cta .btn{ width:100%; min-height:58px; display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:600; text-decoration:none; border-radius:14px; } /* Отступ снизу страницы */ body{ padding-bottom:95px; } } /* Анимация появления */ @keyframes slideUp{ from{ transform:translateY(100%); opacity:0; } to{ transform:translateY(0); opacity:1; } } /* Небольшая пульсация */ @media (max-width:768px){ .mobile-sticky-cta .btn-gold{ animation: pulseGlow 2.5s infinite; } } @keyframes pulseGlow{ 0%{ transform:scale(1); } 50%{ transform:scale(1.02); } 100%{ transform:scale(1); } }
.quiz-section{
    padding:100px 20px;
    background:#2e311e;
}

.quiz-card{
    max-width:700px;
    margin:0 auto;

    background:#fff;
    border-radius:24px;

    padding:50px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

.quiz-card h2{
    text-align:center;
    margin-bottom:40px;
    font-size:42px;
}

.quiz-step{
    display:none;
}

.quiz-step.active{
    display:block;
}

.quiz-step h3{
    margin-bottom:25px;
}

.quiz-option{
    display:block;
    margin-bottom:12px;
}

.quiz-option input{
    display:none;
}

.quiz-option span{
    display:block;

    padding:18px 20px;

    border:1px solid #ddd;
    border-radius:14px;

    cursor:pointer;

    transition:.2s;
}

.quiz-option input:checked + span{
    border-color:#2e311e;
    background:#2e311e;
    color:#fff;
}

.quiz-next,
.quiz-submit{

    width:100%;
    height:58px;

    border:none;
    border-radius:14px;

    margin-top:20px;

    cursor:pointer;
}


#quiz-phone{

    width:100%;
    height:58px;

    border:1px solid #ddd;
    border-radius:14px;

    padding:0 20px;

    font-size:16px;
}

@media(max-width:768px){

    .quiz-card{
        padding:30px 20px;
    }

    .quiz-card h2{
        font-size:30px;
    }

}