/* save as: styles.css */
/* Pixel-focused, modular styling with responsive breakpoints */
:root{
  --bg:#181818;
  --panel:#222;
  --muted:#bfc3c6;
  --accent1:#ffb23b;
  --accent2:#ff7a00;
  --ribbon:#c50020;
  --glass: rgba(255,255,255,0.03);
  --max-width:1100px;
  --radius:12px;
  --box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  --timer-outline: rgba(255,160,30,0.14);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:linear-gradient(180deg,#101010 0%, #161616 100%);
  color:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.3;
  font-size:16px;
}

/* Top ribbon */
.top-ribbon{
  width:100%;
  background:var(--ribbon);
  color:#fff;
  text-align:center;
  padding:10px 12px;
  font-weight:700;
  font-size:14px;
  position:relative;
  z-index:4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.45);
}

/* Page container */
.page .inner{
  max-width:var(--max-width);
  margin:25px auto 0;
  padding:24px;
  text-align:center;
}

/* Logo */
.logo-wrap { margin-top:8px; display:flex; justify-content:center; }
.brand-logo{ filter:drop-shadow(0 6px 16px rgba(0,0,0,0.6)); border-radius:50%; }

/* Hero title */
.hero-title{
  line-height:1.3;
  margin:5px 0 26px;
  font-size:44px;
  font-weight:800;
  color: #fff; /* warm orange */
  letter-spacing:0.2px;
  text-shadow: 0 6px 20px rgba(255,146,0,0.08);
}
.rocket{ margin-left:8px; font-size:0.85em; }

/* Grid layout */
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:center;
  margin-top:14px;
  text-align:left;
}

/* Left mockup */
.mockup-left .device-frame{
  background:linear-gradient(180deg,#2a2a2a,#151515);
  padding:18px;
  border-radius:16px;
  box-shadow: var(--box-shadow);
  display:flex;
  justify-content:center;
  align-items:center;
  border: 1px solid rgba(255,255,255,0.04);
}
.device-frame img{
  max-width:100%;
  width:360px;
  height:auto;
  border-radius:10px;
  display:block;
  box-shadow: inset 0 6px 12px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.6);
}

/* Right column content */
.sales-right{
  color:#fff;
}
.lead-cta{
  font-weight:700;
  font-size:20px;
  margin:4px 0 12px;
}
.icons-row{
  display:flex;
  gap:12px;
  align-items:center;
  margin:8px 0 12px;
}
.data-icon{
  min-width:56px;
  height:56px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg,#151515,#2b2b2b);
  border:1px solid rgba(255,255,255,0.04);
  font-weight:700;
  font-size:20px;
  color:var(--accent1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  padding-inline: 10px;
}

/* subtext small */
.subtext{
  color:var(--muted);
  margin-top:6px;
  font-size:13px;
}

/*Review hero*/
/* pill wrapper */
.purchase-pill {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 9999px;
  padding: 1px 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  gap: 8px;
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  font-size: 14px;
}

/* avatars overlapping */
.avatars {
  display: flex;
  align-items: center;
  height: 28px;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  box-shadow: 0 0 2px rgba(0,0,0,0.08);
}

.avatars .avatar + .avatar { margin-left: -10px; }

/* text area */
.text {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #333;
  flex-wrap: wrap;
}

.name {
  font-weight: 600;
  color: #000;
}

.verified {
  flex-shrink: 0;
}

.meta {
  color: #555;
}

.meta strong {
  font-weight: 600;
  color: #000;
}

/* responsive scaling */
@media (max-width:400px) {
  .avatar {
    width: 24px;
    height: 24px;
  }
  .purchase-pill {
    padding: 5px 8px;
    font-size: 13px;
  }
}


/* Offer + countdown */
.offer-wrap{
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
}
.offer-label{
  display:inline-block;
  background:linear-gradient(90deg, #ff0000, #ff3f3f);
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-weight:700;
  font-size:13px;
  box-shadow: 0 6px 18px rgba(255,133,0,0.12);
}

.countdown{
  display:flex;
  gap:14px;
  align-items:center;
  margin-top:6px;
  background: linear-gradient(180deg, rgba(255,160,30,0.03), rgba(0,0,0,0.02));
  padding:12px;
  border-radius:12px;
  border:1px solid var(--timer-outline);
  box-shadow: 0 12px 24px rgba(0,0,0,0.5);
}
.time-card{
  min-width:88px;
  padding:10px 14px;
  border-radius:10px;
  background:linear-gradient(180deg,#111,#1b1b1b);
  border: 1px solid rgba(255,160,59,0.12);
  text-align:center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}
.time-number{
  font-weight:800;
  font-size:26px;
  color:var(--accent1);
  letter-spacing:1px;
}
.time-label{
  font-size:11px;
  color:var(--muted);
  margin-top:4px;
}

/* Bottom CTA */
.bottom-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(90deg,var(--accent1),var(--accent2));
  display:flex;
  justify-content:center;
  padding:10px 16px;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.55);
  z-index:60;
}
.cta-inner{
  width:100%;
  max-width:var(--max-width);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.cta-text{
  font-weight:700;
  font-size:18px;
  color:#111;
  padding-left:8px;
}
.cta-btn{
  background:#111;
  color:var(--accent1);
  padding:10px 18px;
  border-radius:10px;
  font-weight:800;
  text-decoration:none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.6);
  margin-left:12px;
}

/*Marquee Start*/
/* Marquee container with premium gradient */
.marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cta-gradient-1), var(--cta-gradient-2));
  padding: 13px 0;
  position: relative;
}

/* Inner scrolling track */
.marquee-inner {
  display: inline-block;
  animation: scroll 18s linear infinite;
  white-space: nowrap;
}

/* Premium text styling */
.marquee-inner span {
  display: inline-block;
  margin: 0 70px;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Smooth marquee animation */
@keyframes scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Hover pause for user focus */
.marquee:hover .marquee-inner {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-inner span {
    font-size: 22px;
    margin: 0 40px;
  }
}
@media (max-width: 480px) {
  .marquee-inner span {
    font-size: 16px;
    margin: 0 24px;
  }
}
/*Marquee End*/




/* ====== WhatsApp Button (Glassmorphism Style) ====== */
  .whatsapp-btn {
    position: fixed;
    bottom: 108px;
    right: 22px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 211, 102, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    animation: pulse 2.8s infinite;
  }

  .whatsapp-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  }

  .whatsapp-btn svg {
    width: 34px;
    height: 34px;
    fill: #fff;
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }

  @media (max-width: 480px) {
    .whatsapp-btn {
      width: 56px;
      height: 56px;
      bottom: 110px;
      right: 16px;
    }
    .whatsapp-btn svg {
      width: 28px;
      height: 28px;
    }
  }

/* Text Bubble */
.whatsapp-bubble {
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

/* Bubble Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Responsive */
@media (max-width:1000px){
  .hero-grid{ grid-template-columns:1fr; gap:20px; }
  .inner{ margin:20px 18px 140px; padding:16px; text-align:center; }
  .icons-row{ justify-content:start }
  .offer-wrap{ align-items:center }
  .countdown{ justify-content:center }
  .device-frame img{ width:320px; }
  .hero-title{ font-size:36px; }
}
@media (max-width:520px){
  .brand-logo{ width:90px; height:90px; }
  .device-frame img{ width:260px; }
  .hero-title{ font-size:26px; }
  .time-card{ min-width:74px; padding:8px; }
  .cta-text{ font-size:15px; }
}




/* Benefits Section */
/* Benefits Section */
.benefits-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.benefits-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-heading {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #000;
  color: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.checkmark {
  min-width: 26px;
  height: 26px;
  background: #ffb23b;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-heading {
    font-size: 26px;
  }
}



/* Sample */
/* ========== DATA SAMPLE SECTION ========== */
.data-sample {
  background: #000;
  padding: 50px 20px;
  text-align: center;
}

.data-sample-container {
  max-width: 1000px;
  margin: 0 auto;
}

.data-sample-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f39c12; /* Orange heading */
  margin-bottom: 30px;
}

.data-sample-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.data-sample-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .data-sample-title {
    font-size: 1.5rem;
  }
}


/* ========== DATA PROOF SECTION ========== */
.data-proof {
  background: #000;
  padding: 50px 20px;
  text-align: center;
}

.data-proof-container {
  max-width: 1100px;
  margin: 0 auto;
}

.data-proof-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff; /* Orange */
  margin-bottom: 30px;
}

/* Slider */
.data-proof-slider {
  position: relative;
  overflow: hidden;
  border: 3px solid #e50914;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.data-proof-slides {
  display: flex;
  transition: transform 0.6s ease;
}

.data-proof-slide {
  min-width: 100%;
  transition: opacity 0.5s;
}

.data-proof-slide img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* Arrows */
.data-proof-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #250505;
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s;
}

.data-proof-arrow:hover {
  background: rgba(229, 9, 20, 1);
}

.data-proof-arrow-left { left: 15px; }
.data-proof-arrow-right { right: 15px; }

/* Dots */
.data-proof-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.data-proof-dot {
  width: 12px;
  height: 12px;
  background: #666;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.data-proof-dot.active {
  background: #e50914;
}

/* Responsive */
@media (max-width: 768px) {
  .data-proof-title {
    font-size: 1.5rem;
  }
  .data-proof-arrow {
    font-size: 1.5rem;
    padding: 6px 9px;
  }
}










/* ========== REVIEW SECTION ========== */
.review-section {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
}

.review-container {
  max-width: 1100px;
  margin: 0 auto;
}

.review-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

/* Slider wrapper */
.review-slider {
  position: relative;
  overflow: hidden;
  border: 3px solid #e50914;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  margin-bottom: 30px; /* fixed bottom margin */
}

/* Slides */
.review-slides {
  display: flex;
  transition: transform 0.6s ease;
}

.review-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px; /* fixed padding inside */
}

.review-slide img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  border: 3px solid #e50914;
  background: #000;
}

/* Arrows */
.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(229, 9, 20, 0.7);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s;
}

.review-arrow:hover {
  background: rgba(229, 9, 20, 1);
}

.review-arrow-left { left: 15px; }
.review-arrow-right { right: 15px; }

/* Dots */
.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-dot {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.review-dot.active {
  background: #e50914;
}

/* Responsive */
@media (max-width: 768px) {
  .review-title {
    font-size: 1.5rem;
  }
  .review-slide img {
    max-width: 100%;
  }
}




/*  */
:root {
  --cta-gradient-1: #ff0048;
  --cta-gradient-2: #e50914;
  --cta-radius: 48px;
  --timer-bg: rgba(0,0,0,0.65);
  --timer-color: #fff;
  font-family: 'Poppins', system-ui, Arial;
}

/* Sticky wrapper */
.review-cta-sticky {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 92%);
  z-index: 9999;
  text-align: center;
}

/* Inner layout */
.review-cta-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Timer pill */
.review-cta-timer {
  padding: 8px 14px;
  background: var(--timer-bg);
  color: var(--timer-color);
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* CTA button (locked by default) */
.review-cta-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,0,72,0.35), rgba(229,9,20,0.35));
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--cta-radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0.75;
  box-shadow: 0 6px 18px rgba(229, 9, 20, 0.2);
}

.review-cta-label {
  position: relative;
  z-index: 2;
}

.review-cta-btn .btn-overlay {
  position: absolute;
  top: 0;
  left: -90%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.3), rgba(255,255,255,0.08));
  transform: skewX(-25deg);
  z-index: 1;
}

/* Enabled CTA */
.review-cta-btn.enabled {
  pointer-events: auto;
  opacity: 1;
  background: linear-gradient(135deg, var(--cta-gradient-1), var(--cta-gradient-2));
  box-shadow: 0 10px 24px rgba(229,9,20,0.35);
  animation: pulseBtn 2.5s infinite;
}

.review-cta-btn.enabled .btn-overlay {
  animation: shineMove 2.5s linear infinite;
}

/* Animations */
@keyframes pulseBtn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shineMove {
  0% { left: -90%; }
  60% { left: 110%; }
  100% { left: 110%; }
}

/* Responsive full width on small devices */
@media (max-width: 600px) {
  .review-cta-inner {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .review-cta-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
  }
  .review-cta-timer {
    width: 100%;
    justify-content: center;
  }
}


    /* Background overlay */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      z-index: 9998;
    }
    .popup-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    /* Popup container */
    .popup-wrapper {
      position: fixed;
      top: -100%;
      left: 50%;
      transform: translateX(-50%);
      width: 92%;
      max-width: 480px;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.25);
      padding: 28px 24px 32px;
      z-index: 9999;
      opacity: 0;
      transition: all 0.55s cubic-bezier(0.19,1,0.22,1);
    }
    .popup-wrapper.show {
      top: 60px;
      opacity: 1;
    }

    /* Close button */
    .popup-close {
      position: absolute;
      top: 14px;
      right: 16px;
      font-size: 1.4rem;
      cursor: pointer;
      background: none;
      border: none;
      color: #555;
      transition: color 0.25s ease;
    }
    .popup-close:hover { color: #e50914; }

    /* Heading */
    .popup-header {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #222;
      text-align: center;
    }

    /* Body */
    .popup-body {
      font-size: 1rem;
      color: #555;
      margin-bottom: 24px;
      text-align: center;
    }

    /* Modern CTA button */
    .popup-link {
      position: relative;
      display: block;
      text-align: center;
      background: linear-gradient(135deg, #ff0048, #e50914);
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px;
      border-radius: 50px;
      text-decoration: none;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(229, 9, 20, 0.45);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .popup-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(229, 9, 20, 0.55);
    }

    /* Button shine overlay */
    .popup-link::after {
      content: "";
      position: absolute;
      top: 0;
      left: -80%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.4), rgba(255,255,255,0.1));
      transform: skewX(-25deg);
      animation: shine 3s infinite;
    }

    @keyframes shine {
      0% { left: -80%; }
      60% { left: 120%; }
      100% { left: 120%; }
    }
     

    


        /* Background overlay */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      z-index: 9998;
    }
    .popup-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    /* Popup container */
    .popup-wrapper {
      position: fixed;
      top: -100%;
      left: 50%;
      transform: translateX(-50%);
      width: 92%;
      max-width: 480px;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.25);
      padding: 28px 24px 32px;
      z-index: 9999;
      opacity: 0;
      transition: all 0.55s cubic-bezier(0.19,1,0.22,1);
    }
    .popup-wrapper.show {
      top: 60px;
      opacity: 1;
    }

    /* Close button */
    .popup-close {
      position: absolute;
      top: 14px;
      right: 16px;
      font-size: 1.4rem;
      cursor: pointer;
      background: none;
      border: none;
      color: #555;
      transition: color 0.25s ease;
    }
    .popup-close:hover { color: #e50914; }

    /* Heading */
    .popup-header {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: #222;
      text-align: center;
    }

    /* Feature list */
    .popup-features {
      list-style: none;
      padding: 0;
      margin: 0 0 24px 0;
      text-align: left;
    }
    .popup-features li {
      /* display: flex; */
      align-items: flex-start;
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 14px;
      line-height: 1.5;
    }
    .check-icon {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      margin-right: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00c851, #00a63f);
      color: #fff;
      font-size: 0.9rem;
      font-weight: bold;
      box-shadow: 0 2px 6px rgba(0, 200, 81, 0.35);
    }

    /* Modern CTA button */
    .popup-link {
      position: relative;
      display: block;
      text-align: center;
      background: linear-gradient(135deg, #ff0048, #e50914);
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px;
      border-radius: 50px;
      text-decoration: none;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(229, 9, 20, 0.45);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .popup-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(229, 9, 20, 0.55);
    }

    /* Button shine overlay */
    .popup-link::after {
      content: "";
      position: absolute;
      top: 0;
      left: -80%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.4), rgba(255,255,255,0.1));
      transform: skewX(-25deg);
      animation: shine 3s infinite;
    }
    @keyframes shine {
      0% { left: -80%; }
      60% { left: 120%; }
      100% { left: 120%; }
    }




.faq-section {
  background: #0d0d0d;
  color: #f5f5f5;
  padding: 60px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ff0048, #e50914);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #e50914;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 18px;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* enough to show text */
  padding: 12px 18px 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #e50914;
}



/* Footer */
.site-footer {
  background: #0d0d0d;
  color: #aaa;
  font-size: 0.9rem;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer .footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-disclaimer p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.60rem;
  font-weight: 300;
}

.footer-links {
  font-size: 0.75rem;
  color: #888;
}

.footer-links a {
  color: #e50914;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff0048;
}



/* People are viwing */
.live-viewers {
  font-size: 0.80rem;
  font-weight: 500;
  color: #333; /* switch to #fff on dark bg */
  display: flex;
  align-items: center;
  gap: 6px;
}

.eye-icon {
  width: 20px;
  height: 20px;
  color: #111; /* inherits from parent if not overridden */
}


/* Bonus  */
.bonus-section {
  background: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.bonus-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.bonus-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
  position: relative;
}

.bonus-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.bonus-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bonus-gift img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.bonus-gift img:hover {
  transform: scale(1.03);
}

/* Confetti Canvas */
#confettiCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2000;
}




/* Last  */
.deal-section {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  border-top: 4px solid #d60000;
}

.deal-container {
  max-width: 950px;
  margin: 0 auto;
}

.deal-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.deal-heading span {
  color: #d60000;
}

.deal-subtext {
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto 40px;
  color: #ccc;
  line-height: 1.6;
}

/* Card */
.deal-card {
  background: #111;
  border: 2px solid #d60000;
  border-radius: 12px;
  padding: 50px 25px 35px;
  margin-bottom: 25px;
  box-shadow: 0 0 25px rgba(214, 0, 0, 0.3);
  position: relative;
}

/* Ribbon Image */
.deal-ribbon-img {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}
.deal-ribbon-img img {
  max-width: 145px;
  height: auto;
}

/* Today Price */
.deal-today {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
  border: 2px solid #d60000;
}
.deal-today-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.deal-price {
  font-size: 2.5rem;
  color: #d60000;
  font-weight: 800;
  margin: 5px 0 10px;
}
.deal-bonus {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* Regular + Total Box */
.deal-box {
  background: #1a1a1a;
  padding: 15px 20px;
  margin: 12px 0;
  border-radius: 6px;
  border-left: 4px solid #d60000;
}
.deal-box p {
  font-size: 1rem;
}
.deal-box strong {
  color: #fff;
}
.deal-box em {
  color: #aaa;
  font-style: normal;
  font-size: 0.9rem;
}
.strike {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}




/*Camparison*/
.comparison-section {
            width: 100%;
            max-width: 900px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1e293b;
            background: linear-gradient(135deg, #1a0c0c, #1f1e1d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-title h2 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #64748b;
        }
        
        /* Comparison Table - Same for all devices */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        
        .comparison-table th, 
        .comparison-table td {
            padding: 20px;
            text-align: center;
            border: 1px solid #e2e8f0;
        }
        
        .comparison-table th {
            background: #f8fafc;
            font-weight: 700;
            color: #1e293b;
            font-size: 1.1rem;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .feature-header {
            background: #1e293b !important;
            color: white !important;
            font-weight: 700;
            text-align: left;
            width: 30%;
        }
        
        .bank-column {
            background: rgba(59, 130, 246, 0.05);
            border-left: 2px solid #3b82f6;
            border-right: 2px solid #3b82f6;
            width: 35%;
        }
        
        .bank-column th {
            background: #3b82f6;
            color: white;
        }
        
        .lender-column {
            background: rgba(16, 185, 129, 0.05);
            border-left: 2px solid #10b981;
            border-right: 2px solid #10b981;
            width: 35%;
        }
        
        .lender-column th {
            background: #10b981;
            color: white;

/*Camparison*/
.comparison-section {
            width: 100%;
            max-width: 900px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1e293b;
            background: linear-gradient(135deg, #1a0c0c, #1f1e1d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-title h2 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #64748b;
        }
        
        /* Comparison Table - Same for all devices */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        
        .comparison-table th, 
        .comparison-table td {
            padding: 20px;
            text-align: center;
            border: 1px solid #e2e8f0;
        }
        
        .comparison-table th {
            background: #f8fafc;
            font-weight: 700;
            color: #1e293b;
            font-size: 1.1rem;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .feature-header {
            background: #1e293b !important;
            color: white !important;
            font-weight: 700;
            text-align: left;
            width: 30%;
        }
        
        .bank-column {
            background: rgba(59, 130, 246, 0.05);
            border-left: 2px solid #3b82f6;
            border-right: 2px solid #3b82f6;
            width: 35%;
        }
        
        .bank-column th {
            background: #3b82f6;
            color: white;
        }
        
        .lender-column {
            background: rgba(16, 185, 129, 0.05);
            border-left: 2px solid #10b981;
            border-right: 2px solid #10b981;
            width: 35%;
        }
        
        .lender-column th {
            background: #10b981;
            color: white;
            
            
            
/*Camparison*/
.comparison-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

.section-title {
    margin: 0 0 15px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #ffb23b;
    text-align: center;
    text-shadow: 0 6px 20px rgba(255, 146, 0, 0.08);
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #8a8a8a;
    margin-bottom: 40px;
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(15px, 2vw, 30px);
    width: 100%;
    margin: 0 auto;
}

.column {
    background: linear-gradient(180deg, #2a2a2a, #151515);
    padding: clamp(20px, 3vw, 40px);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease;
}

.column:hover {
    transform: translateY(-5px);
}

.column-header {
    font-weight: 700;
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: clamp(20px, 3vw, 30px);
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.features-column .column-header {
    color: #fff;
}

.ourbrand-column .column-header {
    color: #4cd964;
}

.others-column .column-header {
    color: #ff6b6b;
}

.feature-list {
    list-style: none;
    width: 100%;
}

.feature-item {
    padding: clamp(15px, 2vw, 20px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(50px, 6vw, 70px);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-text {
    font-weight: 500;
    color: #fff;
    font-size: clamp(16px, 1.5vw, 18px);
    text-align: center;
    line-height: 1.4;
}

.status {
    font-weight: 700;
    font-size: clamp(16px, 1.5vw, 18px);
    padding: clamp(8px, 1vw, 12px) clamp(15px, 2vw, 25px);
    border-radius: 25px;
    display: inline-block;
    min-width: clamp(60px, 8vw, 80px);
    transition: all 0.3s ease;
}

.yes-status {
    background: #4cd964;
    color: white;
}

.no-status {
    background: #ff6b6b;
    color: white;
}

.status:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 20px;
    }
    
    .comparison-grid {
        gap: 12px;
    }
    
    .column {
        padding: 15px;
    }
    
    .feature-item {
        padding: 12px 0;
        min-height: 45px;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 15px;
    }
    
    .comparison-grid {
        gap: 8px;
    }
    
    .column {
        padding: 12px 8px;
        border-radius: 15px;
    }
    
    .column-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .feature-item {
        padding: 10px 0;
        min-height: 40px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .status {
        font-size: 14px;
        padding: 6px 15px;
        min-width: 50px;
    }
}

@media (min-width: 1024px) {
    .comparison-grid {
        max-width: 1000px;
    }
    
    .column {
        padding: 35px 30px;
    }
    
    .feature-item {
        min-height: 65px;
    }
}