/* ============================================================
   Андрей Долгий — премиум-коуч · лендинг
   Design system + components
   ============================================================ */

:root{
  /* — Brand palette — */
  --ink:        #0d1a19;   /* darkest — hero / dark sections */
  --ink-2:      #12211f;
  --teal-900:   #17302d;
  --teal-800:   #1d3a36;   /* deep teal-green (primary) */
  --teal-700:   #244945;
  --teal-500:   #3c6f66;
  --teal-300:   #7ca79d;
  --sage:       #dde8e3;
  --cream:      #f6f1e8;   /* main light bg */
  --cream-2:    #efe8db;
  --sand:       #e8d9c5;
  --paper:      #fbf8f2;

  /* — Accent (premium gold) — */
  --gold:       #c39a54;
  --gold-2:     #d7b479;
  --gold-soft:  #ecd9b4;

  /* — Text — */
  --text:       #22302e;
  --text-soft:  #4a5a57;
  --text-mut:   #7c8a86;
  --on-dark:    #eef3f0;
  --on-dark-mut:#a9bdb7;

  /* — UI — */
  --line:       #dfe4dd;
  --line-dark:  rgba(255,255,255,.12);
  --radius:     18px;
  --radius-lg:  26px;
  --radius-sm:  12px;
  --shadow-sm:  0 2px 10px rgba(15,30,28,.06);
  --shadow:     0 18px 50px -22px rgba(15,35,32,.35);
  --shadow-lg:  0 40px 90px -40px rgba(10,25,23,.55);

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; overflow-x:hidden; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0; font-family:var(--font); color:var(--text);
  background:var(--cream); line-height:1.6; font-weight:400;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ margin:0; line-height:1.08; font-weight:700; letter-spacing:-.02em; }
p{ margin:0 0 1em; }
::selection{ background:var(--gold-soft); color:var(--teal-900); }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }
.section{ padding:clamp(64px,9vw,120px) 0; position:relative; }

/* ---------- Typography helpers ---------- */
.eyebrow{
  display:flex; align-items:center; gap:14px;
  font-size:.78rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold); margin:0 0 22px;
}
.eyebrow-dark{ color:var(--teal-500); }
.eyebrow-line{ width:34px; height:1px; background:currentColor; opacity:.6; display:inline-block; }
.eyebrow.center, .section-head.center .eyebrow{ justify-content:center; }

.section-title{
  font-size:clamp(1.9rem,4.4vw,3.4rem); letter-spacing:-.025em; color:var(--teal-900);
}
.section-title em{ font-family:var(--serif); font-style:italic; font-weight:500; letter-spacing:0; color:var(--gold); }
.section-title.light{ color:var(--on-dark); }
.section-head{ margin-bottom:clamp(36px,5vw,60px); max-width:760px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-lead{ font-size:1.12rem; color:var(--text-soft); margin-top:18px; }
.section-lead.light{ color:var(--on-dark-mut); }

/* ---------- Buttons ---------- */
.btn{
  --bg:var(--teal-800); --fg:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 26px; border-radius:100px; font-weight:600; font-size:.98rem;
  background:var(--bg); color:var(--fg); border:1px solid transparent;
  transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s, border-color .3s;
  will-change:transform; letter-spacing:.005em; line-height:1;
}
.btn svg{ transition:transform .35s var(--ease-out); }
.btn:hover{ transform:translateY(-3px); }
.btn:active{ transform:translateY(-1px); }
.btn-primary{
  --bg:linear-gradient(180deg,var(--gold-2),var(--gold));
  color:#3a2c0e; box-shadow:0 14px 30px -12px rgba(195,154,84,.6);
}
.btn-primary:hover{ box-shadow:0 20px 40px -12px rgba(195,154,84,.7); }
.btn-primary:hover svg{ transform:translateX(4px); }
.btn-vector{ --bg:linear-gradient(180deg,var(--teal-500),var(--teal-700)); color:#eafaf4; box-shadow:0 14px 30px -14px rgba(36,73,69,.7); }
.btn-outline{ background:transparent; color:var(--teal-800); border-color:var(--teal-800); }
.btn-outline:hover{ background:var(--teal-800); color:#fff; }
.btn-ghost{ background:transparent; color:currentColor; border-color:rgba(120,138,134,.4); }
.btn-ghost:hover{ border-color:currentColor; background:rgba(120,138,134,.08); }
.btn-sm{ padding:11px 20px; font-size:.9rem; }
.btn-lg{ padding:18px 34px; font-size:1.05rem; }

/* ---------- Scroll progress ---------- */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%; z-index:120;
  background:linear-gradient(90deg,var(--gold),var(--gold-2));
  transition:width .1s linear;
}

/* ---------- Header ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:16px 0; transition:padding .4s var(--ease), background .4s, box-shadow .4s, border-color .4s;
  border-bottom:1px solid transparent;
}
.site-header.scrolled{
  background:rgba(13,26,25,.82); backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  padding:10px 0; border-bottom-color:var(--line-dark);
}
.nav{ display:flex; align-items:center; flex-wrap:nowrap; gap:20px; }
.brand{ display:flex; align-items:center; gap:12px; margin-right:auto; flex:none; }
.brand-mark{ flex:none; }
.mark-ring{ stroke:var(--gold); opacity:.55; }
.mark-flow{ stroke:var(--on-dark); }
.mark-dot{ fill:var(--gold); }
.brand-word{ display:flex; flex-direction:column; line-height:1.15; white-space:nowrap; }
.brand-name{ font-weight:700; font-size:1.02rem; color:var(--on-dark); letter-spacing:-.01em; white-space:nowrap; }
.brand-role{ font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); font-weight:600; white-space:nowrap; }
/* before scroll, over hero the header text is light already (hero is dark). */

.nav-links{ display:flex; flex-wrap:nowrap; gap:18px; }
.nav-links a{
  font-size:.9rem; font-weight:500; color:var(--on-dark-mut); position:relative; padding:4px 0;
  white-space:nowrap; transition:color .3s;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; height:1.5px; width:0; background:var(--gold);
  transition:width .35s var(--ease-out);
}
.nav-links a:hover{ color:var(--on-dark); }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--on-dark); }

.nav-cta{ flex:none; white-space:nowrap; }
.nav-blog{ white-space:nowrap; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:0; padding:8px; }
.nav-toggle span{ width:24px; height:2px; background:var(--on-dark); border-radius:2px; transition:transform .35s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu{
  position:fixed; inset:0 0 0 auto; width:min(84vw,360px); z-index:99;
  background:var(--ink); padding:100px 30px 40px; display:flex; flex-direction:column; gap:6px;
  transform:translateX(100%); transition:transform .45s var(--ease); box-shadow:var(--shadow-lg);
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu a{ color:var(--on-dark); font-size:1.1rem; font-weight:500; padding:14px 0; border-bottom:1px solid var(--line-dark); }
.mobile-menu a.btn{ border:0; margin-top:20px; justify-content:center; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; background:var(--ink); color:var(--on-dark);
  min-height:100svh; display:flex; align-items:center;
  padding-top:110px; padding-bottom:60px; overflow:hidden;
}
.hero-aurora{
  position:absolute; inset:-20% -10% auto -10%; height:130%;
  background:
    radial-gradient(50% 55% at 72% 32%, rgba(60,111,102,.55), transparent 60%),
    radial-gradient(46% 50% at 18% 70%, rgba(36,73,69,.5), transparent 62%),
    radial-gradient(40% 44% at 60% 88%, rgba(195,154,84,.16), transparent 60%);
  filter:blur(10px); animation:auroraDrift 22s ease-in-out infinite alternate; z-index:0;
}
@keyframes auroraDrift{
  0%{ transform:translate3d(0,0,0) scale(1); }
  100%{ transform:translate3d(-3%,2%,0) scale(1.08); }
}
.hero-grid-lines{
  position:absolute; inset:0; z-index:0; opacity:.5;
  background-image:linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image:radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
}
.hero-inner{
  position:relative; z-index:2; display:grid; grid-template-columns:1.15fr .85fr;
  gap:40px; align-items:center; width:100%;
}
.hero-copy{ max-width:620px; }
.hero-title{
  font-size:clamp(2.7rem,6.6vw,5rem); line-height:1.02; letter-spacing:-.035em; color:#fff;
  margin:0 0 26px;
}
.hero-title em{ font-family:var(--serif); font-style:italic; font-weight:500; letter-spacing:-.01em; color:var(--gold-2); }
.hero-sub{ font-size:clamp(1.05rem,1.6vw,1.22rem); color:var(--on-dark-mut); max-width:520px; margin:0 0 34px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:26px; }
.hero-cta .btn-ghost{ color:var(--on-dark); }
.hero-trust{ font-size:.86rem; letter-spacing:.06em; color:var(--on-dark-mut); margin:0; }

.hero-figure{ position:relative; align-self:end; justify-self:center; width:min(480px,100%); padding-top:36px; }
/* 3D-«арка»: фигура стоит на основании, голова выходит за верхний край — эффект глубины.
   Фото статично (без парения) и не выглядит обрезанным: нижний срез совпадает с базой арки. */
.hero-arch{
  position:absolute; left:50%; bottom:0; transform:translateX(-50%);
  width:min(400px,88%); height:78%; z-index:0;
  border-radius:999px 999px 30px 30px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(124,167,157,.30), transparent 55%),
    linear-gradient(180deg, rgba(45,88,81,.55), rgba(15,27,26,.9));
  border:1px solid rgba(195,154,84,.32);
  box-shadow:
    inset 0 0 70px rgba(0,0,0,.42),
    0 46px 90px -30px rgba(0,0,0,.78);
}
.arch-ring{
  position:absolute; inset:12px; border-radius:inherit;
  border:1px solid rgba(195,154,84,.15); pointer-events:none;
}
/* Рамка фиксирует размер фигуры/арки по статичному фото — высота ВСЕГДА
   считается от img (см. ниже), даже когда видео активно, чтобы арка
   не «съёживалась» и не «растягивалась» под другие пропорции ролика. */
.hero-photo-frame{ position:relative; z-index:2; width:min(356px,78%); margin-inline:auto; }
.hero-photo{
  position:relative; width:100%; display:block;
  filter:drop-shadow(0 34px 48px rgba(0,0,0,.55)) drop-shadow(0 8px 16px rgba(0,0,0,.35));
}
/* img остаётся в потоке (задаёт высоту рамки) даже когда видео активно —
   просто становится невидимым, а не display:none, иначе рамка схлопнется. */
#heroStillImg.is-hidden{ visibility:hidden; }
/* Видео-версия статичного фото: скрыта по умолчанию, JS включает её после
   проверки поддержки прозрачного WebM (иначе остаётся статичное фото).
   object-position:bottom — фигура «стоит» на той же линии, что и на фото,
   а не зависает в воздухе, даже если кадр ролика короче по пропорциям. */
.hero-photo-video{
  display:none; position:absolute; inset:0; width:100%; height:100%;
  object-fit:contain; object-position:center bottom; background:transparent;
  filter:drop-shadow(0 34px 48px rgba(0,0,0,.55)) drop-shadow(0 8px 16px rgba(0,0,0,.35));
}
.hero-photo-video.is-active{ display:block; }
.hero-floor{
  position:absolute; z-index:1; left:50%; bottom:-8px; transform:translateX(-50%);
  width:62%; height:34px; border-radius:50%;
  background:radial-gradient(ellipse at center, rgba(0,0,0,.62), transparent 65%);
  filter:blur(7px);
}
@keyframes floatY{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-7px); } }

.hero-badge{
  position:absolute; z-index:3; background:rgba(18,33,31,.78);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border:1px solid var(--line-dark); border-radius:14px; padding:12px 16px;
  font-size:.82rem; color:var(--on-dark); box-shadow:var(--shadow);
  max-width:200px; line-height:1.4; pointer-events:none;
}
/* Бейджи — на уровне груди/пояса, вдали от лица */
.hero-badge-1{ top:47%; left:-4%; display:flex; align-items:center; gap:9px; font-weight:500; animation:floatY 8s ease-in-out .8s infinite; }
.hero-badge-2{ bottom:9%; right:-3%; font-family:var(--serif); font-style:italic; font-size:1rem; animation:floatY 9s ease-in-out .4s infinite; }
.hb-dot{ width:8px; height:8px; border-radius:50%; background:var(--gold-2); box-shadow:0 0 0 4px rgba(215,180,121,.2); flex:none; }

/* Кнопка видео в hero */
.hero-play{
  display:inline-flex; align-items:center; gap:14px; background:none; border:0; color:var(--on-dark);
  padding:6px 4px; text-align:left;
}
.play-ring{
  width:54px; height:54px; border-radius:50%; flex:none; position:relative;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(195,154,84,.55); color:var(--gold-2);
  background:rgba(195,154,84,.1);
  transition:background .3s, transform .35s var(--ease-out);
}
.play-ring::before{
  content:""; position:absolute; inset:-1px; border-radius:50%;
  border:1px solid rgba(195,154,84,.5); animation:pulseRing 2.6s ease-out infinite;
}
@keyframes pulseRing{ 0%{ transform:scale(1); opacity:.8; } 100%{ transform:scale(1.55); opacity:0; } }
.hero-play:hover .play-ring{ background:rgba(195,154,84,.25); transform:scale(1.06); }
.play-label{ display:flex; flex-direction:column; line-height:1.3; font-weight:600; font-size:.95rem; }
.play-label small{ font-weight:400; color:var(--on-dark-mut); font-size:.8rem; }

.hero-scroll{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:6px;
  font-size:.7rem; letter-spacing:.24em; text-transform:uppercase; color:var(--on-dark-mut);
}
.hero-scroll svg{ animation:bob 2s ease-in-out infinite; }
@keyframes bob{ 0%,100%{ transform:translateY(0); opacity:.6; } 50%{ transform:translateY(5px); opacity:1; } }

/* ============================================================
   STATS
   ============================================================ */
.stats{ background:var(--teal-900); color:var(--on-dark); padding:clamp(40px,5vw,58px) 0; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.stat{ text-align:center; position:relative; }
.stat:not(:last-child)::after{ content:""; position:absolute; right:-15px; top:10%; height:80%; width:1px; background:var(--line-dark); }
.stat-num{ display:block; font-size:clamp(2rem,4vw,2.9rem); font-weight:700; color:var(--gold-2); letter-spacing:-.03em; line-height:1; margin-bottom:10px; }
.stat-unit{ font-size:.55em; }
.stat-label{ font-size:.92rem; color:var(--on-dark-mut); max-width:210px; margin-inline:auto; display:block; }

/* ============================================================
   RECOGNIZE
   ============================================================ */
.recognize{ background:var(--cream); }
.recognize-list{ list-style:none; margin:0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:2px 60px; }
.recognize-list li{
  display:flex; gap:18px; align-items:flex-start; padding:22px 0;
  border-bottom:1px solid var(--line); font-size:1.12rem; color:var(--text-soft);
}
.rec-i{ font-family:var(--serif); font-style:italic; font-size:1.1rem; color:var(--gold); font-weight:500; flex:none; padding-top:2px; min-width:26px; }
.recognize-note{
  margin-top:46px; font-size:clamp(1.15rem,2vw,1.5rem); line-height:1.5; color:var(--teal-900); max-width:820px;
  font-weight:500; letter-spacing:-.01em;
}
.recognize-note em{ font-family:var(--serif); font-style:italic; color:var(--gold); font-weight:500; }

/* ============================================================
   PATHS
   ============================================================ */
.paths{ background:linear-gradient(180deg,var(--cream),var(--paper)); }
.paths-grid{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.path-card{
  position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:clamp(28px,3.5vw,44px); overflow:hidden; box-shadow:var(--shadow-sm);
  transition:transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s;
}
.path-card::before{
  content:""; position:absolute; inset:0 0 auto 0; height:5px;
  background:linear-gradient(90deg,var(--gold),var(--gold-2));
  transform:scaleX(0); transform-origin:left; transition:transform .6s var(--ease-out);
}
.path-vector::before{ background:linear-gradient(90deg,var(--teal-500),var(--teal-300)); }
.path-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow); border-color:transparent; }
.path-card:hover::before{ transform:scaleX(1); }
.path-top{ display:flex; align-items:baseline; gap:14px; margin-bottom:18px; }
.path-tag{ font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; font-weight:600; color:var(--text-mut); }
.path-name{ font-family:var(--serif); font-size:clamp(2.2rem,4vw,3rem); font-weight:600; color:var(--teal-900); letter-spacing:0; line-height:1; }
.path-opora .path-name{ color:var(--teal-800); }
.path-desc{ color:var(--text-soft); font-size:1.05rem; margin-bottom:22px; }
.path-points{ list-style:none; margin:0 0 24px; padding:0; display:flex; flex-direction:column; gap:12px; }
.path-points li{ position:relative; padding-left:26px; color:var(--text-soft); font-size:.98rem; }
.path-points li::before{ content:""; position:absolute; left:0; top:9px; width:8px; height:8px; border-radius:50%; background:var(--gold); }
.path-vector .path-points li::before{ background:var(--teal-500); }
.path-result{ font-size:1rem; color:var(--teal-900); padding:16px 18px; background:var(--sage); border-radius:var(--radius-sm); margin-bottom:26px; }
.path-vector .path-result{ background:#e6efe7; }
.path-result strong{ color:var(--teal-800); }
.path-cta{ width:100%; }

/* Mini-test */
.minitest{ margin-top:40px; background:var(--teal-900); border-radius:var(--radius-lg); padding:clamp(28px,4vw,52px); color:var(--on-dark); position:relative; overflow:hidden; }
.minitest::after{ content:""; position:absolute; right:-80px; top:-80px; width:280px; height:280px; border-radius:50%; background:radial-gradient(circle,rgba(195,154,84,.18),transparent 70%); }
.minitest-head{ text-align:center; margin-bottom:28px; position:relative; z-index:1; }
.mt-eyebrow{ font-size:.78rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold-2); font-weight:600; }
.minitest-head h3{ font-size:clamp(1.4rem,3vw,2rem); color:#fff; margin-top:8px; }
.minitest-body{ max-width:600px; margin-inline:auto; position:relative; z-index:1; }
.mt-progress{ height:4px; background:var(--line-dark); border-radius:4px; margin-bottom:28px; overflow:hidden; }
.mt-progress span{ display:block; height:100%; width:33%; background:linear-gradient(90deg,var(--gold),var(--gold-2)); border-radius:4px; transition:width .5s var(--ease-out); }
.mt-q{ font-size:1.2rem; font-weight:600; color:#fff; text-align:center; margin-bottom:22px; }
.mt-options{ display:grid; gap:14px; }
.mt-opt{
  background:rgba(255,255,255,.05); border:1px solid var(--line-dark); color:var(--on-dark);
  padding:18px 22px; border-radius:14px; font-size:1rem; font-weight:500; text-align:left;
  transition:background .3s, border-color .3s, transform .3s var(--ease-out);
}
.mt-opt:hover{ background:rgba(195,154,84,.14); border-color:var(--gold); transform:translateX(4px); }
.mt-result{ text-align:center; }
.mt-result-label{ font-size:.8rem; letter-spacing:.2em; text-transform:uppercase; color:var(--on-dark-mut); }
.mt-result-name{ font-family:var(--serif); font-size:clamp(2.4rem,5vw,3.4rem); font-weight:600; color:var(--gold-2); margin:6px 0 14px; }
.mt-result-desc{ color:var(--on-dark-mut); max-width:440px; margin:0 auto 26px; }
.mt-result-cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.mt-result-cta .btn-ghost{ color:var(--on-dark); }

/* ============================================================
   PROCESS
   ============================================================ */
.process{ background:var(--paper); }
.process-steps{ list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(4,1fr); gap:24px; counter-reset:step; }
.process-steps li{ position:relative; padding-top:20px; }
.process-steps li::before{ content:""; position:absolute; top:0; left:0; right:0; height:2px; background:var(--line); }
.process-steps li::after{ content:""; position:absolute; top:-3px; left:0; width:0; height:8px; border-radius:4px; background:var(--gold); transition:width 1.4s var(--ease-out) .2s; }
.process-steps li.in-view::after{ width:44px; }
.ps-num{ font-family:var(--serif); font-size:2.6rem; font-weight:600; color:var(--gold); line-height:1; display:block; margin-bottom:14px; }
.process-steps h3{ font-size:1.2rem; color:var(--teal-900); margin-bottom:10px; }
.process-steps p{ color:var(--text-soft); font-size:.98rem; margin:0; }

/* ============================================================
   OUTCOMES (dark)
   ============================================================ */
.outcomes{ background:var(--teal-800); color:var(--on-dark); }
.outcomes-inner{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,90px); align-items:center; }
.outcomes-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:4px; }
.outcomes-list li{ display:flex; align-items:center; gap:16px; padding:20px 0; border-bottom:1px solid var(--line-dark); font-size:1.12rem; color:var(--on-dark); }
.outcomes-list li:last-child{ border-bottom:0; }
.outcomes-list svg{ color:var(--gold-2); flex:none; padding:7px; background:rgba(195,154,84,.14); border-radius:50%; box-sizing:content-box; }

/* ============================================================
   ABOUT
   ============================================================ */
.about{ background:var(--cream); }
.about-inner{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(36px,6vw,80px); align-items:center; }
.about-media{ position:relative; }
.about-photo{ width:100%; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); }
.about-caption{
  position:absolute; right:-24px; bottom:34px; max-width:270px;
  background:#fff; padding:22px 24px; border-radius:var(--radius); box-shadow:var(--shadow);
  border-left:3px solid var(--gold);
}
.ac-quote{ font-family:var(--serif); font-style:italic; font-size:1.14rem; line-height:1.4; color:var(--teal-900); }
.about-copy p{ color:var(--text-soft); font-size:1.06rem; }
.about-facts{ list-style:none; margin:30px 0 0; padding:0; display:flex; flex-direction:column; gap:0; }
.about-facts li{ display:flex; gap:20px; padding:16px 0; border-top:1px solid var(--line); }
.about-facts li strong{ min-width:110px; color:var(--teal-800); font-weight:700; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; padding-top:2px; }
.about-facts li span{ color:var(--text-soft); }

/* ============================================================
   SAFETY
   ============================================================ */
.safety{ background:var(--paper); }
.safety-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.safety-card{ background:var(--cream); border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px; transition:transform .4s var(--ease-out), box-shadow .4s; }
.safety-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.sc-icon{
  width:54px; height:54px; border-radius:16px; margin-bottom:18px;
  display:flex; align-items:center; justify-content:center; color:var(--gold);
  background:linear-gradient(160deg, rgba(195,154,84,.16), rgba(195,154,84,.04));
  border:1px solid rgba(195,154,84,.35);
}
.sc-icon svg{ width:26px; height:26px; }
.safety-card h3{ font-size:1.12rem; color:var(--teal-900); margin-bottom:10px; }
.safety-card p{ font-size:.96rem; color:var(--text-soft); margin:0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews{ background:var(--cream); }
/* — Карусель отзывов — */
.rev-carousel{ position:relative; }
.rev-viewport{ overflow:hidden; padding:26px 6px 34px; margin:-26px -6px -14px; }
.rev-track{
  display:flex; gap:22px; align-items:stretch;
  transition:transform .7s var(--ease-out); will-change:transform;
}
.review-card{
  flex:0 0 calc(50% - 11px); display:flex; flex-direction:column;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:clamp(26px,3vw,38px); box-shadow:var(--shadow-sm); position:relative; margin:0;
  cursor:pointer; user-select:none;
  transition:transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s;
}
.review-card::before{ content:"\201C"; position:absolute; top:6px; right:26px; font-family:var(--serif); font-size:5rem; color:var(--sand); line-height:1; }
.review-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
/* Клик — карточка «выдвигается вперёд» и раскрывает текст */
.review-card.zoomed{
  transform:translateY(-10px) scale(1.045); z-index:5;
  box-shadow:var(--shadow-lg); border-color:var(--gold-soft);
}
.stars{ color:var(--gold); letter-spacing:2px; margin-bottom:16px; font-size:1rem; }
.review-card blockquote{
  margin:0 0 22px; font-size:1.08rem; color:var(--text); line-height:1.55; flex:1;
  display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden;
  transition:opacity .3s;
}
.review-card.zoomed blockquote{ -webkit-line-clamp:unset; display:block; overflow:visible; }
.review-card figcaption{ display:flex; flex-direction:column; gap:2px; border-top:1px solid var(--line); padding-top:16px; }
.rev-name{ font-weight:700; color:var(--teal-900); }
.rev-ctx{ font-size:.86rem; color:var(--text-mut); }

.rev-controls{ display:flex; align-items:center; justify-content:center; gap:22px; margin-top:8px; }
.rev-arrow{
  width:52px; height:52px; border-radius:50%; border:1px solid var(--teal-800); background:transparent;
  color:var(--teal-800); display:flex; align-items:center; justify-content:center;
  transition:background .3s, color .3s, transform .3s var(--ease-out);
}
.rev-arrow:hover{ background:var(--teal-800); color:#fff; transform:translateY(-2px); }
.rev-arrow:disabled{ opacity:.35; pointer-events:none; }
.rev-dots{ display:flex; gap:9px; }
.rev-dot{
  width:9px; height:9px; border-radius:50%; border:0; padding:0;
  background:var(--line); transition:background .3s, transform .3s;
}
.rev-dot.active{ background:var(--gold); transform:scale(1.35); }
.rev-hint{ text-align:center; margin-top:18px; font-size:.85rem; color:var(--text-mut); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing{ background:linear-gradient(180deg,var(--paper),var(--cream)); }
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
.price-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:clamp(26px,3vw,38px); display:flex; flex-direction:column; position:relative; transition:transform .4s var(--ease-out), box-shadow .4s; }
.price-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.price-featured{ background:var(--teal-900); color:var(--on-dark); border-color:transparent; box-shadow:var(--shadow); transform:translateY(-8px); }
.price-featured:hover{ transform:translateY(-14px); }
.price-badge{ position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:linear-gradient(180deg,var(--gold-2),var(--gold)); color:#3a2c0e; font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:6px 16px; border-radius:100px; white-space:nowrap; }
.price-name{ font-size:1.2rem; color:var(--teal-900); margin-bottom:12px; }
.price-featured .price-name{ color:#fff; }
.price-value{ font-family:var(--serif); font-size:2.2rem; font-weight:600; color:var(--gold); line-height:1; margin-bottom:6px; }
.price-featured .price-value{ color:var(--gold-2); }
.price-hint{ font-size:.9rem; vertical-align:super; }
.price-meta{ font-size:.9rem; color:var(--text-mut); margin-bottom:22px; }
.price-featured .price-meta{ color:var(--on-dark-mut); }
.price-list{ list-style:none; margin:0 0 28px; padding:0; display:flex; flex-direction:column; gap:12px; flex:1; }
.price-list li{ position:relative; padding-left:26px; font-size:.96rem; color:var(--text-soft); }
.price-featured .price-list li{ color:var(--on-dark-mut); }
.price-list li::before{ content:"✓"; position:absolute; left:0; color:var(--gold); font-weight:700; }
.price-footnote{ text-align:center; margin-top:30px; font-size:.9rem; color:var(--text-mut); }

/* ============================================================
   FAQ
   ============================================================ */
.faq{ background:var(--cream); }
.faq-inner{ max-width:860px; }
.faq-list{ display:flex; flex-direction:column; gap:12px; }
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition:box-shadow .3s, border-color .3s; }
.faq-item[open]{ box-shadow:var(--shadow-sm); border-color:var(--sand); }
.faq-item summary{
  list-style:none; cursor:pointer; padding:22px 26px; font-weight:600; font-size:1.08rem; color:var(--teal-900);
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-plus{ position:relative; width:18px; height:18px; flex:none; }
.faq-plus::before,.faq-plus::after{ content:""; position:absolute; background:var(--gold); border-radius:2px; transition:transform .35s var(--ease); }
.faq-plus::before{ top:8px; left:0; width:18px; height:2px; }
.faq-plus::after{ left:8px; top:0; width:2px; height:18px; }
.faq-item[open] .faq-plus::after{ transform:rotate(90deg) scaleX(0); }
.faq-body{ padding:0 26px 24px; }
.faq-body p{ margin:0; color:var(--text-soft); font-size:1rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta{ background:var(--ink); color:var(--on-dark); text-align:center; overflow:hidden; position:relative; }
.final-aurora{
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(40% 50% at 30% 20%, rgba(60,111,102,.5), transparent 60%),
    radial-gradient(44% 54% at 74% 78%, rgba(195,154,84,.22), transparent 62%);
  animation:auroraDrift 20s ease-in-out infinite alternate;
}
.final-inner{ position:relative; z-index:1; max-width:820px; }
.final-inner .eyebrow{ justify-content:center; }
.final-title{ font-size:clamp(2rem,4.6vw,3.4rem); color:#fff; letter-spacing:-.03em; margin-bottom:22px; }
.final-title em{ font-family:var(--serif); font-style:italic; font-weight:500; color:var(--gold-2); letter-spacing:0; }
.final-sub{ font-size:1.14rem; color:var(--on-dark-mut); max-width:560px; margin:0 auto 40px; }
.final-buttons{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-bottom:46px; }
.final-buttons .btn-ghost{ color:var(--on-dark); }
.final-contacts{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:26px; }
.contact-chip{
  display:inline-flex; align-items:center; gap:9px; padding:12px 22px; border-radius:100px;
  border:1px solid var(--line-dark); background:rgba(255,255,255,.04); color:var(--on-dark);
  font-weight:500; font-size:.95rem; transition:background .3s, border-color .3s, transform .3s var(--ease-out);
}
.contact-chip svg{ color:var(--gold-2); }
.contact-chip:hover{ background:rgba(195,154,84,.12); border-color:var(--gold); transform:translateY(-3px); }
.final-note{ font-size:.86rem; letter-spacing:.05em; color:var(--on-dark-mut); margin:0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--ink-2); color:var(--on-dark-mut); padding:56px 0 26px; }
.footer-inner{ display:grid; grid-template-columns:1.25fr .85fr .85fr auto; gap:36px; padding-bottom:36px; border-bottom:1px solid var(--line-dark); }
.footer-brand{ display:flex; align-items:center; gap:14px; }
.footer-brand .brand-name{ font-size:1.1rem; }
.footer-tag{ font-size:.86rem; color:var(--on-dark-mut); margin-top:2px; }
.footer-nav, .footer-contacts{ display:flex; flex-direction:column; gap:12px; padding-top:4px; }
.footer-nav a, .footer-contacts a{ color:var(--on-dark-mut); font-size:.95rem; transition:color .3s; width:fit-content; }
.footer-nav a:hover, .footer-contacts a:hover{ color:var(--gold-2); }
.footer-city{ font-size:.9rem; }

.footer-qr{ display:flex; flex-direction:column; align-items:center; gap:11px; text-align:center; }
.footer-qr-link{
  display:block; padding:9px; border-radius:16px; background:#fff; line-height:0;
  box-shadow:0 14px 32px -14px rgba(0,0,0,.55); border:1px solid var(--line-dark);
  transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
}
.footer-qr-link:hover{ transform:translateY(-4px) scale(1.03); box-shadow:0 20px 44px -14px rgba(195,154,84,.4); border-color:var(--gold); }
.footer-qr-link img{ width:100px; height:100px; display:block; border-radius:4px; }
.footer-qr-caption{ font-size:.78rem; color:var(--on-dark-mut); line-height:1.4; max-width:130px; }
.footer-qr-caption strong{ color:var(--gold-2); font-weight:600; }
.footer-bottom{ display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; padding-top:22px; font-size:.84rem; }
.footer-legal a{ color:var(--on-dark-mut); text-decoration:underline; text-underline-offset:3px; }
.footer-legal a:hover{ color:var(--gold-2); }

/* ============================================================
   Mobile sticky CTA
   ============================================================ */
.mobile-cta{
  position:fixed; bottom:18px; left:16px; transform:translateY(150%);
  z-index:90; display:none; align-items:center; gap:9px;
  padding:14px 22px; border-radius:100px; font-weight:600; font-size:.95rem;
  background:linear-gradient(180deg,var(--gold-2),var(--gold)); color:#3a2c0e;
  box-shadow:0 12px 30px -8px rgba(0,0,0,.5); transition:transform .4s var(--ease-out);
}
.mobile-cta svg{ color:#3a2c0e; }
.mobile-cta.show{ transform:translateY(0); }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal, .reveal-figure{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-figure{ transform:translateY(40px) scale(.98); }
.reveal.in-view, .reveal-figure.in-view{ opacity:1; transform:none; }
.stagger > .reveal{ transition-delay:calc(var(--i,0) * 80ms); }

@media (prefers-reduced-motion:reduce){
  .reveal,.reveal-figure{ opacity:1 !important; transform:none !important; }
  .hero-badge-1,.hero-badge-2,.hero-aurora,.final-aurora,.hero-scroll svg,.hb-dot,.play-ring::before,.fab-bot::before{ animation:none !important; }
  .rev-track{ transition:none !important; }
}

/* ============================================================
   «Дорогая» анимация: блеск на кнопках + слова заголовка
   ============================================================ */
.btn-primary{ position:relative; overflow:hidden; }
.btn-primary::after{
  content:""; position:absolute; top:0; bottom:0; left:-80%; width:50%;
  background:linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent);
  transform:skewX(-20deg); transition:left .7s var(--ease-out); pointer-events:none;
}
.btn-primary:hover::after{ left:130%; }

.hero-title.split .w{
  display:inline-block; opacity:0; transform:translateY(.55em); filter:blur(6px);
  animation:wordIn .85s var(--ease-out) forwards;
  animation-delay:calc(150ms + var(--wi) * 75ms);
}
@keyframes wordIn{ to{ opacity:1; transform:none; filter:none; } }

/* Лёгкий 3D-tilt для карточек (включается из JS на hover-устройствах) */
.tilt{ transform-style:preserve-3d; }

/* ============================================================
   Плавающие кнопки (FAB) + бот-помощник
   ============================================================ */
.fab-stack{
  position:fixed; right:18px; bottom:18px; z-index:95;
  display:flex; flex-direction:column; gap:12px; align-items:flex-end;
}
.fab{
  width:58px; height:58px; border-radius:50%; border:0; display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 34px -10px rgba(0,0,0,.5);
  transition:transform .35s var(--ease-out), box-shadow .35s, opacity .35s;
}
.fab:hover{ transform:translateY(-4px) scale(1.05); }
.fab svg{ width:24px; height:24px; }
.fab-top{
  background:var(--teal-800); color:#fff; width:46px; height:46px;
  opacity:0; pointer-events:none; transform:translateY(10px);
}
.fab-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.fab-top.show:hover{ transform:translateY(-3px); }
.fab-bot{
  position:relative; color:#3a2c0e;
  background:linear-gradient(180deg,var(--gold-2),var(--gold));
}
.fab-bot::before{
  content:""; position:absolute; inset:-2px; border-radius:50%;
  border:2px solid rgba(195,154,84,.55); animation:pulseRing 2.8s ease-out infinite;
}
.fab-bot .fab-close-i{ display:none; }
.fab-bot.open .fab-chat-i{ display:none; }
.fab-bot.open .fab-close-i{ display:block; }
.fab-bot.open::before{ animation:none; opacity:0; }

.bot-panel{
  position:fixed; right:18px; bottom:90px; z-index:96;
  width:min(390px, calc(100vw - 32px)); max-height:min(600px, calc(100svh - 120px));
  display:flex; flex-direction:column; overflow:hidden;
  background:var(--ink); border:1px solid var(--line-dark); border-radius:22px;
  box-shadow:var(--shadow-lg);
  opacity:0; transform:translateY(24px) scale(.97); pointer-events:none;
  transition:opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.bot-panel.open{ opacity:1; transform:none; pointer-events:auto; }
.bot-head{
  display:flex; align-items:center; gap:12px; padding:16px 18px;
  background:linear-gradient(180deg, rgba(60,111,102,.35), transparent); border-bottom:1px solid var(--line-dark);
}
.bot-ava{
  width:42px; height:42px; border-radius:50%; flex:none; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(180deg,var(--gold-2),var(--gold)); color:#3a2c0e;
}
.bot-ava svg{ width:22px; height:22px; }
.bot-title{ display:flex; flex-direction:column; line-height:1.25; }
.bot-name{ font-weight:700; color:#fff; font-size:.98rem; }
.bot-status{ font-size:.75rem; color:var(--teal-300); display:flex; align-items:center; gap:6px; }
.bot-status::before{ content:""; width:7px; height:7px; border-radius:50%; background:#69c99a; box-shadow:0 0 0 3px rgba(105,201,154,.2); }
.bot-close{ margin-left:auto; background:none; border:0; color:var(--on-dark-mut); padding:6px; border-radius:8px; transition:color .3s, background .3s; }
.bot-close:hover{ color:#fff; background:rgba(255,255,255,.08); }

.bot-msgs{ padding:18px; overflow-y:auto; display:flex; flex-direction:column; gap:12px; flex:1; scrollbar-width:thin; }
.bot-msg{
  max-width:86%; padding:12px 16px; border-radius:16px 16px 16px 4px;
  background:rgba(255,255,255,.06); border:1px solid var(--line-dark);
  color:var(--on-dark); font-size:.93rem; line-height:1.5;
  opacity:0; transform:translateY(10px); animation:msgIn .45s var(--ease-out) forwards;
}
.bot-msg.user{
  align-self:flex-end; border-radius:16px 16px 4px 16px;
  background:rgba(195,154,84,.16); border-color:rgba(195,154,84,.3);
}
@keyframes msgIn{ to{ opacity:1; transform:none; } }
.bot-typing{ display:inline-flex; gap:5px; padding:14px 18px; }
.bot-typing i{
  width:7px; height:7px; border-radius:50%; background:var(--on-dark-mut);
  animation:typDot 1.1s ease-in-out infinite;
}
.bot-typing i:nth-child(2){ animation-delay:.18s; }
.bot-typing i:nth-child(3){ animation-delay:.36s; }
@keyframes typDot{ 0%,100%{ opacity:.3; transform:translateY(0); } 50%{ opacity:1; transform:translateY(-4px); } }

.bot-chips{ padding:0 18px 18px; display:flex; flex-wrap:wrap; gap:9px; }
.bot-chip{
  border:1px solid rgba(195,154,84,.45); background:rgba(195,154,84,.08); color:var(--gold-2);
  padding:9px 16px; border-radius:100px; font-size:.86rem; font-weight:600;
  transition:background .3s, color .3s, transform .3s var(--ease-out); text-decoration:none; display:inline-flex; align-items:center; gap:7px;
}
.bot-chip:hover{ background:var(--gold); color:#3a2c0e; transform:translateY(-2px); }
.bot-chip svg{ width:15px; height:15px; }

/* ============================================================
   Модальное окно (YouTube-видео / читалка блога)
   ============================================================ */
.modal{ position:fixed; inset:0; z-index:110; display:flex; align-items:center; justify-content:center; padding:20px; visibility:hidden; }
.modal.open{ visibility:visible; }
.modal-backdrop{
  position:absolute; inset:0; background:rgba(8,16,15,.8);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  opacity:0; transition:opacity .4s;
}
.modal.open .modal-backdrop{ opacity:1; }
.modal-box{
  position:relative; width:min(920px,94vw); background:var(--ink); border:1px solid var(--line-dark);
  border-radius:22px; overflow:hidden; box-shadow:var(--shadow-lg);
  opacity:0; transform:translateY(26px) scale(.97); transition:opacity .45s var(--ease-out), transform .45s var(--ease-out);
}
.modal.open .modal-box{ opacity:1; transform:none; }
.modal-close{
  position:absolute; top:14px; right:14px; z-index:3; width:42px; height:42px; border-radius:50%;
  background:rgba(0,0,0,.5); border:1px solid var(--line-dark); color:#fff;
  display:flex; align-items:center; justify-content:center; transition:background .3s, transform .3s;
}
.modal-close:hover{ background:var(--gold); color:#3a2c0e; transform:rotate(90deg); }
.video-wrap{ aspect-ratio:16/9; background:#000; }
.video-wrap iframe{ width:100%; height:100%; border:0; display:block; }

.reader-box{ background:var(--paper); color:var(--text); max-height:86svh; display:flex; flex-direction:column; }
.reader-body{ padding:clamp(28px,4vw,52px); overflow-y:auto; }
.reader-body h2{ color:var(--teal-900); font-size:clamp(1.5rem,3vw,2.2rem); margin-bottom:8px; }
.reader-body .post-meta{ margin-bottom:22px; }
.reader-body p{ color:var(--text-soft); font-size:1.05rem; }
.reader-body .reader-cta{ margin-top:28px; }

/* ============================================================
   Реквизиты для оплаты
   ============================================================ */
.requisites-box{ background:var(--paper); color:var(--text); max-height:88svh; display:flex; flex-direction:column; }
.requisites-body{ padding:clamp(28px,4vw,48px); overflow-y:auto; }
.requisites-body h3{ color:var(--teal-900); font-size:clamp(1.3rem,2.4vw,1.7rem); letter-spacing:-.02em; margin:2px 0 8px; }
.req-note{ color:var(--text-mut); font-size:.9rem; margin-bottom:8px; }

.req-list{ margin:22px 0 0; border-top:1px solid var(--line); }
.req-row{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:15px 0; border-bottom:1px solid var(--line);
}
.req-row dt{
  flex:0 0 auto; width:150px; font-size:.78rem; letter-spacing:.06em; text-transform:uppercase;
  color:var(--text-mut); font-weight:600;
}
.req-row dd{
  flex:1; margin:0; display:flex; align-items:center; justify-content:flex-end; gap:12px;
  text-align:right;
}
.req-row dd .req-val{
  font-weight:600; color:var(--teal-900); font-variant-numeric:tabular-nums; word-break:break-word;
}
.req-copy{
  flex:none; width:34px; height:34px; border-radius:10px; border:1px solid var(--line);
  background:#fff; color:var(--teal-700); display:flex; align-items:center; justify-content:center;
  transition:background .3s, border-color .3s, color .3s, transform .3s var(--ease-out);
}
.req-copy svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.req-copy:hover{ border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }
.req-copy.copied{ background:var(--gold); border-color:var(--gold); color:#3a2c0e; }
.req-copy.copied svg{ display:none; }
.req-copy.copied::after{
  content:"✓"; font-size:.85rem; font-weight:700; line-height:1;
}

.req-purpose{ align-items:flex-start; }
.req-purpose dd{ justify-content:flex-start; text-align:left; }
.req-purpose dd .req-val{ font-weight:500; font-size:.92rem; line-height:1.55; color:var(--text-soft); }

.req-actions{ margin-top:26px; display:flex; flex-wrap:wrap; gap:12px; }
.req-actions .btn.copied{ background:var(--sage); color:var(--teal-900); border-color:var(--teal-500); }

.price-requisites{ text-align:center; margin-top:10px; }
.req-link{
  display:inline-flex; align-items:center; gap:8px; background:none; border:0; padding:6px 2px;
  color:var(--teal-700); font-size:.9rem; font-weight:600; border-bottom:1px solid transparent;
  transition:color .3s, border-color .3s;
}
.req-link:hover{ color:var(--gold); border-color:currentColor; }

.footer-link-btn{
  background:none; border:0; padding:0; margin:0; font:inherit; color:inherit; cursor:pointer;
  text-decoration:underline; text-decoration-color:transparent; transition:text-decoration-color .3s, color .3s;
}
.footer-link-btn:hover{ color:var(--gold-2); text-decoration-color:currentColor; }

@media (max-width:560px){
  .req-row{ flex-direction:column; align-items:flex-start; gap:10px; }
  .req-row dt{ width:auto; }
  .req-row dd{ width:100%; justify-content:space-between; text-align:left; }
  .req-purpose dd{ justify-content:flex-start; }
}

/* ============================================================
   Блог
   ============================================================ */
.blog{ background:var(--paper); }
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.blog-card{
  display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-sm); cursor:pointer;
  transition:transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.blog-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow); }
.blog-cover{ aspect-ratio:16/10; overflow:hidden; position:relative; }
.blog-cover img{ width:100%; height:100%; object-fit:cover; object-position:top; transition:transform .8s var(--ease-out); }
.blog-card:hover .blog-cover img{ transform:scale(1.06); }
.blog-cover-svg{
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(150deg,var(--teal-800),var(--ink));
}
.blog-cover-svg svg{ width:38%; height:auto; opacity:.9; }
.blog-body{ padding:24px 26px 28px; display:flex; flex-direction:column; flex:1; }
.post-meta{ font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:12px; display:block; }
.blog-body h3{ font-size:1.18rem; color:var(--teal-900); margin-bottom:10px; line-height:1.3; }
.blog-excerpt{ color:var(--text-soft); font-size:.95rem; flex:1; margin-bottom:18px; }
.blog-more{
  display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:.9rem; color:var(--teal-800);
}
.blog-more svg{ transition:transform .35s var(--ease-out); }
.blog-card:hover .blog-more svg{ transform:translateX(5px); }
.blog-all{ text-align:center; margin-top:40px; }

/* Кнопка «Блог» в шапке */
.nav-blog{
  flex:none; color:var(--gold-2); border-color:rgba(195,154,84,.5);
}
.nav-blog:hover{ background:rgba(195,154,84,.14); border-color:var(--gold); }

/* Страница блога */
.blog-hero{
  background:var(--ink); color:var(--on-dark); padding:170px 0 80px; position:relative; overflow:hidden;
}
.blog-hero .hero-aurora{ opacity:.7; }
.blog-hero-inner{ position:relative; z-index:1; }
.blog-hero h1{ font-size:clamp(2.2rem,5vw,3.6rem); color:#fff; letter-spacing:-.03em; }
.blog-hero h1 em{ font-family:var(--serif); font-style:italic; font-weight:500; color:var(--gold-2); }
.blog-hero p{ color:var(--on-dark-mut); max-width:560px; margin-top:16px; font-size:1.1rem; }
.blog-page-grid{ padding:clamp(56px,7vw,90px) 0; }
.post-hidden{ display:none; }

/* ============================================================
   Responsive
   ============================================================ */
/* Header switches to the hamburger menu earlier than the rest of the
   layout — with brand + 6 links + 2 buttons, anything below ~1180px
   doesn't have room to keep every label on one line. */
@media (max-width:1240px){
  .nav-links{ display:none; }
  .nav-cta{ display:none; }
  .nav-blog{ display:none; }
  .nav-toggle{ display:flex; }
}
@media (max-width:1024px){
  .hero-inner{ grid-template-columns:1fr; gap:26px; }
  .hero-figure{ order:-1; width:min(380px,88%); }
  .hero-photo-frame{ width:min(290px,76%); }
  .hero-badge-1{ left:0; }
  .hero-badge-2{ right:0; }
  .outcomes-inner, .about-inner{ grid-template-columns:1fr; }
  .about-media{ max-width:460px; margin-inline:auto; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); gap:34px 20px; }
  .stat:nth-child(2)::after, .stat:nth-child(4)::after{ display:none; }
  .process-steps, .safety-grid{ grid-template-columns:repeat(2,1fr); gap:32px 24px; }
  .pricing-grid{ grid-template-columns:1fr; max-width:460px; margin-inline:auto; }
  .price-featured{ transform:none; }
  .price-featured:hover{ transform:translateY(-6px); }
  .blog-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px){
  .review-card{ flex-basis:100%; }
}
@media (max-width:680px){
  .hero{ min-height:auto; padding-top:130px; text-align:left; }
  .recognize-list{ grid-template-columns:1fr; gap:0; }
  .paths-grid{ grid-template-columns:1fr; }
  .process-steps{ grid-template-columns:1fr; }
  .safety-grid{ grid-template-columns:1fr; }
  .about-caption{ position:static; margin:16px auto 0; max-width:none; }
  .footer-inner{ grid-template-columns:1fr; gap:26px; }
  .footer-bottom{ flex-direction:column; gap:8px; }
  .mobile-cta{ display:inline-flex; }
  .hero-cta .btn{ width:100%; }
  .stat:not(:last-child)::after{ display:none; }
  .blog-grid{ grid-template-columns:1fr; }
  .bot-panel{ right:12px; left:12px; width:auto; bottom:88px; }
  .modal-box{ width:min(94vw,720px); }
}
@media (max-width:400px){
  .stats-grid{ grid-template-columns:1fr; gap:26px; }
  .hero-badge{ display:none; }
}
