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

:root {
  --bg-dark: #070310;
  --bg-mid: #0b0518;
  --primary: #9b51e0;
  --primary-dark: #6a1b9a;
  --secondary: #ff7e36;
  --secondary-glow: rgba(255, 126, 54, 0.4);
  --accent: #f2c94c;
  --text-main: #f8f6fb;
  --text-muted: #aca5b8;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 800; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.bg-mid { background-color: var(--bg-mid); }
.delay-1 { transition-delay: 0.2s; animation-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; animation-delay: 0.4s; }
.text-gradient { background: linear-gradient(135deg, var(--secondary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-purple { background: linear-gradient(135deg, #d383ff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.glass-panel { background: var(--glass-bg); backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 20px; }

.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(155, 81, 224, 0.15); border: 1px solid rgba(155, 81, 224, 0.3); padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; }
.badge .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); animation: pulse-dot 2s infinite; }

/* Animations */
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes shine { 0% { left: -100%; } 20%, 100% { left: 200%; } }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn-primary { background: linear-gradient(135deg, var(--secondary), #ff512f); color: #fff; padding: 16px 32px; border-radius: 50px; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; justify-content: center; border: none; cursor: pointer; box-shadow: 0 10px 25px var(--secondary-glow); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px var(--secondary-glow); }
.btn-primary::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent); transform: skewX(-20deg); animation: shine 3s infinite; }
.btn-block { width: 100%; }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.2); box-shadow: none; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); box-shadow: none; }
.btn-outline::after { display: none; }

/* Layouts */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-tag { font-size: 0.75rem; font-weight: 800; color: var(--secondary); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px; display: block; }
.section-title { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 20px; }
.section-desc { font-size: 1.1rem; color: var(--text-muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Blocks */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 15px 0; background: rgba(7, 3, 16, 0.6); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 40px; }
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 0 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(circle at 80% 30%, rgba(155, 81, 224, 0.15) 0%, transparent 60%), radial-gradient(circle at 20% 70%, rgba(255, 126, 54, 0.1) 0%, transparent 50%); }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-content h1 { font-size: clamp(2rem, 8vw, 4rem); margin: 20px 0; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; max-width: 90%; }
.hero-features { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }
.feature-item { display: flex; align-items: center; gap: 12px; font-size: 1rem; font-weight: 500; }
.feature-icon { width: 24px; height: 24px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }
.timer-box { display: inline-flex; align-items: center; gap: 15px; background: rgba(255, 126, 54, 0.1); border: 1px solid rgba(255, 126, 54, 0.2); padding: 15px 20px; border-radius: 12px; margin-top: 30px; }
.time-block { background: var(--bg-dark); padding: 5px 12px; border-radius: 8px; text-align: center; border: 1px solid var(--glass-border); }
.time-val { display: block; font-size: 1.3rem; font-weight: 800; color: var(--accent); line-height: 1; }
.time-lbl { font-size: 0.6rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual img { max-width: 500px; width: 100%; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 30px 40px rgba(106, 27, 154, 0.4)); position: relative; z-index: 2; }
.glow-circle { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(155, 81, 224, 0.3) 0%, transparent 70%); border-radius: 50%; z-index: 1; }
.floating-badge { position: absolute; background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); padding: 8px 16px; border-radius: 10px; font-size: 0.8rem; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 8px; z-index: 3; }
.badge-1 { top: 10%; right: 0; animation: float 5s ease-in-out infinite 1s; }
.badge-2 { bottom: 20%; left: -20px; animation: float 7s ease-in-out infinite 0.5s; }

.trust-bar { background: var(--bg-mid); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 25px 0; }
.trust-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 1.5rem; }
.trust-item h4 { font-size: 0.9rem; margin-bottom: 2px; }
.trust-item p { font-size: 0.75rem; color: var(--text-muted); }

.benefit-card { padding: 35px; text-align: center; transition: transform 0.4s, box-shadow 0.4s; position: relative; overflow: hidden; border: 1px solid var(--glass-border); border-radius: 20px; background: rgba(255,255,255,0.02); }
.benefit-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.benefit-icon { font-size: 3rem; margin-bottom: 20px; display: block; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
.benefit-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; }

.ingredient-card { display: flex; gap: 15px; padding: 24px; transition: all 0.3s; border-radius: 16px; border: 1px solid rgba(155, 81, 224, 0.2); background: rgba(0,0,0,0.2); }
.ingredient-card:hover { border-color: var(--secondary); transform: translateY(-5px); background: rgba(255, 255, 255, 0.05); }
.ing-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(155, 81, 224, 0.2); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.ing-info h4 { font-size: 1rem; margin-bottom: 4px; }
.ing-info .dose { font-size: 0.75rem; color: var(--secondary); font-weight: 600; margin-bottom: 8px; display: inline-block; }
.ing-info p { font-size: 0.85rem; color: var(--text-muted); }

.testi-card { padding: 30px; position: relative; border-radius: 20px; overflow: hidden; }
.quote-mark { position: absolute; top: -10px; left: 20px; font-size: 6rem; font-family: serif; color: rgba(255,255,255,0.05); line-height: 1; }
.testi-user { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; position: relative; z-index: 1; }
.avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.stars { color: var(--accent); margin-bottom: 15px; font-size: 0.9rem; }
.testi-content { font-size: 0.95rem; font-style: italic; color: var(--text-muted); margin-bottom: 20px; }
.testi-result { background: rgba(255, 126, 54, 0.1); color: var(--secondary); padding: 8px 12px; border-radius: 8px; font-size: 0.8rem; font-weight: 700; display: inline-block; }

.pricing-card { padding: 40px 30px; text-align: center; position: relative; transition: transform 0.4s; border-radius: 30px; border: 1px solid var(--glass-border); background: var(--bg-card); overflow: hidden; }
.pricing-card:hover { transform: translateY(-10px); }
.pricing-card.popular { border-color: var(--primary); background: linear-gradient(180deg, rgba(155, 81, 224, 0.15) 0%, var(--bg-card) 100%); transform: scale(1.05); box-shadow: 0 20px 50px rgba(106, 27, 154, 0.3); }
.pricing-card.popular:hover { transform: scale(1.08) translateY(-10px); }
.popular-badge { position: absolute; top: 18px; right: -35px; background: linear-gradient(to right, var(--secondary), #ff512f); padding: 5px 40px; font-size: 0.65rem; font-weight: 800; transform: rotate(45deg); text-transform: uppercase; z-index: 2; }
@media (max-width: 600px) { 
  .popular-badge { 
    position: relative; 
    top: -15px; 
    right: auto; 
    transform: none; 
    display: inline-block; 
    margin: 0 auto 15px; 
    padding: 6px 20px; 
    border-radius: 50px; 
    font-size: 0.75rem;
    box-shadow: 0 4px 15px var(--secondary-glow);
  } 
}
.price-bottle { height: 140px; margin: 20px auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
.price-strike { text-decoration: line-through; color: var(--text-muted); font-size: 0.9rem; }
.price-big { font-size: 4rem; font-weight: 900; line-height: 1; margin: 10px 0; color: #fff; }
.price-big span { font-size: 1.5rem; font-weight: 400; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-day { color: var(--secondary); font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; }
.price-features { list-style: none; text-align: left; margin: 30px 0; }
.price-features li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.price-features li span { color: #4ade80; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border: 1px solid var(--glass-border); border-radius: 16px; background: rgba(255,255,255,0.02); overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 20px 25px; background: transparent; border: none; color: #fff; font-size: 1.05rem; font-weight: 600; font-family: var(--font-body); display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: color 0.3s; }
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 30px; height: 30px; background: rgba(155, 81, 224, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; padding: 0 25px; }
.faq-answer p { padding-bottom: 20px; color: var(--text-muted); font-size: 0.9rem; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-icon { transform: rotate(180deg); background: var(--primary); }

footer { padding: 60px 0 30px; background: #04020a; border-top: 1px solid var(--glass-border); font-size: 0.85rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-logo { height: 40px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.8;}
footer h4 { margin-bottom: 20px; font-size: 1.1rem; }
.footer-links a { display: block; color: var(--text-muted); margin-bottom: 10px; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.legal { border-top: 1px solid var(--glass-border); padding-top: 20px; color: rgba(255,255,255,0.4); font-size: 0.75rem; }

@media (max-width: 900px) { 
  .hero .container { grid-template-columns: 1fr; text-align: center; } 
  .floating-badge { display: none; } 
  .grid-3 { grid-template-columns: repeat(2, 1fr); } 
  .footer-grid { grid-template-columns: 1fr 1fr; } 
  .hero-features { align-items: center; width: 100%; max-width: 400px; margin-left: auto; margin-right: auto; } 
  .timer-box { justify-content: center; width: 100%; max-width: 400px; } 
  .hero { padding-top: 100px; } 
  .hero-subtitle { margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) { 
  .header .container { padding: 0 15px; }
  .logo { height: 32px; }
  .btn-primary[style*="padding: 10px 20px"] { padding: 8px 15px !important; font-size: 0.8rem !important; }
  .timer-box { padding: 10px 15px; gap: 10px; margin-top: 20px; }
  .time-block { padding: 4px 8px; }
  .time-val { font-size: 1.1rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; } 
  .footer-grid { grid-template-columns: 1fr; } 
  .pricing-card { margin-bottom: 20px; }
  .pricing-card.popular { transform: none; margin-top: 10px; } 
  .pricing-card.popular:hover { transform: translateY(-5px); }
  .trust-bar .container { justify-content: center; gap: 30px; }
  .trust-item { flex-direction: column; text-align: center; min-width: 140px; }
  .section-header { margin-bottom: 40px; }
  .faq-answer p { font-size: 0.85rem; }
}
@media (max-width: 400px) {
  .hero-content h1 { font-size: 2.2rem; }
  .timer-box { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .timer-box span { font-size: 0.8rem !important; width: 100%; margin-bottom: 5px; margin-right: 0 !important; }
  .time-block { width: 50px; padding: 3px 5px; }
  .time-val { font-size: 1rem; }
}
