:root {
  --bg: #0e0e0e;
  --bg-soft: #171717;
  --red-dark: #8b0000;
  --red-fire: #e53935;
  --gold: #d4af37;
  --white: #fdf7f0;
  --muted: #b8b0a8;
  --border: rgba(212, 175, 55, 0.24);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Montserrat", Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 8%, rgba(229, 57, 53, 0.28), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(212, 175, 55, 0.18), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(139, 0, 0, 0.24), transparent 34%),
    linear-gradient(135deg, #040404 0%, #0b0b0b 45%, #140505 100%);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    radial-gradient(circle, rgba(255, 130, 0, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(212, 175, 55, 0.08) 0 1px, transparent 2px);
  background-size: 210px 210px, 260px 260px, 320px 320px;
  opacity: 0.4;
  animation: drift 18s linear infinite;
}

body::after {
  background:
    linear-gradient(120deg, transparent 0%, rgba(229, 57, 53, 0.12) 45%, transparent 100%),
    radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.12), transparent 40%);
  transform: translateX(-20%);
  animation: sweep 12s ease-in-out infinite alternate;
}

img {
  max-width: 100%;
  display: block;
}

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(229, 57, 53, 0.16);
  filter: blur(80px);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.site-header,
.hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-logo {
  width: 2.9rem;
  height: 2.9rem;
  object-fit: contain;
  border-radius: 0.6rem;
  box-shadow: 0 0 18px rgba(229, 57, 53, 0.18);
}

.site-nav {
  display: none;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

@media (max-width: 899px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 1.2rem;
    display: none;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.wa-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-fire), var(--red-dark));
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(229, 57, 53, 0.24);
  animation: glow 2.2s infinite ease-in-out;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.4rem;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--white);
}

.section {
  padding: 4rem 1.2rem;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-top: 2.4rem;
  padding-bottom: 1.2rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  font-weight: 800;
  max-width: 8ch;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.96;
}

h1 span {
  background: linear-gradient(135deg, var(--red-fire), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3s linear infinite;
}

.hero-text {
  margin: 0.85rem 0 1rem;
  font-size: 1.09rem;
  color: var(--muted);
  max-width: 40rem;
  letter-spacing: 0.01em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--white);
  font-size: 0.8rem;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-benefits {
  padding: 0;
  margin: 0 0 1.1rem;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--white);
  font-weight: 500;
}

.price-card {
  padding: 1.05rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(212,175,55,0.24);
  background: linear-gradient(135deg, rgba(229,57,53,0.16), rgba(255,255,255,0.05));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 20px 40px rgba(0,0,0,0.28);
  margin-bottom: 1rem;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1.05rem;
}

.new-price {
  font-size: 2.1rem;
  color: var(--red-fire);
  font-weight: 800;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(229, 57, 53, 0.4);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(229, 57, 53, 0.14);
  animation: pulse 1.8s infinite ease-in-out;
}

.save-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.save-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(212,175,55,0.16);
  color: var(--gold);
  font-weight: 700;
}

.countdown-inline {
  display: flex;
  gap: 0.4rem;
}

.countdown-inline span {
  min-width: 42px;
  padding: 0.35rem 0.3rem;
  border-radius: 0.7rem;
  background: rgba(255,255,255,0.08);
  text-align: center;
}

.countdown-inline strong {
  display: block;
  font-size: 0.95rem;
}

.countdown-inline em {
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.05rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.button:hover::after,
.button:focus-visible::after {
  transform: scaleX(1);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.01);
}

.button-primary {
  background: linear-gradient(135deg, var(--red-fire), var(--red-dark));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(229, 57, 53, 0.24);
  animation: glow 2.2s infinite ease-in-out;
}

.button-secondary {
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.promo-action {
  margin-top: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.product-stage {
  position: relative;
  width: min(100%, 560px);
  padding: 2rem 1rem 1.2rem;
  display: grid;
  place-items: center;
  transform: translateY(0);
}

.fire-glow {
  position: absolute;
  inset: 10% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.42), transparent 72%);
  filter: blur(36px);
  animation: pulse 2.6s infinite ease-in-out;
}

.light-rays {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.16), transparent 58%);
  filter: blur(44px);
  animation: pulse 4s ease-in-out infinite;
}

.ember {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red-fire));
  box-shadow: 0 0 18px rgba(212,175,55,0.7);
  animation: drift 3.4s ease-in-out infinite;
}

.ember-a { top: 16%; right: 18%; }
.ember-b { bottom: 22%; left: 12%; animation-duration: 3.8s; }
.ember-c { top: 40%; left: 8%; animation-duration: 4.2s; }

.bottle {
  position: relative;
  width: 300px;
  height: 395px;
  border-radius: 36px 36px 56px 56px;
  background: linear-gradient(145deg, #141414, #060606);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: rotate(-6deg);
  animation: floatBottle 3.2s infinite ease-in-out;
}

.bottle::before {
  content: "";
  position: absolute;
  inset: 16px 20px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.bottle-cap {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  width: 88px;
  height: 46px;
  border-radius: 999px 999px 16px 16px;
  background: linear-gradient(145deg, #3b3b3b, #0d0d0d);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.bottle-label {
  position: absolute;
  inset: 58px 30px 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.9), rgba(139, 0, 0, 0.85));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.product-image {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  max-width: 395px;
  margin: 0 auto;
  object-fit: contain;
  z-index: 2;
  display: none;
  filter: drop-shadow(0 42px 54px rgba(0, 0, 0, 0.42));
}

.product-image.is-visible {
  display: block;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(1.2px);
  opacity: 0.55;
  box-shadow: 0 0 12px rgba(212,175,55,0.22);
}

.p1 { top: 18%; right: 10%; animation: drift 3.5s infinite ease-in-out; }
.p2 { bottom: 18%; left: 14%; animation: drift 4.2s infinite ease-in-out reverse; }
.p3 { top: 40%; left: 8%; animation: drift 3.8s infinite ease-in-out; }

.section-heading {
  max-width: 700px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.trust-pill {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  font-size: 0.82rem;
  color: var(--white);
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  font-weight: 700;
}

.card-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.avatar {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red-fire));
  color: var(--white);
  font-weight: 700;
}

.info-card,
.testimonial-card,
.faq-item {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  backdrop-filter: blur(14px);
  border-radius: 1.2rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-card:hover,
.testimonial-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.36);
}

.card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.info-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.info-card p,
.testimonial-card p,
.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.promo-banner {
  padding-top: 2rem;
}

.promo-banner__content {
  border-radius: 1.6rem;
  padding: 2rem 1.2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--red-fire), var(--red-dark));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.promo-banner__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212,175,55,0.25), transparent 40%);
  pointer-events: none;
}

.promo-banner__content h2 {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  margin-bottom: 0.7rem;
}

.promo-price {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: baseline;
  margin: 0.3rem 0;
}

.promo-banner .old {
  text-decoration: line-through;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

.promo-banner .new {
  font-size: 2.2rem;
  font-weight: 800;
}

.save {
  margin: 0.4rem 0 1rem;
  font-weight: 600;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.countdown span {
  min-width: 78px;
  padding: 0.8rem 0.6rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.16);
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}

.countdown strong {
  font-size: 1.2rem;
}

.countdown em {
  font-style: normal;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
}

.timeline-step span {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-fire), var(--red-dark));
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.7rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: var(--gold);
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 120px;
  margin-top: 0.75rem;
}

.final-cta {
  padding-bottom: 3rem;
}

.final-cta__content {
  padding: 2.3rem 1.2rem;
  text-align: center;
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(229,57,53,0.18), rgba(8,8,8,0.9)),
    url("../img/product.png") center/cover no-repeat;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,175,55,0.24);
  position: relative;
  overflow: hidden;
}

.final-cta__content::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(212,175,55,0.2), transparent 55%);
  pointer-events: none;
}

.final-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.7rem 0 1rem;
}

.phone {
  margin-top: 1rem;
  color: var(--white);
  font-weight: 600;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1rem 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid rgba(212,175,55,0.16);
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.footer-credit {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  transform: translateX(-24px);
}

.reveal-right {
  transform: translateX(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

@keyframes floatBottle {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.03); opacity: 1; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 12px 26px rgba(229, 57, 53, 0.28); }
  50% { box-shadow: 0 18px 34px rgba(229, 57, 53, 0.4); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.35; }
  50% { transform: translate3d(6px, -10px, 0); opacity: 0.8; }
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes sweep {
  0% { transform: translateX(-20%); }
  100% { transform: translateX(20%); }
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 900px) {
  .site-header {
    padding: 1rem 2rem;
  }

  .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding: 3.2rem 2rem 1.2rem;
  }

  .section {
    padding: 5rem 2rem;
  }

  .promo-banner__content {
    padding: 2.5rem 2rem;
  }

  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
    min-height: 140px;
  }
}
