/* ============== Antikor Metal ============== */
:root {
  --primary:      #1F8A5B;
  --primary-rgb:  31,138,91;
  --secondary:    #071A3D;
  --bg:           #EEF3F2;
  --surface:      #FFFFFF;
  --text-primary: #122222;
  --text-body:    #4D5B58;
  --accent:       #22B96F;
  --accent-rgb:   34,185,111;
  --accent-deep:  #147C4B;
  --accent-soft:  #65D892;
  --accent-hot:   #20D474;
  --success:      #1F9E6B;
  --line:         #D0DDD8;
  --glass:        rgba(28,93,130,.06);
  --text-on-dark: #EAF1F6;
  --font-display: 'Archivo', sans-serif;
  --font-body:    'Inter', sans-serif;
  --space-7:      32px;
  --radius:       16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.05rem;
  overflow-x: hidden;
  padding-bottom: calc(70px + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 18px; }

h1, h2, h3 { font-family: var(--font-display); color: var(--text-primary); line-height: 1.1; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  letter-spacing: -0.4px;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.section-title.center { text-align: center; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 24px;
}
.section-sub.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.accent-word { color: var(--primary); }

/* sections spacing */
.pain-section, .solution-section, .benefits-section, .ba-section,
.compare-section, .steps-section, .reviews-section, .bundles-section,
.order-section, .faq-section { padding: 64px 0; }
@media (min-width: 768px) {
  .pain-section, .solution-section, .benefits-section, .ba-section,
  .compare-section, .steps-section, .reviews-section, .bundles-section,
  .order-section, .faq-section { padding: 96px 0; }
}

/* buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 56px;
  padding: 0 28px;
  background: linear-gradient(135deg, #1F8A5B, #20D474);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(31,138,91,.55);
  transition: transform .2s ease, box-shadow .2s ease;
  text-align: center;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(31,138,91,.65); }
/* C3 — CTA breathing + glow ring */
.cta-breathing { animation: breathe 2.6s ease-in-out infinite; will-change: box-shadow; }
@keyframes breathe {
  0%, 100% { box-shadow: 0 12px 28px -8px rgba(31,138,91,.5),
                         0 0 0 0 rgba(var(--accent-rgb), .42); }
  50%      { box-shadow: 0 12px 34px -4px rgba(32,212,116,.75),
                         0 0 0 14px rgba(var(--accent-rgb), 0); }
}
.cta-breathing:hover { animation-play-state: paused; }

/* ============== HEADER ============== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 18px -10px rgba(15,58,82,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  letter-spacing: -0.5px;
}
.logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  color: var(--text-primary); letter-spacing: -0.5px;
  display: flex; flex-direction: column; line-height: 1;
}
.logo-slogan { font-family: var(--font-body); font-weight: 500; font-size: .62rem; color: var(--text-body); letter-spacing: 0; margin-top: 2px; }
.header-trust { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--text-body); }
.header-icon { width: 26px; height: 26px; border-radius: 6px; }
@media (max-width: 480px) { .header-trust span { max-width: 90px; line-height: 1.2; } .logo-slogan { display: none; } }

/* ============== HERO ============== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 90% 8%, rgba(var(--primary-rgb),.05), transparent 45%),
    linear-gradient(rgba(var(--primary-rgb),.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb),.022) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 32px 32px, 32px 32px, auto;
  padding: 38px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero-inner { display: flex; flex-direction: column; gap: 1.4rem; }
.hero-h1 {
  font-weight: 800;
  font-size: clamp(1.9rem, 5.2vw, 3.4rem);
  letter-spacing: -0.5px;
  line-height: 1.05;
}
/* C2 — hero word-by-word reveal */
.hero-h1-words span {
  display: inline-block; opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}
.hero-h1-words.is-revealed span { opacity: 1; transform: translateY(0); }
.hero-h1-words.is-revealed span:nth-child(1) { transition-delay: 0ms; }
.hero-h1-words.is-revealed span:nth-child(2) { transition-delay: 80ms; }
.hero-h1-words.is-revealed span:nth-child(3) { transition-delay: 160ms; }
.hero-h1-words.is-revealed span:nth-child(4) { transition-delay: 240ms; }
.hero-h1-words.is-revealed span:nth-child(5) { transition-delay: 320ms; }
.hero-h1-words.is-revealed span:nth-child(6) { transition-delay: 400ms; }
.hero-h1-words.is-revealed span:nth-child(7) { transition-delay: 480ms; }
.hero-h1-words.is-revealed span:nth-child(8) { transition-delay: 560ms; }
.hero-sub { font-size: 1.08rem; color: var(--text-body); }
.hero-image img {
  width: 100%; height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -20px rgba(15,58,82,.35);
}
.hero-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero-checks li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--text-primary); }
.check-ico { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; }
.hero-details .cta-btn { width: 100%; margin: 18px 0 14px; }

.timer {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: rgba(var(--accent-rgb),.08);
  border: 1px solid var(--accent-hot);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 12px;
  animation: timerPulse 2.2s ease-in-out infinite;
}
@keyframes timerPulse { 0%,100% { border-color: rgba(var(--accent-rgb),.5);} 50% { border-color: var(--accent-hot);} }
.timer-label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--accent-deep); }
.timer-clock { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.35rem, 6vw, 1.6rem); color: var(--accent-hot); font-variant-numeric: tabular-nums; white-space: nowrap; }
/* C2 — ms timer */
.timer-ms { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }
.timer-ms__ms { font-size: .68em; opacity: .72; display: inline-block; min-width: 3.4ch; text-align: left; }

.viewer-count { display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; font-size: .9rem; color: var(--text-body); margin-bottom: 14px; }
.viewer-count strong { color: var(--primary); font-family: var(--font-display); }
/* A1 — pulsing live dot */
.viewer-count__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex-shrink: 0; animation: viewerDot 1.5s infinite; }
@keyframes viewerDot { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(31,158,107,.5); } 50% { opacity: .4; box-shadow: 0 0 0 6px rgba(31,158,107,0); } }
.trust { display: flex; flex-direction: column; gap: 8px; }
.trust-row { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--text-body); }

@media (min-width: 768px) {
  .hero { padding: 56px 0 80px; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 1.6rem 4rem;
    align-items: start;
  }
  .hero-heading { grid-column: 1; grid-row: 1; }
  .hero-image   { grid-column: 2; grid-row: 1 / -1; align-self: center; }
  .hero-details { grid-column: 1; grid-row: 2; }
  .hero-details .cta-btn { width: auto; min-width: 320px; }
  .timer { align-self: flex-start; display: inline-flex; }
  .viewer-count { justify-content: flex-start; }
}

/* ============== БІЛЬ ============== */
.pain-section { background: var(--secondary); color: var(--text-on-dark); }
.pain-section .section-title { color: #fff; }
.pain-section .section-sub { color: rgba(234,241,246,.8); }
.pain-inner { display: flex; flex-direction: column; gap: 28px; }
.pain-photo img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pain-list li { position: relative; padding-left: 22px; color: var(--text-on-dark); }
.pain-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent-hot); font-weight: 800; }
@media (min-width: 768px) {
  .pain-inner { flex-direction: row; align-items: center; }
  .pain-photo, .pain-text { flex: 1; }
}

/* ============== РІШЕННЯ + SIGNATURE Grid Pour ============== */
.solution-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
/* grid-pour overlay: технічна сітка, що "заливається" зліва-направо при scroll-in */
.grid-pour {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(rgba(var(--primary-rgb),.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb),.05) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 var(--pour, 0%), transparent var(--pour, 0%));
          mask-image: linear-gradient(90deg, #000 0%, #000 var(--pour, 0%), transparent var(--pour, 0%));
  transition: none;
}
.grid-pour.is-pouring {
  transition: -webkit-mask-position .1s, mask-position .1s;
}
/* glossy валик-glanc, що пробігає поверх сітки під час заливки */
.grid-pour::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb),.18), transparent);
  width: 120px;
  transform: translateX(-160px);
  opacity: 0;
}
.grid-pour.is-pouring::after {
  animation: pourGlanc 1.4s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes pourGlanc {
  0%   { opacity: 0; transform: translateX(-160px); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(min(100vw, 1160px)); }
}
.solution-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 28px; }
.solution-photo img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); }
.solution-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.solution-list li { display: flex; align-items: center; gap: 10px; color: var(--text-primary); font-weight: 500; }
@media (min-width: 768px) {
  .solution-inner { flex-direction: row; align-items: center; }
  .solution-text, .solution-photo { flex: 1; }
}

/* ============== ПЕРЕВАГИ ============== */
.benefits-section { background: var(--surface); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 20px; margin-top: 28px; }
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px -12px rgba(15,58,82,.18);
  transition: transform .25s ease, box-shadow .25s ease;
  transform-style: preserve-3d;
}
.benefit-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.benefit-card h3 { font-size: 1.12rem; font-weight: 700; padding: 16px 16px 6px; }
.benefit-card p { padding: 0 16px 18px; font-size: .96rem; }

/* ============== ДО/ПІСЛЯ ============== */
.ba-section { background: var(--bg); }
.ba-slider { position: relative; max-width: 760px; margin: 24px auto 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); user-select: none; box-shadow: 0 20px 50px -24px rgba(15,58,82,.4); aspect-ratio: 16/10; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider.ba-static { max-width: 980px; aspect-ratio: 7/4; }
.ba-slider.ba-static img { position: static; width: 100%; height: 100%; object-fit: cover; }
.ba-before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba-before-wrap img { width: 760px; max-width: none; }
@media (max-width: 800px) { .ba-before-wrap img { width: 92vw; } }
.ba-before { filter: saturate(.35) brightness(.85); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: var(--accent); transform: translateX(-50%); cursor: ew-resize; }
.ba-handle-line { display: block; width: 100%; height: 100%; }
.ba-handle-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.ba-tag { position: absolute; top: 12px; padding: 4px 12px; border-radius: 8px; font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: 1px; color: #fff; }
.ba-tag-before { left: 12px; background: rgba(15,58,82,.85); }
.ba-tag-after { right: 12px; background: var(--accent); }

/* ============== ПОРІВНЯЛЬНА ТАБЛИЦЯ ============== */
.compare-section { background: var(--surface); }
.compare-wrap { overflow-x: auto; margin-top: 24px; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; min-width: 560px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 13px 14px; text-align: center; border-bottom: 1px solid var(--line); font-size: .95rem; }
.compare-table thead th { font-family: var(--font-display); font-weight: 700; color: var(--text-primary); vertical-align: bottom; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; font-weight: 600; color: var(--text-primary); }
.compare-table .ct-us { background: var(--glass); }
.compare-table thead .ct-us { color: var(--primary); }
.ct-badge { display: block; margin-top: 4px; font-family: var(--font-display); font-size: .6rem; letter-spacing: 1px; background: var(--primary); color: #fff; border-radius: 5px; padding: 3px 6px; }
.yes { color: var(--success); font-weight: 700; }
.no { color: #C0392B; font-weight: 600; }
.mid { color: var(--text-body); }

/* ============== КРОКИ ============== */
.steps-section {
  background:
    linear-gradient(rgba(var(--primary-rgb),.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb),.015) 1px, transparent 1px),
    var(--bg);
  background-size: 32px 32px;
}
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 28px; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px -14px rgba(15,58,82,.2); }
.step-num { position: absolute; top: 10px; left: 14px; z-index: 2; font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: rgba(255,255,255,.92); text-shadow: 0 2px 8px rgba(15,58,82,.5); }
.step-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.step-card h3 { padding: 16px 16px 6px; font-size: 1.1rem; }
.step-card p { padding: 0 16px 18px; font-size: .95rem; }
.steps-summary { margin: 28px auto 0; max-width: 560px; text-align: center; background: var(--primary); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; padding: 16px; border-radius: 12px; }

/* ============== ВІДГУКИ ============== */
.reviews-section { background: var(--secondary); }
.reviews-section .section-title { color: #fff; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 28px; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--surface); border-radius: var(--radius); padding: 20px; box-shadow: 0 10px 28px -16px rgba(0,0,0,.5); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.review-name { display: block; font-family: var(--font-display); font-weight: 700; color: var(--text-primary); }
.review-city { display: block; font-size: .82rem; color: var(--text-body); }
.review-stars { color: var(--accent); font-size: .92rem; }
.review-card p { color: var(--text-body); font-size: .96rem; }

/* ============== БАНДЛИ ============== */
.bundles-section { background: radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb),.05), transparent 55%), var(--bg); }
.bundles-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 8px; }
@media (min-width: 768px) { .bundles-grid { grid-template-columns: repeat(3, 1fr); align-items: center; } }
.bundle-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px 22px;
  text-align: center;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .2s ease;
  box-shadow: 0 8px 24px -14px rgba(15,58,82,.2);
  transform-style: preserve-3d;
}
.bundle-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -16px rgba(15,58,82,.32); }
.bundle-card.is-hit { border: 2px solid var(--accent); }
.bundle-card.is-selected { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.18), 0 16px 36px -16px rgba(15,58,82,.32); }
@media (min-width: 768px) { .bundle-card.is-hit { transform: scale(1.05); } .bundle-card.is-hit:hover { transform: scale(1.05) translateY(-3px); } }
.bundle-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .5px; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.bundle-badge-best { background: var(--primary); }
.bundle-disc { position: absolute; top: 12px; right: 12px; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: .82rem; padding: 4px 9px; border-radius: 8px; }
.bundle-name { font-size: 1.35rem; font-weight: 800; margin-bottom: 4px; }
.bundle-area { font-size: .88rem; color: var(--text-body); margin-bottom: 14px; }
.bundle-price { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-bottom: 6px; }
.bundle-old { text-decoration: line-through; color: var(--text-body); font-size: .95rem; }
.bundle-new { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--accent); font-variant-numeric: tabular-nums; }
.bundle-per { font-size: .9rem; color: var(--text-body); margin-bottom: 16px; font-weight: 600; }
.bundle-pick { width: 100%; min-height: 50px; border: 1.5px solid var(--primary); background: transparent; color: var(--primary); font-family: var(--font-display); font-weight: 700; border-radius: 10px; cursor: pointer; transition: background .2s, color .2s; }
.bundle-card.is-selected .bundle-pick, .bundle-pick:hover { background: var(--primary); color: #fff; }

/* ============== CALCULATOR ============== */
.sotki-calc {
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 20px 18px 24px;
  max-width: 720px;
  margin: 0 auto var(--space-7, 32px);
}
@media (min-width: 700px) { .sotki-calc { padding: 22px 26px 26px; } }
.sotki-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; gap: 16px; flex-wrap: wrap; }
.sotki-label { font-weight: 600; font-size: clamp(0.95rem, 0.3vw + 0.9rem, 1.05rem); color: var(--text-on-dark, #f4f7f2); }
.sotki-value { font-family: var(--font-display, inherit); font-weight: 800; color: var(--accent-soft, var(--accent, #f4a574)); font-size: 1.2rem; font-variant-numeric: tabular-nums; }
.sotki-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--accent, #d97746) 0%, var(--accent-deep, #b85a2e) 16%, rgba(255,255,255,0.18) 16%); outline: none; transition: background 350ms ease; cursor: pointer; touch-action: pan-y; }
.sotki-slider:focus-visible { box-shadow: 0 0 0 3px rgba(255,255,255,0.25); }
.sotki-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--accent, #d97746); border: 3px solid #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.45), 0 0 0 0 rgba(255,255,255,0.4); cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease; animation: thumbPulse 2.4s ease-in-out infinite; }
.sotki-slider:active::-webkit-slider-thumb, .sotki-slider.is-touched::-webkit-slider-thumb { animation: none; transform: scale(1.08); }
.sotki-slider::-moz-range-thumb { width: 28px; height: 28px; border-radius: 50%; background: var(--accent, #d97746); border: 3px solid #fff; cursor: pointer; }
@keyframes thumbPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(0,0,0,0.45), 0 0 0 0 rgba(255,255,255,0.45); }
  50%      { box-shadow: 0 4px 14px rgba(0,0,0,0.45), 0 0 0 10px rgba(255,255,255,0); }
}
.sotki-marks { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.78rem; color: rgba(244,247,242,0.55); font-variant-numeric: tabular-nums; }
.sotki-recommend { margin-top: 16px; font-size: clamp(0.96rem, 0.3vw + 0.92rem, 1.05rem); text-align: center; color: var(--text-on-dark, #f4f7f2); line-height: 1.5; }
.sotki-recommend strong { color: var(--accent-soft, var(--accent, #f4a574)); font-family: var(--font-display, inherit); font-weight: 800; transition: color 350ms; }
.bundle-card.is-recommend-flash { animation: bundleRecommendFlash 800ms ease-out; }
@keyframes bundleRecommendFlash {
  0%   { box-shadow: 0 0 0 0 var(--accent, #d97746); transform: scale(1); }
  40%  { box-shadow: 0 0 0 12px rgba(217,119,70,0); transform: scale(1.02); }
  100% { box-shadow: 0 0 0 0 rgba(217,119,70,0); transform: scale(1); }
}

/* ============== ФОРМА ============== */
.order-section { background: var(--bg); }
.order-card { max-width: 620px; margin: 0 auto; background: var(--surface); border: 1px solid var(--primary); border-radius: 18px; padding: 32px 22px; box-shadow: 0 20px 50px -26px rgba(15,58,82,.4); }
@media (min-width: 600px) { .order-card { padding: 40px 38px; } }
.form-bundles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0; }
.form-bundle { position: relative; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 12px 6px; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer; text-align: center; transition: border-color .2s, background .2s; }
.form-bundle input { position: absolute; opacity: 0; }
.form-bundle.is-active { border-color: var(--primary); background: var(--glass); }
.fb-title { font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--text-primary); }
.fb-title em { color: var(--accent); font-style: normal; }
.fb-price { font-family: var(--font-display); font-weight: 800; color: var(--accent); }
.form-field { margin-bottom: 14px; }
.form-field input { width: 100%; height: 54px; padding: 0 16px; font-size: 1rem; font-family: var(--font-body); border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--text-primary); transition: border-color .2s, box-shadow .2s; }
.form-field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.14); }
.form-hint { display: block; font-size: .78rem; color: var(--text-body); margin-top: 5px; padding-left: 4px; }
.form-field-color { margin-bottom: 16px; }
.color-label { display: block; margin: 0 0 9px 2px; font-size: .82rem; font-weight: 700; color: var(--text-primary); }
.color-swatches { display: flex; flex-wrap: wrap; gap: 11px; }
.swatch { cursor: pointer; line-height: 0; }
.swatch input { position: absolute; opacity: 0; width: 0; height: 0; }
.swatch .dot { display: block; width: 36px; height: 36px; border-radius: 50%; border: 2px solid rgba(21,33,43,.15); box-shadow: 0 2px 6px rgba(0,0,0,.12); transition: transform .15s, border-color .15s; position: relative; }
.swatch:hover .dot { transform: scale(1.06); }
.swatch input:checked + .dot { border-color: var(--primary); transform: scale(1.1); box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.25); }
.swatch input:checked + .dot::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: 700; text-shadow: 0 1px 3px rgba(0,0,0,.55); }
.swatch input:focus-visible + .dot { outline: 2px solid var(--accent); outline-offset: 2px; }
.form-submit { width: 100%; margin-top: 6px; }
.form-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.form-trust span { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--text-body); }

/* ============== FAQ ============== */
.faq-section { background: var(--surface); }
.faq-list { max-width: 760px; margin: 28px auto 0; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: var(--surface); }
.faq-item summary { list-style: none; cursor: pointer; min-height: 56px; display: flex; align-items: center; padding: 14px 48px 14px 18px; font-family: var(--font-display); font-weight: 700; color: var(--text-primary); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 18px; font-size: 1.5rem; color: var(--primary); font-weight: 400; transition: transform .25s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 18px 18px; color: var(--text-body); font-size: .98rem; }

/* ============== FOOTER ============== */
.site-footer { background: var(--secondary); color: var(--text-on-dark); padding: 44px 0; }
.footer-inner { text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: #fff; letter-spacing: -0.5px; }
.footer-guarantee { color: rgba(234,241,246,.85); max-width: 480px; font-size: .95rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.footer-links a { color: rgba(234,241,246,.75); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent-soft); }
.footer-contact { font-size: .85rem; color: rgba(234,241,246,.6); }

/* ============== STICKY CTA ============== */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 200; display: none; align-items: center; justify-content: space-between;
  min-height: 58px; padding: 0 22px;
  background: linear-gradient(135deg, #1F8A5B, #20D474);
  color: #fff; border-radius: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 10px 28px -6px rgba(31,138,91,.6);
}
.sticky-price { font-weight: 800; font-size: 1.2rem; font-variant-numeric: tabular-nums; }
@media (min-width: 900px) { .sticky-cta { left: auto; right: 24px; max-width: 340px; } }

/* ============== C1 — LIVE ORDER TOAST ============== */
.live-toast {
  position: fixed; bottom: 20px; left: 16px; z-index: 90;
  background: rgba(255,255,255,0.97); border: 1px solid var(--line);
  border-radius: 12px; padding: 11px 15px; max-width: 290px;
  font-size: 13px; color: var(--text-primary);
  box-shadow: 0 10px 28px -8px rgba(15,58,82,.28);
  transform: translateY(140%); opacity: 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
  display: flex; align-items: center; gap: 10px;
}
.live-toast.is-visible { transform: translateY(0); opacity: 1; }
.live-toast__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex-shrink: 0; animation: toastDot 1.4s infinite; }
.live-toast__text strong { color: var(--primary); font-family: var(--font-display); font-weight: 700; }
@keyframes toastDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@media (max-width: 480px) { .live-toast { bottom: 84px; left: 12px; max-width: calc(100vw - 24px); } }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============== PREFERS-REDUCED-MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .sotki-slider::-webkit-slider-thumb { animation: none; }
  .bundle-card.is-recommend-flash { animation: none; }
  .cta-breathing, .timer { animation: none; }
  .viewer-count__dot, .live-toast__dot { animation: none; }
  .timer-ms__ms { display: none; }
  .hero-h1-words span { opacity: 1; transform: none; transition: none; }
  .grid-pour { -webkit-mask-image: none; mask-image: none; }
  .grid-pour.is-pouring::after { animation: none; opacity: 0; }
  .live-toast { transition: none; }
}
