/* 
   DATALAPROX 2.0 - Dark Science Theme
*/

:root {
  --color-bg: #050505;
  --color-bg-secondary: #0a0a0a;
  --color-primary: #ff2a2a;
  /* Neon Red */
  --color-primary-glow: rgba(255, 42, 42, 0.5);
  --color-primary-dark: #b30000;
  --color-text: #ffffff;
  --color-text-muted: #888888;

  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-red {
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary-glow);
}

.text-stroke {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  color: transparent;
}

.old-price {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.discount-badge {
  color: var(--color-neon-red);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

.text-center {
  text-align: center;
}

h2.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

@media(max-width: 768px) {
  h2.section-title {
    font-size: 2rem;
  }
}

/* --- UTILITIES --- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
}

.py-section {
  padding: 80px 0;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 0 20px var(--color-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--color-primary-glow);
  background: #ff4d4d;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  /* Subtle fill */
  border: 1px solid var(--color-primary);
  /* Red border */
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Lift it off the card */
}

.btn-outline:hover {
  background: var(--color-primary);
  /* Fill with red on hover */
  border-color: var(--color-primary);
  color: white;
  box-shadow: 0 0 20px var(--color-primary-glow);
  /* Red glow */
}

.pulse {
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 42, 42, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 42, 42, 0);
  }
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: var(--container-width);
  z-index: 1000;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -1px;
  color: white;
}

.btn-nav {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--color-primary);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 42, 42, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(80px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.badge-hero {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-primary);
  border-radius: 50px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-badge {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.circle-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-bottle {
  width: 60%;
  z-index: 10;
  filter: drop-shadow(0 0 20px rgba(255, 42, 42, 0.2));
  /* Subtle red glow */
}

.floating {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.08);
    /* Reduced movement, added zoom */
  }
}

/* --- STATS BAR --- */
.stats-bar {
  margin: -40px auto 0;
  max-width: 900px;
  position: relative;
  z-index: 20;
  padding: 30px 50px;
}

.stats-grid {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.stat-item h3 {
  font-size: 2rem;
  color: white;
}

.stat-item p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* --- FEATURES --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  background: rgba(255, 42, 42, 0.05);
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --- PRICING --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  /* Center cards vertically */
}

.pricing-card {
  text-align: center;
  position: relative;
  transition: var(--transition);
  padding: 30px 20px;
}

.pricing-card h3 {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  background: rgba(255, 42, 42, 0.05);
  transform: scale(1.05);
  /* Make it bigger */
  z-index: 10;
  padding: 40px 24px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Make images consistent size */
.kit-img {
  height: 180px;
  width: auto;
  margin: 20px auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.5));
}

.price-header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 8px;
}

.currency {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 5px;
}

.value {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.kit-desc {
  color: var(--color-text-muted);
}

.kit-benefits {
  text-align: left;
  margin: 20px 0 30px;
  font-size: 0.9rem;
}

.kit-benefits li {
  margin-bottom: 8px;
  color: #ccc;
}

.kit-benefits i {
  color: var(--color-primary);
  margin-right: 8px;
}

.pricing-card.featured .btn-primary {
  width: 100%;
}

.pricing-card .btn-outline {
  width: 100%;
  font-size: 0.9rem;
}

/* Badges */
.best-seller-tag,
.mega-deal-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.mega-deal-tag {
  background: #fff;
  color: #000;
}

/* --- GUARANTEE --- */
.guarantee-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  /* Specific padding for the box content */
}

/* Reduce outer section padding */
section.guarantee {
  padding: 20px 0;
}

.guarantee-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 16px;
}

/* --- FOOTER --- */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  margin-top: 80px;
  text-align: center;
  color: var(--color-text-muted);
}

.footer-links a {
  margin: 0 10px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .stats-bar {
    padding: 30px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* --- CAROUSEL (SOCIAL PROOF) --- */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  width: 100%;
  overflow: hidden;
  /* Prevent overflow causing layout break */
}

.carousel-container {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  /* Hide scrollbar */
  border-radius: 16px;
  /* Optional: smooth corners */
}

.carousel-track {
  display: flex;
  flex-direction: row;
  /* Force row */
  flex-wrap: nowrap;
  /* Force no wrap */
  gap: 24px;
  /* width is automatic based on children */
}

.carousel-slide {
  flex: 0 0 300px;
  /* Fixed width for stability */
  width: 300px;
  max-width: 80vw;
  /* Prevent giant items on mobile */
}

.testimonial-card {
  padding: 0;
  height: auto;
  display: block;
}

.testimonial-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: block;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 20;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary-glow);
}

@media (max-width: 768px) {
  .carousel-wrapper {
    padding: 0;
  }

  .carousel-slide {
    flex: 0 0 85vw;
    /* Almost full width mobile */
    width: 85vw;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    /* Stronger background for visibility */
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}
/* --- VSL LAYOUT --- */
.hero-grid.vsl-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 20px;
}

.vsl-container {
  width: 100%;
  max-width: 800px; /* Typical VSL width */
  margin: 40px auto;
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: black;
  border: 1px solid var(--color-primary);
  box-shadow: 0 0 30px rgba(255, 42, 42, 0.2);
  color: white;
  border-radius: 12px;
}

.play-icon {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.mt-4 { margin-top: 2rem; }
.mt-2 { margin-top: 1rem; }

/* VSL Center Fix */
.hero-grid.vsl-layout .hero-desc {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 600px; /* Slightly wider for better reading */
}

/* Spacing for Stats Bar after VSL */
.stats-bar {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
