/* ============================================================
   Water Block — «Сухий дім після дощу»
   BG warm-cream · primary deep slate-navy · accent terracotta-rust
   ============================================================ */
:root {
  --primary: #20384b;
  --primary-rgb: 32, 56, 75;
  --secondary: #34506b;
  --bg: #f5eee1;
  --surface: #fbf7ef;
  --text-primary: #1c2a36;
  --text-body: #4a4136;
  --accent: #c6512a;
  --accent-rgb: 198, 81, 42;
  --accent-deep: #a63e1e;
  --accent-soft: #e88a3c;
  --accent-2: #e88a3c;
  --success: #2e7d52;
  --danger: #b23a2e;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --text-on-dark: #fbf7ef;

  --space-7: 32px;
  --radius: 16px;
  --maxw: 1120px;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  padding: 56px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 96px 0;
  }
}

h1,
h2,
h3 {
  color: var(--text-primary);
  font-family: var(--font-display);
  line-height: 1.1;
}
.section-title {
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--text-body);
}

/* ============ CTA button ============ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-soft) 100%
  );
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  min-height: 58px;
  padding: 0 26px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(198, 81, 42, 0.32);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-align: center;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(198, 81, 42, 0.4);
}
.cta-btn:active {
  transform: translateY(0);
}

/* ---- C3 CTA breathing + glow ---- */
.cta-primary {
  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 10px 28px 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 32px rgba(var(--accent-rgb), 0.42),
      0 0 0 16px rgba(var(--accent-rgb), 0);
  }
}
.cta-primary:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .cta-primary {
    animation: none;
  }
}

/* ============ 1. HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.is-stuck {
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  border-radius: 8px;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
}
.logo-text b {
  color: var(--accent);
  font-weight: 700;
}
.header-badge {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(46, 125, 82, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
}
.badge-check {
  border-radius: 50%;
}
.header-cta {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 10px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 768px) {
  .header-badge {
    display: inline-flex;
  }
  .header-cta {
    margin-left: 0;
  }
}

/* ============ 2. HERO ============ */
.hero {
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(var(--primary-rgb), 0.06),
      transparent 40%
    ),
    linear-gradient(160deg, #fbf7ef 0%, #f5eee1 55%, #efe4d2 100%);
  padding: 36px 0 52px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: rgba(46, 125, 82, 0.12);
  color: var(--success);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(1.9rem, 6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 14px 0 10px;
}
/* ---- C2 hero word-reveal ---- */
.hero-h1-words span {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.2, 0.8, 0.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: 90ms;
}
.hero-h1-words.is-revealed span:nth-child(3) {
  transition-delay: 180ms;
}
.hero-h1-words.is-revealed span:nth-child(4) {
  transition-delay: 270ms;
}
.hero-h1-words.is-revealed span:nth-child(5) {
  transition-delay: 360ms;
}
@media (prefers-reduced-motion: reduce) {
  .hero-h1-words span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.hero-sub {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: var(--text-body);
  max-width: 34ch;
}
.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--surface);
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.18);
}
.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--text-primary);
}
.hero-checks img {
  margin-top: 3px;
  flex-shrink: 0;
}
.hero-cta {
  width: 100%;
}

.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--primary);
  color: var(--surface);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.25);
  animation: timer-frame 2.5s ease-in-out infinite;
}
@keyframes timer-frame {
  0%,
  100% {
    box-shadow:
      0 6px 18px rgba(var(--primary-rgb), 0.25),
      0 0 0 0 rgba(232, 138, 60, 0.4);
  }
  50% {
    box-shadow:
      0 6px 18px rgba(var(--primary-rgb), 0.25),
      0 0 0 6px rgba(232, 138, 60, 0);
  }
}
.timer-label {
  font-size: 0.85rem;
  font-weight: 500;
}
.timer-clock {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--accent-2);
}
/* ---- C2 timer ms ---- */
.timer-ms {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  display: inline-block;
}
.timer-ms__ms {
  font-size: 0.68em;
  opacity: 0.75;
  display: inline-block;
  min-width: 3.4ch;
  text-align: left;
}
@media (prefers-reduced-motion: reduce) {
  .timer {
    animation: none;
  }
  .timer-ms__ms {
    display: none;
  }
}
.trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 500;
}
.trust-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: rgba(46, 125, 82, 0.14);
  border-radius: 50%;
}
.hero-orders {
  font-size: 0.9rem;
  color: var(--text-body);
  background: rgba(var(--primary-rgb), 0.05);
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
}
.hero-orders b {
  color: var(--accent);
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .hero {
    padding: 60px 0 80px;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 1.5rem 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;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .hero-cta {
    width: auto;
    align-self: flex-start;
  }
}

/* ============ SIGNATURE watershed (лінія-водороздільник) ============ */
.watershed {
  position: relative;
  height: 30px;
  overflow: hidden;
  margin: 0 auto;
  max-width: var(--maxw);
}
.watershed svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* хвиляста «мокра» лінія — за замовчуванням видима */
.watershed .ws-wet {
  fill: none;
  stroke: rgba(var(--primary-rgb), 0.5);
  stroke-width: 2.5;
  opacity: 0.85;
  transition: opacity 0.7s ease 0.1s;
}
/* пряма «суха» лінія — з'являється при висиханні */
.watershed .ws-dry {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0;
  transition:
    stroke-dashoffset 0.9s ease-out,
    opacity 0.5s ease;
}
.watershed .ws-drop {
  fill: rgba(var(--primary-rgb), 0.55);
  opacity: 1;
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* стан «висохло» (додає JS при scroll-in) */
.watershed.is-dry .ws-wet {
  opacity: 0;
}
.watershed.is-dry .ws-dry {
  opacity: 1;
  stroke-dashoffset: 0;
}
.watershed.is-dry .ws-drop {
  opacity: 0;
  transform: translateY(9px);
}
/* stagger крапель зліва-направо */
.watershed.is-dry .ws-drop:nth-child(1) {
  transition-delay: 0ms;
}
.watershed.is-dry .ws-drop:nth-child(2) {
  transition-delay: 120ms;
}
.watershed.is-dry .ws-drop:nth-child(3) {
  transition-delay: 240ms;
}
.watershed.is-dry .ws-drop:nth-child(4) {
  transition-delay: 360ms;
}
.watershed.is-dry .ws-drop:nth-child(5) {
  transition-delay: 480ms;
}
.watershed.is-dry .ws-drop:nth-child(6) {
  transition-delay: 600ms;
}
@media (prefers-reduced-motion: reduce) {
  .watershed .ws-wet,
  .watershed .ws-dry,
  .watershed .ws-drop {
    transition: none;
  }
  .watershed.is-dry .ws-dry {
    stroke-dashoffset: 0;
  }
}

/* ============ 3. БІЛЬ ============ */
.pain {
  background: linear-gradient(180deg, #efe4d2, #e8d9c4);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.pain-card {
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--danger);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.1);
}
.pain-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.pain-card h3 {
  color: var(--danger);
  font-size: 1.2rem;
  margin: 16px 18px 8px;
}
.pain-card p {
  margin: 0 18px 18px;
  font-size: 0.96rem;
}

/* ============ 4. РІШЕННЯ ============ */
.solution-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 768px) {
  .solution-inner {
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
  }
}
.solution-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(var(--primary-rgb), 0.16);
}
.solution .section-title {
  text-align: left;
}
.solution-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.solution-steps li {
  display: flex;
  gap: 16px;
}
.sol-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--surface);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}
.solution-steps b {
  color: var(--text-primary);
  font-size: 1.08rem;
  display: block;
  margin-bottom: 4px;
}
.solution-steps p {
  font-size: 0.95rem;
}

/* ============ 5. ПЕРЕВАГИ ============ */
.benefits {
  background: var(--surface);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}
.benefit-card {
  background: var(--bg);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.09);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(var(--primary-rgb), 0.14);
}
.benefit-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.benefit-card h3 {
  font-size: 1.05rem;
  margin: 14px 16px 6px;
}
.benefit-card p {
  margin: 0 16px 18px;
  font-size: 0.9rem;
}

/* ============ 6. ДО/ПІСЛЯ ============ */
.beforeafter {
  background: var(--primary);
}
.beforeafter .section-title,
.beforeafter .section-sub {
  color: var(--surface);
}
.beforeafter .section-sub {
  opacity: 0.85;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) {
  .ba-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.ba-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.ba-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ba-before img {
  filter: saturate(0.55) brightness(0.9) hue-rotate(-8deg);
}
.ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
  z-index: 2;
}
.ba-before {
  background: var(--danger);
}
.ba-after {
  background: var(--success);
}
.ba-item figcaption {
  background: var(--surface);
  color: var(--text-body);
  padding: 12px 14px;
  font-size: 0.9rem;
}

/* ============ 7. ПОРІВНЯЛЬНА ТАБЛИЦЯ ============ */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.09);
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}
.compare-table thead th {
  background: var(--primary);
  color: var(--surface);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem;
}
.compare-table th.col-hl {
  background: var(--accent);
}
.compare-table td.col-hl {
  background: rgba(198, 81, 42, 0.07);
  font-weight: 700;
  color: var(--text-primary);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.yes {
  color: var(--success);
  font-weight: 800;
}
.no {
  color: var(--danger);
  font-weight: 800;
}

/* ============ 8. ЯК ВИКОРИСТОВУВАТИ ============ */
.howto {
  background: var(--surface);
}
.howto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .howto-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.howto-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  padding-top: 8px;
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08);
}
.howto-num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(198, 81, 42, 0.35);
}
.howto-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.howto-card h3 {
  font-size: 1.1rem;
  margin: 14px 16px 6px;
}
.howto-card p {
  margin: 0 16px 18px;
  font-size: 0.92rem;
}

/* ============ 9. ВІДГУКИ ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.review-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-head b {
  color: var(--text-primary);
  display: block;
}
.review-city {
  font-size: 0.82rem;
  color: var(--text-body);
  display: block;
}
.stars {
  color: var(--accent-2);
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.review-card p {
  font-size: 0.95rem;
}

/* ---- A4 reviews ticker (desktop floating) ---- */
.reviews-ticker {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 85;
  display: none;
  max-width: 300px;
  background: var(--surface);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 12px 32px rgba(var(--primary-rgb), 0.16);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.reviews-ticker.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reviews-ticker__quote {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.45;
}
.reviews-ticker__author {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 6px;
}
@media (min-width: 1024px) {
  .reviews-ticker {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-ticker {
    transition: none;
  }
}

/* ============ 10. БАНДЛИ ============ */
.bundles-section {
  background: linear-gradient(180deg, #f5eee1, #efe4d2);
}
.bundles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .bundles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}
.bundle-card {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  padding: 20px 18px 22px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.1);
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  transform-style: preserve-3d;
}
.bundle-card:hover {
  box-shadow: 0 18px 44px rgba(var(--primary-rgb), 0.16);
}
.bundle-card.is-best {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(198, 81, 42, 0.22);
}
@media (min-width: 768px) {
  .bundle-card.is-best {
    transform: scale(1.04);
  }
}
.bundle-card.is-active {
  border-color: var(--accent);
}
.bundle-badge {
  display: inline-block;
  margin-bottom: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 999px;
}
.bundle-badge-muted {
  background: rgba(var(--primary-rgb), 0.5);
}
.bundle-badge-best {
  background: var(--success);
}
.bundle-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin-bottom: 8px;
}
.bundle-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.bundle-old {
  font-size: 0.88rem;
  color: rgba(74, 65, 54, 0.65);
}
.bundle-old s {
  color: rgba(74, 65, 54, 0.55);
}
.bundle-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1.1;
  margin: 4px 0;
}
.bundle-price span {
  font-size: 1rem;
}
.bundle-per {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 14px;
}
.bundle-select {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: var(--surface);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.bundle-card.is-best .bundle-select,
.bundle-card.is-active .bundle-select {
  background: var(--accent);
}

/* ---- D2 fire pulse on bestseller ---- */
.bundle-card--hit::before {
  content: "🔥";
  position: absolute;
  top: -14px;
  right: -10px;
  z-index: 3;
  font-size: 30px;
  line-height: 1;
  animation: fire-pulse 1.2s ease infinite;
  filter: drop-shadow(0 4px 8px rgba(198, 81, 42, 0.45));
}
@keyframes fire-pulse {
  0%,
  100% {
    transform: scale(1) rotate(-8deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.18) rotate(8deg);
    opacity: 0.85;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bundle-card--hit::before {
    animation: none;
  }
}

/* ============ 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);
}
@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: 700;
  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);
  cursor: pointer;
  transition: transform 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(251, 247, 239, 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: 700;
  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(198, 81, 42, 0);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(198, 81, 42, 0);
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sotki-slider::-webkit-slider-thumb {
    animation: none;
  }
  .bundle-card.is-recommend-flash {
    animation: none;
  }
}

/* ============ 11. ФОРМА ============ */
.order-section {
  background: var(--bg);
}
.order-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  padding: 30px 22px;
  box-shadow: 0 16px 44px rgba(var(--primary-rgb), 0.12);
}
@media (min-width: 600px) {
  .order-card {
    padding: 40px 36px;
  }
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label,
.field-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}
.field input[type="text"],
.field input[type="tel"] {
  width: 100%;
  padding: 15px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  border: 1.5px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(198, 81, 42, 0.15);
}
.form-bundles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 520px) {
  .form-bundles {
    flex-direction: row;
  }
}
.form-bundle {
  position: relative;
  flex: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 10px;
  border-radius: 12px;
  background: var(--bg);
  border: 1.5px solid rgba(var(--primary-rgb), 0.2);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.form-bundle input {
  position: absolute;
  opacity: 0;
}
.form-bundle.is-active {
  border-color: var(--accent);
  background: rgba(198, 81, 42, 0.06);
}
.fb-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.fb-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
}
.fb-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}
.form-cta {
  width: 100%;
  margin-top: 6px;
}
.form-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

/* ============ 12. FAQ ============ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.07);
}
.faq-q {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}
.faq-ic {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.is-open .faq-ic {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
}
.faq-a p {
  padding: 0 20px 18px;
  font-size: 0.95rem;
}

/* ============ 13. FOOTER ============ */
.site-footer {
  background: var(--primary);
  color: rgba(251, 247, 239, 0.8);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--surface);
}
.footer-brand img {
  border-radius: 8px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(251, 247, 239, 0.75);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent-2);
}
.footer-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-2);
  border: 1px solid rgba(232, 138, 60, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============ Sticky CTA ============ */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-soft) 100%
  );
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  box-shadow: 0 10px 28px rgba(198, 81, 42, 0.4);
}
.sticky-time {
  font-family: var(--font-display);
  font-weight: 700;
  background: rgba(0, 0, 0, 0.18);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.95rem;
}
@media (min-width: 900px) {
  .sticky-cta {
    max-width: 420px;
    left: auto;
    right: 24px;
  }
}

/* ============ C1 Live order toast ============ */
.live-toast {
  position: fixed;
  bottom: 20px;
  left: 16px;
  z-index: 90;
  background: var(--surface);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  max-width: 280px;
  font-size: 13px;
  color: var(--text-primary);
  box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.16);
  transform: translateY(130%);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.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: 800;
}
@keyframes toast-dot-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
@media (max-width: 480px) {
  .live-toast {
    bottom: 84px;
    max-width: calc(100vw - 32px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .live-toast {
    transition: opacity 0.35s ease;
  }
  .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;
  }
}
