/* ============ RESET / BASE ============ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}
body{
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  background:#fff;color:var(--text-dark);line-height:1.55;
  overflow-x:hidden;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}

:root{
  /* ⚕️ Paleta Farmacologia — Cyan, Azul Escuro */
  --pharma-blue:#007BFF;
  --pharma-blue-dark:#0056b3;
  --pharma-blue-light:#3395ff;
  --pharma-blue-soft:#e6f2ff;
  --pharma-navy:#0f172a;
  --pharma-navy-dark:#020617;
  --pharma-navy-light:#1e293b;
  --pharma-navy-soft:#f1f5f9;

  /* Accent */
  --accent:#00A896;
  --accent-soft:#e6f9f6;
  --color-terracotta:#e65100;
  --color-white:#fff;

  /* Backgrounds */
  --bg-white:#ffffff;
  --bg-cream:#f8fafc;
  --bg-soft:#f1f5f9;
  --bg-navy-tint:#e2e8f0;
  --bg-blue-tint:#f0f9ff;

  /* Texto */
  --text-dark:#0f172a;
  --text:#334155;
  --text-muted:#64748b;
  --text-soft:#94a3b8;

  /* Borders / shadows */
  --border:rgba(15,23,42,.10);
  --border-strong:rgba(15,23,42,.22);
  --shadow-soft:0 8px 22px rgba(15,23,42,.08);
  --shadow-md:0 14px 30px rgba(15,23,42,.14);
  --shadow-blue:0 14px 30px rgba(0,123,255,.22);

  /* Accent gold (bônus) */
  --gold:#e6a817;
  --gold-soft:#fff3d0;

  /* CTA = Azul/Cyan VIBRANTE */
  --cta-from:#00A896;
  --cta-to:#007BFF;
  --cta-shadow:rgba(0,123,255,.38);
}

/* ============ BACKGROUND ANIMATIONS ============ */
.molecular-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100vh;
  z-index: -1; overflow: hidden; background: var(--bg-white);
}
.molecular-grid {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(0,168,150,0.15) 2px, transparent 2px), radial-gradient(rgba(0,168,150,0.15) 2px, transparent 2px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0.8;
}
.molecule {
  position: absolute; border-radius: 50%;
  background: transparent; border: 2px dashed rgba(0,123,255,0.15);
  opacity: 0.6; animation: floatMolecule 30s infinite linear;
}
.molecule::after {
  content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px;
  background: var(--pharma-blue); border-radius: 50%; transform: translateX(-50%);
  box-shadow: 0 0 10px var(--pharma-blue);
}
.molecule-1 { width: 400px; height: 400px; top: -100px; left: -100px; animation-duration: 40s; }
.molecule-2 { width: 600px; height: 600px; bottom: -200px; right: -150px; animation-duration: 60s; border-color: rgba(0,168,150,0.15); }
.molecule-3 { width: 250px; height: 250px; top: 30%; right: 10%; animation-duration: 35s; }
@keyframes floatMolecule {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============ TOP BAR ============ */
.top-bar{
  background:linear-gradient(90deg,var(--pharma-navy) 0%,var(--pharma-navy-dark) 100%);
  color:#fff;text-align:center;
  padding:10px 16px;font-size:13px;font-weight:700;
  letter-spacing:.2px;
}
.top-bar strong{font-weight:800;color:var(--accent)}

/* ============ HERO ============ */
.hero{
  padding:32px 20px 56px;
  text-align:center;
  position:relative;
}
.hero-inner{max-width:780px;margin:0 auto}
.brand{
  font-family:'Outfit',sans-serif;
  font-size:26px;font-weight:900;letter-spacing:.5px;
  color:var(--pharma-navy);
  margin-bottom:18px;
  text-transform:uppercase;
}
.kicker{
  display:inline-block;
  background:linear-gradient(135deg,var(--cta-from),var(--cta-to));
  color:#fff;
  padding:7px 14px;border-radius:999px;
  font-size:11.5px;font-weight:800;letter-spacing:.9px;
  margin-bottom:14px;
  box-shadow:0 6px 18px var(--cta-shadow);
}
.hero h1{
  font-size:clamp(28px,5vw,42px);
  font-weight:900;line-height:1.15;
  margin-bottom:14px;color:var(--text-dark);
}
.hl{color:var(--pharma-blue)}
.sub{
  color:var(--text);font-size:15px;
  max-width:620px;margin:0 auto 22px;
}
.hero-img-wrap{
  margin:18px auto 24px;
  max-width:600px;
  position:relative;
}
.hero-img-wrap img{
  width:100%;
  filter: drop-shadow(0 16px 32px rgba(0,10,40,0.15));
}
.hero-img-no-card img{
  border-radius: 0; box-shadow: none; max-width: 100%; height: auto; object-fit: contain; margin: 0 auto;
}
.cta-primary{
  display:inline-block;
  background:linear-gradient(180deg,var(--cta-from) 0%,var(--cta-to) 100%);
  color:#fff;font-weight:900;font-size:16px;
  padding:18px 26px;border-radius:14px;
  box-shadow:0 14px 30px var(--cta-shadow), inset 0 1px 0 rgba(255,255,255,.25);
  text-transform:uppercase;letter-spacing:.5px;
  transition:transform .15s ease, box-shadow .15s ease;
  animation:pulse 2.4s ease-in-out infinite;
}
.cta-primary:hover{transform:translateY(-2px);box-shadow:0 18px 38px var(--cta-shadow)}
.cta-primary.small{padding:14px 20px;font-size:14px;margin:8px 0 18px}
@keyframes pulse{
  0%,100%{box-shadow:0 14px 30px var(--cta-shadow), inset 0 1px 0 rgba(255,255,255,.25);}
  50%{box-shadow:0 18px 42px var(--cta-shadow), inset 0 1px 0 rgba(255,255,255,.25);}
}
.social-proof{
  margin-top:22px;font-size:14px;color:var(--text);
  display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;
}
.stars{color:var(--gold);letter-spacing:2px}
.trust-row{color:var(--text-muted);font-size:13px;margin-top:8px}

/* ============ SECTIONS ============ */
.section{padding:64px 20px}
.section-light{background:var(--bg-soft);color:var(--text-dark)}
.section-dark{background:var(--bg-blue-tint);color:var(--text-dark)}
.section-darker{background:var(--bg-navy-tint);color:var(--text-dark)}
.section-blue-clean{background: linear-gradient(180deg, #fff 0%, var(--bg-blue-tint) 100%);}
.section-urgency{
  background:linear-gradient(180deg,var(--pharma-blue-soft) 0%,var(--bg-blue-tint) 100%);
  color:var(--text-dark);
  border-top:1.5px solid rgba(0,123,255,.20);
  border-bottom:1.5px solid rgba(0,123,255,.20);
}
.section-bonus{
  background:
    radial-gradient(circle at 80% 20%,rgba(239,184,73,.10),transparent 50%),
    var(--bg-cream);
  color:var(--text-dark);
}
.container{max-width:1100px;margin:0 auto}
.container.narrow{max-width:760px}
.center{text-align:center}

.section-title{
  font-size:clamp(24px,4vw,34px);
  font-weight:900;text-align:center;
  margin-bottom:10px;line-height:1.2;color:var(--text-dark);
}
.section-sub{
  text-align:center;color:var(--text-muted);
  max-width:620px;margin:0 auto 36px;font-size:15px;
}

/* ============ ROUTINE SECTION ============ */
.section-routine {
  background: #fff;
}
.routine-eyebrow {
  text-transform: uppercase; font-size: 11px; font-weight: 900; color: var(--text-soft); letter-spacing: 1px; margin-bottom: 8px;
}
.routine-title-accent {
  background: linear-gradient(90deg, var(--pharma-navy), var(--pharma-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.routine-list {
  display: flex; flex-direction: column; gap: 8px; max-width: 760px; margin: 0 auto;
}
.routine-row {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 12px;
}
.routine-row.bad-row {
  background: #fdf2f2; border: 1px solid rgba(239,68,68,0.1);
}
.routine-row.good-row {
  background: #f0fdf4; border: 1px solid rgba(34,197,94,0.1); margin-bottom: 16px;
}
.routine-badge {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-weight: bold; flex-shrink: 0; font-size: 14px;
}
.routine-badge.bad { background: #ef4444; color: #fff; }
.routine-badge.good { background: #22c55e; color: #fff; }
.routine-text {
  font-size: 15px; font-weight: 500; color: var(--text-dark); line-height: 1.4;
}

/* ============ SECTION SYSTEMS (MARQUEE / TIMELINE) ============ */
.jlpt-head{text-align:center;margin-bottom:40px}

/* Auto-scroll marquee for modules/systems */
.auto-scroll-marquee {
  width: 100%; overflow: hidden; white-space: nowrap; position: relative; padding: 20px 0;
}
.auto-scroll-marquee::before, .auto-scroll-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
}
.auto-scroll-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-soft) 0%, transparent 100%); }
.auto-scroll-marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-soft) 0%, transparent 100%); }

.modules-track {
  display: inline-flex; gap: 20px;
  animation: scrollModules 30s linear infinite;
}
.module-block {
  width: 240px; flex-shrink: 0; background: #fff; padding: 20px; border-radius: 12px;
  border: 1px solid var(--border); box-shadow: var(--shadow-soft); text-align: left;
  white-space: normal; /* allow text wrapping inside block */
}
.module-eyebrow {
  display: inline-block; background: var(--bg-blue-tint); color: var(--pharma-blue);
  font-size: 11px; font-weight: 900; text-transform: uppercase; padding: 4px 10px;
  border-radius: 6px; margin-bottom: 12px;
}
.module-title {
  font-size: 15px; font-weight: 800; color: var(--pharma-navy); line-height: 1.4;
}

@keyframes scrollModules {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 2 - 10px)); }
}


/* ============ CAROUSEL MARQUEE (MAPS) ============ */
.marquee{
  width:100%;overflow:hidden;white-space:nowrap;
  padding:20px 0;position:relative;
}
.marquee::before, .marquee::after {
  content:"";position:absolute;top:0;bottom:0;width:60px;z-index:2;
}
.marquee::before { left:0; background:linear-gradient(90deg,var(--bg-blue-tint) 0%,transparent 100%); }
.marquee::after { right:0; background:linear-gradient(-90deg,var(--bg-blue-tint) 0%,transparent 100%); }
.marquee-track{
  display:inline-flex;gap:20px;
  animation:scrollMarquee 40s linear infinite;
}
.marquee-item{
  width:420px; height: 300px; flex-shrink:0; border-radius:12px;
  display: flex; align-items: center; justify-content: center;
}
.marquee-item img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}
@media (max-width: 768px) {
  .marquee-item { width: 320px; height: 240px; }
}
@keyframes scrollMarquee{ 0%{transform:translateX(0)} 100%{transform:translateX(calc(-100% / 2 - 10px))} }

/* ============ PROBLEM GRID ============ */
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 32px;
}
.pain-card {
  background: #fff; padding: 20px; border-radius: 12px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.05);
}
.pain-icon {
  background: #fee2e2; color: #ef4444; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 12px; font-weight: bold; flex-shrink: 0;
}
.pain-text {
  font-size: 15px; font-weight: 500; color: var(--text-dark); line-height: 1.4;
}
.pain-resolver-card {
  background: linear-gradient(135deg, var(--pharma-navy), var(--pharma-navy-light));
  color: #fff; border-radius: 12px; padding: 24px; text-align: center;
  font-weight: 800; font-size: 16px; box-shadow: var(--shadow-md);
}

/* ============ TESTIMONIALS CAROUSEL ============ */
.dep-marquee{
  width:100%;overflow:hidden;white-space:nowrap;
  padding:20px 0;position:relative;
}
.dep-marquee-track{
  display:inline-flex;gap:20px;
  animation:scrollMarqueeDep 45s linear infinite;
}
.dep-card{
  width:320px;flex-shrink:0;border-radius:16px;overflow:hidden;
  box-shadow:var(--shadow-soft);border:1px solid var(--border);
  background:#fff;padding:24px;display:flex;flex-direction:column; gap:16px;
  white-space: normal; /* allow text wrapping */
}
.dep-stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.dep-text { font-size: 14px; color: var(--text-dark); font-style: italic; line-height: 1.5; flex-grow: 1; }
.dep-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--bg-navy-tint); padding-top: 16px;}
.dep-avatar-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.dep-avatar-text { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px;}
.dep-name { font-size: 14px; font-weight: 800; color: var(--pharma-navy); margin-bottom: 2px; }
.dep-role { font-size: 12px; color: var(--text-muted); }

@keyframes scrollMarqueeDep{ 0%{transform:translateX(0)} 100%{transform:translateX(calc(-100% / 2 - 10px))} }

/* ============ WHAT YOU GET ============ */
.receive-split{
  display:flex;align-items:center;gap:48px;background:#fff;
  border-radius:24px;padding:48px;box-shadow:var(--shadow-md);
}
.receive-image{flex:1;text-align:center}
.receive-image img{width:100%;max-width:400px;margin:0 auto; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));}
.receive-content{flex:1}
.receive-badge{
  display:inline-block;background:var(--bg-blue-tint);color:var(--pharma-blue);
  font-size:12px;font-weight:900;padding:6px 12px;border-radius:8px;margin-bottom:24px;
}
.receive-cards-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px;
}
.receive-mini-card {
  display: flex; gap: 12px; align-items: center;
  background: var(--bg-soft); padding: 12px 16px; border-radius: 8px;
}
.receive-mini-badge {
  background: var(--pharma-blue); color: #fff; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  font-size: 12px; font-weight: bold; flex-shrink: 0;
}
.receive-mini-text { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.receive-foot{font-weight:700;color:var(--text-dark); font-size: 14px;}

@media (max-width:800px){
  .receive-split{flex-direction:column;padding:24px}
}

/* ============ BONUSES ============ */
.bonus-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:24px; margin-bottom: 40px;
}
.bonus-card{
  background:#fff;border-radius:16px;padding:24px;
  border:1px solid var(--border);box-shadow:var(--shadow-soft);
  text-align:center;position:relative;
}
.bonus-card.hot{border:2px solid var(--color-terracotta);box-shadow:0 8px 30px rgba(230,81,0,.2)}
.bonus-tag{
  position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--color-terracotta);color:#fff;font-size:11px;font-weight:900;
  padding:4px 12px;border-radius:12px;letter-spacing:.5px;white-space:nowrap;
}
.bonus-card__image {
  margin-bottom: 16px; height: 160px;
}
.bonus-card__image img{height:100%; width: 100%; object-fit:contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));}
.bonus-card h3{font-size:16px;font-weight:800;color:var(--pharma-navy);margin-bottom:8px}
.bonus-card p{font-size:14px;color:var(--text);margin-bottom:16px}
.bonus-price{display:flex;flex-direction:column;gap:4px}
.strike{text-decoration:line-through;color:var(--text-muted);font-size:13px}
.free{color:#10b981;font-weight:900;font-size:15px}

.bonus__summary {
  background: var(--bg-cream); border: 2px dashed var(--border-strong);
  border-radius: 16px; padding: 24px; text-align: center; max-width: 600px; margin: 0 auto;
}
.bonus__summary-title { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.bonus__summary-prices { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 12px; font-size: 24px; font-weight: 900; }
.bonus__summary-old { text-decoration: line-through; color: var(--text-muted); font-size: 20px;}
.bonus__summary-arrow { color: var(--text-muted); }
.bonus__summary-free { color: #10b981; }
.bonus__summary-subtitle { font-size: 14px; color: var(--text); }

/* ============ PRICING ============ */
.scarcity-box {
  background: #fff; border: 1px solid #fee2e2; border-radius: 12px;
  padding: 16px; text-align: center; max-width: 600px; margin: 0 auto 32px;
  box-shadow: 0 4px 12px rgba(239,68,68,0.05);
}
.scarcity-badge {
  display: inline-block; background: #ef4444; color: #fff; font-size: 12px;
  font-weight: 900; padding: 4px 12px; border-radius: 8px; margin-bottom: 8px;
}
.scarcity-text { font-size: 15px; font-weight: 700; color: var(--text-dark); }

.plans-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start;
}
.plan-card{
  background:#fff;border-radius:24px;padding:32px;
  border:1px solid var(--border);box-shadow:var(--shadow-soft);
  position:relative;display:flex;flex-direction:column;
}
.plan-label{
  display:inline-block;background:var(--bg-navy-tint);color:var(--text-muted);
  font-size:12px;font-weight:900;padding:6px 12px;border-radius:8px;margin-bottom:24px;
}
.basic-cover img, .premium-cover img{
  width:100%;max-width:240px;margin:0 auto 24px; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
}
.plan-title{font-size:22px;font-weight:900;color:var(--pharma-navy);margin-bottom:24px; text-align: center;}
.plan-list{list-style:none;margin-bottom:24px;flex-grow:1}
.plan-list li{
  position:relative;padding-left:28px;margin-bottom:12px;
  font-size:14px;color:var(--text);font-weight:500;
}
.plan-list li.ok::before{
  content:"✓";position:absolute;left:0;top:2px;
  color:#fff;background:var(--pharma-blue);
  width:20px;height:20px;display:flex;align-items:center;justify-content:center;
  border-radius:50%;font-size:12px;font-weight:bold;
}
.plan-list li.locked::before{
  content:"✕";position:absolute;left:0;top:2px;
  color:var(--text-muted);background:var(--bg-navy-tint);
  width:20px;height:20px;display:flex;align-items:center;justify-content:center;
  border-radius:50%;font-size:12px;font-weight:bold;
}
.plan-price-label{font-size:14px;color:var(--text-muted);margin-bottom:4px; text-align: center;}
.plan-price{font-size:36px;font-weight:900;color:var(--text-dark);margin-bottom:4px; text-align: center;}
.plan-foot{font-size:13px;color:var(--text-muted);margin-bottom:24px; text-align: center;}

.cta-secondary{
  display:block;background:var(--bg-navy-tint);color:var(--text-dark);
  font-weight:800;font-size:15px;padding:16px 20px;border-radius:12px;
  text-align:center;transition:background .2s ease; margin-bottom: 24px;
}
.cta-secondary:hover{background:#cbd5e1}

.basic-nudge-card {
  background: var(--bg-soft); border: 1px dashed var(--border-strong);
  border-radius: 12px; padding: 16px; text-align: center;
}
.nudge-badge-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; }
.nudge-pct { background: var(--accent); color: white; font-weight: 900; font-size: 12px; padding: 2px 8px; border-radius: 4px;}
.nudge-badge-text { font-size: 12px; font-weight: 800; color: var(--text-dark); }
.nudge-description { font-size: 13px; color: var(--text); margin-bottom: 12px; }
.nudge-highlight { color: #ef4444; font-weight: 800; }
.nudge-bold { font-weight: 800; color: var(--text-dark); }
.nudge-link { font-size: 13px; font-weight: 800; color: var(--pharma-blue); text-decoration: underline; }


.premium{
  border:2px solid var(--pharma-blue);box-shadow:var(--shadow-blue);
}
.premium .plan-label{background:var(--pharma-blue);color:#fff}
.ribbon{
  position:absolute;top:-14px;right:24px;
  background:var(--gold);color:#fff;font-size:11px;font-weight:900;
  padding:6px 16px;border-radius:12px;letter-spacing:.5px;
}
.bonus-list-mini{
  background:var(--bg-cream);border-radius:12px;padding:16px;
}
.bonus-list-mini p{font-size:13px;color:var(--text-dark);margin-bottom:6px}
.bonus-list-mini p:last-child{margin-bottom:0}

.premium-price-block{text-align:center;margin-bottom:24px}
.premium-price-block .plan-price{font-size:42px;color:var(--pharma-blue)}
.plan-installments{font-size:14px;color:var(--text-dark)}
.cta-vip{width:100%;text-align:center;font-size:18px;padding:20px; display: block;}

.payment-foot{text-align:center;margin-top:32px;font-size:14px;color:var(--text-muted)}

@media (max-width:900px){
  .plans-grid{grid-template-columns:1fr}
}

/* ============ FAQ ============ */
.faq{display:flex;flex-direction:column;gap:12px}
details{
  background:#fff;border-radius:12px;padding:20px;
  border:1px solid var(--border);box-shadow:var(--shadow-soft);
}
summary{font-weight:800;font-size:16px;color:var(--pharma-navy);cursor:pointer;list-style:none;outline:none}
summary::-webkit-details-marker{display:none}
details p{margin-top:12px;font-size:15px;color:var(--text);line-height:1.5}

/* ============ FOOTER ============ */
.footer{
  background:var(--pharma-navy-dark);color:var(--text-soft);
  padding:48px 20px;text-align:center;
}
.footer-brand{font-family:'Outfit',sans-serif;font-size:20px;font-weight:900;color:#fff;margin-bottom:12px}
.footer-tag{font-size:14px;max-width:500px;margin:0 auto 24px}
.footer-legal{font-size:12px;color:#475569;max-width:700px;margin:0 auto 24px}
.footer-copy{font-size:13px}

/* ============ EXIT INTENT MODAL ============ */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 10, 40, 0.85); backdrop-filter: blur(5px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.dark-modal {
  background: #090e17; border-radius: 16px; padding: 40px; max-width: 700px;
  width: 100%; text-align: center; position: relative;
  transform: translateY(20px) scale(0.95); transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
  border: 1px solid #00f0ff;
}
.modal-overlay.active .dark-modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  font-size: 24px; color: #fff; cursor: pointer; padding: 8px; font-weight: bold;
}

.modal-header { margin-bottom: 32px; }
.modal-badge-red {
  display: inline-block; background: #ef4444; color: #fff; font-size: 13px;
  font-weight: 800; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px;
}
.modal-title-white {
  font-size: 22px; font-weight: 900; color: #fff; line-height: 1.3;
}

.modal-split {
  display: flex; gap: 32px; align-items: center; text-align: left;
}
.modal-img { flex: 1; }
.modal-img img {
  width: 100%; max-width: 260px; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
}
.modal-info { flex: 1.2; display: flex; flex-direction: column; gap: 12px; }
.modal-info-top { color: #a0aec0; font-size: 16px; margin-bottom: 8px; font-weight: 500; }
.modal-price-block { margin-bottom: 16px; }
.modal-price-old {
  color: #718096; font-size: 16px; text-decoration: line-through; display: block; margin-bottom: 4px;
}
.modal-price-new {
  color: #10b981; font-size: 48px; font-weight: 900; line-height: 1; display: block;
}

.cta-green {
  background: #10b981; color: #fff; padding: 18px 20px; border-radius: 8px;
  font-size: 16px; font-weight: 900; text-align: center; text-decoration: none;
  display: inline-block; width: 100%; transition: background 0.2s;
}
.cta-green:hover { background: #059669; }

.modal-text-btn-grey {
  background: none; border: none; font-size: 14px; color: #718096;
  text-decoration: underline; margin-top: 12px; cursor: pointer; width: 100%;
}

@media (max-width: 768px) {
  .modal-split { flex-direction: column; gap: 24px; text-align: center; }
  .modal-img img { max-width: 200px; margin: 0 auto; display: block;}
  .modal-info { align-items: center; }
  .modal-price-new { font-size: 40px; }
}
.modal-text-btn {
  background: none; border: none; font-size: 13px; color: var(--text-muted);
  text-decoration: underline; margin-top: 20px; cursor: pointer;
}

/* ============ SECTION HEADERS (EYEBROWS) ============ */
.material-head, .ideal-head {
  text-align: center;
  margin-bottom: 40px;
}
.material-eyebrow {
  display: inline-block;
  background: var(--bg-blue-tint);
  color: var(--pharma-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
