/* =============================================
   PINEAL FORCE - styles.css
   Design: Modern Gradient Glassmorphism
   Colors: #4F46E5 → #7C3AED → #06B6D4
   ============================================= */

:root {
  --p1: #4F46E5;
  --p2: #7C3AED;
  --p3: #9333EA;
  --cyan: #06B6D4;
  --dark: #0B0015;
  --dark2: #130025;
  --dark3: #1E0035;
  --glass: rgba(79,70,229,0.08);
  --glass2: rgba(79,70,229,0.15);
  --border: rgba(124,58,237,0.3);
  --white: #FFFFFF;
  --text: #EDE9FE;
  --muted: #A78BFA;
  --muted2: #7C6AAA;
  --grd: linear-gradient(135deg, var(--p1), var(--p3), var(--cyan));
  --grd2: linear-gradient(135deg, var(--p1), var(--p2));
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-p: 0 0 40px rgba(124,58,237,0.35);
  --r: 16px;
  --r-lg: 24px;
  --font-h: 'Montserrat', sans-serif;
  --font-b: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-b); background: var(--dark); color: var(--text); line-height: 1.75; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(26px, 5vw, 52px); }
h2 { font-size: clamp(22px, 4vw, 40px); }
h3 { font-size: clamp(17px, 2.5vw, 22px); }
p { font-size: clamp(15px, 1.8vw, 17px); line-height: 1.8; }

.con { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.s-pad { padding: 80px 0; }
.glass-bg { background: var(--dark2); }
.grd-text { background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.s-tag { display: inline-block; background: var(--glass2); color: var(--muted); border: 1px solid var(--border); padding: 6px 18px; border-radius: 50px; font-size: 12px; font-family: var(--font-h); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.s-title { text-align: center; margin-bottom: 12px; }
.s-sub { text-align: center; color: var(--muted2); max-width: 600px; margin: 0 auto 50px; font-size: 16px; }

/* BUTTONS */
.cta-hero, .cta-primary, .cta-cart, .cta-final, .cta-pop {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 800; border-radius: 50px;
  transition: all 0.3s; cursor: pointer; text-align: center; min-height: 52px;
  position: relative; overflow: hidden;
}
.cta-hero, .cta-primary, .cta-final, .cta-pop { padding: 16px 36px; background: var(--grd); color: #fff; font-size: 17px; }
.cta-hero { font-size: 18px; padding: 18px 40px; width: 100%; max-width: 460px; box-shadow: 0 8px 32px rgba(124,58,237,0.45); }
.cta-final { font-size: 19px; padding: 22px 50px; width: 100%; max-width: 510px; box-shadow: 0 12px 40px rgba(124,58,237,0.5); }
.cta-pop { width: 100%; border-radius: var(--r); display: block; }
.cta-hero::before, .cta-primary::before, .cta-cart::before, .cta-final::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.1); opacity: 0; transition: opacity 0.3s; }
.cta-hero:hover::before, .cta-primary:hover::before, .cta-cart:hover::before, .cta-final:hover::before { opacity: 1; }
.cta-hero:hover, .cta-primary:hover, .cta-cart:hover, .cta-final:hover { transform: scale(1.05); box-shadow: 0 14px 42px rgba(124,58,237,0.65); }
.cta-cart { background: var(--grd2); color: #fff; width: 100%; border-radius: var(--r); font-size: 16px; padding: 14px; }
.hot-cart { background: linear-gradient(135deg, #06B6D4, var(--p1)); }
@media (max-width: 480px) { .cta-hero { font-size: 15px; padding: 15px 22px; } .cta-final { font-size: 16px; padding: 16px 24px; } }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(11,0,21,0.92); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); transition: all 0.3s; padding: 12px 0; }
.navbar.scrolled { padding: 8px 0; box-shadow: 0 4px 32px rgba(124,58,237,0.2); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-h); font-size: 22px; font-weight: 900; color: #fff; }
.brand img { width: 34px; height: 34px; border-radius: 8px; object-fit: contain; }
.brand-accent { background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-a { color: var(--text); font-family: var(--font-h); font-weight: 600; font-size: 14px; padding: 8px 14px; border-radius: 8px; transition: color 0.2s; }
.nav-a:hover { color: var(--muted); }
.nav-btn { background: var(--grd2); color: #fff; font-family: var(--font-h); font-weight: 800; font-size: 14px; padding: 10px 22px; border-radius: 50px; min-height: 44px; display: flex; align-items: center; transition: all 0.3s; }
.nav-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-p); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.burger span { display: block; width: 24px; height: 2px; background: var(--muted); border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 767px) {
  .burger { display: flex; }
  .nav-menu { display: none; position: fixed; top: 58px; left: 0; right: 0; bottom: 0; background: rgba(11,0,21,0.97); backdrop-filter: blur(24px); flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 999; transform: translateX(100%); transition: transform 0.35s ease; }
  .nav-menu.open { display: flex; transform: translateX(0); }
  .nav-a { font-size: 20px; }
  .nav-btn { font-size: 18px; padding: 16px 40px; }
}

/* HERO */
.hero { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; padding-top: 68px; background: radial-gradient(ellipse at 25% 60%, rgba(124,58,237,0.15) 0%, transparent 55%), radial-gradient(ellipse at 80% 20%, rgba(6,182,212,0.08) 0%, transparent 50%), var(--dark); }
.hero-mesh { position: absolute; inset: 0; pointer-events: none; }
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.orb1 { width: 400px; height: 400px; background: rgba(124,58,237,0.18); top: 10%; left: -5%; animation: orbDrift 10s ease-in-out infinite; }
.orb2 { width: 300px; height: 300px; background: rgba(6,182,212,0.12); bottom: 10%; right: -5%; animation: orbDrift 12s ease-in-out infinite reverse; }
.orb3 { width: 200px; height: 200px; background: rgba(79,70,229,0.14); top: 50%; left: 40%; animation: orbDrift 8s ease-in-out infinite 2s; }
@keyframes orbDrift { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -20px) scale(1.1); } 66% { transform: translate(-20px, 30px) scale(0.9); } }
.hero-inner { display: flex; align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto; padding: 60px 20px; width: 100%; position: relative; z-index: 1; }
.hero-img-col { flex: 1; display: flex; justify-content: center; }
.bottle-stage { position: relative; display: inline-block; }
.stage-glow { position: absolute; inset: -40px; background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%); border-radius: 50%; animation: glowPulse 3.5s ease-in-out infinite; }
@keyframes glowPulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }
.stage-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(124,58,237,0.25); }
.sr1 { width: 300px; height: 300px; animation: ringExpand 4s ease-in-out infinite; }
.sr2 { width: 420px; height: 420px; animation: ringExpand 4s ease-in-out infinite 2s; border-color: rgba(6,182,212,0.15); }
@keyframes ringExpand { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; } }
.hero-bottle { max-width: 360px; width: 100%; animation: levitate 5s ease-in-out infinite; filter: drop-shadow(0 28px 56px rgba(124,58,237,0.45)); position: relative; z-index: 1; }
@keyframes levitate { 0%, 100% { transform: translateY(0px) rotate(-2deg); } 50% { transform: translateY(-22px) rotate(2deg); } }
.pill-tag { position: absolute; background: rgba(11,0,21,0.9); border: 1px solid var(--border); color: var(--muted); font-family: var(--font-h); font-weight: 700; font-size: 12px; padding: 7px 14px; border-radius: 50px; backdrop-filter: blur(10px); z-index: 2; white-space: nowrap; animation: tagFloat 3.5s ease-in-out infinite; }
.pt1 { left: -15px; top: 22%; animation-delay: 0s; }
.pt2 { right: -15px; top: 50%; animation-delay: 1.2s; }
.pt3 { left: -10px; top: 76%; animation-delay: 2.4s; }
@keyframes tagFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hero-txt-col { flex: 1; }
.hero-kicker { display: inline-block; background: var(--glass2); color: var(--muted); border: 1px solid var(--border); padding: 8px 20px; border-radius: 50px; font-family: var(--font-h); font-weight: 700; font-size: 12px; letter-spacing: 1.5px; margin-bottom: 18px; animation: fadeSlide 0.7s ease; }
.hero-txt-col h1 { margin-bottom: 22px; animation: fadeSlide 0.85s ease; }
.hero-body { color: var(--muted2); margin-bottom: 14px; animation: fadeSlide 1s ease; }
.hero-body strong { color: var(--text); }
.hero-metrics { display: flex; align-items: center; gap: 20px; margin: 26px 0; animation: fadeSlide 1.1s ease; }
.metric { display: flex; flex-direction: column; align-items: center; }
.m-big { font-family: var(--font-h); font-weight: 900; font-size: 20px; background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.m-sm { font-size: 12px; color: var(--muted2); text-align: center; }
.m-div { width: 1px; height: 36px; background: var(--border); }
.hero-fine { font-size: 13px; color: var(--muted2); margin-top: 14px; animation: fadeSlide 1.2s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; padding: 95px 20px 60px; }
  .hero-bottle { max-width: 240px; }
  .sr1 { width: 200px; height: 200px; } .sr2 { width: 300px; height: 300px; }
  .pt1 { left: 0; } .pt2 { right: 0; } .pt3 { left: 0; }
  .hero-txt-col { text-align: center; }
  .hero-metrics { justify-content: center; }
  .cta-hero { max-width: 100%; }
}

/* WHY CHOOSE */
.why-sec { background: var(--dark3); }
.badge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.badge-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 20px; text-align: center; backdrop-filter: blur(16px); transition: all 0.4s; animation-delay: var(--ad, 0s); }
.badge-card:hover { transform: scale(1.05) rotate(1.5deg); box-shadow: var(--shadow-p); border-color: var(--p3); background: var(--glass2); }
.b-ico { width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%; background: var(--glass2); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.b-ico img { width: 56px; height: 56px; object-fit: contain; }
.badge-card h3 { font-size: 15px; color: var(--muted); margin-bottom: 10px; }
.badge-card p { font-size: 14px; color: var(--muted2); line-height: 1.6; }
.badge-card p strong { color: var(--text); }
@media (max-width: 992px) { .badge-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .badge-grid { grid-template-columns: 1fr; } }

/* SPLIT */
.split-r { display: flex; align-items: center; gap: 56px; }
.split-r.reverse { flex-direction: row-reverse; }
.sp-img, .sp-txt { flex: 1; }
.glass-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.glass-frame img, .sp-img img { width: 100%; }
.sp-txt h2 { margin-bottom: 18px; }
.sp-txt p { color: var(--muted2); margin-bottom: 14px; }
.sp-txt p strong { color: var(--text); }
.sp-txt .cta-primary { margin-top: 10px; }
@media (max-width: 768px) { .split-r, .split-r.reverse { flex-direction: column; gap: 28px; } }

/* HOW IT WORKS */
.how-sec { background: var(--dark); }
.how-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.how-item { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; backdrop-filter: blur(12px); }
.how-btn { width: 100%; display: flex; align-items: center; gap: 14px; padding: 18px 22px; font-family: var(--font-h); font-weight: 700; font-size: 16px; color: var(--text); text-align: left; min-height: 60px; transition: all 0.2s; }
.how-btn:hover { background: var(--glass2); }
.how-btn.open { background: var(--glass2); color: var(--muted); }
.hw-ico { font-size: 22px; flex-shrink: 0; }
.hw-arr { margin-left: auto; font-size: 11px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.how-btn.open .hw-arr { transform: rotate(180deg); }
.how-panel { display: none; padding: 0 22px 20px; }
.how-panel.open { display: block; animation: panelIn 0.3s ease; }
.how-panel p { color: var(--muted2); font-size: 15px; line-height: 1.75; }
.how-panel p strong { color: var(--text); }
@keyframes panelIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 480px) { .how-btn { font-size: 14px; padding: 14px 16px; } }

/* REVIEWS */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; backdrop-filter: blur(14px); transition: all 0.3s; }
.rev-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-p); border-color: var(--p3); }
.rev-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rev-top img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; border: 2px solid var(--p2); flex-shrink: 0; }
.rev-info h4 { font-family: var(--font-h); font-size: 15px; margin-bottom: 3px; }
.rev-city { font-size: 12px; color: var(--muted2); margin-bottom: 4px; }
.stars { color: #F59E0B; font-size: 14px; }
.rev-card p { font-size: 14px; color: var(--muted2); line-height: 1.7; }
.rev-card p strong { color: var(--text); }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
@media (min-width: 576px) and (max-width: 900px) { .rev-grid { grid-template-columns: 1fr 1fr; max-width: 100%; } }

/* PRICING */
.price-sec { background: var(--dark3); }
.cd-wrap { text-align: center; margin-bottom: 40px; }
.cd-lbl { font-family: var(--font-h); font-weight: 700; color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.cd-box { display: inline-flex; align-items: center; gap: 8px; }
.cd-unit { background: var(--glass); border: 2px solid var(--p3); border-radius: 12px; padding: 12px 18px; text-align: center; min-width: 80px; backdrop-filter: blur(12px); }
.cd-unit span { display: block; font-family: var(--font-h); font-weight: 900; font-size: 36px; background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.cd-unit small { font-size: 10px; color: var(--muted2); font-weight: 700; letter-spacing: 2px; }
.cd-col { font-family: var(--font-h); font-size: 36px; font-weight: 900; color: var(--p3); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
@media (max-width: 480px) { .cd-unit span { font-size: 28px; } .cd-unit { min-width: 66px; padding: 10px 14px; } }

.pc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 980px; margin: 0 auto 36px; }
.pc-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 22px; text-align: center; position: relative; backdrop-filter: blur(14px); transition: all 0.3s; }
.pc-card:hover { transform: translateY(-4px); }
.pc-card.hot { background: linear-gradient(160deg, rgba(79,70,229,0.15), rgba(6,182,212,0.07)); border: 2px solid var(--p3); box-shadow: var(--shadow-p); transform: scale(1.04); }
.pc-card.hot:hover { transform: scale(1.04) translateY(-4px); }
.pc-ribbon { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--grd); color: #fff; font-family: var(--font-h); font-weight: 800; font-size: 11px; padding: 5px 18px; border-radius: 0 0 10px 10px; white-space: nowrap; }
.pc-lbl { font-family: var(--font-h); font-weight: 900; font-size: 12px; letter-spacing: 2px; color: var(--muted); margin-bottom: 4px; margin-top: 14px; }
.pc-qty { font-family: var(--font-h); font-weight: 800; font-size: 20px; color: #fff; }
.pc-sup { font-size: 13px; color: var(--muted2); margin-bottom: 14px; }
.pc-card img:not(.pc-cards):not(.pc-atc) { max-width: 150px; margin: 0 auto 14px; }
.pc-price { font-family: var(--font-h); font-size: 26px; font-weight: 900; margin-bottom: 4px; }
.pc-old { color: var(--muted2); font-size: 17px; text-decoration: line-through; margin-right: 6px; }
.pc-new { background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pc-per { font-size: 13px; color: var(--muted2); margin-bottom: 14px; }
.pc-badges { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin-bottom: 14px; }
.pc-badge { background: var(--glass2); border: 1px solid var(--border); color: var(--muted); font-size: 11px; font-family: var(--font-h); font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.pc-cards { max-width: 190px; margin: 10px auto 0; opacity: 0.6; }
.pc-atc { max-width: 170px; margin: 6px auto 0; }
.stars-row { text-align: center; }
.stars-row img { max-width: 240px; margin: 0 auto; }
@media (max-width: 768px) { .pc-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 36px; } .pc-card.hot { transform: scale(1); } .pc-card.hot:hover { transform: translateY(-4px); } }
@media (min-width: 576px) and (max-width: 768px) { .pc-grid { grid-template-columns: 1fr 1fr; max-width: 100%; } }

/* BONUS */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 780px; margin: 0 auto; }
.bonus-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; text-align: center; backdrop-filter: blur(14px); transition: all 0.3s; }
.bonus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-p); border-color: var(--p3); }
.bn-num { background: var(--grd); color: #fff; font-family: var(--font-h); font-weight: 900; font-size: 11px; padding: 5px 16px; border-radius: 50px; display: inline-block; margin-bottom: 14px; }
.bonus-card img { max-width: 240px; margin: 0 auto 18px; border-radius: 10px; }
.bonus-card h3 { margin-bottom: 10px; font-size: 17px; }
.bonus-card p { color: var(--muted2); font-size: 14px; line-height: 1.6; }
.bonus-card p strong { color: var(--text); }
.bn-val { margin-top: 14px; font-family: var(--font-h); font-size: 15px; }
.bn-old { color: var(--muted2); text-decoration: line-through; font-size: 13px; margin-right: 6px; }
.bn-val strong { background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 18px; }
@media (max-width: 580px) { .bonus-grid { grid-template-columns: 1fr; } }

/* INGREDIENTS */
.ing-sec { background: var(--dark); }
.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ing-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; backdrop-filter: blur(12px); transition: all 0.3s; animation-delay: var(--ad, 0s); }
.ing-card:hover { border-color: var(--p3); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(124,58,237,0.2); }
.ig-e { font-size: 28px; margin-bottom: 10px; }
.ing-card h3 { font-size: 16px; color: var(--muted); margin-bottom: 8px; }
.ing-card p { font-size: 14px; color: var(--muted2); line-height: 1.6; }
@media (max-width: 900px) { .ing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ing-grid { grid-template-columns: 1fr; } }

/* SCIENCE */
.sci-sec { background: var(--dark2); }
.sci-list { max-width: 820px; margin: 0 auto 28px; display: flex; flex-direction: column; gap: 8px; }
.sci-row { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; backdrop-filter: blur(12px); }
.sci-btn { width: 100%; text-align: left; padding: 16px 22px; font-family: var(--font-h); font-weight: 700; font-size: 15px; color: var(--text); min-height: 56px; display: flex; align-items: center; transition: all 0.2s; }
.sci-btn:hover, .sci-btn.open { background: var(--glass2); color: var(--muted); }
.sci-panel { display: none; padding: 0 22px 18px; }
.sci-panel.open { display: block; animation: panelIn 0.3s ease; }
.sci-panel p { color: var(--muted2); font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.sci-panel p:last-child { margin-bottom: 0; }
.sci-panel p strong { color: var(--text); }
.sci-panel p em { color: var(--text); font-style: italic; }
.sci-disc { max-width: 820px; margin: 0 auto; background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 22px; font-size: 14px; color: var(--muted2); backdrop-filter: blur(12px); }
.sci-disc strong { color: var(--muted); }

/* GUARANTEE */
.guar-sec { background: var(--dark3); }
.guar-img { border-radius: 50%; max-width: 300px; margin: 0 auto; border: 3px solid var(--p3); box-shadow: 0 0 60px rgba(124,58,237,0.3); }
.guar-pts { display: flex; flex-direction: column; gap: 18px; margin: 22px 0; }
.gp { display: flex; align-items: flex-start; gap: 14px; }
.gp-e { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.gp h4 { font-size: 15px; color: var(--muted); margin-bottom: 5px; }
.gp p { font-size: 14px; color: var(--muted2); line-height: 1.6; }
.gp p strong { color: var(--text); }

/* BENEFITS */
.ben-sec { background: var(--dark); }
.ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 860px; margin: 0 auto; }
.ben-item { display: flex; align-items: flex-start; gap: 14px; background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; backdrop-filter: blur(12px); transition: all 0.3s; animation-delay: var(--ad, 0s); }
.ben-item:hover { border-color: var(--p3); transform: translateX(4px); }
.bi-e { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.ben-item h4 { font-size: 15px; color: var(--muted); margin-bottom: 5px; }
.ben-item p { font-size: 14px; color: var(--muted2); line-height: 1.6; }
.ben-item p strong { color: var(--text); }
@media (max-width: 580px) { .ben-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-sec { background: var(--dark3); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-row { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; backdrop-filter: blur(12px); }
.faq-btn { width: 100%; text-align: left; padding: 18px 22px; font-family: var(--font-h); font-weight: 700; font-size: 15px; color: var(--text); min-height: 60px; display: flex; align-items: center; transition: all 0.2s; }
.faq-btn:hover, .faq-btn.open { background: var(--glass2); color: var(--muted); }
.faq-panel { display: none; padding: 0 22px 18px; }
.faq-panel.open { display: block; animation: panelIn 0.3s ease; }
.faq-panel p { font-size: 15px; color: var(--muted2); line-height: 1.7; }
.faq-panel p strong { color: var(--text); }
@media (max-width: 480px) { .faq-btn { font-size: 14px; padding: 14px 16px; } }

/* FINAL CTA */
.final-sec { position: relative; overflow: hidden; padding: 80px 0; background: var(--dark); }
.final-mesh { position: absolute; inset: 0; pointer-events: none; }
.final-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fo { position: absolute; border-radius: 50%; filter: blur(90px); }
.fo1 { width: 500px; height: 500px; background: rgba(124,58,237,0.12); top: -100px; left: -100px; animation: orbDrift 12s ease-in-out infinite; }
.fo2 { width: 400px; height: 400px; background: rgba(6,182,212,0.08); bottom: -100px; right: -80px; animation: orbDrift 10s ease-in-out infinite reverse; }
.final-wrap { display: flex; align-items: center; justify-content: center; gap: 60px; position: relative; z-index: 1; }
.final-img { max-width: 280px; animation: levitate 5.5s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(124,58,237,0.4)); }
.final-txt { max-width: 540px; }
.final-kicker { display: inline-block; background: var(--grd); color: #fff; font-family: var(--font-h); font-weight: 900; font-size: 12px; padding: 7px 20px; border-radius: 50px; margin-bottom: 18px; letter-spacing: 1px; animation: pulseCta 2s ease-in-out infinite; }
@keyframes pulseCta { 0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.4); } 50% { box-shadow: 0 0 0 10px rgba(124,58,237,0); } }
.final-txt h2 { font-size: clamp(22px, 3.5vw, 36px); margin-bottom: 18px; line-height: 1.3; }
.final-pr { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; flex-wrap: wrap; }
.f-old { color: var(--muted2); font-size: 17px; }
.f-new { font-family: var(--font-h); font-weight: 900; font-size: 34px; background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.final-txt p { color: var(--muted2); margin-bottom: 22px; }
.final-txt p strong { color: var(--text); }
.final-fine { font-size: 13px; color: var(--muted2); margin-top: 14px; margin-bottom: 0 !important; text-align: center; }
@media (max-width: 768px) { .final-wrap { flex-direction: column; text-align: center; gap: 28px; } .final-img { max-width: 190px; } .final-pr { justify-content: center; } .cta-final { max-width: 100%; } }

/* FOOTER */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.foot-brand .brand { margin-bottom: 14px; display: inline-flex; }
.foot-logo { font-size: 20px; }
.foot-brand p { font-size: 13px; color: var(--muted2); line-height: 1.6; max-width: 280px; margin-bottom: 18px; }
.socials { display: flex; gap: 10px; }
.sl { width: 38px; height: 38px; background: var(--glass); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--muted2); transition: all 0.3s; }
.sl:hover { background: var(--glass2); border-color: var(--p3); color: var(--muted); }
.sl svg { width: 16px; height: 16px; }
.foot-col h4 { font-family: var(--font-h); font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.foot-col ul { display: flex; flex-direction: column; gap: 8px; }
.foot-col a { font-size: 13px; color: var(--muted2); transition: color 0.2s; }
.foot-col a:hover { color: var(--muted); }
.footer-legal-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }
.legal-link { font-size: 12px; color: var(--muted2); transition: color 0.2s; }
.legal-link:hover { color: var(--muted); }
.link-separator { color: rgba(255,255,255,0.2); }
.foot-disc { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 20px; margin-bottom: 20px; }
.foot-disc p { font-size: 12px; color: var(--muted2); line-height: 1.7; }
.foot-disc p strong { color: var(--muted); }
.foot-copy { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px; text-align: center; }
.foot-copy p { font-size: 12px; color: var(--muted2); }
@media (max-width: 768px) { .foot-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; } .foot-brand p { margin: 10px auto; } .socials { justify-content: center; } .footer-legal-links { justify-content: center; } }

/* SCROLL TOP */
.scroll-t { position: fixed; bottom: 28px; right: 22px; width: 50px; height: 50px; background: var(--grd2); color: #fff; border-radius: 50%; font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 999; box-shadow: var(--shadow-p); }
.scroll-t.show { opacity: 1; pointer-events: all; }
.scroll-t:hover { transform: scale(1.1); }

/* NOTIFICATION */
.notif { position: fixed; bottom: 22px; left: 22px; background: rgba(19,0,37,0.95); border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); z-index: 998; max-width: 310px; transform: translateY(100px); opacity: 0; pointer-events: none; transition: all 0.4s ease; backdrop-filter: blur(16px); }
.notif.show { transform: translateY(0); opacity: 1; pointer-events: all; }
.nt-ico { font-size: 26px; flex-shrink: 0; }
.nt-txt { flex: 1; font-size: 13px; line-height: 1.4; color: var(--muted2); }
.nt-txt strong { color: var(--muted); }
.nt-x { font-size: 15px; color: var(--muted2); padding: 4px 8px; flex-shrink: 0; }
@media (max-width: 480px) { .notif { left: 10px; right: 10px; max-width: none; bottom: 14px; } }

/* POPUP */
.popup-ov { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 20px; }
.popup-ov.show { opacity: 1; pointer-events: all; }
.popup-box { background: var(--dark3); border: 2px solid var(--p3); border-radius: var(--r-lg); padding: 38px; max-width: 460px; width: 100%; text-align: center; position: relative; animation: scaleIn 0.4s ease; box-shadow: var(--shadow-p); backdrop-filter: blur(20px); }
@keyframes scaleIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.pop-x { position: absolute; top: 14px; right: 14px; font-size: 18px; color: var(--muted2); width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.2s; }
.pop-x:hover { background: var(--glass2); color: #fff; }
.pop-tag { background: var(--glass2); color: var(--muted); border: 1px solid var(--border); font-family: var(--font-h); font-weight: 800; font-size: 12px; padding: 7px 18px; border-radius: 50px; display: inline-block; margin-bottom: 14px; }
.popup-box h2 { font-size: 24px; margin-bottom: 10px; }
.pop-in p { color: var(--muted2); font-size: 15px; margin-bottom: 10px; }
.pop-in p strong { color: var(--text); }
.pop-price { font-family: var(--font-h); font-size: 26px; font-weight: 900; margin-bottom: 6px; }
.pop-price s { color: var(--muted2); font-size: 18px; margin-right: 6px; }
.pop-price strong { background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pop-note { font-size: 12px; color: var(--muted2); }
.pop-skip { display: block; margin-top: 10px; font-size: 12px; color: var(--muted2); text-decoration: underline; cursor: pointer; }
.pop-skip:hover { color: var(--muted); }

/* ANIMATIONS */
.au { opacity: 0; transform: translateY(38px); transition: opacity 0.6s ease, transform 0.6s ease; transition-delay: var(--ad, 0s); }
.au.vis { opacity: 1; transform: translateY(0); }
.au-left { opacity: 0; transform: translateX(-38px); transition: opacity 0.7s ease, transform 0.7s ease; }
.au-left.vis { opacity: 1; transform: translateX(0); }
.au-right { opacity: 0; transform: translateX(38px); transition: opacity 0.7s ease, transform 0.7s ease; }
.au-right.vis { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
