/* ============================================================
   DJ PACKS PRO — styles.css
   Archetype: Dark Sales Premium (negro, rojo, amarillo)
   v=20260516
   ============================================================ */

/* ---- ACCESSIBILITY ---------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- RESET & BASE ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #000000;
  --bg-2:        #0d0d0d;
  --bg-card:     #111111;
  --bg-card-2:   #1a1a1a;
  --red:         #e01a12;
  --red-dark:    #8b0000;
  --red-glow:    rgba(224, 26, 18, 0.55);
  --yellow:      #ffd700;
  --yellow-soft: #ffc400;
  --yellow-glow: rgba(255, 215, 0, 0.35);
  --white:       #ffffff;
  --white-soft:  #e8e8e8;
  --gray:        #888888;
  --line:        rgba(255, 255, 255, 0.08);
  --cd-bar-h:    52px;
  --radius:      10px;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-top: var(--cd-bar-h);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

/* ---- CONTAINERS ------------------------------------------- */
.container {
  width: min(100%, 900px);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ---- SECTION UTILITIES ------------------------------------ */
.section-dark { background: var(--bg-2); }

.section-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.section-title--metallic {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #d8d8d8 25%,
    #ffffff 45%,
    #a8a8a8 70%,
    #e8e8e8 85%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.25));
}

/* Defensive rule — prevents invisible text if JS splits this element */
.reveal[data-split] { opacity: 1; transform: none; }

.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ---- COUNTDOWN BAR ---------------------------------------- */
.countdown-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #8b0000 0%, var(--red) 40%, #8b0000 100%);
  border-bottom: 2px solid var(--yellow);
  height: var(--cd-bar-h);
  display: flex;
  align-items: center;
}

.countdown-bar__inner {
  width: 100%;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.countdown-bar__label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}

.countdown-bar__timer {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.35);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  min-width: 42px;
}

.countdown-num {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--yellow);
  line-height: 1.1;
}

.countdown-label {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.countdown-sep {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.countdown-bar__cta {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--yellow);
  color: #000;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

@media (hover: hover) {
  .countdown-bar__cta:hover {
    transform: scale(1.06);
    box-shadow: 0 0 12px var(--yellow-glow);
  }
}

/* ---- HERO ------------------------------------------------- */
.hero {
  width: 100%;
  background: #000;
  line-height: 0;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ---- VIDEO DEMO ------------------------------------------- */
.video-demo {
  background: var(--bg);
  padding: 3rem 0 3.5rem;
  text-align: center;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.3rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: linear-gradient(135deg, #1a0000, var(--red-dark));
  border: 2px solid var(--red);
  border-radius: 50px;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 0 20px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.07);
}

.btn-video__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

@media (hover: hover) {
  .btn-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--red-glow), 0 0 60px rgba(224,26,18,0.25);
    border-color: var(--yellow);
  }
  .btn-video:hover .btn-video__play { transform: scale(1.15); }
}

.video-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s var(--ease-out), opacity 0.45s ease, margin-top 0.4s;
  margin-top: 0;
}

.video-wrapper.is-open {
  max-height: 560px;
  opacity: 1;
  margin-top: 2rem;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.video-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---- BENEFITS --------------------------------------------- */
.benefits {
  padding: 4rem 0 4.5rem;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}

.benefit-card__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--white-soft);
  line-height: 1.55;
}

.benefit-card strong { color: var(--white); }

@media (hover: hover) {
  .benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(224,26,18,0.4);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 20px rgba(224,26,18,0.12);
  }
}

/* ---- OFFER / CTA SECTIONS --------------------------------- */
.offer {
  background: linear-gradient(180deg, #0d0000 0%, #000000 60%, #0a0000 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(224,26,18,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.offer--alt {
  background: linear-gradient(180deg, #000000 0%, #0d0000 50%, #000000 100%);
}

.offer--dark {
  background: linear-gradient(180deg, #0a0000 0%, #000000 100%);
}

.offer__tag {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.offer__headline {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.offer__headline--glow {
  color: var(--yellow);
  text-shadow:
    0 0 30px rgba(255,215,0,0.6),
    0 0 60px rgba(255,215,0,0.3);
}

.offer__price-block {
  margin-bottom: 1.5rem;
}

.offer__normal {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.offer__normal del {
  color: var(--red);
  text-decoration: line-through;
  font-weight: 700;
}

.offer__promo {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  color: var(--white-soft);
  line-height: 1.2;
}

.offer__promo strong {
  color: var(--yellow);
  font-size: clamp(2rem, 7vw, 3.2rem);
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
  display: inline-block;
}

.offer__badge {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin: 0.75rem 0 1.5rem;
}

.offer__perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
  color: var(--white-soft);
  font-size: 0.9rem;
}

.offer__urgency {
  margin-top: 1.25rem;
  color: var(--yellow-soft);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* ---- CTA BUTTON ------------------------------------------- */
.btn-cta {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border: 2px solid var(--yellow);
  border-radius: 50px;
  padding: 1rem 2.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  box-shadow:
    0 0 20px var(--red-glow),
    0 0 40px rgba(224,26,18,0.2),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.btn-cta--xl {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  padding: 1.2rem 3rem;
}

@media (hover: hover) {
  .btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
      0 0 30px var(--red-glow),
      0 0 70px rgba(224,26,18,0.35),
      0 0 20px var(--yellow-glow),
      inset 0 1px 0 rgba(255,255,255,0.18);
  }
}

/* Pulse animation for CTAs */
.pulse {
  animation: btnPulse 2.4s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow:
      0 0 20px var(--red-glow),
      0 0 40px rgba(224,26,18,0.2),
      inset 0 1px 0 rgba(255,255,255,0.12);
  }
  50% {
    box-shadow:
      0 0 35px var(--red-glow),
      0 0 70px rgba(224,26,18,0.4),
      0 0 15px var(--yellow-glow),
      inset 0 1px 0 rgba(255,255,255,0.12);
  }
}

/* ---- INCLUDES --------------------------------------------- */
.includes {
  padding: 4rem 0 4.5rem;
}

.includes__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}

.include-item:first-child { border-top: 1px solid var(--line); }

.include-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.include-item__text h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.include-item__text p {
  font-size: 0.93rem;
  color: var(--white-soft);
  line-height: 1.55;
}

.include-item__text strong { color: var(--yellow-soft); }

.include-item--bonus {
  background: linear-gradient(90deg, rgba(255,215,0,0.06) 0%, transparent 100%);
  border-left: 3px solid var(--yellow);
}

.include-item--bonus .include-item__text h3 { color: var(--yellow); }

@media (hover: hover) {
  .include-item:not(.include-note):hover {
    background: rgba(255,255,255,0.03);
  }
}

.include-note {
  text-align: center;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  border-bottom: none;
  border-top: 1px solid var(--line);
}

/* ---- TESTIMONIALS ----------------------------------------- */
.testimonials {
  padding: 4rem 0 4.5rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  color: rgba(224,26,18,0.1);
  line-height: 1;
  pointer-events: none;
}

@media (hover: hover) {
  .testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224,26,18,0.35);
    box-shadow: 0 12px 35px rgba(0,0,0,0.5), 0 0 25px rgba(224,26,18,0.1);
  }
}

.testimonial-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__stars {
  color: var(--yellow);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.testimonial-card__quote {
  font-size: 0.9rem;
  color: var(--white-soft);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.testimonial-card__author strong {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* ---- FAQ -------------------------------------------------- */
.faq {
  padding: 4rem 0 4.5rem;
}

.faq__list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--bg-card);
}

.faq-item:last-child { border-bottom: none; }

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  list-style: none;
  user-select: none;
  transition: background 0.2s, color 0.2s;
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__arrow {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--red);
  transition: transform 0.35s var(--ease-out);
}

.faq-item[open] .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item[open] .faq-item__q {
  color: var(--yellow);
  background: rgba(255,215,0,0.04);
}

@media (hover: hover) {
  .faq-item__q:hover {
    background: rgba(255,255,255,0.03);
    color: var(--yellow-soft);
  }
}

.faq-item__a {
  padding: 0.1rem 1.5rem 1.25rem;
  animation: fadeDown 0.35s var(--ease-out) both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-item__a p {
  font-size: 0.93rem;
  color: var(--white-soft);
  line-height: 1.65;
}

.faq-item__a strong { color: var(--white); }

/* ---- PAYMENT ---------------------------------------------- */
.payment {
  background: var(--bg);
  padding: 4rem 0 4.5rem;
  text-align: center;
  position: relative;
}

.payment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--yellow), var(--red), transparent);
}

.payment__subtitle {
  color: var(--white-soft);
  font-size: 1rem;
  margin: 0.5rem auto 2rem;
  max-width: 550px;
}

.payment__options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.payment__option {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
  max-width: 280px;
  flex: 1;
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}

@media (hover: hover) {
  .payment__option:hover {
    transform: translateY(-4px);
    border-color: rgba(255,215,0,0.3);
  }
}

.payment__num {
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment__logo {
  max-height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(1);
}

.payment__option p {
  font-size: 0.9rem;
  color: var(--white-soft);
  text-align: center;
}

.payment__option strong { color: var(--white); }

.payment__divider {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
}

.payment__instructions {
  max-width: 540px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.payment__instructions p {
  font-size: 0.97rem;
  color: var(--white-soft);
  line-height: 1.6;
}

.payment__instructions strong { color: var(--white); }

.payment__security {
  font-size: 1rem;
  color: var(--yellow);
  font-weight: 600;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  background: #25d366;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

@media (hover: hover) {
  .btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  }
}

/* ---- FOOTER ----------------------------------------------- */
.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  text-align: center;
}

.footer__brand {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.footer__tagline {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.footer__note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
}

/* ---- SCROLL REVEAL ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for grids */
.benefits__grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.benefits__grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.benefits__grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.benefits__grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.benefits__grid .reveal:nth-child(6) { transition-delay: 0.35s; }

.testimonials__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.payment__options .reveal:nth-child(3) { transition-delay: 0.1s; }

/* ---- RESPONSIVE ------------------------------------------- */
@media (max-width: 600px) {
  .countdown-bar__inner {
    gap: 0.5rem;
  }

  .countdown-bar__label {
    font-size: 0.6rem;
    text-align: center;
  }

  .countdown-bar__cta {
    display: none;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .payment__options {
    flex-direction: column;
    align-items: stretch;
  }

  .payment__option {
    min-width: unset;
    max-width: unset;
  }

  .payment__divider {
    display: none;
  }

  .offer__promo strong {
    display: block;
  }
}

@media (max-width: 400px) {
  :root { --cd-bar-h: 44px; }

  .countdown-num { font-size: 1rem; }
  .countdown-unit { min-width: 36px; padding: 0.1rem 0.35rem; }
}

/* ---- REDUCE MOTION — only intrusive effects --------------- */
@media (prefers-reduced-motion: reduce) {
  .pulse { animation: none; }
  .footer__brand { animation: none; background-position: 0% center; }
}
