/* ===================================================
   CSS-переменные
   =================================================== */
:root {
  --bg: #0E1428;
  --bg-2: #151c35;
  --surface: #1a2240;
  --line: #2a3458;
  --text: #F5F1E8;
  --text-dim: #B8B5AA;
  --gold: #D4A574;
  --gold-2: #C9A961;
  --danger: #E07A5F;
  --success: #84A98C;
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1140px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===================================================
   Зерно-текстура (SVG feTurbulence)
   =================================================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ===================================================
   Прогресс-бар прокрутки
   =================================================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  z-index: 200;
  transition: width .05s linear;
  box-shadow: 0 0 8px rgba(212, 165, 116, .5);
}

/* ===================================================
   Aurora-фон (hero и cta-final)
   =================================================== */
.aurora-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.aurora-blob-1 {
  width: 600px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(ellipse, rgba(212,165,116,.22) 0%, transparent 70%);
  animation: auroraMove1 18s ease-in-out infinite;
}
.aurora-blob-2 {
  width: 500px;
  height: 400px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(ellipse, rgba(132,169,140,.14) 0%, transparent 70%);
  animation: auroraMove2 22s ease-in-out infinite;
}
.aurora-blob-3 {
  width: 400px;
  height: 350px;
  top: 40%;
  left: 30%;
  background: radial-gradient(ellipse, rgba(100,130,200,.10) 0%, transparent 70%);
  animation: auroraMove3 26s ease-in-out infinite;
}

@keyframes auroraMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-60px, 40px) scale(1.08); }
  66%       { transform: translate(40px, -30px) scale(.95); }
}
@keyframes auroraMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(80px, -50px) scale(1.12); }
  70%       { transform: translate(-40px, 30px) scale(.92); }
}
@keyframes auroraMove3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-70px, 60px) scale(1.15); }
}

/* ===================================================
   Reveal при скролле
   =================================================== */
.reveal {
  opacity: 0;
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.fade-up    { transform: translateY(36px); }
.reveal.fade-left  { transform: translateX(-36px); }
.reveal.fade-right { transform: translateX(36px); }
.reveal.zoom-in    { transform: scale(.92); }

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Задержки каскада */
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .19s; }
.d4 { transition-delay: .26s; }
.d5 { transition-delay: .33s; }
.d6 { transition-delay: .40s; }

/* ===================================================
   prefers-reduced-motion
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  .aurora-blob { animation: none !important; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  #scroll-progress { transition: none; }
  .service-card { transition: border-color .15s; }
}

/* ===================================================
   Базовые сбросы
   =================================================== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

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

/* ===================================================
   Типографика
   =================================================== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
}
h1 { font-size: clamp(34px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); text-align: center; margin-bottom: 12px; }
h3 { font-size: 22px; }
.section-sub { text-align: center; color: var(--text-dim); margin: 0 auto 48px; max-width: 640px; }

/* ===================================================
   Секции
   =================================================== */
section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
section:first-of-type { border-top: 0; }

/* ===================================================
   Кнопки
   =================================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: #0E1428;
}
.btn-primary:hover {
  background: var(--gold-2);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,165,116,.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-ghost:hover { background: var(--text); color: var(--bg); opacity: 1; }
.btn-card {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  padding: 10px 20px;
  font-size: 14px;
  margin-top: auto;
}
.btn-card:hover { background: var(--gold); color: var(--bg); opacity: 1; }
.btn-sm { padding: 9px 18px; font-size: 14px; background: var(--gold); color: var(--bg); }
.btn-lg { padding: 18px 36px; font-size: 18px; }

/* ===================================================
   Навигация
   =================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 20, 40, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold); opacity: 1; }

/* Бургер-кнопка */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s var(--ease-out), opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Мобильное меню */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 20, 40, .97);
  backdrop-filter: blur(16px);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}
.mobile-menu a:hover { color: var(--gold); opacity: 1; }
.mobile-menu .btn-sm { margin-top: 8px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  /* скрываем кнопку Telegram в nav на мобайле (она в mobile-menu) */
  .nav-inner > .btn-sm { display: none; }
}

/* ===================================================
   Hero
   =================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 0;
  padding: 80px 0 100px;
}
/* Старый hero-bg-glow оставляем как запасной, aurora поверх */
.hero-bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 30%, rgba(212,165,116,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 15% 70%, rgba(132,169,140,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-content { max-width: 620px; }
.hero-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 19px;
  color: var(--text-dim);
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo { position: relative; }
.hero-photo img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 8px rgba(212,165,116,.06);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { max-width: none; margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .hero-photo { order: -1; }
  .hero-photo img { max-width: 280px; aspect-ratio: 1 / 1; }
}

/* ===================================================
   Факты
   =================================================== */
.facts { padding: 60px 0; }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  min-height: 52px;
}
.fact-text { color: var(--text-dim); }
@media (max-width: 720px) {
  .facts-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===================================================
   Боли
   =================================================== */
.pains h2 { margin-bottom: 40px; }
.pains-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  display: grid;
  gap: 16px;
}
.pains-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
}

/* ===================================================
   Fit
   =================================================== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fit-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.fit-yes { border-top: 3px solid var(--success); }
.fit-no  { border-top: 3px solid var(--danger); }
.fit-col h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.fit-yes h3 { color: var(--success); }
.fit-no  h3 { color: var(--danger); }
.fit-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.fit-col li {
  padding-left: 26px;
  position: relative;
  color: var(--text-dim);
}
.fit-yes li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.fit-no  li::before { content: '✗'; position: absolute; left: 0; color: var(--danger); font-weight: 700; }
@media (max-width: 720px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   Услуги
   =================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s var(--ease-out), border-color .2s, box-shadow .2s;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover {
  border-color: var(--gold);
}
.service-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,165,116,.08) 0%, var(--surface) 100%);
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  min-height: 56px;
}
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.service-card p { margin: 0 0 14px; font-size: 15px; }
.service-card strong { color: var(--text); }
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.service-list li {
  padding-left: 18px;
  position: relative;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text-dim);
}
.service-list li::before { content: '-'; position: absolute; left: 0; color: var(--gold); }
.service-bonus {
  background: rgba(212,165,116,.1);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  margin: 4px 0 18px !important;
}
.service-card .btn-card { align-self: flex-start; margin-top: auto; }

.services-cta { text-align: center; margin-top: 48px; }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card h3 { min-height: 0; }
}

/* ===================================================
   How
   =================================================== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.how-step { text-align: left; }
.how-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--gold);
  opacity: .35;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.how-step h3 { font-family: 'Manrope', sans-serif; font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.how-step p  { color: var(--text-dim); font-size: 16px; margin: 0; }
@media (max-width: 720px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   Гарантии
   =================================================== */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.guarantee {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.g-icon { font-size: 36px; margin-bottom: 12px; }
.guarantee h3 { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.guarantee p  { color: var(--text-dim); margin: 0; font-size: 15px; }
@media (max-width: 720px) {
  .guarantees-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   Отзывы
   =================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
/* третий отзыв - на всю ширину */
.reviews-grid .review:nth-child(3) {
  grid-column: 1 / -1;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
}
.review blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  margin: 0 0 20px;
  color: var(--text);
  line-height: 1.5;
}
.review figcaption strong { color: var(--gold); }
.review figcaption span   { color: var(--text-dim); font-size: 14px; }
@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   About
   =================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
}
.about-photo img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.about-text h2 { text-align: left; }
.about-text p  { color: var(--text-dim); margin: 0 0 14px; }
.about-text strong { color: var(--text); }
.about-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.about-socials a {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
}
.about-socials a:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 320px; margin: 0 auto; }
}

/* ===================================================
   Лид-магнит
   =================================================== */
.lid { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.lid-box {
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.lid-box h2  { margin-bottom: 12px; }
.lid-sub {
  font-size: 18px;
  color: var(--gold);
  margin: 0 0 20px;
  font-weight: 500;
}
.lid-box > p { color: var(--text-dim); margin-bottom: 28px; }

/* ===================================================
   FAQ
   =================================================== */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  transition: border-color .2s;
}
.faq-list details[open] { border-color: var(--gold); }
.faq-list summary {
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform .2s;
}
.faq-list details[open] summary::after { content: '-'; }
.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-dim);
  font-size: 16px;
}

/* ===================================================
   Финальный CTA
   =================================================== */
.cta-final {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  text-align: center;
  overflow: hidden;
}
.cta-final > .container { position: relative; z-index: 2; }
.cta-final p { color: var(--text-dim); max-width: 580px; margin: 0 auto 32px; font-size: 18px; }
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================
   Футер
   =================================================== */
.footer {
  background: var(--bg-2);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-dim);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer strong  { color: var(--text); }
.footer-meta { text-align: right; }
@media (max-width: 600px) {
  .footer-meta { text-align: left; }
}

/* ===================================================
   Кейс
   =================================================== */
.case-study { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.case-card {
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 48px;
  max-width: 840px;
  margin: 0 auto;
}
.case-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.case-label {
  background: var(--gold);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}
.case-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.case-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
}
.case-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.case-stat-text { color: var(--text-dim); font-size: 14px; }
.case-what {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(212,165,116,.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.case-what strong { color: var(--text); }
.case-quote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid rgba(212,165,116,.4);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .case-card { padding: 28px 20px; }
  .case-stats { gap: 24px; flex-wrap: wrap; }
  .case-stat-num { font-size: 28px; }
}

/* ===================================================
   Чек-лист готовности
   =================================================== */
.checklist-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  display: grid;
  gap: 14px;
}
.checklist-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 22px 16px 52px;
  position: relative;
  font-size: 16px;
}
.checklist-list li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  background: rgba(212,165,116,.08);
}

/* ===================================================
   Мобильные отступы секций
   =================================================== */
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .lid-box { padding: 36px 24px; }
  .fit-col, .service-card, .review, .guarantee { padding: 24px 20px; }
}

/* ===================================================
   Улучшения дизайна (апгрейд до "дорогого" уровня)
   =================================================== */

/* --- Fallback при незагрузке фото --- */
.hero-photo img, .about-photo img {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  min-height: 400px;
}

/* --- Scroll margin для якорных ссылок --- */
section {
  scroll-margin-top: 80px;
}

/* --- Keyframes --- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,165,116,.4); }
  50%       { box-shadow: 0 0 0 6px rgba(212,165,116,0); }
}

/* --- Hero: градиентный заголовок --- */
.hero h1 {
  background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Hero kicker: анимация появления --- */
.hero-kicker {
  animation: fadeInDown .8s var(--ease-out) both;
}

/* --- Hero sub: увеличить --- */
.hero-sub {
  font-size: 20px;
}

/* --- Факты: фон и разделители --- */
.facts {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact:not(:last-child) {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}

.fact-num {
  font-size: 52px;
}

/* --- Боли: иконки --- */
.pain-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.pains-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* --- Услуги: иконки --- */
.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

/* --- Услуги: pulse badge --- */
.service-featured .service-badge {
  animation: pulseBadge 3s ease-in-out infinite;
}

/* --- Как работаем: стиль шагов --- */
.how-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.how-num {
  opacity: 1;
  color: var(--gold);
}

/* --- Гарантии: hover-эффект --- */
.guarantee {
  transition: border-color .2s, transform .2s var(--ease-out), box-shadow .2s;
}

.guarantee:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212,165,116,.12);
}

/* --- Чек-лист: интерактивный --- */
.checklist-list li {
  cursor: pointer;
}

.checklist-list li.checked {
  border-color: var(--gold);
  background: rgba(212,165,116,.08);
}

.checklist-list li.checked::before {
  background: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='%230E1428' d='M1 5l3 3 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* --- prefers-reduced-motion дополнение --- */
@media (prefers-reduced-motion: reduce) {
  .hero-kicker { animation: none; }
  .service-featured .service-badge { animation: none; }
}
