/* ============================================================
   AlphaCur Landing Page — styles.css
   Design: Premium Dark Luxury (#0d0d1a, #1a1a2e, gold #D4AF37)
   Fonts: Montserrat (headings) + Open Sans (body)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --bg-deep: #0a0a14;
  --bg-dark: #0d0d1a;
  --bg-card: #131325;
  --bg-card2: #1a1a2e;
  --bg-alt: #111120;
  --gold: #D4AF37;
  --gold-light: #f0cc50;
  --gold-dark: #a8862a;
  --white: #ffffff;
  --text-primary: #e8e8f0;
  --text-muted: #9494b0;
  --text-body: #c0c0d8;
  --accent-blue: #4169e1;
  --accent-teal: #00c9a7;
  --accent-red: #ff4757;
  --border: rgba(212,175,55,0.2);
  --shadow-gold: 0 4px 30px rgba(212,175,55,0.15);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }
body { font-family: var(--font-body); background: var(--bg-deep); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-size: 16px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; color: var(--white); }
h1 { font-size: clamp(26px, 6vw, 52px); font-weight: 900; }
h2 { font-size: clamp(22px, 4vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: clamp(16px, 2vw, 20px); }
p { font-family: var(--font-body); color: var(--text-body); font-size: 16px; line-height: 1.8; }

/* ===== UTILITY ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.alt-bg { background: var(--bg-alt); }
.accent { color: var(--gold); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-family: var(--font-head); font-weight: 900; margin-bottom: 14px; }
.section-subtitle { color: var(--text-muted); font-size: 17px; max-width: 600px; margin: 0 auto; }
.left-aligned { text-align: left; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  padding: 14px 28px; border-radius: 50px; min-height: 50px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer; border: none; letter-spacing: 0.4px;
}
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a14; box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}
.btn-primary:hover { box-shadow: 0 8px 35px rgba(212,175,55,0.6); }
.btn-gold {
  background: linear-gradient(135deg, #f5d060 0%, var(--gold) 50%, #a8862a 100%);
  color: #0a0a14; box-shadow: 0 6px 30px rgba(212,175,55,0.5); font-size: 17px;
}
.btn-gold:hover { box-shadow: 0 10px 40px rgba(212,175,55,0.7); }
.btn-xl { font-size: 18px; padding: 18px 36px; min-height: 58px; }
.btn-full { width: 100%; }
.btn-icon { width: 20px; height: 20px; object-fit: contain; }

/* Pulse animation for final CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 6px 30px rgba(212,175,55,0.5); }
  50% { box-shadow: 0 10px 60px rgba(212,175,55,0.9), 0 0 0 10px rgba(212,175,55,0.1); }
}
.pulse-btn { animation: pulse-glow 2.5s ease-in-out infinite; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 20, 0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { background: rgba(10,10,20,0.97); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.logo-text { font-family: var(--font-head); font-weight: 900; font-size: 22px; color: var(--white); }
.logo-accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--text-body); letter-spacing: 0.3px; transition: color 0.2s; }
.nav-link:hover { color: var(--gold); }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0a0a14; font-family: var(--font-head); font-weight: 700; font-size: 14px; padding: 10px 22px; border-radius: 50px; transition: transform 0.2s, box-shadow 0.2s; }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(212,175,55,0.5); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(65,105,225,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.05) 0%, transparent 60%),
              var(--bg-deep);
}
.hero-bg-anim { position: absolute; inset: 0; pointer-events: none; }
@keyframes orb-float { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-30px) scale(1.1); } }
@keyframes orb-float2 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-25px,20px) scale(0.95); } }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.orb1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(65,105,225,0.12), transparent); top: -100px; left: -100px; animation: orb-float 8s ease-in-out infinite; }
.orb2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,175,55,0.08), transparent); bottom: -80px; right: -80px; animation: orb-float2 10s ease-in-out infinite; }
.orb3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,201,167,0.06), transparent); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: orb-float 12s ease-in-out infinite reverse; }

.hero-container { max-width: 1200px; margin: 0 auto; padding: 60px 24px; display: flex; align-items: center; gap: 60px; position: relative; z-index: 2; width: 100%; }
.hero-image-col { flex: 1; display: flex; justify-content: center; }
.hero-content-col { flex: 1; }

.hero-img-wrapper { position: relative; display: inline-block; }
.hero-glow { position: absolute; inset: -30px; background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%); border-radius: 50%; pointer-events: none; }
@keyframes float-product { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-18px) rotate(1.5deg); } }
.floating { animation: float-product 4s ease-in-out infinite; }
.hero-product-img { max-width: 380px; width: 100%; filter: drop-shadow(0 30px 60px rgba(212,175,55,0.3)); position: relative; z-index: 2; }
.hero-badge { position: absolute; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0a0a14; font-family: var(--font-head); font-weight: 700; font-size: 12px; padding: 6px 14px; border-radius: 50px; white-space: nowrap; box-shadow: 0 4px 15px rgba(212,175,55,0.5); z-index: 3; }
.hero-badge-1 { top: 20px; left: -20px; animation: float-product 5s ease-in-out infinite; }
.hero-badge-2 { bottom: 40px; right: -20px; animation: float-product 6s ease-in-out infinite reverse; }

.hero-pill { display: inline-block; background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.4); color: var(--gold); font-family: var(--font-head); font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.hero-headline { font-family: var(--font-head); font-weight: 900; line-height: 1.15; margin-bottom: 24px; }
.hero-headline-line1, .hero-headline-line2 { display: block; color: var(--white); }
.hero-headline-accent { display: block; background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { margin-bottom: 16px; font-size: 17px; }
.hero-stars { display: flex; align-items: center; gap: 10px; margin: 20px 0; }
.stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; }
.hero-review-count { color: var(--text-muted); font-size: 14px; }
.hero-cta-group { margin-top: 28px; }
.hero-cta-btn { width: 100%; max-width: 420px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; font-size: 13px; color: var(--text-muted); font-family: var(--font-head); font-weight: 600; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation-delay: var(--delay);
}
.why-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.why-icon-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.why-icon { width: 80px; height: 80px; object-fit: contain; }
.why-card h3 { font-family: var(--font-head); font-size: 16px; margin-bottom: 12px; color: var(--gold); }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== SPLIT LAYOUT ===== */
.split-layout { display: flex; align-items: center; gap: 60px; }
.split-img { flex: 1; }
.split-text { flex: 1; }
.section-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); width: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: 20px; }
.split-text p { margin-bottom: 16px; }
.split-text .btn { margin-top: 12px; }

/* ===== HOW IT WORKS / ACCORDION ===== */
.accordion-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s; }
.accordion-item.open { border-color: var(--gold); }
.accordion-header {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: none; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 16px;
  text-align: left; min-height: 64px; transition: background 0.2s;
}
.accordion-header:hover { background: rgba(212,175,55,0.05); }
.acc-num { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 20px; font-weight: 900; min-width: 32px; }
.acc-title { flex: 1; }
.acc-icon { font-size: 22px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.accordion-item.open .acc-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s; }
.accordion-body.open { max-height: 600px; }
.accordion-body p { padding: 0 24px 24px; font-size: 15px; line-height: 1.8; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform var(--transition), box-shadow var(--transition); }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.reviewer-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; display: block; color: var(--white); }
.reviewer-loc { font-size: 13px; color: var(--text-muted); display: block; margin: 2px 0; }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.review-text { font-size: 15px; line-height: 1.7; }
.reviews-rating-bar { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.reviews-rating-bar img { height: 28px; object-fit: contain; }
.reviews-rating-bar span { color: var(--text-muted); font-family: var(--font-head); font-weight: 600; font-size: 14px; }

/* ===== PRICING ===== */
.countdown-wrapper { text-align: center; margin-bottom: 40px; }
.countdown-label { font-family: var(--font-head); font-weight: 700; color: var(--gold); font-size: 18px; margin-bottom: 12px; letter-spacing: 1px; }
.countdown { display: inline-flex; align-items: center; gap: 8px; }
.cd-block { background: var(--bg-card2); border: 2px solid var(--gold); border-radius: var(--radius-sm); padding: 14px 22px; text-align: center; min-width: 80px; }
.cd-block span { display: block; font-family: var(--font-head); font-size: 36px; font-weight: 900; color: var(--gold); line-height: 1; }
.cd-block small { display: block; font-family: var(--font-head); font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 2px; margin-top: 4px; }
.cd-sep { font-family: var(--font-head); font-size: 36px; font-weight: 900; color: var(--gold); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.price-card {
  background: var(--bg-card); border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; position: relative; transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.price-card.popular { background: linear-gradient(160deg, var(--bg-card2), #1e1e3a); border-color: var(--gold); box-shadow: 0 0 40px rgba(212,175,55,0.2); transform: scale(1.03); }
.price-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0a0a14; font-family: var(--font-head); font-weight: 800; font-size: 12px; padding: 6px 18px; border-radius: 50px; white-space: nowrap; letter-spacing: 0.5px; }
.price-label { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 6px; }
.price-qty { font-family: var(--font-head); font-weight: 900; font-size: 20px; color: var(--white); }
.price-supply { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.price-img { max-height: 180px; width: auto; margin: 0 auto 16px; object-fit: contain; }
.price-bonus-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 12px; }
.bonus-tag { background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.35); color: var(--gold); font-family: var(--font-head); font-weight: 700; font-size: 11px; padding: 4px 12px; border-radius: 50px; letter-spacing: 0.5px; }
.price-amount { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 4px; }
.price-strike { font-family: var(--font-head); font-size: 22px; color: var(--text-muted); text-decoration: line-through; }
.price-now { font-family: var(--font-head); font-weight: 900; font-size: 40px; color: var(--gold); }
.price-per { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.payment-logos { max-width: 200px; margin: 14px auto 0; opacity: 0.8; }
.pricing-stars { text-align: center; }
.pricing-stars img { max-width: 200px; margin: 0 auto; }

/* ===== BONUS ===== */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bonus-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.bonus-number { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0a0a14; font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: 2px; display: inline-block; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; }
.bonus-img { max-width: 200px; margin: 0 auto 20px; border-radius: var(--radius); }
.bonus-card h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 12px; color: var(--gold); }
.bonus-card p { font-size: 15px; }

/* ===== INGREDIENTS ===== */
.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform var(--transition), border-color var(--transition); }
.ing-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.ing-card h3 { font-family: var(--font-head); font-size: 16px; color: var(--gold); margin-bottom: 10px; }
.ing-card p { font-size: 14px; line-height: 1.7; }

/* ===== SCIENCE ===== */
.science-list { display: flex; flex-direction: column; gap: 24px; max-width: 900px; margin: 0 auto; }
.science-item { background: var(--bg-card); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 28px; }
.science-item h3 { font-family: var(--font-head); font-size: 18px; margin-bottom: 12px; color: var(--gold); }
.science-item p { font-size: 15px; line-height: 1.8; }
.science-disclaimer { background: rgba(255,71,87,0.07); border: 1px solid rgba(255,71,87,0.2); border-radius: var(--radius); padding: 20px; max-width: 900px; margin: 24px auto 0; }
.science-disclaimer p { font-size: 13px; color: var(--text-muted); }

/* ===== GUARANTEE ===== */
.guarantee-img-col { display: flex; justify-content: center; }
.guarantee-img-col .section-img { max-width: 380px; }
.guarantee-point { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.guar-icon { font-size: 32px; flex-shrink: 0; }
.guarantee-point h3 { font-family: var(--font-head); font-size: 18px; color: var(--gold); margin-bottom: 8px; }
.guarantee-point p { font-size: 15px; }

/* ===== BENEFITS ===== */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.benefit-item { display: flex; gap: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform var(--transition), border-color var(--transition); animation-delay: var(--delay); }
.benefit-item:hover { transform: translateX(6px); border-color: var(--gold); }
.ben-check { font-size: 24px; flex-shrink: 0; }
.benefit-item h3 { font-family: var(--font-head); font-size: 16px; color: var(--white); margin-bottom: 6px; }
.benefit-item p { font-size: 14px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px; background: none; color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 16px; min-height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background 0.2s;
}
.faq-question::after { content: '+'; font-size: 24px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { background: rgba(212,175,55,0.05); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 24px 24px; font-size: 15px; line-height: 1.8; }

/* ===== FINAL CTA ===== */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(160deg, #0a0a14, #0d0d2a, #100a14); }
.final-cta-bg { position: absolute; inset: 0; pointer-events: none; }
@keyframes final-orb1 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(30px, -20px); } }
@keyframes final-orb2 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-20px, 30px); } }
.final-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.f-orb1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.12), transparent); top: -200px; left: -200px; animation: final-orb1 10s ease-in-out infinite; }
.f-orb2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(65,105,225,0.1), transparent); bottom: -100px; right: -100px; animation: final-orb2 8s ease-in-out infinite; }

.final-cta-inner { display: flex; align-items: center; justify-content: center; gap: 60px; position: relative; z-index: 2; text-align: center; flex-wrap: wrap; }
.final-product-img { max-width: 320px; width: 100%; filter: drop-shadow(0 30px 80px rgba(212,175,55,0.4)); }
.final-cta-content { max-width: 560px; }
.final-urgency { display: inline-block; background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.5); color: var(--gold); font-family: var(--font-head); font-weight: 800; font-size: 12px; padding: 6px 16px; border-radius: 50px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.final-headline { font-family: var(--font-head); font-weight: 900; font-size: clamp(28px, 5vw, 42px); margin-bottom: 24px; line-height: 1.2; }
.final-price-block { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 24px; }
.final-price-regular { color: var(--text-muted); font-size: 18px; font-family: var(--font-head); }
.final-price-special { font-family: var(--font-head); font-weight: 900; font-size: 32px; color: var(--gold); }
.final-trust-icons { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--text-muted); }
.final-cta-btn { width: 100%; max-width: 480px; }
.final-subtext { margin-top: 16px; font-size: 13px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer { background: #060610; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 12px; max-width: 280px; }
.footer-links-col h4 { font-family: var(--font-head); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links-col nav, .footer-legal-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a, .legal-link { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
.footer-links-col a:hover, .legal-link:hover { color: var(--gold); }
.footer-social-col h4 { font-family: var(--font-head); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.social-icons { display: flex; gap: 14px; flex-wrap: wrap; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted); transition: background 0.2s, color 0.2s, border-color 0.2s; }
.social-icons a:hover { background: var(--gold); color: #0a0a14; border-color: var(--gold); }
.footer-disclaimer { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 30px; }
.footer-disclaimer p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 13px; }
.footer-bottom a { color: var(--gold); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a14; font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(212,175,55,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: scale(1.1); }

/* ===== PURCHASE NOTIFICATION ===== */
.purchase-notif {
  position: fixed; bottom: -100px; left: 20px; z-index: 1100;
  background: var(--bg-card2); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  max-width: 300px; transition: bottom 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.purchase-notif.show { bottom: 20px; }
.notif-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.notif-text { flex: 1; font-size: 13px; color: var(--text-body); }
.notif-text strong { color: var(--white); font-family: var(--font-head); }
.notif-close { color: var(--text-muted); font-size: 16px; padding: 4px 8px; flex-shrink: 0; }
.notif-close:hover { color: var(--white); }

/* ===== EXIT POPUP ===== */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 20px;
}
.exit-popup-overlay.show { opacity: 1; pointer-events: auto; }
.exit-popup-box {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-card2));
  border: 2px solid var(--gold); border-radius: var(--radius-lg);
  max-width: 500px; width: 100%; position: relative;
  box-shadow: 0 20px 80px rgba(212,175,55,0.3);
  animation: popup-in 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popup-in { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.exit-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.1); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; transition: background 0.2s; }
.exit-close:hover { background: rgba(255,255,255,0.2); }
.exit-popup-inner { padding: 40px 36px; text-align: center; }
.exit-badge { display: inline-block; background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.5); color: var(--gold); font-family: var(--font-head); font-weight: 800; font-size: 12px; padding: 6px 16px; border-radius: 50px; letter-spacing: 1px; margin-bottom: 16px; }
.exit-img { max-width: 200px; margin: 0 auto 20px; }
.exit-headline { font-family: var(--font-head); font-weight: 900; font-size: clamp(20px, 4vw, 26px); margin-bottom: 12px; }
.exit-popup-inner p { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }
.exit-cta { display: block; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0a0a14; font-family: var(--font-head); font-weight: 800; font-size: 16px; padding: 16px 28px; border-radius: 50px; margin-bottom: 12px; transition: transform 0.2s, box-shadow 0.2s; }
.exit-cta:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(212,175,55,0.5); }
.exit-skip { display: block; color: var(--text-muted); font-size: 13px; }
.exit-skip:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--delay, 0s); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }

/* ===== REDUCE MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .floating { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== MOBILE RESPONSIVE ===== */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablets */
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
    background: rgba(10,10,20,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 24px; padding: 40px 32px;
    border-left: 1px solid var(--border);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 18px; }
  .nav-cta { width: 100%; text-align: center; padding: 14px 22px; }

  /* Hero */
  .hero-container { flex-direction: column; padding: 40px 20px; gap: 32px; text-align: center; }
  .hero-image-col { order: 1; }
  .hero-content-col { order: 2; }
  .hero-product-img { max-width: 260px; }
  .hero-badge-1 { left: 0; }
  .hero-badge-2 { right: 0; }
  .hero-cta-btn { max-width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-stars { justify-content: center; }

  /* Split */
  .split-layout { flex-direction: column; gap: 32px; }
  .split-img { order: 1; }
  .split-text { order: 2; }
  .left-aligned { text-align: center; }
  .section-img { max-width: 100%; }
  .guarantee-img-col .section-img { max-width: 280px; }

  /* Cards */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-8px); }
  .bonus-grid { grid-template-columns: 1fr; gap: 20px; }
  .ing-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  /* Final CTA */
  .final-cta-inner { flex-direction: column; }
  .final-product-img { max-width: 220px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { order: 1; }
  .footer-brand p { max-width: 100%; }
  .footer-links-col nav, .footer-legal-links { align-items: center; }
  .social-icons { justify-content: center; }

  /* Countdown */
  .cd-block { min-width: 70px; padding: 12px 18px; }
  .cd-block span { font-size: 30px; }

  /* Popup on mobile: banner style */
  .purchase-notif { left: 10px; right: 10px; max-width: none; bottom: -100px; }
  .purchase-notif.show { bottom: 10px; }
  .exit-popup-inner { padding: 32px 24px; }
}

/* Small phones */
@media (max-width: 480px) {
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .hero-product-img { max-width: 200px; }
  .why-grid { grid-template-columns: 1fr; }
  .cd-block { min-width: 60px; padding: 10px 14px; }
  .cd-block span { font-size: 26px; }
  .btn { font-size: 15px; padding: 14px 20px; }
  .price-card { padding: 24px 16px; }
  .final-headline { font-size: 24px; }
}

/* Very small */
@media (max-width: 360px) {
  .nav-container { padding: 12px 16px; }
  .container { padding: 0 16px; }
}
