@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #07070b;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-main: #ffffff;
  --text-muted: #a0a0b0;
  --primary-glow: #6366f1;
  --secondary-glow: #a855f7;
  --accent-color: #3b82f6;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --gradient-text: linear-gradient(to right, #fff, #a0a0b0);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Background glows */
.glow-bg {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1; overflow: hidden; pointer-events: none;
}
.glow-orb {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4;
  animation: float 20s infinite ease-in-out alternate;
}
.glow-orb-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(99, 102, 241, 0.3); }
.glow-orb-2 { bottom: -10%; right: -10%; width: 60vw; height: 60vw; background: rgba(168, 85, 247, 0.2); }
.glow-orb-3 { top: 40%; left: 60%; width: 40vw; height: 40vw; background: rgba(59, 130, 246, 0.2); animation-delay: -5s; }

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 10%) scale(1.1); }
}

/* Glassmorphism */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; border-radius: 50px; font-weight: 600; font-family: 'Outfit';
  transition: all 0.3s ease; cursor: pointer; border: none; font-size: 1rem;
}
.btn-primary {
  background: var(--gradient-primary); color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4); position: relative; z-index: 1;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
  border-radius: 50px; z-index: -1; transition: opacity 0.3s ease; opacity: 0;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { box-shadow: 0 8px 25px rgba(168, 85, 247, 0.6); transform: translateY(-2px); color: white; }

.btn-secondary {
  background: rgba(255, 255, 255, 0.05); color: white; border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255,255,255,0.2); color: white; }

/* Text Gradients */
.text-gradient {
  background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;
}
.text-primary { color: #a855f7; }
.text-center { text-align: center; }

/* Sticky Header */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(7, 7, 11, 0.7); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-glass);
  padding: 1rem 0; transition: all 0.3s ease;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Outfit'; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; gap: 0.5rem; }
.logo span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); transition: color 0.3s; }
.nav-links a:hover { color: white; }

/* Sections */
section { padding: 6rem 0; position: relative; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 8rem; text-align: center; }
.hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.badge { display: inline-block; padding: 0.5rem 1rem; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.3); border-radius: 50px; color: #a855f7; font-weight: 600; font-size: 0.85rem; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 600px; margin-inline: auto; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.price-tag { margin-bottom: 2rem; }
.price-tag .strike { text-decoration: line-through; color: var(--text-muted); font-size: 1.2rem; margin-right: 0.5rem; }
.price-tag .current { font-size: 2.5rem; font-weight: 800; font-family: 'Outfit'; color: white; }
.price-tag .discount { background: #10b981; color: white; padding: 0.2rem 0.6rem; border-radius: 8px; font-size: 0.9rem; font-weight: bold; margin-left: 0.5rem; vertical-align: top; }
.trust-indicators { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 2rem; color: var(--text-muted); font-size: 0.9rem; flex-wrap: wrap;}
.stars { color: #fbbf24; letter-spacing: 2px; }

/* Visual Mockup */
.dashboard-mockup { margin-top: 4rem; position: relative; }
.dashboard-img { width: 100%; border-radius: 12px; border: 1px solid var(--border-glass); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.floating-icon { position: absolute; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid var(--border-glass); border-radius: 16px; padding: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.3); animation: float 6s infinite ease-in-out alternate; font-size: 2rem; color: #a855f7;}
.icon-1 { top: -20px; left: -20px; animation-delay: 0s; }
.icon-2 { bottom: 40px; right: -30px; animation-delay: 1.5s; }
.icon-3 { top: 50%; left: -40px; animation-delay: 3s; }

/* Features Grid */
.section-header { text-align: center; margin-bottom: 4rem; max-width: 700px; margin-inline: auto; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card { padding: 2rem; text-align: center;}
.feature-icon { width: 60px; height: 60px; background: rgba(99, 102, 241, 0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #a855f7; font-size: 1.8rem; margin: 0 auto 1.5rem auto; border: 1px solid rgba(99, 102, 241, 0.2);}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* How it works */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background: var(--border-glass); transform: translateX(-50%); }
.timeline-item { position: relative; margin-bottom: 4rem; display: flex; justify-content: space-between; align-items: center; width: 100%;}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-content { width: calc(50% - 40px); background: var(--bg-card); padding: 2rem; border-radius: 20px; border: 1px solid var(--border-glass); }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; }
.timeline-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: var(--bg-dark); border: 2px solid #a855f7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: white; font-family: 'Outfit'; z-index: 2; box-shadow: 0 0 20px rgba(168, 85, 247, 0.4); font-size: 1.2rem;}

/* Comparison */
.comparison-container { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
.comp-col { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 24px; padding: 2.5rem; }
.comp-col.highlight { border-color: rgba(168, 85, 247, 0.5); position: relative; background: rgba(99, 102, 241, 0.05); box-shadow: 0 20px 40px rgba(0,0,0,0.3); transform: scale(1.05); z-index: 2; }
.comp-col.highlight::before { content: 'Best Choice'; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gradient-primary); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: bold; color: white;}
.comp-list li { margin-bottom: 1.2rem; display: flex; align-items: center; gap: 1rem; font-size: 1.05rem;}
.comp-col h3 { font-size: 1.5rem; margin-bottom: 2rem; text-align: center; }
.comp-col.highlight .check { color: #10b981; font-size: 1.2rem;}
.comp-col .cross { color: #ef4444; font-size: 1.2rem;}

/* Bonuses */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;}
.bonus-card { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem;}
.bonus-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(255, 215, 0, 0.1); color: #ffd700; display: flex; align-items: center; justify-content: center; font-size: 1.5rem;}

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { padding: 2.5rem; }
.testi-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.testi-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid #a855f7; }
.testi-info h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.testi-info .stars { font-size: 0.9rem; }
.testi-body { font-style: italic; color: var(--text-muted); line-height: 1.7; }

/* Pricing Section */
.pricing-section { text-align: center; }
.pricing-card { max-width: 500px; margin: 0 auto; background: var(--bg-card); border: 1px solid rgba(168, 85, 247, 0.3); border-radius: 30px; padding: 3rem; position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);}
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: var(--gradient-primary); }
.price-huge { font-size: 4rem; font-family: 'Outfit'; font-weight: 900; line-height: 1; margin: 1.5rem 0; color: white;}
.price-huge span { font-size: 1.5rem; text-decoration: line-through; color: var(--text-muted); font-weight: 500; margin-right: 0.5rem;}
.pricing-features { text-align: left; margin: 2.5rem 0; border-top: 1px solid var(--border-glass); padding-top: 2rem; }
.pricing-features li { margin-bottom: 1.2rem; display: flex; align-items: center; gap: 1rem; font-size: 1.05rem;}
.pricing-features li i { color: #10b981; font-size: 1.2rem;}

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 16px; margin-bottom: 1rem; overflow: hidden; transition: all 0.3s;}
.faq-item:hover { border-color: rgba(255, 255, 255, 0.2); }
.faq-question { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-family: 'Outfit'; font-size: 1.1rem; }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.3s ease; color: var(--text-muted); }
.faq-item.active .faq-answer { padding-bottom: 1.5rem; max-height: 200px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform 0.3s ease; color: #a855f7; font-size: 1.2rem;}

/* Final CTA */
.final-cta { text-align: center; padding: 8rem 0; position: relative; overflow: hidden;}
.final-cta::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80vw; height: 80vw; background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%); z-index: -1; pointer-events: none;}
.final-cta h2 { font-size: 3.5rem; margin-bottom: 1rem; }
.final-cta p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; }

/* Products Catalog */
.catalog-header { text-align: center; padding: 8rem 0 4rem; }
.filters { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn { background: var(--bg-card); border: 1px solid var(--border-glass); color: var(--text-main); padding: 0.6rem 1.5rem; border-radius: 50px; cursor: pointer; transition: all 0.3s; font-family: 'Outfit'; font-size: 0.95rem;}
.filter-btn.active, .filter-btn:hover { background: rgba(168, 85, 247, 0.2); border-color: #a855f7; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.product-card { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 20px; overflow: hidden; transition: all 0.3s; position: relative; }
.product-card:hover { transform: translateY(-10px); border-color: rgba(168, 85, 247, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.product-image { height: 220px; background: #1a1a24; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;}
.product-image i { font-size: 4rem; color: rgba(255,255,255,0.1); transition: all 0.3s;}
.product-card:hover .product-image i { color: #a855f7; transform: scale(1.1);}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: all 0.3s; opacity: 0.8;}
.product-card:hover .product-image img { transform: scale(1.05); opacity: 1;}
.product-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gradient-primary); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.75rem; font-weight: bold; color: white;}
.product-info { padding: 1.5rem; }
.product-title { font-size: 1.3rem; margin-bottom: 0.5rem; }
.product-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.5;}
.product-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.product-price { font-size: 1.6rem; font-weight: bold; font-family: 'Outfit'; color: #10b981; }
.product-price span { font-size: 0.9rem; text-decoration: line-through; color: var(--text-muted); margin-left: 0.5rem;}
.product-actions { display: flex; gap: 0.8rem; }
.product-actions .btn { flex: 1; padding: 0.8rem; font-size: 0.95rem; }

/* Legal Pages */
.legal-content { max-width: 800px; margin: 0 auto; padding: 8rem 0 4rem; }
.legal-content h1 { font-size: 3rem; margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.8rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem; }
.legal-content ul { margin-bottom: 1.5rem; margin-left: 1.5rem; color: var(--text-muted); }
.legal-content li { margin-bottom: 0.5rem; list-style-type: disc; }

/* Contact Page */
.contact-container { max-width: 600px; margin: 0 auto; padding: 8rem 0 4rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-weight: 500; font-family: 'Outfit'; }
.form-control { background: rgba(0,0,0,0.2); border: 1px solid var(--border-glass); border-radius: 12px; padding: 1rem; color: white; font-family: 'Inter'; font-size: 1rem; transition: all 0.3s; }
.form-control:focus { outline: none; border-color: #a855f7; box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2); }
textarea.form-control { resize: vertical; min-height: 150px; }

/* Footer */
footer { border-top: 1px solid var(--border-glass); padding: 4rem 0 2rem; margin-top: 4rem; background: rgba(0,0,0,0.2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 1.5rem; font-family: 'Outfit';}
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--text-muted); transition: color 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid var(--border-glass); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.85rem; }
.disclaimer { font-size: 0.8rem; opacity: 0.6; margin-top: 1.5rem; text-align: center; max-width: 800px; margin-inline: auto; line-height: 1.6;}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3.5rem; }
  .comparison-container { grid-template-columns: 1fr; max-width: 600px;}
  .comp-col.highlight { transform: scale(1); margin-top: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 30px; }
  .timeline-dot { left: 30px; transform: translate(-50%, -50%); }
  .timeline-content { width: calc(100% - 80px); margin-left: 80px !important; }
}
@media (max-width: 768px) {
  .nav-container { flex-direction: column; gap: 1rem; }
  .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .hero { padding-top: 8rem; min-height: auto; padding-bottom: 4rem; }
  .hero h1 { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem;}
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .final-cta h2 { font-size: 2.5rem; }
  .section-header h2 { font-size: 2rem; }
}

/* Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
