/* ============================================================
   ПК «Сабирин» - единый дизайн-язык SAVVY
   Направление: «Живой и человечный / community».
   Тёплый крем, бренд-зелёный, терракота, мягкие тёплые тени,
   крупные скругления, pill-кнопки. Это фундамент для ВСЕХ страниц.
   ============================================================ */

:root {
  /* --- Фон / поверхности --- */
  --bg:         #FAF6EF;   /* кремовый фон страницы */
  --bg-warm:    #F3ECE0;   /* тёплый second, секции-вставки */
  --surface:    #FFFFFF;   /* карточки */

  /* --- Бренд-зелёный (доверие, природа, еда) --- */
  --green:      #2F7A4D;
  --green-deep: #1E5235;
  --green-soft: #E7F0E8;   /* бледный зелёный фон */

  /* --- Тёплый акцент (эмоция, люди) --- */
  --accent:      #E08A4B;  /* терракота / охра */
  --accent-deep: #C26F33;
  --accent-soft: #FBE9D8;

  /* --- Текст --- */
  --ink:    #23211C;       /* тёплый тёмный */
  --muted:  #6F695E;       /* вторичный */
  --faint:  #9C9486;       /* третичный / подписи */

  /* --- Линии --- */
  --line:      #ECE3D5;
  --line-soft: #F2EBDF;

  /* --- Тени (тёплые, мягкие) --- */
  --shadow:    0 10px 30px rgba(60,45,25,.08);
  --shadow-lg: 0 26px 60px -28px rgba(60,45,25,.28);
  --shadow-sm: 0 4px 14px rgba(60,45,25,.06);

  /* --- Скругления --- */
  --r:    18px;
  --r-lg: 28px;
  --r-sm: 12px;
  --pill: 100px;

  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--accent-soft); color: var(--accent-deep); }

/* ---------- Контейнер ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

/* ============================================================
   ТИПОГРАФИКА H1-H4 + утилиты
   ============================================================ */
.h1 { font-size: clamp(40px, 6.4vw, 78px); line-height: 1.04; letter-spacing: -.015em; font-weight: 600; }
.h2 { font-size: clamp(30px, 4.2vw, 52px); line-height: 1.08; letter-spacing: -.01em; font-weight: 600; }
.h3 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.15; font-weight: 600; }
.h4 { font-size: clamp(18px, 2vw, 22px); line-height: 1.25; font-weight: 600; }

.lead { font-family: 'Inter', sans-serif; font-size: clamp(17px, 1.9vw, 21px); color: var(--muted); font-weight: 400; line-height: 1.55; }
.muted { color: var(--muted); }

/* eyebrow / label / бейджи */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .02em; color: var(--green); background: var(--green-soft);
  padding: 7px 14px; border-radius: var(--pill);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: none; }
.eyebrow.is-accent { color: var(--accent-deep); background: var(--accent-soft); }
.eyebrow.is-accent::before { background: var(--accent); }

.label {
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green);
}

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--pill); letter-spacing: .01em;
}
.badge.is-live { background: var(--green-soft); color: var(--green-deep); }
.badge.is-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(47,122,77,.18); }
.badge.is-soon { background: var(--bg-warm); color: var(--muted); }

/* ============================================================
   КНОПКИ: primary (зелёная), accent (терракота), ghost
   ============================================================ */
.btn {
  font-family: 'Inter', sans-serif; font-size: 15.5px; font-weight: 700;
  padding: 14px 26px; border-radius: var(--pill);
  transition: transform .25s var(--ease), background .25s, box-shadow .25s, border-color .25s, color .25s;
  cursor: pointer; border: 1.5px solid transparent; display: inline-flex; align-items: center; gap: 9px;
  white-space: nowrap;
}
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, #3E9D63, var(--green) 58%, var(--green-deep)); color: #fff;
  box-shadow: 0 12px 30px -12px rgba(47,122,77,.55), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(47,122,77,.65), inset 0 1px 0 rgba(255,255,255,.3); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff;
  box-shadow: 0 12px 30px -12px rgba(224,138,75,.55), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(224,138,75,.65); }

.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ============================================================
   ШАПКА / НАВИГАЦИЯ
   ============================================================ */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,239,.8); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), background .3s;
}
header.scrolled { border-bottom-color: var(--line); background: rgba(250,246,239,.92); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: .1em; font-size: 14px; color: var(--ink); flex: none; }
.brand .dot { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-deep)); display: grid; place-items: center; flex: none; position: relative; }
.brand .dot::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.brand small { font-family: 'Inter', sans-serif; font-weight: 500; letter-spacing: .02em; color: var(--faint); font-size: 10.5px; display: block; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a[data-mob-login] { display: none; }  /* виден только в мобильном меню */
.nav-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ============================================================
   СЕКЦИИ
   ============================================================ */
section.block { padding: clamp(64px, 8vw, 110px) 0; }
.section-warm { background: var(--bg-warm); }
.section-green { background: var(--green-soft); }
.head { max-width: 60ch; margin-bottom: 50px; }
.head .h2 { margin-top: 14px; }
.head p { margin-top: 18px; font-size: 18px; color: var(--muted); max-width: 56ch; }
.head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.head.is-center p { margin-left: auto; margin-right: auto; }

/* ============================================================
   КАРТОЧКИ (универсальные)
   ============================================================ */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.card.is-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-soft); }

/* иконка в тёплом кружке */
.ico-chip { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; flex: none; }
.ico-chip svg { width: 28px; height: 28px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico-chip.is-green { background: var(--green-soft); } .ico-chip.is-green svg { stroke: var(--green); }
.ico-chip.is-accent { background: var(--accent-soft); } .ico-chip.is-accent svg { stroke: var(--accent-deep); }

/* аватар-инициалы */
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 16px; color: #fff; flex: none; font-family: 'Inter', sans-serif; }

/* мини-таймлайн внутри карточки «как пришли» */
.tl-item { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); align-items: start; font-family: 'Inter', sans-serif; }
.tl-item .tl-yr { font-weight: 800; color: var(--green); font-size: 14.5px; }
.tl-item > div { color: var(--muted); font-size: 14.5px; line-height: 1.45; }
.tl-item > div b { color: var(--ink); font-weight: 700; }

/* ============================================================
   ПОЯВЛЕНИЕ (прогрессивное улучшение):
   контент ВИДИМ по умолчанию, .is-visible лишь добавляет плавность.
   Без JS всё читается. app.js добавляет .is-visible -> анимация.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .js .reveal.is-visible { opacity: 1; transform: none; }
}

/* ============================================================
   HERO (главная)
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 104px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 5.6vw, 70px); }
.hero h1 .accent { color: var(--accent); }
.hero h1 .green { color: var(--green); }
.hero .hero-sub { margin-top: 20px; max-width: 48ch; }
.hero-rotor { margin-top: 10px; font-family: 'Fraunces', serif; font-size: clamp(22px, 3.2vw, 36px); font-style: italic; color: var(--muted); line-height: 1.1; }
.hero-rotor .rot { color: var(--accent); font-weight: 600; display: inline-block; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.hero-rotor .rot.swap { opacity: 0; transform: translateY(8px); }
.hero-pains { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.hero-pains li { display: flex; align-items: center; gap: 13px; font-size: 15.5px; color: var(--ink); line-height: 1.4; }
.hero-pains li b { font-weight: 700; }
.hero-pains .hp-ico { flex-shrink: 0; width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--green-soft); color: var(--green-deep); font-size: 18px; }
@media (prefers-reduced-motion: reduce) { .hero-rotor .rot { transition: none; } }
.hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust .avstack { display: flex; }
.hero-trust .avstack .avatar { width: 40px; height: 40px; font-size: 14px; border: 2.5px solid var(--bg); margin-left: -12px; }
.hero-trust .avstack .avatar:first-child { margin-left: 0; }
.hero-trust .trust-txt { font-size: 14px; color: var(--muted); max-width: 30ch; line-height: 1.45; }
.hero-trust .trust-txt b { color: var(--ink); font-weight: 700; }

/* визуальная панель героя - тёплые SVG-блобы + карточка-факт */
.hero-art { position: relative; aspect-ratio: 1/1; max-width: 480px; margin: 0 auto; width: 100%; }
.hero-art .blob { position: absolute; inset: 0; }
.hero-fact {
  position: absolute; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px 18px; box-shadow: var(--shadow); display: flex; gap: 12px; align-items: center;
}
.hero-fact .num { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1; }
.hero-fact .fl { font-size: 12.5px; color: var(--muted); line-height: 1.35; }
.hero-fact.f1 { top: 8%; left: -4%; }
.hero-fact.f2 { bottom: 12%; right: -6%; }
.hero-fact.f3 { bottom: -3%; left: 12%; }
.hero-fact.f1 .num { font-size: 30px; color: var(--accent); }
.hero-fact.f2 .num { font-size: 30px; color: var(--green); }

/* ============================================================
   ПОЛОСА-ЦИФРЫ (stat band)
   ============================================================ */
.statband { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat { text-align: center; padding: 8px; }
.stat .v { font-family: 'Fraunces', serif; font-size: clamp(34px, 4.4vw, 54px); font-weight: 600; line-height: 1; letter-spacing: -.01em; }
.stat .v.is-accent { color: var(--accent); }
.stat .v.is-green { color: var(--green); }
.stat .k { margin-top: 10px; font-size: 15px; color: var(--muted); }

/* ============================================================
   КАК ЭТО РАБОТАЕТ - 3 шага
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.step .step-n { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px; display: grid; place-items: center; margin-bottom: 20px; }
.step h4 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15.5px; }
.steps-arrow { display: none; }

/* ============================================================
   ПРОГРАММЫ
   ============================================================ */
.programs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.prog { display: flex; flex-direction: column; }
.prog .prog-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.prog .tag { font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green); }
.prog h3 { margin-top: 4px; }
.prog p { color: var(--muted); margin-top: 12px; font-size: 16px; flex: 1; }
.prog .go { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-weight: 700; color: var(--green); font-size: 15px; }
.prog .go .arr { transition: transform .25s var(--ease); }
.prog:hover .go .arr { transform: translateX(4px); }
.prog.is-soon .go { color: var(--faint); pointer-events: none; }

/* ============================================================
   ПОЧЕМУ ДОВЕРЯТЬ - карточки-факты
   ============================================================ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-card { display: flex; flex-direction: column; gap: 16px; }
.trust-card h4 { margin: 0; }
.trust-card p { color: var(--muted); font-size: 15.5px; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.compare .col { border-radius: var(--r); padding: 22px 22px 24px; }
.compare .col.bad { background: var(--bg-warm); }
.compare .col.good { background: var(--green-soft); }
.compare .col .ct { font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.compare .col.bad .ct { color: var(--muted); }
.compare .col.good .ct { color: var(--green-deep); }
.compare li { list-style: none; display: flex; gap: 10px; padding: 7px 0; font-size: 15px; align-items: flex-start; line-height: 1.4; }
.compare li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.compare .col.bad li svg { stroke: var(--faint); }
.compare .col.good li svg { stroke: var(--green); }
.compare .col.bad li { color: var(--muted); }

/* ============================================================
   ДОКУМЕНТЫ
   ============================================================ */
.docs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.doc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-sm); transition: border-color .25s, transform .25s var(--ease), box-shadow .25s; }
.doc:hover { border-color: var(--accent-soft); transform: translateY(-3px); box-shadow: var(--shadow); }
.doc .doc-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--green-soft); display: grid; place-items: center; }
.doc .doc-ico svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.doc b { font-size: 15.5px; font-weight: 700; font-family: 'Inter', sans-serif; }
.doc span { font-size: 13px; color: var(--faint); }
.doc[data-docs] { cursor: pointer; }
.doc.is-soon { opacity: .6; pointer-events: none; }
.doc.is-soon .doc-ico { background: var(--bg-warm); }
.doc.is-soon .doc-ico svg { stroke: var(--faint); }

/* лайтбокс - просмотр документа по клику (СОХРАНЁН) */
.lightbox { position: fixed; inset: 0; background: rgba(30,82,53,.92); backdrop-filter: blur(6px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 40px; overflow: auto; }
.lightbox.open { display: flex; }
.lb-inner { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; align-items: flex-start; }
.lb-inner img { max-height: 86vh; max-width: 44vw; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); background: #fff; }
.lb-close { position: fixed; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,.18); color: #fff; font-size: 24px; cursor: pointer; z-index: 210; transition: background .2s; }
.lb-close:hover { background: rgba(255,255,255,.34); }
@media (max-width: 760px) { .lb-inner { flex-direction: column; } .lb-inner img { max-width: 90vw; max-height: 80vh; } }

/* ============================================================
   ФИНАЛЬНЫЙ CTA
   ============================================================ */
.cta-band { padding: 0 26px clamp(64px, 8vw, 100px); }
.cta {
  margin: 0 auto; max-width: var(--maxw); border-radius: var(--r-lg); padding: clamp(52px, 7vw, 80px) 40px;
  background: linear-gradient(135deg, var(--green), var(--green-deep)); color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta .blob-deco { position: absolute; opacity: .5; pointer-events: none; }
.cta .blob-deco.b1 { top: -120px; right: -90px; width: 360px; }
.cta .blob-deco.b2 { bottom: -130px; left: -80px; width: 300px; }
.cta h2 { position: relative; }
.cta p { margin-top: 16px; color: rgba(255,255,255,.86); font-size: 18px; position: relative; max-width: 48ch; margin-left: auto; margin-right: auto; }
.cta .cta-actions { margin-top: 32px; position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary { background: #fff; color: var(--green-deep); box-shadow: none; }
.cta .btn-primary:hover { background: var(--accent-soft); color: var(--accent-deep); }
.cta .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.cta .cta-note { margin-top: 20px; position: relative; font-size: 13.5px; color: rgba(255,255,255,.7); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--line); padding: 60px 0 40px; background: var(--bg-warm); }
.foot { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot h4 { font-family: 'Inter', sans-serif; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; font-weight: 700; }
.foot a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color .2s; }
.foot a:hover { color: var(--green); }
.foot p { color: var(--muted); font-size: 14.5px; max-width: 36ch; margin-top: 16px; }
.foot-bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--faint); font-size: 13px; }

/* ============================================================
   ВНУТРЕННИЕ СТРАНИЦЫ (subhero и пр.) - для goods/maps/join
   ============================================================ */
.subhero { padding: clamp(40px,6vw,80px) 0 0; }
.crumbs { font-family: 'Inter', sans-serif; font-size: 13.5px; color: var(--faint); display: flex; gap: 8px; align-items: center; }
.crumbs a:hover { color: var(--green); }
.subhero h1 { margin-top: 22px; max-width: 18ch; }
.subhero h1 em { font-style: normal; color: var(--green); }
.subhero .lead { margin-top: 22px; max-width: 56ch; }
.subhero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links a[data-mob-login] { display: block; color: var(--green); font-weight: 700; }
  .nav-cta .nav-link-login { display: none; }
  .nav-cta .btn { padding: 10px 16px; font-size: 13.5px; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 360px; order: -1; }
  .programs, .docs-grid, .trust-grid, .steps, .statband { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .programs, .docs-grid, .trust-grid, .steps, .statband, .compare { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 28px; }
  .hero-art { max-width: 290px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-fact { padding: 11px 13px; gap: 9px; }
  .hero-fact .num { font-size: 24px !important; }
  .hero-fact .fl { font-size: 11.5px; }
  .hero-fact.f1 { top: 2%; left: -2%; } .hero-fact.f2 { bottom: 6%; right: -2%; }
  .stat .v { font-size: 40px; }
  .head { margin-bottom: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   НОВЫЙ СЛОЙ ЭФФЕКТОВ (warm-light, в духе Aceternity/Magic UI)
   Всё декоративное — aria-hidden, поверх читаемого контента.
   ============================================================ */

/* --- Aurora: мягкие дышащие пятна на фоне секции --- */
.aurora { position: absolute; inset: -15% -10%; z-index: 0; pointer-events: none; filter: blur(80px); opacity: .7; }
.aurora span { position: absolute; border-radius: 50%; animation: aurora-drift 20s var(--ease) infinite alternate; }
.aurora .a1 { width: 520px; height: 520px; left: -4%; top: -10%; background: radial-gradient(circle, rgba(62,157,99,.30), transparent 70%); }
.aurora .a2 { width: 440px; height: 440px; right: -2%; top: 0; animation-delay: -7s; background: radial-gradient(circle, rgba(224,138,75,.28), transparent 70%); }
.aurora .a3 { width: 520px; height: 520px; left: 40%; bottom: -30%; animation-delay: -13s; background: radial-gradient(circle, rgba(231,240,232,.9), transparent 70%); }
@keyframes aurora-drift { from { transform: translate(0,0) scale(1); } to { transform: translate(34px,-26px) scale(1.12); } }

/* --- Сетка с виньетом --- */
.grid-fade {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .55;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(80% 55% at 50% 25%, #000, transparent 75%);
          mask-image: radial-gradient(80% 55% at 50% 25%, #000, transparent 75%);
}

/* hero/cta содержимое поверх эффектов */
.hero .hero-grid, .cta > *:not(.blob-deco):not(.aurora) { position: relative; z-index: 2; }

/* --- Value-card: крупная ценность в герое --- */
.value-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px 34px; box-shadow: var(--shadow-lg); overflow: hidden; }
.value-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--green), var(--accent)); }
.value-card .vc-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.value-card .vc-big { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(54px, 8vw, 88px); line-height: .95; letter-spacing: -2px; background: linear-gradient(120deg, #3E9D63, var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.value-card .vc-sub { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--muted); margin: 6px 0 24px; }
.value-card .vc-rows { display: grid; gap: 14px; }
.value-card .vc-row { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-family: 'Inter', sans-serif; line-height: 1.4; }
.value-card .vc-row .chk { width: 24px; height: 24px; border-radius: 8px; flex: none; display: grid; place-items: center; background: var(--green-soft); color: var(--green-deep); font-weight: 800; font-size: 13px; }
.value-card .vc-row.acc .chk { background: var(--accent-soft); color: var(--accent-deep); }
.value-card .vc-row b { font-weight: 600; }

/* --- Цветные benefit-карточки (tilt + свечение) --- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bcard { position: relative; padding: 34px 30px 30px; border-radius: var(--r-lg); overflow: hidden; color: #fff; min-height: 270px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .25s var(--ease), box-shadow .35s var(--ease); transform-style: preserve-3d; }
.bcard::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .3s; background: radial-gradient(340px circle at var(--cx,50%) var(--cy,50%), rgba(255,255,255,.22), transparent 60%); }
.bcard:hover::before { opacity: 1; }
.bcard.b-green { background: linear-gradient(150deg, #3E9D63, var(--green-deep)); box-shadow: 0 26px 50px -24px rgba(47,122,77,.55); }
.bcard.b-accent { background: linear-gradient(150deg, #E8955A, #B65D24); box-shadow: 0 26px 50px -24px rgba(224,138,75,.55); }
.bcard.b-sage { background: linear-gradient(150deg, #6AA893, #34685A); box-shadow: 0 26px 50px -24px rgba(58,107,92,.5); }
.bcard .b-num { position: absolute; top: 26px; left: 30px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 64px; line-height: 1; color: rgba(255,255,255,.16); transform: translateZ(20px); }
.bcard .b-ic { position: absolute; top: 30px; right: 30px; font-size: 26px; transform: translateZ(40px); }
.bcard h4 { font-size: 21px; font-weight: 700; margin-bottom: 8px; transform: translateZ(30px); }
.bcard p { font-family: 'Inter', sans-serif; font-size: 14.5px; color: rgba(255,255,255,.82); transform: translateZ(20px); }

/* --- Карточка с внутренним свечением за курсором (для обычных .card) --- */
.card.is-glow { position: relative; }
.card.is-glow::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .3s; background: radial-gradient(320px circle at var(--cx,50%) var(--cy,50%), rgba(62,157,99,.12), transparent 60%); }
.card.is-glow:hover::after { opacity: 1; }

/* --- Скелетон + спиннер (для форм/загрузки) --- */
.skel { position: relative; overflow: hidden; background: #EFE7DA; border-radius: 8px; }
.skel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent); transform: translateX(-100%); animation: skel-shimmer 1.4s infinite; }
@keyframes skel-shimmer { to { transform: translateX(100%); } }
.skel.circle { width: 40px; height: 40px; border-radius: 50%; flex: none; }
.skel.line { height: 11px; margin: 7px 0; }
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; animation: spin .7s linear infinite; display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn.loading { pointer-events: none; opacity: .9; }
.btn.loading .spinner { display: inline-block; }
.btn.loading .label, .btn.loading .arr { display: none; }

@media (max-width: 900px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .benefits { grid-template-columns: 1fr; } .value-card { padding: 28px 24px; } }

@media (prefers-reduced-motion: reduce) {
  .aurora span { animation: none; }
  .bcard, .card.is-glow { transition: none; }
}
