/* ============ FISH POINT — dark-mode "Берег о 4-й ранку" ============ */
:root {
  --primary: #f5a623;
  --primary-rgb: 245, 166, 35;
  --secondary: #e8412b;
  --accent-rgb: 232, 65, 43;
  --bg: #0c1512;
  --surface: #14211c;
  --text-primary: #f3efe4;
  --text-body: #a9b5ad;
  --accent: #f5a623;
  --accent-deep: #e8412b;
  --accent-soft: #f5c06a;
  --text-on-dark: #f3efe4;
  --success: #4ade80;

  --deep-water: #081310;
  --amber-glow: rgba(245, 166, 35, 0.35);
  --coral-glow: rgba(232, 65, 43, 0.4);
  --card-border: rgba(245, 166, 35, 0.14);
  --grad-cta: linear-gradient(100deg, #f5a623 0%, #e8412b 100%);
  --grad-hero: radial-gradient(
    120% 80% at 70% 20%,
    #16241e 0%,
    #0c1512 55%,
    #081310 100%
  );

  --font-display: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
  --space-7: 32px;
}

* {
  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(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.05;
  text-transform: uppercase;
}
.accent {
  color: var(--primary);
}
.accent-coral {
  color: var(--secondary);
}

.section-title {
  font-weight: 600;
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.section-sub {
  text-align: center;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 32px;
}

section {
  padding: 60px 0;
}
@media (min-width: 900px) {
  section {
    padding: 110px 0;
  }
}

/* checkbox chip замість емодзі */
.chk {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.16);
  border: 1px solid var(--success);
  position: relative;
  flex-shrink: 0;
  margin-right: 10px;
}
.chk::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid var(--success);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* CTA */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-cta);
  color: #1a0f00;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 1.05rem;
  border: none;
  border-radius: 10px;
  min-height: 56px;
  padding: 0 22px;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--coral-glow);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  width: 100%;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px var(--coral-glow);
}
.breathing {
  animation: breathe 2.6s ease-in-out infinite;
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 19, 16, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--card-border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-dot {
  color: var(--primary);
}
.header-badge {
  display: none;
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--primary);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 5px 12px;
}
.header-cta {
  margin-left: auto;
  background: var(--grad-cta);
  color: #1a0f00;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 9px 16px;
  border-radius: 8px;
}
@media (min-width: 700px) {
  .header-badge {
    display: inline-block;
  }
  .header-cta {
    margin-left: 0;
  }
}

/* ============ HERO ============ */
.hero {
  background: var(--grad-hero);
  padding: 34px 0 56px;
  position: relative;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(2rem, 6.5vw, 4rem);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.hero-sub {
  color: var(--text-body);
  font-size: 1.05rem;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* sonar pulse signature */
.sonar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.sonar span {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--amber-glow);
  opacity: 0;
  animation: sonarPulse 4s cubic-bezier(0.15, 0.7, 0.25, 1) infinite;
}
.sonar span:nth-child(2) {
  animation-delay: 1.3s;
}
.sonar span:nth-child(3) {
  animation-delay: 2.6s;
}
@keyframes sonarPulse {
  0% {
    transform: scale(0.4);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  font-weight: 500;
}

.timer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(232, 65, 43, 0.14);
  border: 1px solid rgba(232, 65, 43, 0.4);
  border-radius: 12px;
  padding: 12px 16px;
  animation: timerPulse 2s ease-in-out infinite;
}
@keyframes timerPulse {
  0%,
  100% {
    border-color: rgba(232, 65, 43, 0.35);
  }
  50% {
    border-color: rgba(232, 65, 43, 0.75);
  }
}
.timer-label {
  color: var(--text-body);
  font-size: 0.9rem;
}
.timer-clock {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  font-size: 1.25rem;
  letter-spacing: 1px;
}
/* C2_timer_ms — millisecond tail */
.timer-ms-tail {
  font-size: 0.72em;
  opacity: 0.7;
  display: inline-block;
  min-width: 3.2ch;
  text-align: left;
}
.sticky-timer .timer-ms-tail {
  min-width: 3ch;
  opacity: 0.75;
}
@media (prefers-reduced-motion: reduce) {
  .timer-ms-tail {
    display: none;
  }
}

.live-counter {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-body);
}
.live-counter strong {
  color: var(--text-primary);
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: liveDot 1.8s ease-out infinite;
}
@keyframes liveDot {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
}

.trust {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.trust > div {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-body);
}

@media (min-width: 768px) {
  .hero {
    padding: 60px 0 90px;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 1.6rem 3.5rem;
    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;
    min-width: 320px;
  }
  .timer,
  .live-counter,
  .trust {
    justify-content: flex-start;
  }
  .trust {
    align-items: flex-start;
  }
}

/* ============ БІЛЬ ============ */
.pain {
  background: var(--bg);
}
.pain .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pain-media img {
  border-radius: 16px;
  width: 100%;
  filter: saturate(0.85) brightness(0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.pain-text h2 {
  font-weight: 600;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  margin-bottom: 14px;
}
.pain-text p {
  font-size: 1.05rem;
}
.pain-text strong {
  color: var(--text-primary);
}
@media (min-width: 860px) {
  .pain .container {
    flex-direction: row;
    align-items: center;
  }
  .pain-media,
  .pain-text {
    flex: 1;
  }
}

/* ============ РІШЕННЯ ============ */
.solution {
  background: var(--surface);
}
.solution-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.solution-media img {
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.solution-text h2 {
  font-weight: 600;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  margin-bottom: 14px;
}
.solution-text p {
  margin-bottom: 18px;
}
.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.solution-list li {
  display: flex;
  align-items: center;
  color: var(--text-primary);
}
@media (min-width: 860px) {
  .solution-inner {
    flex-direction: row;
    align-items: center;
  }
  .solution-media,
  .solution-text {
    flex: 1;
  }
}

/* ============ ПЕРЕВАГИ ============ */
.benefits {
  background: var(--bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(245, 166, 35, 0.18);
}
.benefit-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}
.benefit-card h3 {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  padding: 16px 16px 6px;
}
.benefit-card p {
  padding: 0 16px 18px;
  font-size: 0.94rem;
}

/* ============ ДО/ПІСЛЯ ============ */
.beforeafter {
  background: var(--deep-water);
}
.ba-media img {
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.6);
}

/* ============ ПОРІВНЯЛЬНА ТАБЛИЦЯ ============ */
.compare {
  background: var(--surface);
}
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  margin: 0 auto;
}
.compare-table th,
.compare-table td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.92rem;
}
.compare-table th {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-primary);
  font-size: 0.86rem;
}
.compare-table td:first-child,
.compare-table th:first-child {
  text-align: left;
  color: var(--text-body);
}
.compare-table .col-us {
  background: rgba(245, 166, 35, 0.08);
}
.compare-table th.col-us {
  color: var(--primary);
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}
.compare-table td.col-us {
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  color: var(--text-primary);
  font-weight: 600;
}
.compare-table tr:last-child td.col-us {
  border-bottom: 2px solid var(--primary);
}
.yes {
  color: var(--success);
  font-weight: 700;
}
.no {
  color: #6a746c;
}
.mid {
  color: var(--primary);
}

/* ============ ЯК ВИКОРИСТОВУВАТИ ============ */
.howto {
  background: var(--bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 780px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: #1a0f00;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.step-card img {
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  margin-bottom: 14px;
}
.step-card p {
  color: var(--text-primary);
}

/* ============ ВІДГУКИ ============ */
.reviews {
  background: var(--surface);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 20px;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.review-head strong {
  display: block;
  color: var(--text-primary);
  font-size: 1rem;
}
.review-city {
  display: block;
  font-size: 0.82rem;
  color: var(--text-body);
}
.stars {
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.review-card p {
  font-size: 0.95rem;
}

/* ============ БАНДЛИ ============ */
.bundles-section {
  background: var(--grad-hero);
}
.bundles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 780px) {
  .bundles-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}
.bundle-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px 18px 22px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.bundle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(245, 166, 35, 0.2);
}
.bundle-card.is-hit {
  border: 2px solid var(--primary);
  box-shadow: 0 14px 40px rgba(245, 166, 35, 0.22);
}
@media (min-width: 780px) {
  .bundle-card.is-hit {
    transform: scale(1.06);
  }
  .bundle-card.is-hit:hover {
    transform: scale(1.06) translateY(-6px);
  }
}
.bundle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.hit-badge {
  background: var(--secondary);
  color: #fff;
  animation: firePulse 1.6s ease-in-out infinite;
}
@keyframes firePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 65, 43, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(232, 65, 43, 0);
  }
}
.bundle-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  width: 100%;
  margin: 8px 0 14px;
}
.bundle-card h3 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.bundle-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}
.old-price {
  text-decoration: line-through;
  color: #6a746c;
  font-size: 0.95rem;
}
.new-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.7rem;
  font-variant-numeric: tabular-nums;
}
.per-unit {
  display: block;
  color: var(--text-body);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.bundle-select {
  width: 100%;
  background: rgba(245, 166, 35, 0.14);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 10px;
  min-height: 48px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease;
}
.bundle-card.is-hit .bundle-select {
  background: var(--grad-cta);
  color: #1a0f00;
  border: none;
}
.bundle-select:hover {
  background: rgba(245, 166, 35, 0.26);
}

/* ============ 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, 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);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sotki-slider::-webkit-slider-thumb {
    animation: none;
  }
  .bundle-card.is-recommend-flash {
    animation: none;
  }
  .sonar span {
    display: none;
  }
  .breathing {
    animation: none;
  }
}

/* ============ ФОРМА ============ */
.order-section {
  background: var(--deep-water);
}
.order-card {
  background: var(--surface);
  border-top: 3px solid var(--primary);
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto;
  padding: 28px 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}
.order-card h2 {
  font-weight: 600;
  font-size: clamp(1.4rem, 4vw, 2rem);
  text-align: center;
  margin-bottom: 14px;
}
.live-counter--form {
  margin: 0 0 20px;
}
.form-bundles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.form-bundle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}
.form-bundle input {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}
.form-bundle .fb-name {
  color: var(--text-primary);
  font-weight: 500;
}
.form-bundle .fb-price {
  margin-left: auto;
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.form-bundle .fb-tag {
  position: absolute;
  top: -9px;
  right: 12px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.form-bundle:has(input:checked) {
  border-color: var(--primary);
  background: rgba(245, 166, 35, 0.08);
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
}
.field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.field input::placeholder {
  color: var(--text-body);
}
.field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--amber-glow);
  transform: translateY(-1px);
}
.form-submit {
  margin-top: 6px;
}
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--text-body);
}

/* ============ FAQ ============ */
.faq {
  background: var(--bg);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 14px 18px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.98rem;
  color: var(--primary);
}
.faq-arrow {
  transition: transform 0.3s ease;
  color: var(--primary);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 350px;
}
.faq-a p {
  padding: 0 18px 18px;
  color: var(--text-body);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--deep-water);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--card-border);
}
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-links a {
  color: var(--text-body);
  font-size: 0.88rem;
  transition: color 0.18s ease;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-copy {
  color: #5c665e;
  font-size: 0.82rem;
}

/* ============ STICKY CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--grad-cta);
  color: #1a0f00;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  min-height: 56px;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--coral-glow);
  animation: breathe 2.6s ease-in-out infinite;
}
.sticky-timer {
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  background: rgba(0, 0, 0, 0.2);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
}
@media (min-width: 900px) {
  .sticky-cta {
    left: auto;
    right: 24px;
    max-width: 340px;
  }
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ C1_live_toast (dark palette) ============ */
.live-toast {
  position: fixed;
  bottom: 20px;
  left: 16px;
  z-index: 90;
  background: rgba(20, 33, 28, 0.97);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 11px 15px;
  max-width: 280px;
  font-size: 13px;
  color: var(--text-primary);
  font-family: var(--font-body);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  transform: translateY(160%);
  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: toastDotPulse 1.4s infinite;
}
.live-toast__text strong {
  color: var(--primary);
  font-weight: 700;
}
@keyframes toastDotPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
@media (max-width: 480px) {
  .live-toast {
    bottom: 84px;
    left: 12px;
    max-width: calc(100vw - 24px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .live-toast {
    transition: opacity 0.3s ease;
  }
  .live-toast__dot {
    animation: none;
  }
}

/* ============ C1_price_countup ============ */
.new-price .price-countup {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

@media (prefers-reduced-motion: reduce) {
  .breathing,
  .timer,
  .hit-badge,
  .live-dot,
  .sticky-cta {
    animation: none;
  }
}
