@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
  --bg-color: #050614;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-card: rgba(255, 255, 255, 0.1);
  --glow-cyan: #00f3ff;
  --glow-purple: #bd00ff;
  --text-main: #ffffff;
  --text-muted: #a0a5b8;
  --cta-gradient: linear-gradient(90deg, #bd00ff 0%, #00f3ff 100%);
  --cta-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(189, 0, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(0, 243, 255, 0.15) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
}

.text-gradient {
  background: var(--cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Buttons */
.cta-button {
  display: inline-block;
  background: var(--cta-gradient);
  color: #fff;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: var(--cta-shadow);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #00f3ff 0%, #bd00ff 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
  border-radius: 50px;
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(189, 0, 255, 0.7);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(0, 243, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(189,0,255,0.4));
  animation: float 6s ease-in-out infinite;
}

.glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,243,255,0.2) 0%, transparent 70%);
  z-index: 1;
  border-radius: 50%;
  filter: blur(40px);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Features / Benefits */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-card);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 243, 255, 0.3);
}

.glass-card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  background: var(--cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.glass-card p {
  color: var(--text-muted);
}

/* Bonus Section */
.bonus-section {
  background: linear-gradient(180deg, transparent, rgba(189,0,255,0.05), transparent);
}

.bonus-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(189,0,255,0.3);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  box-shadow: inset 0 0 50px rgba(189,0,255,0.1);
}

.bonus-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.bonus-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.bonus-val {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.2rem;
}
.strike {
  text-decoration: line-through;
  opacity: 0.6;
}

/* Pricing Section */
.pricing {
  text-align: center;
  position: relative;
}

.price-box {
  display: inline-block;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--glow-cyan);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 0 40px rgba(0,243,255,0.2);
  backdrop-filter: blur(10px);
}

.price-box .old-price {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 10px;
}

.price-box .new-price {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(0,243,255,0.5);
}

.price-box .new-price span {
  font-size: 2rem;
  vertical-align: super;
}

.price-box .guarantee {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--text-muted);
}
.price-box .guarantee i {
  font-size: 2rem;
  color: #00ea90;
}

/* FAQ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255,255,255,0.05);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px 20px;
  max-height: 500px;
}

.faq-icon {
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-grid, .bonus-box {
    grid-template-columns: 1fr;
    flex-direction: column-reverse; /* Usually stack text on top or image on top */
    text-align: center;
  }
  .hero-grid {
    padding-top: 40px;
  }
  .hero-image {
    order: -1; 
    margin-bottom: 30px;
  }
  .bonus-box .bonus-content {
    order: -1;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .price-box {
    padding: 30px 20px;
  }
  .price-box .new-price {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
