/* ============================================
   SHREE SHYAM MART – Premium Dark Theme
   ============================================ */

:root {
  --bg-dark:       #050810;
  --bg-card:       #0c1022;
  --bg-card2:      #0f1530;
  --blue-deep:     #0a1628;
  --blue-mid:      #1a3a6b;
  --blue-accent:   #2563eb;
  --blue-glow:     #3b82f6;
  --gold:          #f5c518;
  --gold-light:    #fde68a;
  --gold-dark:     #b8920a;
  --white:         #ffffff;
  --text-primary:  #e2e8f0;
  --text-muted:    #8892a4;
  --green:         #22c55e;
  --combo-from:    #d97706;
  --combo-to:      #f59e0b;
  --danger:        #ef4444;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --shadow-gold:   0 0 30px rgba(245, 197, 24, 0.3);
  --shadow-blue:   0 0 40px rgba(37, 99, 235, 0.25);
  --transition:    0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── UTILITY ─── */
.gold { color: var(--gold); }

.gold-gradient {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #111;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.4);
}

.btn-gold:hover { box-shadow: 0 8px 32px rgba(245, 197, 24, 0.6); }

.btn-combo {
  background: linear-gradient(135deg, #d97706, #f59e0b, #fcd34d);
  color: #111;
  box-shadow: 0 4px 24px rgba(217, 119, 6, 0.5);
  font-size: 1.05rem;
}

.btn-combo:hover { box-shadow: 0 8px 36px rgba(217, 119, 6, 0.7); }

.btn-hero {
  flex-direction: column;
  padding: 16px 40px;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-lg);
}

.btn-sub {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 2px;
}

.btn-large { padding: 18px 44px; font-size: 1.1rem; }

/* ─── FOMO BAR ─── */
.fomo-bar {
  position: fixed;
  bottom: 90px;
  left: 16px;
  z-index: 9999;
  background: linear-gradient(135deg, #111827, #1e3a5f);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 280px;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: slideInLeft 0.5s ease;
  transition: opacity 0.4s ease;
}

.fomo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
  animation: blink 1.4s infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes slideInLeft { from{transform:translateX(-120%);opacity:0} to{transform:translateX(0);opacity:1} }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 8, 16, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.12);
  padding: 12px 0;
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  white-space: nowrap;
}

.logo-icon { font-size: 1.4rem; }

.header-nav { display: flex; gap: 24px; }
.header-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
  font-weight: 500;
}
.header-nav a:hover { color: var(--gold); }

.header-cta { padding: 8px 22px; font-size: 0.88rem; }

/* ─── URGENCY BANNER ─── */
.urgency-banner {
  background: linear-gradient(90deg, #7f1d1d, #991b1b, #b91c1c);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 57px;
  position: relative;
  z-index: 100;
}

#countdown-timer {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fde68a;
  font-variant-numeric: tabular-nums;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.18), transparent);
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.12), transparent);
  bottom: 0; right: -50px;
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.pulse-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37,99,235,0.25), rgba(245,197,24,0.15));
  border: 1px solid rgba(245,197,24,0.4);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.badge {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #93c5fd;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
}

.badge i { color: var(--gold); }

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
}
.stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s infinite;
  font-size: 1.1rem;
}

@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ─── SCARCITY BAR ─── */
.scarcity-bar {
  background: linear-gradient(90deg, #1a0a00, #2d1300, #1a0a00);
  border-top: 1px solid rgba(245,197,24,0.2);
  border-bottom: 1px solid rgba(245,197,24,0.2);
  color: var(--gold-light);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.scarcity-bar i { color: var(--danger); animation: blink 1.2s infinite; }

/* ─── PRODUCTS SECTION ─── */
.products-section {
  padding: 80px 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,99,235,0.08) 0%, transparent 70%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
  align-items: start;
}

/* ─── PRODUCT CARD ─── */
.product-card {
  background: linear-gradient(145deg, var(--bg-card), #0e1525);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(37, 99, 235, 0.3);
}

.product-card--combo {
  border: 1.5px solid rgba(245, 197, 24, 0.5);
  background: linear-gradient(145deg, #0f1a30, #14203d);
  box-shadow: 0 0 40px rgba(245, 197, 24, 0.1);
}

.product-card--combo:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-gold), var(--shadow-blue);
  border-color: rgba(245, 197, 24, 0.8);
}

.combo-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 50% 0%, rgba(245,197,24,0.08), transparent 65%);
  pointer-events: none;
  animation: comboGlowPulse 3s ease-in-out infinite;
}

@keyframes comboGlowPulse {
  0%,100% { opacity: 0.8; }
  50%      { opacity: 1.4; }
}

.combo-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--combo-from), var(--combo-to));
  color: #111;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  animation: pulseGlow 2s infinite;
}

.best-value-badge {
  position: absolute;
  top: -1px;
  left: 28px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: #111;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.06em;
}

.card-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card--combo .card-title { font-size: 1.35rem; }

.card-type {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-weight: 600;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.card-features li i {
  color: var(--green);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.card-pricing {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.old-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.new-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.combo-price { font-size: 2.4rem; }

.save-text {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}

.btn-card {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}

.combo-timer-text {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.checkout-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

/* ─── BENEFITS SECTION ─── */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-dark), var(--blue-deep));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(25px);
}

.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.3);
}

.benefit-icon { font-size: 2rem; margin-bottom: 12px; }

.benefit-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.benefit-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.trust-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.trust-pill {
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25);
  color: #93c5fd;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-pill i { color: var(--gold); }

/* ─── REVIEWS SECTION ─── */
.reviews-section {
  padding: 80px 0;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.06), transparent 70%);
  overflow: hidden;
}

.reviews-carousel-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 8px 4px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  transition: transform var(--transition), border-color var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.25);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid rgba(245,197,24,0.3);
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.review-city {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 10px; letter-spacing: 2px; }

.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.carousel-btn {
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--blue-accent);
  border-color: var(--blue-accent);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

/* ─── FAQ SECTION ─── */
.faq-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(245,197,24,0.3); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-question i {
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: transform var(--transition);
  color: var(--gold);
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── FINAL CTA ─── */
.final-cta-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--blue-deep), var(--bg-dark));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.08), transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.final-cta-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 18px;
}

.final-cta-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.final-scarcity {
  color: var(--danger);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #030508;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 44px 0 100px;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}

.footer-tagline { color: var(--text-muted); font-size: 0.88rem; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  color: #3d4558;
  font-size: 0.78rem;
}

/* ─── STICKY MOBILE CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(5,8,16,0.95);
  border-top: 1px solid rgba(245,197,24,0.2);
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible { transform: translateY(0); }

.btn-sticky {
  width: 100%;
  max-width: 500px;
  padding: 14px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

#sticky-timer { font-variant-numeric: tabular-nums; font-weight: 900; }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 16px;
  z-index: 1000;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes waPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ─── SCROLL ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-cta { padding: 8px 16px; font-size: 0.82rem; }

  .hero { padding: 50px 20px 40px; min-height: 80vh; }
  .hero-stats { gap: 16px; }
  .stat strong { font-size: 1.3rem; }

  .products-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .product-card--combo { order: -1; }

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

  .fomo-bar { bottom: 80px; max-width: 240px; font-size: 0.76rem; }

  .whatsapp-float { bottom: 80px; }

  .final-cta-btns { flex-direction: column; align-items: center; }
  .btn-large { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .trust-badges { gap: 8px; }
  .badge { font-size: 0.78rem; padding: 6px 12px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .trust-pillars { flex-direction: column; align-items: center; }
  .hero-stats .stat-divider { height: 30px; }
}
