/* ===================== Wood Safe — «Буфет о 22:15» ===================== */
:root {
  --primary:      #E8A13C;
  --primary-rgb:  232,161,60;
  --secondary:    #B5691F;
  --bg:           #1E1610;
  --surface:      #2A1E15;
  --surface-2:    #362718;
  --text-primary: #F4EBDD;
  --text-body:    #C9BAA6;
  --accent:       #E4471E;
  --accent-rgb:   228,71,30;
  --accent-deep:  #B5691F;
  --accent-soft:  #E8A13C;
  --success:      #4FB86A;
  --line:         rgba(232,161,60,0.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --text-on-dark: #F4EBDD;
  --space-7:      32px;
  --radius:       16px;
  --maxw:         1140px;
}

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

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

h1, h2, h3 { font-family: var(--font-display); color: var(--text-primary); line-height: 1.1; }
h1 { font-weight: 900; font-size: clamp(1.75rem, 6vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-weight: 800; font-size: clamp(1.5rem, 5vw, 2.4rem); }
h3 { font-weight: 700; }
.hl { color: var(--accent); }
strong.truha, .truha {
  font-family: var(--font-body); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--accent);
}

.section-title { text-align: center; margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--text-body); max-width: 620px; margin: 0 auto 26px; }

section { padding: 64px 0; position: relative; overflow: hidden; }
@media (min-width: 768px) { section { padding: 100px 0; } }

/* ===================== BORER GLOW (signature) ===================== */
.borer-glow {
  position: absolute; width: 460px; height: 380px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,161,60,0.16) 0%, transparent 65%);
  filter: blur(30px); mix-blend-mode: screen; pointer-events: none; z-index: 0;
  animation: borer-breath 9s ease-in-out infinite;
  will-change: transform, opacity;
}
.borer-glow--hero { top: -60px; right: -80px; }
.borer-glow--pain { bottom: -100px; left: -100px; animation-delay: 4.5s; }
.borer-glow--bundles { top: 10%; right: -120px; animation-delay: 2s; }
.borer-glow--order { bottom: -80px; left: 20%; animation-delay: 3s; }
@keyframes borer-breath {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.12); opacity: 1; }
}
/* Mobile: менший payload — 1 пляма, менший розмір */
@media (max-width: 600px) {
  .borer-glow { width: 280px; height: 240px; filter: blur(24px); }
  .borer-glow--pain, .borer-glow--bundles { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .borer-glow { animation: none; opacity: 0.5; }
}
.container, section > .container { position: relative; z-index: 1; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26,18,12,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 12px; }
.logo { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; color: var(--text-primary); }
.logo span { color: var(--primary); }
.header-usp { display: none; font-size: 0.9rem; color: var(--text-body); }
.header-usp strong { color: var(--accent); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.04em; }
@media (min-width: 768px) { .header-usp { display: block; } }
.header-cta {
  background: var(--primary); color: #1E1610; font-weight: 700;
  padding: 10px 18px; border-radius: 10px; font-size: 0.92rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(232,161,60,0.35); }

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(160deg, #1E1610 0%, #2A1E15 55%, #1A120C 100%);
}
.hero-inner { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: rgba(228,71,30,0.12); border: 1px solid var(--accent);
  color: var(--text-primary); font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 7px 13px; border-radius: 999px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: badge-dot-pulse 1.6s ease-in-out infinite; }
@keyframes badge-dot-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(228,71,30,0.55); } 60% { box-shadow: 0 0 0 7px rgba(228,71,30,0); } }
.hero-heading h1 { margin: 14px 0 12px; }
.hero-sub { font-size: 1.05rem; color: var(--text-body); }
.hero-image img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid var(--line);
}
.hero-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.hero-checks li { display: flex; align-items: center; gap: 10px; color: var(--text-primary); font-weight: 500; }
.check-ic { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex: none; }

.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(100deg, var(--primary), var(--accent));
  color: #1E1610; font-weight: 800; font-size: 1.05rem;
  min-height: 56px; padding: 0 26px; border-radius: 14px; border: none; cursor: pointer;
  box-shadow: 0 10px 26px rgba(228,71,30,0.32); width: 100%;
}
.cta-btn .arr { transition: transform 0.2s; }
.cta-btn:hover .arr { transform: translateX(5px); }
.cta-btn--full { margin-top: 8px; }

/* C3 — CTA breathing + accent glow (designer core effect) */
.cta-btn--breathe {
  animation: cta-breath 2.5s ease-in-out infinite;
  will-change: transform, box-shadow;
}
@keyframes cta-breath {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.32),
                0 0 0 0 rgba(var(--accent-rgb), 0.45);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 14px 30px rgba(var(--accent-rgb), 0.42),
                0 0 0 16px rgba(var(--accent-rgb), 0);
  }
}
.cta-btn--breathe:hover { animation-play-state: paused; transform: scale(1.035); }
@media (prefers-reduced-motion: reduce) { .cta-btn--breathe { animation: none; } }

.timer {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-top: 16px; background: rgba(228,71,30,0.12); border: 1px solid var(--accent);
  border-radius: 12px; padding: 12px 16px;
  animation: timer-pulse 2.2s ease-in-out infinite;
}
@keyframes timer-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.015); } }
@media (prefers-reduced-motion: reduce) { .timer { animation: none; } }
.timer-label { color: var(--text-body); font-size: 0.9rem; }
.timer-clock { font-weight: 800; font-size: 1.2rem; color: var(--accent); font-variant-numeric: tabular-nums; }

/* C2 — ms tick styling (no layout shift) */
.timer-ms { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }
.timer-ms__ms { font-size: 0.72em; opacity: 0.72; display: inline-block; min-width: 3.4ch; text-align: left; }
@media (prefers-reduced-motion: reduce) { .timer-ms__ms { display: none; } }

.order-counter { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 14px; font-size: 0.92rem; color: var(--text-body); }
.order-counter strong { color: var(--text-primary); }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 rgba(79,184,106,0.6); animation: livepulse 1.8s infinite; }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(79,184,106,0.5); } 70% { box-shadow: 0 0 0 8px rgba(79,184,106,0); } 100% { box-shadow: 0 0 0 0 rgba(79,184,106,0); } }
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }

.trust-row { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.trust-row li { position: relative; padding-left: 26px; color: var(--text-body); font-size: 0.92rem; }
.trust-row li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.trust-row--form { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-top: 16px; }

@media (min-width: 768px) {
  .hero-inner {
    display: grid; grid-template-columns: 1.05fr 0.95fr; grid-template-rows: auto 1fr;
    gap: 2rem 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; }
  .cta-btn { width: auto; }
  .cta-btn--full { width: 100%; }
}

/* ===================== PAIN ===================== */
.pain { background: #1A120C; }
.pain-photo { border-radius: var(--radius); overflow: hidden; margin-bottom: 22px; border: 1px solid var(--line); }
.pain-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 1.2s ease; transform: scale(1.06); }
.pain-photo.is-visible img { transform: scale(1); }
@media (prefers-reduced-motion: reduce) { .pain-photo img { transform: none; transition: none; } }
.pain h2 { margin-bottom: 14px; }
.pain p { font-size: 1.05rem; margin-bottom: 12px; max-width: 720px; }
.pain-note { color: var(--text-primary); font-weight: 500; }

/* ===================== SOLUTION ===================== */
.solution { background: var(--surface); }
.solution-inner { display: flex; flex-direction: column; gap: 26px; }
.solution-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.solution-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.solution-text > p { font-size: 1.05rem; margin: 14px 0 24px; }
.mech-cards { display: grid; gap: 14px; }
.mech-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 18px; transition: transform 0.25s ease, border-color 0.25s ease; }
.mech-card:hover { transform: translateY(-3px); border-color: rgba(232,161,60,0.4); }
.mech-card img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; margin-bottom: 10px; }
.mech-card h3 { color: var(--primary); font-size: 1.05rem; margin-bottom: 6px; }
.mech-card p { font-size: 0.95rem; }
/* stagger fade-up for mech cards */
.mech-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.mech-card.reveal:nth-child(3) { transition-delay: 0.24s; }
@media (min-width: 768px) {
  .solution-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 44px; }
  .mech-cards { grid-template-columns: 1fr; }
}

/* ===================== BENEFITS ===================== */
.benefits { background: var(--bg); }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .benefits-grid { grid-template-columns: 1fr 1fr 1fr; } }
.benefit-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.4); transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(232,161,60,0.4); box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,161,60,0.25); }
.benefit-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.benefit-card h3 { font-size: 1.08rem; padding: 16px 16px 6px; color: var(--text-primary); }
.benefit-card p { padding: 0 16px 18px; font-size: 0.95rem; }
/* stagger */
.benefit-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.benefit-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.benefit-card.reveal:nth-child(4) { transition-delay: 0.10s; }
.benefit-card.reveal:nth-child(5) { transition-delay: 0.18s; }
.benefit-card.reveal:nth-child(6) { transition-delay: 0.26s; }

/* ===================== BEFORE / AFTER ===================== */
.beforeafter { background: var(--surface); }
.ba-wrap { position: relative; max-width: 760px; margin: 26px auto 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.ba-wrap img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.ba-before { position: absolute; inset: 0; width: 100%; overflow: hidden; will-change: clip-path; }
.ba-before img { width: 100%; }
.ba-labels { position: absolute; inset: 0; pointer-events: none; }
.ba-tag { position: absolute; top: 12px; font-size: 0.78rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; }
.ba-tag--before { left: 12px; background: rgba(228,71,30,0.85); color: #fff; }
.ba-tag--after { right: 12px; background: rgba(79,184,106,0.85); color: #fff; }
.ba-caption { text-align: center; margin-top: 14px; color: var(--text-body); font-size: 0.92rem; }

/* ===================== COMPARE TABLE ===================== */
.compare { background: var(--bg); }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 24px; }
.compare-table { width: 100%; min-width: 560px; border-collapse: collapse; color: var(--text-body); }
.compare-table th, .compare-table td { border: 2px solid var(--line); padding: 14px 12px; text-align: center; font-size: 0.95rem; }
.compare-table thead th { color: var(--text-primary); font-family: var(--font-body); font-weight: 700; background: var(--surface); }
.compare-table th small { font-weight: 400; color: var(--text-body); }
.ct-row-label { text-align: left; color: var(--text-primary); font-weight: 600; }
.compare-table .ct-us {
  background: rgba(232,161,60,0.06); border-color: rgba(232,161,60,0.5);
  color: var(--text-primary);
}
.ct-badge { display: block; margin-top: 4px; font-size: 0.66rem; color: #1E1610; background: var(--primary); border-radius: 999px; padding: 2px 8px; font-weight: 800; }
.ic-yes { color: var(--success); font-weight: 800; font-size: 1.1rem; }
.ic-no { color: var(--accent); font-weight: 800; font-size: 1.1rem; }
.ic-part { color: var(--primary); font-weight: 700; font-size: 0.85rem; }

/* ===================== HOWTO ===================== */
.howto { background: var(--surface); }
.steps { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 26px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 18px; text-align: center; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(100deg, var(--primary), var(--accent)); color: #1E1610; font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; margin-bottom: 14px; }
.step img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
.step h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 6px; }
.step p { font-size: 0.95rem; }
.step.reveal:nth-child(2) { transition-delay: 0.15s; }
.step.reveal:nth-child(3) { transition-delay: 0.30s; }

/* ===================== REVIEWS ===================== */
.reviews { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 26px; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.review-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.review-card.reveal:nth-child(3) { transition-delay: 0.24s; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex: none; }
.review-name { display: block; color: var(--text-primary); font-weight: 700; }
.review-city { display: block; font-size: 0.82rem; color: var(--text-body); }
.stars { color: var(--primary); font-size: 0.95rem; letter-spacing: 1px; }
.review-card p { font-size: 0.96rem; margin-bottom: 12px; }
.review-photo { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 12px; }

/* ===================== BUNDLES ===================== */
.bundles-section { background: var(--surface-2); }
.bundles-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
@media (min-width: 768px) { .bundles-grid { grid-template-columns: repeat(3, 1fr); align-items: center; } }
.bundle-card {
  position: relative; background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 26px 20px; text-align: center; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.bundle-card:hover { border-color: rgba(232,161,60,0.45); transform: translateY(-3px); }
.bundle-card.is-selected { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,161,60,0.25); }
.bundle-card.is-hit { border-color: var(--primary); }
@media (min-width: 768px) { .bundle-card.is-hit { transform: scale(1.05); } .bundle-card.is-hit:hover { transform: scale(1.05) translateY(-3px); } }

/* D2 — fire pulse on HIT bundle (glow ring around whole card) */
.bundle-card.is-hit::after {
  content: ""; position: absolute; inset: -2px; border-radius: inherit;
  pointer-events: none; z-index: -1;
  box-shadow: 0 0 0 0 rgba(228,71,30,0.55);
  animation: fire-pulse-ring 1.6s ease-in-out infinite;
}
@keyframes fire-pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(228,71,30,0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(228,71,30,0); }
}
@media (prefers-reduced-motion: reduce) { .bundle-card.is-hit::after { animation: none; } }

.bundle-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-body); font-weight: 700; }
.bundle-tag--hit { background: linear-gradient(100deg, var(--primary), var(--accent)); color: #1E1610; padding: 4px 12px; border-radius: 999px; animation: firepulse 1.6s ease-in-out infinite; }
@keyframes firepulse { 0%,100% { box-shadow: 0 0 0 0 rgba(228,71,30,0.5); } 50% { box-shadow: 0 0 0 8px rgba(228,71,30,0); } }
@media (prefers-reduced-motion: reduce) { .bundle-tag--hit { animation: none; } }
.bundle-qty { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--text-primary); }
.bundle-old { color: var(--text-body); text-decoration: line-through; opacity: 0.6; font-size: 0.95rem; }
.bundle-price { font-family: var(--font-body); font-weight: 800; font-size: 2rem; color: var(--primary); font-variant-numeric: tabular-nums; }
.bundle-price span { font-size: 1rem; }
.bundle-perunit { font-size: 0.85rem; color: var(--success); font-weight: 600; }
.bundle-save { font-size: 0.85rem; color: var(--text-body); }

/* ===================== CALCULATOR ===================== */
.sotki-calc {
  background: rgba(255,255,255,0.07); 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);
}
@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); }
.sotki-value { font-family: var(--font-display); font-weight: 800; color: var(--accent-soft); 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) 0%, var(--accent-deep) 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); 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); 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); line-height: 1.5; }
.sotki-recommend strong { color: var(--accent-soft); font-family: var(--font-display); 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); transform: scale(1); }
  40%  { box-shadow: 0 0 0 12px rgba(228,71,30,0); transform: scale(1.02); }
  100% { box-shadow: 0 0 0 0 rgba(228,71,30,0); transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .sotki-slider::-webkit-slider-thumb { animation: none; }
  .bundle-card.is-recommend-flash { animation: none; }
}

/* ===================== ORDER FORM ===================== */
.order-section { background: var(--bg); }
.order-inner { max-width: 560px; margin: 0 auto; }
.order-form { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 26px 22px; margin-top: 10px; }
.form-bundles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.form-bundle {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 8px; background: var(--surface-2); border: 1.5px solid var(--line);
  border-radius: 12px; cursor: pointer; text-align: center; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-bundle input { position: absolute; opacity: 0; }
.form-bundle:has(input:checked) { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(232,161,60,0.25); }
.fb-badge { position: absolute; top: -9px; background: linear-gradient(100deg, var(--primary), var(--accent)); color: #1E1610; font-size: 0.66rem; font-weight: 800; padding: 2px 9px; border-radius: 999px; }
.fb-qty { font-weight: 700; color: var(--text-primary); font-size: 0.92rem; }
.fb-price { font-weight: 800; color: var(--primary); }
.field { position: relative; margin-bottom: 14px; }
.field input {
  width: 100%; min-height: 52px; background: var(--surface-2); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 0 16px; color: var(--text-primary); font-size: 1rem; font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder { color: rgba(201,186,166,0.6); }
.field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,161,60,0.2); }
.field-hint { display: block; margin-top: 5px; font-size: 0.78rem; color: var(--text-body); padding-left: 4px; }

/* ===================== FAQ ===================== */
.faq { background: var(--surface); }
.faq-list { max-width: 760px; margin: 26px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: none; border: none; color: var(--text-primary); font-family: var(--font-body); font-weight: 600; font-size: 1rem; text-align: left; padding: 14px 18px; cursor: pointer; }
.faq-ic { color: var(--primary); font-size: 1.4rem; font-weight: 700; transition: transform 0.25s; flex: none; }
.faq-item.is-open .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 18px 16px; font-size: 0.96rem; }

/* ===================== FOOTER ===================== */
.site-footer { background: #160F0A; padding: 44px 0; text-align: center; }
.footer-brand { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--text-primary); margin-bottom: 16px; }
.footer-brand span { color: var(--primary); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-bottom: 16px; }
.footer-links a { color: var(--text-body); font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }
.footer-contact { color: var(--text-body); font-size: 0.88rem; margin-bottom: 8px; }
.footer-copy { color: rgba(201,186,166,0.6); font-size: 0.84rem; }

/* ===================== STICKY CTA ===================== */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(100deg, var(--primary), var(--accent));
  color: #1E1610; font-weight: 800; font-size: 1.02rem;
  padding: 16px 18px; padding-bottom: calc(16px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(0,0,0,0.4);
}
.sticky-timer { font-variant-numeric: tabular-nums; background: rgba(30,22,16,0.2); border-radius: 8px; padding: 4px 10px; font-size: 0.9rem; }
.sticky-timer .timer-ms__ms { min-width: 3.4ch; }

/* ===================== LIVE TOAST (C1 core) ===================== */
.live-toast {
  position: fixed; bottom: 20px; left: 16px; z-index: 90;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 11px 15px; max-width: 280px;
  font-size: 0.82rem; color: var(--text-primary);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  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: toast-dot-pulse 1.4s infinite;
}
.live-toast__text strong { color: var(--primary); font-weight: 700; }
@keyframes toast-dot-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
/* Above sticky CTA on mobile */
@media (max-width: 640px) {
  .live-toast { bottom: calc(84px + env(safe-area-inset-bottom)); left: 12px; max-width: calc(100vw - 24px); }
}
@media (prefers-reduced-motion: reduce) {
  .live-toast { transition: opacity .35s ease; transform: translateY(0); }
  .live-toast__dot { animation: none; }
}

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
