/* Strategic Color System - CodeHack Revisited */
:root {
  /* Primary Colors */
  --primary-purple: #4B2E83;
  --primary-lilac: #917FB3;
  --primary-magenta: #e741b5;
  --accent-orange: #ff7f50;
  --accent-blue: #00b9f1;
  /* Background System */
  --bg-dark: #1b1c26;
  --bg-darkest: #131327;
  --bg-card: rgba(27, 28, 38, 0.94);
  --bg-overlay: rgba(27, 28, 38, 0.98);
  /* Text System */
  --text-primary: #fff;
  --text-secondary: #bfc1d6;
  --text-muted: #7e7f99;
}

body {
  background: var(--bg-darkest);
  color: var(--text-primary, #ffffff);
}

/* Update existing components */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-magenta), var(--accent-orange));
  color: var(--text-primary, #ffffff);
  border: 1px solid var(--primary-magenta);
  box-shadow: 0 8px 20px rgba(231, 65, 181, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  box-shadow: 0 12px 25px rgba(0,185,241,0.16);
}

/* Product Showcase Section - Improved to match site style */
.product-showcase-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-purple) 100%);
  position: relative;
}

.product-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="rgba(231, 65, 181, 0.1)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.section-subheader {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4rem 0 2rem;
  text-align: center;
}

.section-subheader i {
  font-size: 2rem;
  color: var(--primary-magenta);
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(231, 65, 181, 0.5);
}

.section-subheader h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.section-subheader h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-magenta));
  border-radius: 3px;
}

h1, h2, h3, .gradient-text {
  color: var(--primary-magenta);
  background: linear-gradient(90deg, var(--primary-magenta), var(--primary-lilac));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card, .benefit-card, .bonus-card, .pricing-card, .testimonial-card, .faq-item, .product-showcase, .stat-card {
  background: linear-gradient(135deg, rgba(27,28,38,0.98) 60%, rgba(75,46,131,0.94) 100%) !important;
  border: 1px solid var(--primary-magenta) !important;
  color: var(--text-primary) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45) !important;
}

/* AI Endorsement Styles */
.ai-endorsement {
  margin: 4rem 0;
  padding: 2rem;
  background: rgba(27, 28, 38, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(231, 65, 181, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ai-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.ai-rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.rating-circle {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
}

.circular-chart {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

.circle-bg {
  fill: none;
  stroke: rgba(231, 65, 181, 0.1);
  stroke-width: 3;
}

.circle {
  fill: none;
  stroke: var(--primary-magenta);
  stroke-width: 3;
  stroke-linecap: round;
  animation: progress 1.5s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0, 100;
  }
}

.percentage {
  fill: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7em;
  font-weight: bold;
  text-anchor: middle;
}

.rating-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  text-align: center;
  margin: 0;
}

/* AI Carousel */
.ai-carousel-container {
  position: relative;
  margin: 2rem 0;
  overflow: hidden;
}

.ai-carousel {
  position: relative;
  height: 250px;
  margin-bottom: 1.5rem;
}

.ai-testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(27, 28, 38, 0.5);
  border: 1px solid rgba(231, 65, 181, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.ai-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-primary);
  font-weight: 600;
}

.ai-logo i {
  color: var(--primary-magenta);
  font-size: 1.3rem;
}

.ai-rating {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.ai-score {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-magenta);
  font-family: 'Space Grotesk', sans-serif;
}

.ai-score-max {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.ai-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
  position: relative;
  padding-left: 1.2rem;
  border-left: 3px solid var(--primary-magenta);
}

.ai-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.ai-prev, .ai-next {
  background: transparent;
  border: 1px solid rgba(231, 65, 181, 0.3);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ai-prev:hover, .ai-next:hover {
  background: rgba(231, 65, 181, 0.1);
  border-color: var(--primary-magenta);
}

.ai-dots {
  display: flex;
  gap: 0.5rem;
}

.ai-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(231, 65, 181, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ai-dot.active {
  background: var(--primary-magenta);
  transform: scale(1.2);
}

.ai-endorsement-cta {
  text-align: center;
  margin-top: 2rem;
}

.ai-cta-text {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
}

.ai-endorsement-card {
  background: linear-gradient(135deg, rgba(27,28,38,0.96) 60%, rgba(75,46,131,0.92) 100%);
  border: 2px solid var(--primary-magenta);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.48);
  padding: 1.25rem 1.6rem;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.ai-endorsement-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 40px rgba(231,65,181,0.14);
  border-color: var(--accent-orange);
}

.ai-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-magenta);
  margin-bottom: 0.2rem;
}

.ai-score {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--accent-orange);
  margin-bottom: 0.1rem;
}

.ai-endorsement-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  margin-bottom: 0.1rem;
}

.ai-endorsement-quote {
  color: var(--accent-blue);
  font-style: italic;
  font-weight: 500;
  display: block;
  margin-top: 0.4rem;
}

@media (max-width: 600px) {
  .ai-endorsement-card {
    min-width: 140px;
    max-width: 100%;
    padding: 1rem 0.5rem;
  }
}

/* Premium Pricing Box */
.premium-pricing-box {
  background: linear-gradient(135deg, rgba(27,28,38,0.97) 60%, rgba(75,46,131,0.93) 100%);
  border: 2px solid var(--accent-orange);
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(231,65,181,0.14), 0 2px 18px rgba(0,0,0,0.32);
  padding: 2.5rem 2rem 2rem 2rem;
  margin: 0 auto;
  max-width: 400px;
  position: relative;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.premium-seal {
  background: linear-gradient(135deg, var(--accent-orange) 60%, var(--primary-magenta) 100%);
  color: #fff;
  border-radius: 50%;
  width: 78px;
  height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(255,127,80,0.18);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #fff;
  z-index: 2;
}

.premium-seal i {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.premium-label {
  background: linear-gradient(90deg, var(--primary-magenta), var(--accent-orange));
  color: #fff;
  border-radius: 12px;
  padding: 0.3rem 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  display: inline-block;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(231,65,181,0.13);
}

.premium-price {
  color: var(--accent-orange);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-left: 0.6rem;
}

.premium-cta {
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0,185,241,0.14);
  padding: 1.1rem 2.5rem;
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
  border: none;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.premium-cta:hover {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,185,241,0.20);
}

.premium-scarcity {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 1.03rem;
  margin-bottom: 0.4rem;
}

.premium-payments {
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}

.premium-icons i {
  font-size: 2.1rem;
  margin: 0 0.4rem;
  color: var(--primary-lilac);
  filter: drop-shadow(0 2px 8px rgba(145,127,179,0.12));
  transition: color 0.2s;
}

.premium-icons i:hover {
  color: var(--accent-orange);
}

.premium-badges {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.premium-badges .trust-badge {
  background: rgba(75,46,131,0.13);
  color: var(--primary-magenta);
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(231,65,181,0.08);
}

@media (max-width: 600px) {
  .premium-pricing-box {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
  }
  .premium-seal {
    width: 56px;
    height: 56px;
    top: -28px;
    font-size: 1.1rem;
  }
  .premium-price {
    font-size: 1.5rem;
  }
  .premium-cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}

/* Benefits Section */
.benefits-section {
  margin-top: 4rem;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefits-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.benefits-row.centered {
  justify-content: center;
}

.cta-section, .cta-content {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--bg-darkest) 100%) !important;
  color: var(--text-primary) !important;
}

.site-footer {
  background: linear-gradient(135deg, var(--bg-darkest) 60%, var(--primary-purple) 100%) !important;
  color: var(--text-secondary) !important;
}

.site-footer h4, .footer-bottom {
  color: var(--accent-orange) !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .product-showcase {
    flex-direction: column;
    padding: 2rem;
  }
  
  .product-image-container, 
  .product-details {
    flex: 0 0 100%;
  }
  
  .product-image-container {
    margin-bottom: 2rem;
  }
  
  .benefits-row {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ai-carousel {
    height: 300px;
  }
  
  .product-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  
  .product-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .ai-carousel {
    height: 350px;
  }
  
  .section-subheader h3 {
    font-size: 1.5rem;
  }
}