/* ═══════════════════════════════════════════
   BREATHIZEN — FULL CONVERSION PAGE (EN-US)
   Model: index.html (Fitness Keto structure)
   Colors: #4661bf / #76a7ed / #ac2d8f / #141414 / #edf2fb / #fff
═══════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;scroll-padding-top:68px}

:root{
  --brand:#4661bf;
  --brand-dark:#3550a8;
  --brand-glow:#4661bf;
  --brand-light:#76a7ed;
  --accent:#ac2d8f;
  --accent-dark:#8f2275;
  --gold:#f5c518;
  --gold-light:#ffd15c;
  --amber:#f5c518;
  --amber-dark:#d4a910;
  --red:#d24739;
  --black:#f8f9ff;
  --dark:#edf2fb;
  --dark-2:#e4ecf8;
  --dark-3:#d9e6f5;
  --dark-4:#cddaf0;
  --dark-card:#f2f6fc;
  --white:#141414;
  --off-white:#222;
  --grey-text:#5a6070;
  --light-text:#3a3f50;
  --border-dark:rgba(20,20,20,.10);
  --border-blue:rgba(70,97,191,.28);
  --radius:14px;
  --radius-sm:8px;
  --shadow-blue:0 8px 32px rgba(70,97,191,.18);
  --shadow-dark:0 8px 32px rgba(20,20,20,.10);
  --tr:all .28s cubic-bezier(.4,0,.2,1);
  --font-display:'Barlow Condensed',sans-serif;
  --font-body:'DM Sans',sans-serif;
  --cream-2:#edf2fb;
  --green:#4661bf;
  --border:rgba(20,20,20,.12);
  --text-dark:#141414;
  --text-muted:#5a6070;
  --text-mid:#3a3f50;
  --navy:#141414;
  --navy-dark:#0a0a0a;
}

body{font-family:var(--font-body);color:var(--white);background:var(--black);overflow-x:hidden;line-height:1.7;padding-top:98px}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 24px}

/* ═══ SCROLL REVEAL ═══ */
.rv{opacity:0;transform:translateY(28px);transition:opacity .6s ease,transform .6s ease}
.rv.vi{opacity:1;transform:translateY(0)}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

/* ═══ URGENT BAR ═══ */
.urgent-bar{
  position:fixed;top:0;left:0;right:0;z-index:10001;
  min-height:30px;
  background:linear-gradient(90deg,#3550a8,#4661bf,#3550a8);
  background-size:200% 100%;
  animation:gradShift 4s ease infinite;
  text-align:center;padding:7px 16px;font-size:13px;font-weight:700;letter-spacing:.3px;
  line-height:1.25;color:#fff;
}
.urgent-bar span{color:var(--gold-light)}
.urgent-bar a{color:#fff;text-decoration:underline;text-underline-offset:2px;margin-left:6px}
@keyframes gradShift{0%,100%{background-position:0%}50%{background-position:100%}}

/* ═══ FIXED NAV ═══ */
#main-nav{
  position:fixed;top:30px;left:0;right:0;z-index:10000;
  background:linear-gradient(90deg,#ffffff 0%,#f0f4ff 100%);
  border-bottom:1px solid var(--border-blue);
  box-shadow:0 4px 24px rgba(0,0,0,.08);
  height:68px;display:flex;align-items:center;
}
.nav-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between;gap:16px;width:100%}
.nav-brand{display:inline-flex;align-items:center;justify-content:flex-start;flex-shrink:0;line-height:1}
.nav-brand span{font-family:var(--font-display);font-size:1.5rem;font-weight:800;color:var(--brand);letter-spacing:1px}
.nav-brand span em{color:var(--accent);font-style:normal}
.nav-links{display:flex;align-items:center;gap:4px}
.nav-links a{color:rgba(20,20,20,.75);font-size:14px;font-weight:600;padding:6px 12px;border-radius:6px;transition:var(--tr);letter-spacing:.2px;white-space:nowrap}
.nav-links a:hover{color:#141414;background:rgba(70,97,191,.12)}
.nav-cta{
  background:linear-gradient(135deg,var(--accent),var(--brand));
  color:#fff!important;padding:10px 20px;border-radius:7px;
  font-family:var(--font-display);font-weight:700;font-size:15px;letter-spacing:.5px;text-transform:uppercase;
  box-shadow:0 4px 18px rgba(172,45,143,.40);transition:var(--tr);
  display:inline-flex;align-items:center;gap:7px;white-space:nowrap;flex-shrink:0;
  animation:pulseNav 2.5s ease-in-out infinite;
}
.nav-cta:hover{background:linear-gradient(135deg,var(--brand-dark),var(--accent-dark));transform:translateY(-2px);animation:none}
@keyframes pulseNav{0%,100%{box-shadow:0 4px 18px rgba(172,45,143,.40)}50%{box-shadow:0 6px 28px rgba(172,45,143,.65)}}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:5px;padding:4px}
.nav-toggle span{display:block;width:26px;height:2.5px;background:#141414;border-radius:2px;transition:var(--tr)}
.mobile-nav-cta{display:none}

@media(max-width:960px){
  .nav-links{display:none;position:absolute;top:68px;left:0;right:0;background:#fff;border-bottom:1px solid var(--border-blue);flex-direction:column;align-items:flex-start;padding:14px 20px 18px;gap:0}
  .nav-links.open{display:flex}
  .nav-links a{width:100%;padding:11px 6px;border-bottom:1px solid rgba(20,20,20,.06);border-radius:0;color:rgba(20,20,20,.85)!important}
  .nav-links a:last-child{border-bottom:none}
  .nav-toggle{display:flex}
  .nav-cta{display:none}
  .mobile-nav-cta{display:inline-flex}
}

/* ═══ TRUST MARQUEE ═══ */
.trust-bar{background:var(--brand);padding:11px 0;overflow:hidden}
.marquee-track{display:flex;white-space:nowrap;animation:marquee 22s linear infinite}
.trust-item{display:inline-flex;align-items:center;gap:7px;color:rgba(255,255,255,.9);font-size:12.5px;font-weight:700;padding:0 24px;flex-shrink:0;letter-spacing:.3px}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ═══ SECTIONS ═══ */
.section{padding:80px 0}
.section-dark{background:var(--dark)}
.section-darker{background:var(--black)}
.section-card{background:var(--dark-2)}

/* ═══ LABELS / HEADINGS ═══ */
.section-label{font-family:var(--font-display);font-size:12px;letter-spacing:3px;text-transform:uppercase;color:var(--brand-glow);font-weight:700;margin-bottom:10px;display:block}
h2{font-family:var(--font-display);font-size:clamp(1.9rem,4vw,2.8rem);font-weight:800;line-height:1.15;color:var(--white);margin-bottom:14px;letter-spacing:.5px}
h3{font-family:var(--font-display);font-size:1.4rem;font-weight:700;color:var(--white);margin-bottom:10px;letter-spacing:.3px}
h4{font-family:var(--font-display);font-size:1rem;font-weight:700;color:var(--white);margin-bottom:8px}
p{color:var(--light-text);margin-bottom:14px;line-height:1.78}
.section-title{text-align:center;max-width:760px;margin:0 auto 44px}
.section-title h2::after{content:'';display:block;width:56px;height:3px;background:linear-gradient(90deg,var(--brand),var(--accent));margin:12px auto 0;border-radius:2px}
.section-title p{color:var(--grey-text)}

/* ═══ CTA BUTTONS ═══ */
.btn-cta{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  background:linear-gradient(135deg,var(--accent),var(--brand));
  color:#fff!important;font-family:var(--font-display);font-weight:800;
  font-size:1.1rem;letter-spacing:.8px;text-transform:uppercase;
  padding:17px 40px;border-radius:9px;
  box-shadow:0 6px 28px rgba(172,45,143,.45);
  transition:var(--tr);position:relative;overflow:hidden;
  text-decoration:none;cursor:pointer;border:none;
  animation:pulseCta 2.4s ease-in-out infinite;
}
.btn-cta::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);transition:left .5s ease}
.btn-cta:hover::before{left:100%}
.btn-cta:hover{background:linear-gradient(135deg,var(--brand-dark),var(--accent-dark));transform:translateY(-3px);box-shadow:0 12px 40px rgba(172,45,143,.60);animation:none}
.btn-cta:active{transform:scale(.97)}
.btn-cta-sm{font-size:.9rem;padding:13px 26px;letter-spacing:.5px;animation:none}
.btn-cta-full{width:100%;max-width:540px;display:flex;margin:0 auto}
.btn-cta-wrap{text-align:center;margin:32px 0}
@keyframes pulseCta{0%,100%{box-shadow:0 6px 28px rgba(172,45,143,.45)}50%{box-shadow:0 10px 44px rgba(172,45,143,.75);transform:translateY(-2px)}}

/* ═══ HERO ═══ */
.hero{
  background:radial-gradient(ellipse at 70% 40%,rgba(70,97,191,.10) 0%,transparent 55%),
             linear-gradient(160deg,#f0f4ff 0%,#edf2fb 40%,#f0f4ff 100%);
  position:relative;overflow:hidden;padding:0;min-height:600px;display:flex;flex-direction:column;
}
.hero-noise{position:absolute;inset:0;pointer-events:none;opacity:.015;background-image:url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");background-size:200px}
.hero-grid{display:grid;grid-template-columns:1fr 440px;min-height:600px;align-items:center;position:relative;z-index:1;gap:0}
.hero-left{padding:56px 48px 56px 0;display:flex;flex-direction:column;gap:20px}
.hero-right{position:relative;overflow:hidden;background:linear-gradient(180deg,rgba(70,97,191,.07) 0%,transparent 100%);display:flex;align-items:center;justify-content:center;border-left:1px solid var(--border-blue);min-height:600px}
.hero-right img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block;animation:floatImg 4.2s ease-in-out infinite}
@keyframes floatImg{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}
.hero-badge-float{position:absolute;bottom:24px;left:20px;background:rgba(255,255,255,.95);border:1px solid var(--border-blue);backdrop-filter:blur(8px);border-radius:10px;padding:12px 16px;z-index:2}
.hero-badge-float .big{font-family:var(--font-display);font-size:2rem;font-weight:800;color:var(--brand);line-height:1}
.hero-badge-float .sub{font-size:12px;color:var(--grey-text);margin-top:3px}
.hero-topbar{display:flex;align-items:center;flex-wrap:wrap;gap:16px;margin-bottom:4px}
.hero-label{background:rgba(70,97,191,.10);border:1px solid rgba(70,97,191,.35);color:var(--brand-glow);font-size:11px;font-weight:800;letter-spacing:1.5px;text-transform:uppercase;padding:5px 13px;border-radius:4px;white-space:nowrap}
.hero-anchors{display:flex;gap:8px;flex-wrap:wrap}
.hero-anchors a{font-size:12.5px;font-weight:600;color:rgba(20,20,20,.55);border-bottom:1px solid rgba(20,20,20,.18);padding-bottom:1px;transition:color .15s,border-color .15s;letter-spacing:.2px}
.hero-anchors a:hover{color:var(--brand-glow);border-color:var(--brand-glow)}
.hero h1{font-family:var(--font-display);font-size:clamp(2.1rem,4.5vw,3.2rem);line-height:1.08;color:#141414;font-weight:800;letter-spacing:1px;margin:0}
.hero h1 em{color:var(--brand);font-style:italic}
.hero-sub{font-size:16px;color:rgba(20,20,20,.72);line-height:1.65;max-width:560px}
.hero-sub strong{color:#141414}
.author-badge{display:inline-flex;align-items:center;gap:10px;background:rgba(20,20,20,.04);border:1px solid rgba(20,20,20,.1);border-radius:8px;padding:10px 14px;width:fit-content}
.author-av{width:36px;height:36px;border-radius:50%;background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:13px;flex-shrink:0}
.author-info{font-size:12px;color:rgba(20,20,20,.7);line-height:1.4}
.author-info strong{display:block;color:#141414;font-size:13px}
.hero-verdict{background:rgba(70,97,191,.08);border:1px solid rgba(70,97,191,.28);border-radius:10px;padding:14px 18px;display:flex;align-items:center;gap:14px;max-width:480px}
.verd-score{font-family:var(--font-display);font-size:2.6rem;font-weight:800;color:var(--brand-glow);line-height:1;flex-shrink:0}
.verd-text{font-size:13px;color:#3a3f50;line-height:1.5}
.verd-text strong{color:#141414;display:block;font-size:14px;margin-bottom:2px}
.stars{color:var(--gold);font-size:13px;letter-spacing:1px}
.hero-bullets{list-style:none;display:flex;flex-direction:column;gap:6px}
.hero-bullets li{font-size:13.5px;display:flex;align-items:flex-start;gap:9px;color:#3a3f50;line-height:1.5}
.hero-bullets li span.ok{color:var(--brand-glow);font-weight:900;flex-shrink:0}
.hero-bullets li span.no{color:var(--red);font-weight:900;flex-shrink:0}
.hero-badges{display:flex;gap:8px;flex-wrap:wrap}
.hbadge{background:rgba(20,20,20,.05);border:1px solid rgba(20,20,20,.12);border-radius:6px;padding:6px 11px;font-size:11px;font-weight:700;color:rgba(20,20,20,.78);letter-spacing:.4px;text-transform:uppercase}
.hero-disclaimer{font-size:11px;color:rgba(20,20,20,.45);display:block;margin-top:5px}
.hero-mobile-image{display:none}
@media(max-width:900px){
  .hero-mobile-image{display:block;width:100%;margin:6px 0 2px;border-radius:16px;overflow:hidden;border:1px solid rgba(70,97,191,.3);box-shadow:0 12px 34px rgba(20,20,20,.12)}
  .hero-mobile-image img{width:100%;height:auto;display:block;object-fit:cover;animation:floatImg 4.6s ease-in-out infinite}
}

/* ═══ SCORE CARD ═══ */
.score-card{background:var(--dark-card);border:1px solid var(--border-dark);border-radius:var(--radius);padding:28px 24px;box-shadow:var(--shadow-dark);margin:24px 0}
.score-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.score-item{text-align:center}
.score-num{font-family:var(--font-display);font-size:2.2rem;font-weight:800;color:var(--brand-glow);line-height:1;margin-bottom:6px}
.score-label{font-size:.8rem;color:var(--grey-text);font-weight:600;margin-bottom:8px;text-transform:uppercase;letter-spacing:.5px}
.score-bar{background:rgba(20,20,20,.12);border-radius:999px;height:5px;overflow:hidden}
.score-bar-fill{height:100%;background:linear-gradient(90deg,var(--brand),var(--accent));border-radius:999px}

/* ═══ SALES INTRO ═══ */
.official-intro{background:rgba(70,97,191,.07);border-left:3px solid var(--brand);border-radius:0 var(--radius-sm) var(--radius-sm) 0;padding:18px 22px;margin-bottom:24px}
.official-intro p{font-family:var(--font-display);font-size:1.15rem;color:#141414;margin:0;line-height:1.6;letter-spacing:.2px}

/* ═══ OVERVIEW TABLE ═══ */
.overview-table{width:100%;border-collapse:collapse;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-dark);margin:24px 0}
.overview-table td{padding:12px 18px;border-bottom:1px solid var(--border-dark);font-size:.92rem;vertical-align:top;color:var(--light-text)}
.overview-table tr:last-child td{border-bottom:none}
.overview-table tr:nth-child(even) td{background:rgba(20,20,20,.025)}
.overview-table td:first-child{font-weight:700;color:rgba(20,20,20,.9);white-space:nowrap;width:38%}
.ov-good{color:var(--brand-glow);font-weight:700}
.ov-warn{color:var(--amber-dark);font-weight:700}

/* ═══ PROBLEM / SOLUTION ═══ */
.ps-grid{display:grid;grid-template-columns:400px 1fr;gap:40px;align-items:start;margin:24px 0}
.ps-grid-rev{display:grid;grid-template-columns:1fr 400px;gap:40px;align-items:start;margin:28px 0}
.ps-img{border-radius:var(--radius);overflow:hidden;box-shadow:0 12px 48px rgba(20,20,20,.12);border:1px solid var(--border-dark)}
.ps-img img{width:100%;display:block}
.ps-list{list-style:none;margin:14px 0}
.ps-list li{display:flex;align-items:flex-start;gap:10px;margin-bottom:10px;font-size:15px;color:var(--light-text)}
.icon-bad{color:var(--red);font-weight:900;flex-shrink:0;margin-top:2px}
.icon-good{color:var(--brand-glow);font-weight:900;flex-shrink:0;margin-top:2px}
.solution-cta-box{background:rgba(70,97,191,.07);border:1px solid var(--border-blue);border-left:4px solid var(--brand);border-radius:var(--radius-sm);padding:16px 18px;margin-top:18px;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.cta-text strong{display:block;font-size:.92rem;color:#141414;margin-bottom:2px}
.cta-text span{font-size:.8rem;color:var(--grey-text)}
.solution-cta-box a{display:inline-block;background:var(--brand);color:#fff;font-family:var(--font-display);font-weight:700;font-size:.9rem;padding:11px 20px;border-radius:6px;white-space:nowrap;letter-spacing:.5px;text-transform:uppercase;transition:background .2s}
.solution-cta-box a:hover{background:var(--brand-dark)}

/* ═══ HOW IT WORKS ═══ */
.how-grid{display:grid;grid-template-columns:360px 1fr;gap:48px;align-items:start}
.how-media-stack{display:flex;flex-direction:column;gap:14px}
.how-media-slot{border-radius:var(--radius-sm);overflow:hidden;box-shadow:var(--shadow-dark);border:1px solid var(--border-dark)}
.how-list{list-style:none;display:flex;flex-direction:column;gap:9px;margin:14px 0 18px}
.how-list li{display:flex;align-items:flex-start;gap:10px;font-size:.95rem;color:var(--light-text);line-height:1.55}
.how-list li::before{content:'→';color:var(--brand-glow);font-weight:900;flex-shrink:0;margin-top:1px;font-family:var(--font-display)}

/* ═══ HOW TO USE STEPS ═══ */
#how-to-use{background:var(--cream-2);padding:80px 0}
#how-to-use .steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:28px}
#how-to-use .step-card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:22px 18px;text-align:center}
#how-to-use .step-num{width:34px;height:34px;border-radius:50%;background:var(--brand);color:#fff;font-weight:700;font-size:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 12px}
#how-to-use .step-card h4{font-family:var(--font-display);font-size:1rem;color:var(--text-dark);margin-bottom:7px}
#how-to-use .step-card p{font-size:13px;color:var(--text-muted);margin:0;line-height:1.6}
#how-to-use .step-note{background:#fff;border:1px solid var(--border);border-radius:10px;padding:18px 24px;margin-top:24px;text-align:center}
#how-to-use .step-note p{margin:0;font-size:14px;color:var(--text-mid)}

/* ═══ INGREDIENTS ═══ */
.ingredient-box{display:flex;align-items:flex-start;gap:18px;background:var(--dark-card);border:1px solid var(--border-dark);border-radius:var(--radius);padding:20px 22px;margin-bottom:12px;box-shadow:var(--shadow-dark);transition:var(--tr);cursor:default}
.ingredient-box:hover{border-color:var(--border-blue);transform:translateX(4px)}
.ingredient-icon{width:60px;height:60px;min-width:60px;border-radius:12px;background:rgba(70,97,191,.10);border:1px solid var(--border-blue);display:flex;align-items:center;justify-content:center;font-size:1.7rem;flex-shrink:0;overflow:hidden}
.ingredient-icon img{width:100%;height:100%;object-fit:cover}
.ingredient-content h4{font-family:var(--font-display);font-size:1.05rem;color:var(--white);margin-bottom:5px;letter-spacing:.3px}
.ingredient-content p{font-size:.88rem;color:var(--grey-text);line-height:1.65;margin:0}


/* ═══ COMPACT INGREDIENT GALLERY ═══ */
.ingredients-gallery{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin:28px auto 24px;
}
.ingredient-gallery-card{
  background:#fff;
  border:1px solid rgba(20,20,20,.14);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(20,20,20,.08);
  transition:var(--tr);
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.ingredient-gallery-card:hover{
  transform:translateY(-4px);
  border-color:rgba(70,97,191,.38);
  box-shadow:0 16px 38px rgba(70,97,191,.14);
}
.ingredient-gallery-img{
  width:100%;
  aspect-ratio:1.25/1;
  background:#e4ecf8;
  overflow:hidden;
}
.ingredient-gallery-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.ingredient-gallery-body{
  padding:12px 12px 14px;
  text-align:center;
}
.ingredient-gallery-body h4{
  font-family:var(--font-display);
  font-size:.94rem;
  line-height:1.15;
  color:#141414;
  margin:0 0 7px;
  letter-spacing:.2px;
}
.ingredient-gallery-body p{
  font-size:.77rem;
  line-height:1.48;
  color:var(--grey-text);
  margin:0;
}
.ingredient-summary{
  background:rgba(70,97,191,.07);
  border:1px solid var(--border-blue);
  border-left:4px solid var(--brand);
  border-radius:10px;
  padding:15px 18px;
  color:var(--grey-text);
  font-size:.92rem;
  line-height:1.65;
  max-width:920px;
  margin:6px auto 0;
}
.ingredient-summary strong{color:#141414}
@media(max-width:1050px){
  .ingredients-gallery{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:720px){
  .ingredients-gallery{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .ingredient-gallery-body{padding:10px 10px 12px}
  .ingredient-gallery-body p{font-size:.73rem;line-height:1.42}
}
@media(max-width:420px){
  .ingredients-gallery{grid-template-columns:1fr}
}

/* ═══ COMPARISON TABLE ═══ */
.comparison-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin-top:24px}
.comparison-table{width:100%;border-collapse:collapse;font-size:14px;min-width:520px;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-dark)}
.comparison-table thead th{background:#dde5f5;color:var(--grey-text);font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.8px;padding:14px 16px;text-align:center}
.comparison-table thead th:first-child{text-align:left}
.comparison-table .product-col-header{background:rgba(70,97,191,.75)!important;color:#fff!important}
.comparison-table tbody td{padding:13px 16px;border-bottom:1px solid var(--border-dark);font-size:.88rem;text-align:center;vertical-align:middle;color:var(--light-text);background:#fff}
.comparison-table tbody td:first-child{text-align:left;font-weight:600;color:var(--white)}
.comparison-table .highlighted-row td{background:rgba(70,97,191,.04)}
.check-yes{color:var(--brand-glow);font-weight:800;font-size:1rem}
.check-no{color:var(--red);font-weight:800}
.check-maybe{color:var(--amber-dark);font-weight:700;font-size:.82rem}

/* ═══ BUYER RESULTS ═══ */
.buyer-reports-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:24px}
.offer-card{background:var(--dark-card);border:1px solid var(--border-dark);border-radius:var(--radius);padding:22px;transition:var(--tr);border-top:3px solid var(--brand)}
.offer-card.accent-top{border-top-color:var(--accent)}
.offer-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-dark)}
.offer-header{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.offer-avatar{width:52px;height:52px;border-radius:50%;background:rgba(70,97,191,.15);border:2px solid var(--border-blue);flex-shrink:0;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:14px;color:var(--brand);overflow:hidden}
.offer-avatar img{width:100%;height:100%;object-fit:cover;display:block}
.offer-name{font-weight:600;font-size:14px;color:var(--white)}
.verified-badge{font-size:11px;color:var(--brand-glow);font-weight:700;background:rgba(70,97,191,.10);padding:2px 7px;border-radius:4px}
.offer-text{font-size:14px;color:var(--grey-text);line-height:1.7;font-style:italic}
.stars-small{color:var(--gold);font-size:13px;margin-bottom:8px;letter-spacing:1px}
.rating-summary{background:var(--dark-card);border:1px solid var(--border-dark);border-radius:var(--radius);padding:28px 32px;margin:0 auto 36px;display:flex;flex-wrap:wrap;gap:32px;align-items:center;box-shadow:var(--shadow-dark);max-width:860px}
.rating-score{text-align:center;min-width:140px}
.big-num{font-family:var(--font-display);font-size:4.5rem;font-weight:800;color:var(--brand-glow);line-height:1}
.big-stars{color:var(--gold);font-size:1.4rem;letter-spacing:3px;margin:6px 0 4px}
.big-count{font-size:.83rem;color:var(--grey-text);font-weight:700}
.rating-bars{flex:1;min-width:240px;display:flex;flex-direction:column;gap:10px}
.rating-bar-row{display:flex;align-items:center;gap:10px}
.rating-bar-label{font-size:.83rem;color:var(--grey-text);width:40px;text-align:right}
.rating-bar-track{flex:1;background:rgba(20,20,20,.12);border-radius:999px;height:9px;overflow:hidden}
.rating-bar-fill{height:100%;background:var(--gold);border-radius:999px}
.rating-bar-pct{font-size:.82rem;color:var(--grey-text);width:34px}

/* ═══ SCAM SECTION ═══ */
.scam-stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:24px 0}
.scam-stat-card{background:#fff4f3;border:1px solid rgba(210,71,57,.20);border-top:4px solid var(--red);border-radius:var(--radius);padding:24px 16px;text-align:center;box-shadow:var(--shadow-dark)}
.scam-stat-number{font-family:var(--font-display);font-size:2.6rem;font-weight:800;color:var(--red);line-height:1;margin-bottom:8px}
.scam-stat-label{font-size:.85rem;color:var(--grey-text);line-height:1.5}
.scam-split{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin:24px 0}
.scam-warning-card{background:rgba(210,71,57,.05);border:1.5px solid rgba(210,71,57,.25);border-radius:var(--radius);padding:24px 22px}
.scam-warning-title{display:flex;align-items:center;gap:8px;font-weight:700;font-size:.97rem;color:var(--red);margin-bottom:16px;padding-bottom:10px;border-bottom:1px solid rgba(210,71,57,.2)}
.scam-avoid-list{list-style:none;display:flex;flex-direction:column;gap:12px}
.scam-avoid-list li{display:flex;align-items:flex-start;gap:10px}
.scam-avoid-list strong{display:block;font-size:.9rem;color:var(--white);margin-bottom:2px}
.scam-avoid-list p{font-size:.83rem;color:var(--grey-text);margin:0;line-height:1.5}
.scam-rules-card{background:rgba(70,97,191,.06);border:1.5px solid rgba(70,97,191,.20);border-radius:var(--radius);padding:24px 22px;position:relative}
.scam-rules-card::before{content:'';position:absolute;top:0;left:0;width:4px;height:100%;background:var(--brand-glow);border-radius:var(--radius) 0 0 var(--radius)}
.scam-rules-title{display:flex;align-items:center;gap:8px;font-weight:700;font-size:.97rem;color:var(--brand);margin-bottom:16px;padding-bottom:10px;border-bottom:1px solid rgba(70,97,191,.2)}
.scam-rules-list{list-style:none;display:flex;flex-direction:column;gap:12px}
.scam-rules-list li{display:flex;align-items:flex-start;gap:10px}
.scam-rule-num{background:var(--brand-glow);color:#fff;width:24px;height:24px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-size:.72rem;font-weight:800;flex-shrink:0;margin-top:1px}
.scam-rules-list strong{display:block;font-size:.9rem;color:var(--brand-glow);margin-bottom:2px}
.scam-rules-list p{font-size:.83rem;color:var(--grey-text);margin:0;line-height:1.5}

/* ═══ PRICING ═══ */
.pricing-section{background:linear-gradient(180deg,#edf2fb 0%,#e4ecf8 50%,#edf2fb 100%);padding:80px 0;position:relative;overflow:hidden}
.pricing-section::before{content:'';position:absolute;inset:0;pointer-events:none;background:radial-gradient(ellipse at center top,rgba(70,97,191,.08) 0%,transparent 60%)}
.offer-title{font-family:var(--font-display);font-size:clamp(1.8rem,4vw,2.6rem);font-weight:800;color:var(--white);text-align:center;margin-bottom:10px;line-height:1.15;position:relative;z-index:1;letter-spacing:.5px}
.offer-sub{font-size:1rem;color:#5a6070;text-align:center;max-width:680px;margin:0 auto 36px;line-height:1.72;position:relative;z-index:1}
.price-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:36px;position:relative;z-index:1}
.price-card{background:#fff;border:1px solid var(--border-dark);border-radius:var(--radius);padding:28px 16px;text-align:center;position:relative;transition:var(--tr);box-shadow:0 2px 12px rgba(20,20,20,.07)}
.price-card:hover{background:#f5f8ff;border-color:var(--border-blue);transform:translateY(-5px);box-shadow:var(--shadow-blue)}
.price-card.featured{background:rgba(70,97,191,.07);border:2px solid var(--brand);transform:scale(1.04)}
.price-card.featured:hover{transform:scale(1.04) translateY(-4px)}
.price-card.best-val{background:rgba(172,45,143,.06);border:2px solid var(--accent)}
.has-badge{padding-top:46px}
.price-badge{position:absolute;top:-1px;left:50%;transform:translateX(-50%);background:var(--brand);color:#fff;font-family:var(--font-display);font-size:.68rem;font-weight:800;text-transform:uppercase;letter-spacing:1.2px;padding:5px 18px;border-radius:0 0 10px 10px;white-space:nowrap}
.price-card.best-val .price-badge{background:var(--accent)}
.bottles{font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--grey-text);margin-bottom:4px}
.price-title{font-family:var(--font-display);font-size:1.05rem;font-weight:700;color:var(--white);margin-bottom:10px;letter-spacing:.3px}
.price-image-slot{min-height:148px;display:flex;align-items:center;justify-content:center;margin:8px auto 14px;padding:10px 8px;border-radius:14px;background:linear-gradient(180deg,rgba(70,97,191,.06),rgba(172,45,143,.04));border:1px dashed rgba(20,20,20,.14)}
.price-image-slot img{width:100%;max-width:150px!important;height:auto;object-fit:contain;margin:0 auto!important;filter:drop-shadow(0 12px 22px rgba(20,20,20,.12))}
.price-card.featured .price-image-slot img,.price-card.best-val .price-image-slot img{max-width:165px!important}
.price-old{font-size:.87rem;color:rgba(20,20,20,.35);text-decoration:line-through;margin-bottom:2px}
.price-new{font-family:var(--font-display);font-size:2.5rem;font-weight:800;color:var(--brand-glow);line-height:1;margin-bottom:2px}
.price-new span{font-size:1.2rem;vertical-align:top;margin-top:5px;display:inline-block}
.price-per{font-size:.76rem;color:var(--grey-text);margin-bottom:14px}
.price-perks{list-style:none;display:flex;flex-direction:column;gap:6px;text-align:left;margin-bottom:18px}
.price-perks li{font-size:.81rem;color:rgba(20,20,20,.65);display:flex;align-items:flex-start;gap:7px}
.price-perks li::before{content:'✓';color:var(--brand-glow);flex-shrink:0;font-weight:900}
.btn-order{display:block;background:linear-gradient(135deg,var(--accent),var(--brand));color:#fff;font-family:var(--font-display);font-weight:800;padding:14px 16px;border-radius:8px;text-decoration:none;font-size:13.5px;letter-spacing:.6px;text-transform:uppercase;transition:all .2s;box-shadow:0 4px 18px rgba(172,45,143,.30);margin-bottom:12px}
.btn-order:hover{background:linear-gradient(135deg,var(--brand-dark),var(--accent-dark));color:#fff;transform:translateY(-2px)}
.countdown-wrap{display:inline-flex;flex-direction:column;align-items:center;gap:4px}
.countdown-label{font-size:.68rem;font-weight:700;letter-spacing:2px;color:var(--grey-text);text-transform:uppercase}
.countdown-timer{font-family:var(--font-display);font-size:3.2rem;font-weight:800;color:var(--brand-glow);letter-spacing:3px;line-height:1;font-variant-numeric:tabular-nums;text-shadow:0 0 20px rgba(70,97,191,.3)}
.offer-timer-text{font-size:.85rem;color:var(--grey-text);text-transform:uppercase;letter-spacing:1px;font-weight:700;margin-bottom:10px}
.urgency-text{text-align:center;font-size:.87rem;color:rgba(20,20,20,.45);margin-top:20px;font-style:italic}

/* ═══ SCIENCE SECTION ═══ */
#science-section{background:var(--cream-2);padding:80px 0}
#science-section .science-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;max-width:840px;margin:0 auto}
#science-section .science-highlight{background:#fff;border:1px solid var(--border-blue);border-radius:10px;padding:14px 18px;margin-top:8px}
#science-section .science-highlight p{margin:0;font-size:13px;color:var(--text-mid)}

/* ═══ TRUST SECTION ═══ */
.trust-section{background:linear-gradient(180deg,#e4ecf8 0%,#edf2fb 100%);padding:72px 0}
.trust-title{text-align:center;margin-bottom:40px}
.trust-title h2{margin-bottom:8px}
.trust-title p{color:var(--grey-text)}
.trust-features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.trust-feat{text-align:center;padding:28px 20px;background:var(--dark-card);border:1px solid var(--border-dark);border-top:3px solid var(--brand);border-radius:var(--radius);transition:var(--tr)}
.trust-feat:hover{background:rgba(70,97,191,.05);transform:translateY(-4px);border-color:var(--border-blue)}
.trust-feat img{width:64px;height:64px;object-fit:contain;margin:0 auto 16px;display:block}
.trust-feat h3{font-size:1.05rem;margin-bottom:10px}
.trust-feat p{font-size:.9rem;color:var(--grey-text);line-height:1.72;margin:0}
.trust-warn{margin-top:28px;text-align:center;color:#7a4c00;font-size:.9rem;line-height:1.6;background:rgba(245,197,24,.12);border:1px solid rgba(245,197,24,.35);border-radius:var(--radius-sm);padding:14px 18px}

/* ═══ GUARANTEE ═══ */
.guarantee-section{background:linear-gradient(160deg,#edf2fb 0%,#e4ecf8 100%);padding:68px 0;border-top:1px solid var(--border-dark);border-bottom:1px solid var(--border-dark)}
.guarantee-section h2{text-align:center}
.guarantee-section p{color:var(--grey-text);text-align:center}
.guarantee-icon{width:180px;max-width:180px;margin:0 auto 18px;display:flex;align-items:center;justify-content:center}
.guarantee-icon img{width:100%;max-width:180px;height:auto;display:block;object-fit:contain}

/* ═══ BONUS / DIGITAL LIBRARY GALLERY ═══ */
section.bg-white{background:#f5f8ff;padding:80px 0}
section.bg-white .container{max-width:1100px;margin:0 auto;padding:0 24px}
.bonus-gallery-section{position:relative;overflow:hidden}
.bonus-gallery-section::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 18%,rgba(70,97,191,.09) 0%,transparent 28%),
    radial-gradient(circle at 88% 70%,rgba(172,45,143,.08) 0%,transparent 30%);
}
.bonus-gallery-section .container{position:relative;z-index:1}
.bonus-gallery-section code{
  background:rgba(70,97,191,.08);
  border:1px solid rgba(70,97,191,.18);
  border-radius:6px;
  padding:1px 6px;
  color:var(--brand);
  font-size:.86em;
}
.bonus-gallery-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
  align-items:stretch;
  margin:30px auto 28px;
}
.bonus-gallery-card{
  background:#fff;
  border:1px solid rgba(20,20,20,.10);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(20,20,20,.09);
  transition:var(--tr);
  display:flex;
  flex-direction:column;
}
.bonus-gallery-card:hover{
  transform:translateY(-5px);
  border-color:rgba(70,97,191,.35);
  box-shadow:0 18px 44px rgba(70,97,191,.16);
}
.bonus-gallery-image{
  min-height:210px;
  background:linear-gradient(180deg,#eef4ff,#ffffff);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px 12px;
  border-bottom:1px solid rgba(20,20,20,.07);
}
.bonus-gallery-image img{
  width:100%;
  max-width:150px;
  height:190px;
  object-fit:contain;
  filter:drop-shadow(0 12px 20px rgba(20,20,20,.16));
  margin:0 auto;
}
.bonus-gallery-body{
  padding:16px 14px 18px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.bonus-number{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(70,97,191,.10);
  border:1px solid rgba(70,97,191,.22);
  color:var(--brand);
  font-size:10px;
  font-weight:900;
  letter-spacing:1.2px;
  text-transform:uppercase;
  padding:4px 8px;
  border-radius:6px;
  margin-bottom:10px;
}
.bonus-gallery-body h3{
  font-family:var(--font-display);
  color:#141414;
  font-size:1.08rem;
  line-height:1.12;
  margin-bottom:8px;
}
.bonus-gallery-body p{
  color:var(--grey-text);
  font-size:.82rem;
  line-height:1.55;
  margin:0;
}
.bonus-gallery-summary{
  background:linear-gradient(135deg,rgba(70,97,191,.10),rgba(172,45,143,.08));
  border:1px solid var(--border-blue);
  border-radius:14px;
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow:var(--shadow-dark);
  margin:0 auto;
  max-width:920px;
}
.bonus-gallery-summary strong{
  display:block;
  color:#141414;
  font-size:1rem;
  margin-bottom:3px;
}
.bonus-gallery-summary span{
  display:block;
  color:var(--grey-text);
  font-size:.9rem;
  line-height:1.55;
}
.bonus-gallery-note{
  text-align:center;
  margin:18px auto 0;
  max-width:740px;
  font-size:13px;
  color:var(--text-muted);
  line-height:1.6;
}
.bonus-card{display:flex;align-items:center;gap:24px;background:#fff;border:1px solid var(--border-blue);border-radius:var(--radius);padding:24px;max-width:640px;margin:24px auto;box-shadow:var(--shadow-dark)}
.bonus-card img{width:120px;height:auto;border-radius:8px;flex-shrink:0}
.bonus-card-body{flex:1}
.bonus-tag{font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:1.5px;color:var(--brand);margin-bottom:6px}
.bonus-card-body h4{font-family:var(--font-display);font-size:1.1rem;color:#141414;margin-bottom:6px}
.bonus-price-old{font-size:.85rem;color:rgba(20,20,20,.4);text-decoration:line-through;margin-bottom:3px}
.bonus-price-free{font-family:var(--font-display);font-size:1.1rem;font-weight:800;color:var(--brand)}

@media(max-width:1100px){
  .bonus-gallery-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:760px){
  .bonus-gallery-grid{grid-template-columns:1fr 1fr;gap:14px}
  .bonus-gallery-summary{flex-direction:column;text-align:center}
  .bonus-gallery-summary .btn-cta{width:100%}
}
@media(max-width:520px){
  .bonus-gallery-grid{grid-template-columns:1fr}
  .bonus-gallery-image{min-height:230px}
  .bonus-gallery-image img{height:205px;max-width:170px}
}

/* ═══ FAQ ═══ */
#faq,#faq *{box-sizing:border-box!important}
.faq-list{display:flex;flex-direction:column;gap:10px;max-width:820px;margin:0 auto}
.faq-item{background:var(--dark-card);border:1px solid var(--border-dark);border-radius:var(--radius-sm);overflow:hidden;box-shadow:var(--shadow-dark);transition:var(--tr)}
.faq-item:hover{border-color:var(--border-blue)}
.faq-question{width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:16px 20px;background:none;border:none;cursor:pointer;text-align:left;font-family:var(--font-body);font-size:.95rem;font-weight:700;color:var(--white);transition:background .2s;position:relative;padding-right:40px}
.faq-question::after{content:'＋';position:absolute;right:16px;top:50%;transform:translateY(-50%);font-size:18px;color:var(--brand-glow);transition:transform .2s}
.faq-question:hover{background:rgba(70,97,191,.06)}
.faq-item.open .faq-question::after{transform:translateY(-50%) rotate(45deg)}
.faq-answer{display:none;padding:0 20px 16px;font-size:.92rem;color:var(--grey-text);line-height:1.72;background:#fff}
.faq-item.open .faq-answer{display:block}

/* ═══ RESULTS GALLERY ═══ */
.results-gallery-section{background:linear-gradient(180deg,#edf2fb 0%,#f5f8ff 100%);padding:54px 0 58px;border-top:1px solid rgba(20,20,20,.06);border-bottom:1px solid rgba(20,20,20,.06)}
.results-gallery-wrap{max-width:980px;margin:0 auto;text-align:center}
.results-gallery-title{margin-bottom:28px}
.results-gallery-title .section-label{display:block;text-align:center;margin-bottom:8px}
.results-gallery-title h2{max-width:760px;margin:0 auto 10px;color:#141414}
.results-gallery-title p{max-width:680px;margin:0 auto;color:var(--grey-text);font-size:.95rem}
.results-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;align-items:stretch}
.results-gallery-card{background:#fff;border:1px solid rgba(20,20,20,.10);border-radius:16px;overflow:hidden;box-shadow:0 10px 34px rgba(20,20,20,.10);transition:all .25s ease;text-align:left}
.results-gallery-card:hover{transform:translateY(-4px);box-shadow:0 16px 42px rgba(20,20,20,.14);border-color:rgba(70,97,191,.35)}
.results-gallery-image{width:100%;aspect-ratio:16/10;background:#f5f8ff;overflow:hidden;display:flex;align-items:center;justify-content:center}
.results-gallery-image img{width:100%;height:100%;object-fit:contain;object-position:center;display:block}
.results-gallery-body{padding:16px 16px 18px}
.results-gallery-body h3{font-family:var(--font-display);font-size:1.15rem;line-height:1.15;color:#141414;margin-bottom:8px}
.results-gallery-body p{color:var(--grey-text);font-size:.88rem;line-height:1.6;margin:0}
.results-gallery-note{max-width:760px;margin:22px auto 0;color:rgba(20,20,20,.50);font-size:.82rem;font-style:italic;line-height:1.6}

/* ═══ POPULAR SECTION ═══ */
.popular-section{background:linear-gradient(135deg,#4661bf 0%,#3550a8 45%,#ac2d8f 100%);padding:56px 0 58px;position:relative;overflow:hidden}
.popular-section::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 18% 35%,rgba(255,255,255,.12) 0%,transparent 26%),radial-gradient(circle at 78% 70%,rgba(255,255,255,.08) 0%,transparent 28%);pointer-events:none}
.popular-grid{position:relative;z-index:1;display:grid;grid-template-columns:460px 1fr;gap:36px;align-items:center}
.popular-media{position:relative;height:420px;min-height:420px;width:100%;overflow:visible}
.popular-product-img{position:absolute;left:-60px;top:50%;transform:translateY(-50%);width:380px;max-width:none!important;height:auto;filter:drop-shadow(0 18px 28px rgba(20,20,20,.22));z-index:2;animation:floatImg 4.2s ease-in-out infinite}
.popular-content{color:#fff;position:relative;z-index:8}
.popular-kicker{font-family:var(--font-display);font-size:clamp(1.8rem,3.3vw,2.7rem);line-height:1.05;font-weight:800;color:#fff;letter-spacing:1px;text-transform:uppercase;margin-bottom:8px}
.popular-title{font-family:var(--font-display);font-size:clamp(2.1rem,4.8vw,3.7rem);line-height:1.02;font-weight:800;color:rgba(255,255,255,.85);letter-spacing:3px;text-transform:uppercase;margin-bottom:24px}
.popular-content p{color:rgba(255,255,255,.9);font-size:1.03rem;line-height:1.68;margin-bottom:16px;max-width:620px;font-weight:500}
.popular-content strong{color:#fff;font-weight:800}
.popular-summary{font-weight:800!important;color:#fff!important;margin-top:18px}
.popular-cta{margin-top:24px}
.popular-cta .btn-cta{background:linear-gradient(135deg,#141414,#222);color:#fff!important;box-shadow:0 10px 34px rgba(20,20,20,.28)}
.popular-cta .btn-cta:hover{background:linear-gradient(135deg,#3550a8,#4661bf);color:#fff!important}

/* ═══ SEO FOOTER ═══ */
.seo-footer-section{background:#e4ecf8;padding:28px 0 16px;border-top:1px solid var(--border-dark)}
.seo-footer-box{text-align:center}
.seo-footer-box h2{font-size:.95rem;font-weight:700;color:rgba(20,20,20,.8);margin-bottom:14px;line-height:1.4;letter-spacing:.2px}
.seo-footer-box p{color:var(--grey-text);font-size:.73rem;font-style:italic;line-height:1.65;margin-bottom:10px;max-width:900px;margin-left:auto;margin-right:auto}
.seo-footer-box strong{color:#141414;font-weight:700}

/* ═══ FOOTER ═══ */
.site-footer{background:#141414;padding:36px 0}
.footer-inner{display:flex;flex-direction:column;align-items:center;gap:16px;text-align:center}
.footer-sitemap{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;max-width:860px;margin:0 auto 24px;text-align:left}
.footer-sitemap-col h4{font-family:var(--font-display);font-size:.75rem;font-weight:700;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:2px;margin-bottom:12px}
.footer-sitemap-col ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.footer-sitemap-col ul li a{font-size:.82rem;color:rgba(255,255,255,.45);transition:color .2s}
.footer-sitemap-col ul li a:hover{color:var(--brand-light)}
.footer-divider{width:100%;max-width:860px;height:1px;background:rgba(255,255,255,.1);margin:4px 0}
.footer-links-row{display:flex;gap:20px;flex-wrap:wrap;justify-content:center}
.footer-links-row a{color:rgba(255,255,255,.4);font-size:.82rem;transition:color .2s}
.footer-links-row a:hover{color:rgba(255,255,255,.8)}
.footer-copy{color:rgba(255,255,255,.35);font-size:.8rem;line-height:1.5}
.footer-disclaimer{color:rgba(255,255,255,.32);font-size:.7rem;font-style:italic;line-height:1.6;max-width:760px}
.footer-disclaimer strong{color:rgba(255,255,255,.72)!important}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1100px){.price-cards{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-right{display:none}
  .hero-left{padding:48px 0 44px}
  .ps-grid,.ps-grid-rev{grid-template-columns:1fr}
  .how-grid{grid-template-columns:1fr}
  .how-media-stack{display:none}
  .trust-features-grid{grid-template-columns:1fr;gap:18px}
  .score-grid{grid-template-columns:repeat(2,1fr)}
  .buyer-reports-grid{grid-template-columns:1fr}
  .scam-split{grid-template-columns:1fr}
  .rating-summary{flex-direction:column}
  .footer-sitemap{grid-template-columns:1fr;gap:18px}
  .scam-stat-grid{grid-template-columns:1fr}
  #how-to-use .steps-grid{grid-template-columns:1fr}
  #science-section .science-grid{grid-template-columns:1fr}
  .bonus-card{flex-direction:column;text-align:center}
  .popular-grid{grid-template-columns:1fr}
  .popular-media{display:none}
  .results-gallery-grid{grid-template-columns:1fr;max-width:520px;margin:0 auto}
}
@media(max-width:600px){
  body{padding-top:116px!important}
  .urgent-bar{min-height:48px!important;height:48px!important;padding:7px 10px!important;font-size:12px!important;display:flex!important;align-items:center!important;justify-content:center!important;flex-wrap:wrap!important;gap:0 4px!important}
  #main-nav{top:48px!important;height:68px!important}
  .section{padding:52px 0}
  .pricing-section,.trust-section{padding:52px 0}
  .price-cards{grid-template-columns:1fr}
  .price-card.featured{transform:none}
  .hero h1{font-size:2rem}
  .score-grid{grid-template-columns:1fr 1fr}
  .container{padding-left:18px!important;padding-right:18px!important}
}
@media(max-width:600px){.price-image-slot{min-height:132px;margin:6px auto 12px}.price-image-slot img,.price-card.featured .price-image-slot img,.price-card.best-val .price-image-slot img{max-width:140px!important}}
@media(max-width:960px){.nav-toggle{display:flex}}
.nav-toggle,.nav-toggle:hover,.nav-toggle:focus,.nav-toggle:active{background:transparent!important;border:none!important;box-shadow:none!important;outline:none!important;-webkit-tap-highlight-color:transparent!important}
.nav-toggle span{background:#141414!important}


/* ═══ DECISION ANCHOR STRIP — added to match conversion model density ═══ */
.decision-strip{background:#fff;border-bottom:1px solid var(--border-blue);padding:18px 0;box-shadow:0 8px 26px rgba(20,20,20,.06)}
.decision-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.decision-card{background:linear-gradient(180deg,#f8faff,#eef4ff);border:1px solid rgba(70,97,191,.20);border-radius:12px;padding:14px 14px 15px;transition:var(--tr);position:relative;overflow:hidden}
.decision-card::before{content:'';position:absolute;top:0;left:0;width:4px;height:100%;background:linear-gradient(180deg,var(--brand),var(--accent))}
.decision-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-blue);border-color:rgba(70,97,191,.38)}
.decision-card strong{display:block;font-family:var(--font-display);font-size:1.05rem;line-height:1.1;color:#141414;margin-bottom:6px;letter-spacing:.4px}
.decision-card span{display:block;font-size:.82rem;line-height:1.45;color:var(--grey-text);margin-bottom:10px}
.decision-card a{font-family:var(--font-display);font-weight:800;font-size:.78rem;letter-spacing:.5px;text-transform:uppercase;color:var(--brand);text-decoration:underline;text-underline-offset:3px}

/* ═══ BENEFITS — missing in user version, added preserving visual identity ═══ */
.benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:26px}
.benefit-card{background:var(--dark-card);border:1px solid var(--border-dark);border-top:3px solid var(--brand);border-radius:var(--radius);padding:22px 20px;box-shadow:var(--shadow-dark);transition:var(--tr);min-height:210px}
.benefit-card:nth-child(even){border-top-color:var(--accent)}
.benefit-card:hover{transform:translateY(-4px);border-color:var(--border-blue);box-shadow:var(--shadow-blue)}
.benefit-icon{width:44px;height:44px;border-radius:10px;background:rgba(70,97,191,.10);display:flex;align-items:center;justify-content:center;font-size:1.45rem;margin-bottom:14px;border:1px solid var(--border-blue)}
.benefit-card h3{font-size:1.12rem;line-height:1.15;margin-bottom:8px}
.benefit-card p{font-size:.9rem;line-height:1.68;margin:0;color:var(--grey-text)}
.benefits-bridge{margin-top:24px;background:#fff;border:1px solid var(--border-blue);border-radius:12px;padding:18px 20px;display:flex;align-items:center;justify-content:space-between;gap:18px;box-shadow:var(--shadow-dark)}
.benefits-bridge p{margin:0;color:#3a3f50;font-size:.94rem;line-height:1.55}
.benefits-bridge strong{color:#141414}

/* ═══ OFFICIAL SOURCE / WHERE TO BUY ═══ */
.official-buy-section{background:linear-gradient(180deg,#f5f8ff 0%,#edf2fb 100%);padding:76px 0;border-top:1px solid rgba(20,20,20,.08);border-bottom:1px solid rgba(20,20,20,.08)}
.official-buy-grid{display:grid;grid-template-columns:1fr 360px;gap:34px;align-items:center}
.official-buy-card{background:#fff;border:1px solid var(--border-blue);border-radius:var(--radius);padding:28px;box-shadow:var(--shadow-dark);position:relative;overflow:hidden}
.official-buy-card::before{content:'';position:absolute;top:0;left:0;right:0;height:5px;background:linear-gradient(90deg,var(--brand),var(--accent))}
.official-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:20px 0}
.official-step{background:#f4f7ff;border:1px solid rgba(70,97,191,.16);border-radius:10px;padding:14px;text-align:center}
.official-step .num{width:30px;height:30px;border-radius:50%;background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;margin:0 auto 9px;font-size:.8rem}
.official-step strong{display:block;color:#141414;font-size:.88rem;margin-bottom:4px}
.official-step span{font-size:.78rem;color:var(--grey-text);line-height:1.45}
.official-buy-media{background:#fff;border:1px solid rgba(70,97,191,.18);border-radius:var(--radius);padding:18px;box-shadow:var(--shadow-blue);text-align:center}
.official-buy-media img{max-width:250px;margin:0 auto 12px;filter:drop-shadow(0 14px 22px rgba(20,20,20,.13))}
.official-buy-media p{font-size:.82rem;color:var(--grey-text);line-height:1.55;margin:0}

/* ═══ FINAL CONVERSION STRIP ═══ */
.final-strip{background:linear-gradient(135deg,#141414 0%,#1c2d5f 52%,#ac2d8f 100%);padding:54px 0;color:#fff;position:relative;overflow:hidden}
.final-strip::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 16% 34%,rgba(255,255,255,.14) 0%,transparent 26%),radial-gradient(circle at 82% 72%,rgba(118,167,237,.18) 0%,transparent 28%);pointer-events:none}
.final-strip-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr auto;gap:28px;align-items:center}
.final-strip h2{color:#fff;margin-bottom:10px}
.final-strip p{color:rgba(255,255,255,.82);max-width:720px;margin:0;line-height:1.68}
.final-strip .btn-cta{background:linear-gradient(135deg,#fff,#edf2fb);color:#141414!important;box-shadow:0 10px 30px rgba(255,255,255,.14)}
.final-strip .btn-cta:hover{background:linear-gradient(135deg,var(--brand-light),#fff);color:#141414!important}

/* ═══ POLICY PAGES ═══ */
.page-hero{background:radial-gradient(ellipse at 70% 30%,rgba(70,97,191,.14) 0%,transparent 56%),linear-gradient(160deg,#f0f4ff 0%,#edf2fb 100%);padding:72px 0 52px;border-bottom:1px solid var(--border-blue)}
.page-hero .container{max-width:1000px}
.page-hero h1{font-family:var(--font-display);font-size:clamp(2.2rem,5vw,3.4rem);line-height:1.05;color:#141414;letter-spacing:1px;margin-bottom:12px}
.page-hero p{font-size:1.02rem;color:rgba(20,20,20,.68);max-width:760px;margin:0}
.policy-section{background:#edf2fb;padding:64px 0}
.policy-layout{display:grid;grid-template-columns:260px 1fr;gap:28px;align-items:start}
.policy-toc{position:sticky;top:118px;background:#fff;border:1px solid var(--border-blue);border-radius:var(--radius);padding:20px;box-shadow:var(--shadow-dark)}
.policy-toc h3{font-size:1rem;color:#141414;margin-bottom:10px}
.policy-toc a{display:block;color:var(--grey-text);font-size:.88rem;padding:8px 0;border-bottom:1px solid rgba(20,20,20,.06);transition:var(--tr)}
.policy-toc a:hover{color:var(--brand);padding-left:4px}
.policy-content{display:flex;flex-direction:column;gap:16px}
.policy-card{background:#fff;border:1px solid rgba(20,20,20,.10);border-radius:var(--radius);padding:26px 28px;box-shadow:var(--shadow-dark)}
.policy-card h2{font-size:1.65rem;color:#141414;margin-bottom:10px}
.policy-card h3{font-size:1.15rem;color:#141414;margin-top:12px}
.policy-card p,.policy-card li{color:var(--grey-text);font-size:.95rem;line-height:1.75}
.policy-card ul{padding-left:20px;margin:10px 0 0}
.policy-callout{background:rgba(70,97,191,.07);border:1px solid var(--border-blue);border-left:4px solid var(--brand);border-radius:10px;padding:16px 18px;margin-top:12px}
.policy-callout p{margin:0;color:#3a3f50}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.contact-method{background:#f7faff;border:1px solid rgba(70,97,191,.18);border-radius:12px;padding:20px}
.contact-method strong{display:block;color:#141414;margin-bottom:6px}
.contact-method a{color:var(--brand);font-weight:800;text-decoration:underline;text-underline-offset:3px}
.static-form{display:grid;gap:12px;margin-top:12px}
.static-form input,.static-form textarea{width:100%;border:1px solid rgba(20,20,20,.12);border-radius:8px;padding:13px 14px;font-family:var(--font-body);background:#fff;color:#141414}
.static-form textarea{min-height:120px;resize:vertical}
.static-form .btn-cta{width:fit-content}

@media(max-width:900px){
  .decision-grid,.benefits-grid{grid-template-columns:1fr 1fr}
  .official-buy-grid,.final-strip-inner,.policy-layout,.contact-grid{grid-template-columns:1fr}
  .policy-toc{position:static}
  .official-steps{grid-template-columns:1fr}
}
@media(max-width:600px){
  .decision-grid,.benefits-grid{grid-template-columns:1fr}
  .benefits-bridge{flex-direction:column;align-items:flex-start}
  .official-buy-section,.policy-section{padding:48px 0}
  .page-hero{padding:52px 0 38px}
}


/* ═══ ACCEPTED PAYMENT METHODS NEAR PRICING ═══ */
.accepted-payments{
  margin:22px auto 26px;
  max-width:720px;
  background:#fff;
  border:1px solid var(--border-blue);
  border-radius:12px;
  padding:16px 18px;
  text-align:center;
  box-shadow:0 10px 34px rgba(20,20,20,.08);
}
.accepted-payments span{
  display:block;
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1.2px;
  color:var(--brand);
  margin-bottom:10px;
}
.accepted-payments img{
  max-width:420px;
  width:100%;
  margin:0 auto 8px;
  object-fit:contain;
}
.accepted-payments small{
  display:block;
  color:var(--grey-text);
  font-size:.72rem;
  line-height:1.55;
}

/* ═══ CLICKBANK CHECKOUT EXPLANATION ═══ */
.clickbank-checkout-section{
  background:linear-gradient(180deg,#f5f8ff 0%,#edf2fb 100%);
  padding:78px 0;
  border-top:1px solid rgba(20,20,20,.08);
  border-bottom:1px solid rgba(20,20,20,.08);
}
.clickbank-checkout-grid{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:34px;
  align-items:center;
}
.clickbank-visual{
  background:#fff;
  border:1px solid var(--border-blue);
  border-radius:16px;
  padding:18px;
  box-shadow:0 14px 42px rgba(20,20,20,.10);
}
.clickbank-logo-img{
  max-width:220px;
  margin:0 auto 14px;
  object-fit:contain;
}
.clickbank-checkout-img{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(20,20,20,.10);
  box-shadow:0 8px 26px rgba(20,20,20,.08);
}
.clickbank-copy{
  background:#fff;
  border:1px solid rgba(20,20,20,.10);
  border-left:5px solid var(--brand);
  border-radius:16px;
  padding:28px;
  box-shadow:0 14px 42px rgba(20,20,20,.09);
}
.clickbank-copy h3{
  color:#141414;
  font-size:1.5rem;
  margin-bottom:12px;
}
.clickbank-copy p{
  color:var(--grey-text);
  font-size:.96rem;
}
.clickbank-steps{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:18px 0;
}
.clickbank-step{
  display:flex;
  gap:10px;
  align-items:flex-start;
  background:#f5f8ff;
  border:1px solid rgba(70,97,191,.18);
  border-radius:10px;
  padding:12px;
}
.clickbank-step strong{
  width:26px;
  height:26px;
  min-width:26px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--brand);
  color:#fff;
  font-size:.78rem;
}
.clickbank-step span{
  color:#3a3f50;
  font-size:.82rem;
  line-height:1.45;
}
.clickbank-trust-note{
  background:rgba(245,197,24,.12);
  border:1px solid rgba(245,197,24,.34);
  color:#4c3b00;
  border-radius:10px;
  padding:14px 16px;
  font-size:.88rem;
  line-height:1.55;
  margin:16px 0;
}
.clickbank-payment-inline{
  margin:16px 0 20px;
  padding:14px;
  background:#f5f8ff;
  border:1px solid rgba(70,97,191,.18);
  border-radius:12px;
  text-align:center;
}
.clickbank-payment-inline span{
  display:block;
  color:var(--brand);
  font-weight:800;
  text-transform:uppercase;
  font-size:.72rem;
  letter-spacing:1.2px;
  margin-bottom:8px;
}
.clickbank-payment-inline img{
  max-width:360px;
  width:100%;
  margin:0 auto;
  object-fit:contain;
}

/* ═══ FINAL SECURITY IMAGES ═══ */
.final-security-section{
  background:linear-gradient(180deg,#edf2fb 0%,#f5f8ff 100%);
  padding:68px 0;
  border-top:1px solid rgba(20,20,20,.08);
}
.final-security-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  max-width:360px;
  margin:0 auto;
}
.final-security-card{
  background:#fff;
  border:1px solid var(--border-blue);
  border-radius:14px;
  padding:10px 12px;
  box-shadow:0 10px 28px rgba(20,20,20,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}
.final-security-card img{
  width:auto;
  max-width:100%;
  max-height:112px;
  border-radius:8px;
  object-fit:contain;
  margin:0 auto;
  display:block;
}
@media(max-width:900px){
  .clickbank-checkout-grid{grid-template-columns:1fr}
  .clickbank-steps{grid-template-columns:1fr}
  .final-security-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .clickbank-checkout-section,.final-security-section{padding:52px 0}
  .clickbank-copy{padding:20px}
  .accepted-payments{padding:14px}
}


/* Final requested adjustments: daily routine cards, security badges, testimonial photos */
@media(max-width:900px){
  .results-gallery-image{aspect-ratio:4/3}
  .final-security-grid{max-width:320px}
  .final-security-card img{max-height:96px}
}
@media(max-width:600px){
  .results-gallery-image{aspect-ratio:4/3}
  .offer-avatar{width:50px;height:50px}
}

/* Organic SEO buying guide */
.organic-guide-section{background:linear-gradient(180deg,#edf2fb 0%,#e4ecf8 100%);border-top:1px solid rgba(20,20,20,.08);border-bottom:1px solid rgba(20,20,20,.08)}
.organic-guide-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:26px}
.organic-guide-card{background:#fff;border:1px solid rgba(70,97,191,.22);border-radius:14px;padding:22px;box-shadow:0 10px 30px rgba(20,20,20,.08)}
.organic-guide-card h3{font-family:var(--font-display);font-size:1.22rem;color:#141414;margin-bottom:8px}
.organic-guide-card p{font-size:.9rem;color:var(--grey-text);line-height:1.68;margin:0}
@media(max-width:900px){.organic-guide-grid{grid-template-columns:1fr}}


/* ═══════════════════════════════════════════
   EPICOOLER REVIEW — STYLE ADAPTATION
   Uses the uploaded professional conversion-page stylesheet as the visual base.
   Content remains the EpiCooler review copy.
═══════════════════════════════════════════ */
:root{
  --brand:#1769ff;
  --brand-dark:#0f3f9f;
  --brand-glow:#1769ff;
  --brand-light:#18c7d4;
  --accent:#ff8a1f;
  --accent-dark:#de6813;
  --gold:#f5c518;
  --gold-light:#ffd15c;
  --red:#d24739;
  --black:#f8f9ff;
  --dark:#edf2fb;
  --dark-2:#e4ecf8;
  --dark-3:#d9e6f5;
  --dark-card:#f2f6fc;
  --white:#141414;
  --grey-text:#5a6070;
  --light-text:#3a3f50;
  --border-blue:rgba(23,105,255,.28);
  --border-dark:rgba(20,20,20,.10);
  --shadow-blue:0 8px 32px rgba(23,105,255,.18);
  --shadow-dark:0 8px 32px rgba(20,20,20,.10);
}
body.exact-copy-page, body{
  font-family:var(--font-body);
  background:var(--black);
  color:#141414;
  overflow-x:hidden;
  padding-top:98px;
}
strong{color:#141414}
.container{max-width:1100px;margin:0 auto;padding:0 24px;width:auto}
.urgent-bar{
  position:fixed;
  top:0;left:0;right:0;
  min-height:30px;
  z-index:10001;
  background:linear-gradient(90deg,var(--brand-dark),var(--brand),var(--brand-dark));
  background-size:200% 100%;
  animation:gradShift 4s ease infinite;
  color:#fff;
  text-align:center;
  padding:7px 16px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.25px;
  line-height:1.25;
}
.topbar,#main-nav{
  position:fixed;
  top:30px;
  left:0;
  right:0;
  z-index:10000;
  background:linear-gradient(90deg,#ffffff 0%,#f0f4ff 100%);
  border-bottom:1px solid var(--border-blue);
  box-shadow:0 4px 24px rgba(0,0,0,.08);
  height:68px;
  display:flex;
  align-items:center;
  padding:0;
}
.nav-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  width:100%;
}
.nav-brand,.topbar-logo{display:inline-flex;align-items:center;justify-content:flex-start;flex-shrink:0;line-height:1}
.nav-brand img,.topbar-logo img{height:38px;width:auto;max-width:180px;object-fit:contain}
.topbar-trust{
  display:none;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:4px;
  min-width:0;
}
.nav-links a{
  color:rgba(20,20,20,.75);
  font-size:13px;
  font-weight:700;
  padding:6px 10px;
  border-radius:6px;
  transition:var(--tr);
  letter-spacing:.2px;
  white-space:nowrap;
}
.nav-links a:hover{color:#141414;background:rgba(23,105,255,.12)}
.nav-cta{
  background:linear-gradient(135deg,var(--accent),var(--brand));
  color:#fff!important;
  padding:10px 18px;
  border-radius:7px;
  font-family:var(--font-display);
  font-weight:800;
  font-size:14px;
  letter-spacing:.45px;
  text-transform:uppercase;
  box-shadow:0 4px 18px rgba(255,138,31,.34);
  transition:var(--tr);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  white-space:nowrap;
  flex-shrink:0;
  animation:pulseNav 2.5s ease-in-out infinite;
}
.nav-cta:hover{background:linear-gradient(135deg,var(--brand-dark),var(--accent-dark));transform:translateY(-2px);animation:none}
.mobile-toggle,.nav-toggle{
  display:none;
  background:none!important;
  border:none!important;
  cursor:pointer;
  flex-direction:column;
  gap:5px;
  padding:4px;
  box-shadow:none!important;
  outline:none!important;
}
.mobile-toggle span,.nav-toggle span{
  display:block;
  width:26px;
  height:2.5px;
  background:#141414;
  border-radius:2px;
  transition:var(--tr);
}
.mobile-menu{
  position:fixed;
  z-index:9999;
  top:98px;
  right:0;
  width:min(360px,100vw);
  max-width:100%;
  height:calc(100vh - 98px);
  background:#fff;
  box-shadow:-18px 0 60px rgba(20,20,20,.15);
  transform:translateX(105%);
  transition:transform .28s cubic-bezier(.4,0,.2,1);
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:4px;
  overflow-y:auto;
  border-left:1px solid var(--border-blue);
}
.mobile-menu.active{transform:translateX(0)}
.mobile-close{
  align-self:flex-end;
  width:42px;height:42px;
  border-radius:10px;
  border:1px solid var(--border-blue);
  background:#f0f4ff;
  color:#141414;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.mobile-menu a{
  padding:12px 4px;
  border-bottom:1px solid rgba(20,20,20,.07);
  color:#141414;
  font-weight:800;
  font-family:var(--font-display);
  letter-spacing:.3px;
}
.mobile-menu a.btn{margin-top:12px;border-bottom:none;color:#fff!important}

/* Trust bar, anchor strip */
.trust-strip.trust-bar{
  background:var(--brand);
  padding:11px 0;
  overflow:hidden;
  border:0;
  margin:0;
}
.trust-strip .container{max-width:none;width:auto;padding:0}
.trust-grid.marquee-track{
  display:flex;
  white-space:nowrap;
  animation:marquee 28s linear infinite;
  gap:0;
  grid-template-columns:none;
}
.trust-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.94);
  font-size:12.5px;
  font-weight:800;
  padding:0 24px;
  flex-shrink:0;
  letter-spacing:.25px;
}
.trust-item img{width:22px;height:22px;object-fit:contain;filter:brightness(0) invert(1)}
.anchors{
  background:#fff;
  border-bottom:1px solid var(--border-blue);
  padding:18px 0;
  box-shadow:0 8px 26px rgba(20,20,20,.06);
}
.anchor-grid{
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:10px;
}
.anchor-grid a{
  background:linear-gradient(180deg,#f8faff,#eef4ff);
  border:1px solid rgba(23,105,255,.20);
  border-radius:10px;
  padding:10px 12px;
  color:#141414;
  font-family:var(--font-display);
  font-size:.88rem;
  font-weight:800;
  text-align:center;
  letter-spacing:.3px;
  transition:var(--tr);
}
.anchor-grid a:hover{transform:translateY(-2px);box-shadow:var(--shadow-blue);border-color:rgba(23,105,255,.38);color:var(--brand)}

/* Hero adaptation */
.hero{
  background:radial-gradient(ellipse at 70% 40%,rgba(23,105,255,.12) 0%,transparent 55%),
             linear-gradient(160deg,#f0f4ff 0%,#edf2fb 40%,#f0f4ff 100%);
  position:relative;
  overflow:hidden;
  padding:0;
  min-height:640px;
  display:flex;
  flex-direction:column;
}
.hero-bg{display:none}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 440px;
  min-height:640px;
  align-items:center;
  position:relative;
  z-index:1;
  gap:0;
}
.hero-content,.hero-left{
  padding:56px 48px 56px 0;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.hero-visual,.hero-right{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(23,105,255,.07) 0%,transparent 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  border-left:1px solid var(--border-blue);
  min-height:640px;
}
.hero-card{
  width:100%;
  height:100%;
  position:relative;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  border:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
}
.hero-product{
  width:100%;
  height:100%;
  min-height:640px;
  object-fit:cover;
  object-position:center top;
  display:block;
  animation:floatImg 4.2s ease-in-out infinite;
}
.eyebrow,.hero-label{
  display:inline-flex;
  align-items:center;
  width:fit-content;
  background:rgba(23,105,255,.10);
  border:1px solid rgba(23,105,255,.35);
  color:var(--brand);
  font-size:11px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
  padding:6px 13px;
  border-radius:4px;
  white-space:nowrap;
}
.hero h1{
  font-family:var(--font-display);
  font-size:clamp(2.15rem,4.7vw,3.45rem);
  line-height:1.04;
  color:#141414;
  font-weight:900;
  letter-spacing:1px;
  margin:0;
}
.hero-sub{
  font-size:16px;
  color:rgba(20,20,20,.72);
  line-height:1.65;
  max-width:620px;
  margin:0;
}
.hero-points,.hero-bullets{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:7px;
  padding:0;
  margin:0;
}
.hero-points li,.hero-bullets li,.hero-points span{
  font-size:13.7px;
  display:flex;
  align-items:flex-start;
  gap:9px;
  color:#3a3f50;
  line-height:1.5;
}
.hero-bullets li .ok{color:var(--brand);font-weight:900;flex-shrink:0}
.author-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(20,20,20,.04);
  border:1px solid rgba(20,20,20,.10);
  border-radius:8px;
  padding:10px 14px;
  width:fit-content;
}
.author-av{
  width:36px;height:36px;border-radius:50%;
  background:var(--brand);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;font-size:13px;flex-shrink:0;
}
.author-info{font-size:12px;color:rgba(20,20,20,.70);line-height:1.4}
.author-info strong{display:block;color:#141414;font-size:13px}
.hero-actions,.cta-row{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.microcopy,.hero-disclaimer{
  font-size:11.5px;
  color:rgba(20,20,20,.50);
  display:block;
  margin-top:2px;
}
.hero-badge-float,.rating-card{
  position:absolute;
  bottom:24px;
  left:20px;
  right:auto;
  max-width:310px;
  background:rgba(255,255,255,.96);
  border:1px solid var(--border-blue);
  backdrop-filter:blur(8px);
  border-radius:10px;
  padding:14px 16px;
  z-index:2;
  box-shadow:var(--shadow-blue);
}
.rating-card strong,.hero-badge-float strong{
  font-family:var(--font-display);
  font-size:2rem;
  font-weight:900;
  color:var(--brand);
  line-height:1;
  display:block;
}
.rating-card span{font-size:12px;color:var(--grey-text);margin-top:4px;display:block;line-height:1.45}

/* Buttons */
.btn,.btn-cta,.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:linear-gradient(135deg,var(--accent),var(--brand));
  color:#fff!important;
  font-family:var(--font-display);
  font-weight:900;
  font-size:1.02rem;
  letter-spacing:.65px;
  text-transform:uppercase;
  padding:16px 34px;
  border-radius:9px;
  box-shadow:0 6px 28px rgba(255,138,31,.38);
  transition:var(--tr);
  position:relative;
  overflow:hidden;
  text-decoration:none!important;
  cursor:pointer;
  border:none;
  animation:pulseCta 2.4s ease-in-out infinite;
  text-align:center;
}
.btn::before,.btn-cta::before{
  content:'';
  position:absolute;
  top:0;left:-100%;
  width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
  transition:left .5s ease;
}
.btn:hover::before,.btn-cta:hover::before{left:100%}
.btn:hover,.btn-cta:hover{background:linear-gradient(135deg,var(--brand-dark),var(--accent-dark));transform:translateY(-3px);box-shadow:0 12px 40px rgba(255,138,31,.55);animation:none}
.btn-secondary{
  background:#fff!important;
  color:var(--brand)!important;
  border:1px solid var(--border-blue)!important;
  box-shadow:var(--shadow-dark)!important;
  animation:none!important;
}
.btn-secondary:hover{background:#f5f8ff!important;color:var(--brand-dark)!important}

/* Sections and headings */
.section{padding:80px 0}
.section-soft,.section-card{background:var(--dark-2)}
.section:not(.section-soft){background:var(--dark)}
.section:nth-of-type(odd):not(.section-soft){background:var(--black)}
.section-center,.section-title{
  text-align:center;
  max-width:800px;
  margin:0 auto 44px;
}
.section-kicker,.section-label{
  font-family:var(--font-display);
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--brand);
  font-weight:900;
  margin-bottom:10px;
  display:block;
}
h2{
  font-family:var(--font-display);
  font-size:clamp(1.9rem,4vw,2.85rem);
  font-weight:900;
  line-height:1.12;
  color:#141414;
  margin-bottom:14px;
  letter-spacing:.5px;
}
h3{
  font-family:var(--font-display);
  font-size:1.4rem;
  font-weight:800;
  color:#141414;
  margin-bottom:10px;
  letter-spacing:.3px;
}
p{color:var(--light-text);line-height:1.78}
.section-center h2::after,.section-title h2::after{
  content:'';
  display:block;
  width:56px;
  height:3px;
  background:linear-gradient(90deg,var(--brand),var(--accent));
  margin:12px auto 0;
  border-radius:2px;
}

/* Cards, grids, summaries */
.rating-summary-panel,.score-card{
  background:var(--dark-card);
  border:1px solid var(--border-dark);
  border-radius:var(--radius);
  padding:28px 32px;
  margin:24px auto 36px;
  display:flex;
  flex-wrap:wrap;
  gap:32px;
  align-items:center;
  box-shadow:var(--shadow-dark);
}
.rating-summary-box{
  text-align:center;
  min-width:180px;
  background:#fff;
  border:1px solid var(--border-blue);
  border-radius:14px;
  padding:22px 18px;
  box-shadow:var(--shadow-blue);
}
.rating-score{
  font-family:var(--font-display);
  font-size:4.2rem;
  font-weight:900;
  color:var(--brand);
  line-height:1;
}
.rating-stars{color:var(--gold);font-size:1.3rem;letter-spacing:3px;margin:6px 0 4px}
.rating-label{font-size:.84rem;color:#141414;font-weight:900;text-transform:uppercase;letter-spacing:.5px}
.rating-subline{font-size:.76rem;color:var(--grey-text);line-height:1.45;margin-top:5px}
.rating-summary-content{flex:1;min-width:260px}

.verdict-grid,.feature-grid,.pricing-grid,.objections-grid,.security-grid,.guarantee-check-grid,.media-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:26px;
}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center}
.feature-grid.three{grid-template-columns:repeat(3,1fr)}
.verdict-card,.feature-card,.review-card,.obj-card,.price-card,.media-card,.security-card,.guarantee-visual-card,.guarantee-copy,.contact-method{
  background:var(--dark-card);
  border:1px solid var(--border-dark);
  border-top:3px solid var(--brand);
  border-radius:var(--radius);
  padding:22px 20px;
  box-shadow:var(--shadow-dark);
  transition:var(--tr);
  min-width:0;
}
.verdict-card:nth-child(even),.feature-card:nth-child(even),.review-card:nth-child(even),.obj-card:nth-child(even),.media-card:nth-child(even){border-top-color:var(--accent)}
.verdict-card:hover,.feature-card:hover,.review-card:hover,.obj-card:hover,.price-card:hover,.media-card:hover,.security-card:hover{
  transform:translateY(-4px);
  border-color:var(--border-blue);
  box-shadow:var(--shadow-blue);
}
.check-list,.neutral-list,.security-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:14px 0 0;
  padding:0;
}
.check-list li,.security-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:.95rem;
  color:var(--light-text);
  line-height:1.55;
}
.check-list li::before,.security-list li::before{
  content:'✓';
  color:var(--brand);
  font-weight:900;
  flex-shrink:0;
}
.neutral-list li::before{
  content:'!';
  color:var(--red);
}
.review-note,.official-intro,.benefits-bridge,.guarantee-disclaimer{
  background:rgba(23,105,255,.07);
  border:1px solid var(--border-blue);
  border-left:4px solid var(--brand);
  border-radius:10px;
  padding:16px 18px;
  margin:18px 0;
  color:var(--grey-text);
}
.image-frame,.ps-img{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 12px 48px rgba(20,20,20,.12);
  border:1px solid var(--border-dark);
}
.image-frame img,.ps-img img{width:100%;display:block}

/* How/steps/media */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:28px;
}
.steps-grid .feature-card{
  text-align:center;
}
.steps-grid .feature-card h3::before{
  content:'';
}
.real-video-grid,.video-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:28px;
}
.real-video-card{
  background:#fff;
  border:1px solid var(--border-blue);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-dark);
}
.real-video-media, .video-frame{
  aspect-ratio:16/9;
  overflow:hidden;
  background:#111;
}
.real-video-media video,.video-frame video,.media-card video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  pointer-events:none;
}
.real-video-copy{padding:18px}
.real-video-copy h3{font-size:1.12rem}

/* Pricing */
.review-pricing,.price-card{
  background:#fff;
}
.pricing-grid{
  grid-template-columns:repeat(3,1fr);
  align-items:stretch;
}
.price-card.featured{
  background:rgba(23,105,255,.06);
  border:2px solid var(--brand);
  transform:scale(1.035);
}
.price-card.featured:hover{transform:scale(1.035) translateY(-4px)}
.review-price,.price{
  font-family:var(--font-display);
  font-size:2.7rem;
  font-weight:900;
  color:var(--brand);
  line-height:1;
  margin:8px 0;
}
.price-card .mini-label,.price-card h3{
  color:#141414;
}
.center-cta,.btn-cta-wrap{text-align:center;margin:32px 0}

/* Guarantee/payment/scam */
.guarantee-review-section{
  background:linear-gradient(180deg,#edf2fb 0%,#e4ecf8 100%)!important;
  border-top:1px solid var(--border-dark);
  border-bottom:1px solid var(--border-dark);
}
.guarantee-review-grid{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:34px;
  align-items:center;
}
.guarantee-score{
  font-family:var(--font-display);
  font-size:4.5rem;
  font-weight:900;
  color:var(--brand);
  line-height:1;
  text-align:center;
}
.guarantee-visual-card img{max-width:170px;margin:0 auto 18px}
.security-section,.payment-fraud-section,#sicher-kaufen{
  background:linear-gradient(180deg,#f8f9ff 0%,#edf2fb 100%)!important;
}
.security-card-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  color:#141414;
  font-weight:900;
  font-family:var(--font-display);
  font-size:1.08rem;
}
.security-card:first-child{border-top-color:var(--brand)}
.security-card:last-child{border-top-color:var(--red)}
.security-card:last-child .security-list li::before{color:var(--red)}

/* Carousel/images */
.epicooler-carousel{
  position:relative;
  margin-top:28px;
}
.carousel-track{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:4px 2px 18px;
  -webkit-overflow-scrolling:touch;
}
.carousel-slide{
  min-width:min(330px,82vw);
  scroll-snap-align:start;
  background:#fff;
  border:1px solid var(--border-dark);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-dark);
}
.carousel-slide img{width:100%;aspect-ratio:16/11;object-fit:cover}
.carousel-caption{padding:14px 16px;font-size:.9rem;color:var(--grey-text);font-weight:700}
.carousel-control{
  width:42px;height:42px;border-radius:50%;
  border:1px solid var(--border-blue);
  background:#fff;
  color:var(--brand);
  font-weight:900;
  box-shadow:var(--shadow-dark);
  cursor:pointer;
}
.carousel-dots{display:flex;justify-content:center;gap:8px;margin-top:12px}
.carousel-dots button{
  width:9px;height:9px;border-radius:50%;border:0;background:rgba(20,20,20,.22);cursor:pointer;
}
.carousel-dots button.active{background:var(--brand)}

/* Comparison */
.compare-section,.comparison-wrap{
  background:var(--dark-card);
  border:1px solid var(--border-dark);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow-dark);
  overflow-x:auto;
}
.comparison-table,.compare-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
  min-width:680px;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-dark);
}
.comparison-table th,.compare-table th{
  background:#dde5f5;
  color:var(--grey-text);
  font-size:.76rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
  padding:14px 16px;
  text-align:center;
}
.comparison-table th:first-child,.compare-table th:first-child{text-align:left}
.comparison-table td,.compare-table td{
  padding:14px 16px;
  border-bottom:1px solid var(--border-dark);
  font-size:.9rem;
  text-align:center;
  vertical-align:middle;
  color:var(--light-text);
  background:#fff;
}
.comparison-table td:first-child,.compare-table td:first-child{text-align:left;font-weight:800;color:#141414}
.comparison-table td:nth-child(2),.compare-table td:nth-child(2){background:rgba(23,105,255,.04);font-weight:700}

/* Testimonials/rating */
.buyer-reports-grid,.testimonials-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:24px;
}
.offer-card,.testimonial-card{
  background:var(--dark-card);
  border:1px solid var(--border-dark);
  border-radius:var(--radius);
  padding:22px;
  transition:var(--tr);
  border-top:3px solid var(--brand);
  box-shadow:var(--shadow-dark);
}
.offer-card:nth-child(even),.testimonial-card:nth-child(even){border-top-color:var(--accent)}
.offer-card:hover,.testimonial-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-blue)}
.offer-text,.testimonial-card p{font-size:14px;color:var(--grey-text);line-height:1.7;font-style:italic}
.stars-small{color:var(--gold);font-size:13px;margin-bottom:8px;letter-spacing:1px}

/* FAQ */
#faq,#faq *{box-sizing:border-box!important}
.faq-list{display:flex;flex-direction:column;gap:10px;max-width:880px;margin:0 auto}
.faq-item{
  background:var(--dark-card);
  border:1px solid var(--border-dark);
  border-radius:var(--radius-sm);
  overflow:hidden;
  box-shadow:var(--shadow-dark);
  transition:var(--tr);
}
.faq-item:hover{border-color:var(--border-blue)}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:17px 46px 17px 20px;
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  font-family:var(--font-body);
  font-size:.98rem;
  font-weight:900;
  color:#141414;
  transition:background .2s;
  position:relative;
}
.faq-question::after{
  content:'＋';
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:18px;
  color:var(--brand);
  transition:transform .2s;
}
.faq-question:hover{background:rgba(23,105,255,.06)}
.faq-item.active .faq-question::after,.faq-item.open .faq-question::after{transform:translateY(-50%) rotate(45deg)}
.faq-answer{display:none;padding:0 20px 18px;font-size:.93rem;color:var(--grey-text);line-height:1.72;background:#fff}
.faq-item.active .faq-answer,.faq-item.open .faq-answer{display:block}

/* Footer and policy */
.seo-footer-section{background:#e4ecf8;padding:28px 0 16px;border-top:1px solid var(--border-dark)}
.site-footer{
  background:#141414;
  padding:42px 0;
  color:rgba(255,255,255,.75);
}
.footer-grid,.footer-inner,.footer-bottom{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  text-align:center;
}
.footer-logo img{height:42px;margin:0 auto}
.footer-link,.footer-page-link,.footer-links-row a{color:rgba(255,255,255,.58);font-size:.86rem;transition:color .2s;margin:0 8px}
.footer-link:hover,.footer-page-link:hover{color:#fff}
.footer-small,.footer-copy,.footer-disclaimer{color:rgba(255,255,255,.38);font-size:.78rem;line-height:1.6;max-width:860px;margin-left:auto;margin-right:auto}
.policy-hero,.page-hero{
  background:radial-gradient(ellipse at 70% 30%,rgba(23,105,255,.14) 0%,transparent 56%),linear-gradient(160deg,#f0f4ff 0%,#edf2fb 100%);
  padding:72px 0 52px;
  border-bottom:1px solid var(--border-blue);
}
.policy-hero h1,.page-hero h1{
  font-family:var(--font-display);
  font-size:clamp(2.2rem,5vw,3.4rem);
  line-height:1.05;
  color:#141414;
  letter-spacing:1px;
  margin-bottom:12px;
}
.policy-card{
  background:#fff;
  border:1px solid rgba(20,20,20,.10);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow-dark);
  margin:32px auto;
  max-width:980px;
}
.policy-card h2{font-size:1.65rem;color:#141414;margin-bottom:10px}
.policy-card h3{font-size:1.15rem;color:#141414;margin-top:12px}
.policy-card p,.policy-card li{color:var(--grey-text);font-size:.95rem;line-height:1.75}
.contact-box{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin:22px 0}
.contact-method{background:#f7faff}

/* Responsive */
@media(max-width:1100px){
  .anchor-grid{grid-template-columns:repeat(4,1fr)}
  .nav-links a{font-size:12px;padding:6px 7px}
}
@media(max-width:960px){
  .nav-links{display:none;position:absolute;top:68px;left:0;right:0;background:#fff;border-bottom:1px solid var(--border-blue);flex-direction:column;align-items:flex-start;padding:14px 20px 18px;gap:0}
  .nav-links.open{display:flex}
  .nav-links a{width:100%;padding:11px 6px;border-bottom:1px solid rgba(20,20,20,.06);border-radius:0;color:rgba(20,20,20,.85)!important}
  .mobile-toggle,.nav-toggle{display:flex}
  .nav-cta{display:none}
  .hero-grid,.two-col,.guarantee-review-grid{grid-template-columns:1fr}
  .hero-visual,.hero-right{display:none}
  .hero-content,.hero-left{padding:48px 0 44px}
  .hero{min-height:auto}
  .feature-grid,.feature-grid.three,.verdict-grid,.pricing-grid,.objections-grid,.security-grid,.guarantee-check-grid,.steps-grid{grid-template-columns:1fr 1fr}
  .buyer-reports-grid,.real-video-grid,.video-grid{grid-template-columns:1fr}
  .rating-summary-panel{flex-direction:column;align-items:stretch}
  .price-card.featured{transform:none}
  .contact-box{grid-template-columns:1fr}
}
@media(max-width:720px){
  .anchor-grid{grid-template-columns:1fr 1fr}
  .feature-grid,.feature-grid.three,.verdict-grid,.pricing-grid,.objections-grid,.security-grid,.guarantee-check-grid,.steps-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  body.exact-copy-page,body{padding-top:116px!important}
  .urgent-bar{min-height:48px!important;height:48px!important;padding:7px 10px!important;font-size:12px!important;display:flex!important;align-items:center!important;justify-content:center!important;flex-wrap:wrap!important;gap:0 4px!important}
  .topbar,#main-nav{top:48px!important;height:68px!important}
  .mobile-menu{top:116px;height:calc(100vh - 116px)}
  .section{padding:52px 0}
  .container{padding-left:18px!important;padding-right:18px!important}
  .hero h1{font-size:2.05rem}
  .btn,.btn-cta{width:100%;padding:15px 18px}
  .nav-brand img,.topbar-logo img{height:34px;max-width:150px}
  .anchor-grid{grid-template-columns:1fr}
}

/* Hide native controls in WebKit where possible */
video::-webkit-media-controls{display:none!important}
video::-webkit-media-controls-enclosure{display:none!important}
video{background:#111}


/* ═══════════════════════════════════════════
   EPICOOLER UI FIXES — after visual review
   Fixes nav overlap, hero media, pricing text,
   guarantee layout, gallery, payment, video,
   FAQ icons and footer layout.
═══════════════════════════════════════════ */

/* Header/nav: prevent CTA overlap on desktop */
body.exact-copy-page, body{padding-top:98px!important; overflow-x:hidden}
.urgent-bar{height:30px; min-height:30px; padding:6px 12px; display:flex; align-items:center; justify-content:center; line-height:1.25; font-size:13px}
.topbar,#main-nav{top:30px!important; height:68px!important; overflow:visible}
.topbar .nav-inner,#main-nav .nav-inner{max-width:1280px; padding:0 28px; gap:14px}
.topbar-logo,.nav-brand{flex:0 0 190px}
.topbar-logo img,.nav-brand img{height:38px; max-width:190px; object-fit:contain}
.nav-links{flex:1 1 auto; min-width:0; justify-content:center; gap:2px}
.nav-links a{font-size:13px; padding:6px 8px; letter-spacing:.15px}
.topbar-trust{display:none!important}
.nav-cta.btn-cta{
  flex:0 0 auto;
  width:auto!important;
  min-width:250px;
  max-width:300px;
  padding:14px 20px!important;
  font-size:15px!important;
  line-height:1!important;
  text-align:center;
  white-space:nowrap;
  margin-left:8px;
  position:relative;
  z-index:2;
}
@media(max-width:1180px){
  .nav-links a{font-size:12px; padding:6px 6px}
  .topbar-logo,.nav-brand{flex-basis:170px}
  .topbar-logo img,.nav-brand img{max-width:170px}
  .nav-cta.btn-cta{min-width:230px; padding-left:16px!important; padding-right:16px!important}
}
@media(max-width:1020px){
  .nav-links{display:none!important}
  .mobile-toggle,.nav-toggle{display:flex!important}
}

/* Hero: use contained product media and prevent cropping */
.hero{min-height:auto}
.hero-grid{grid-template-columns:minmax(0,1fr) minmax(360px,460px); gap:42px; align-items:center; padding-top:52px; padding-bottom:48px; min-height:620px}
.hero-left{padding:0!important}
.hero-right{min-height:auto; border-left:0; background:transparent; overflow:visible}
.hero-card{width:100%; border-radius:22px; overflow:visible; background:linear-gradient(180deg,#f7fbff,#e8f2ff); border:1px solid rgba(23,105,255,.22); box-shadow:0 18px 50px rgba(20,20,20,.12); padding:20px}
.hero-card .hero-product,.hero-right img.hero-product{
  width:100%;
  height:auto;
  max-height:530px;
  aspect-ratio:4/5;
  object-fit:contain!important;
  object-position:center!important;
  animation:floatImg 4.2s ease-in-out infinite;
  background:#fff;
  border-radius:18px;
  padding:10px;
}
.hero-badge-float,.rating-card.hero-badge-float{
  left:24px; right:24px; bottom:-26px;
  width:auto;
}
.hero-badge-float strong{font-family:var(--font-display); font-size:2.25rem; color:var(--brand); line-height:1; display:block}
.hero-badge-float span{font-size:.82rem; color:var(--grey-text); line-height:1.4}
@media(max-width:960px){
  .hero-grid{grid-template-columns:1fr; min-height:auto; padding-top:34px; padding-bottom:34px}
  .hero-visual,.hero-right{display:block!important; max-width:520px; margin:0 auto 28px}
}

/* Pricing: price card text was inheriting huge type */
.review-price{
  font-family:var(--font-body)!important;
  font-size:1rem!important;
  font-weight:400!important;
  color:var(--light-text)!important;
  line-height:1.7!important;
  text-align:center;
}
.review-price h3,.price-card h3{
  font-family:var(--font-display)!important;
  font-size:1.45rem!important;
  line-height:1.15!important;
  color:#141414!important;
  margin-bottom:12px!important;
}
.review-price .price,.price-card .price{
  font-family:var(--font-display)!important;
  font-size:clamp(2rem,3.2vw,2.8rem)!important;
  line-height:1.05!important;
  font-weight:900!important;
  color:var(--brand)!important;
  margin:10px 0 14px!important;
  display:block;
}
.review-price .price span,.price-card .price span{
  display:block;
  font-size:1rem!important;
  color:var(--grey-text)!important;
  font-family:var(--font-body)!important;
  font-weight:700!important;
  margin-top:6px;
}
.review-price p:not(.price){font-size:.98rem!important; line-height:1.7!important; color:var(--grey-text)!important}
.pricing-grid.review-pricing{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px}
.price-card.featured{transform:none!important}
@media(max-width:900px){.pricing-grid.review-pricing{grid-template-columns:1fr}}

/* Guarantee: replace oversized/cropped SVG look with clean badge + formatted cards */
.guarantee-review-grid{
  grid-template-columns:minmax(260px,340px) minmax(0,1fr)!important;
  gap:42px!important;
  align-items:center!important;
}
.guarantee-visual-card{
  min-height:260px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}
.guarantee-visual-card img{display:none!important}
.guarantee-score{
  font-family:var(--font-body)!important;
  font-size:1rem!important;
  line-height:1.4!important;
  color:var(--grey-text)!important;
}
.guarantee-score::before{
  content:"✓";
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  margin:0 auto 16px;
  border-radius:50%;
  background:var(--brand);
  color:#fff;
  font-weight:900;
  font-size:1.25rem;
}
.guarantee-score strong{
  display:block;
  font-family:var(--font-display);
  font-size:clamp(3rem,5vw,4.4rem);
  line-height:.95;
  color:#141414;
}
.guarantee-score span{
  display:block;
  font-family:var(--font-display);
  font-size:clamp(1.7rem,3vw,2.5rem);
  line-height:1.05;
  color:var(--brand);
  font-weight:900;
  margin-top:8px;
}
.guarantee-copy h2{font-size:clamp(2rem,3.8vw,3rem)!important}
.guarantee-check-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:16px!important;
  margin-top:24px!important;
}
.guarantee-check-grid > div{
  background:#fff;
  border:1px solid var(--border-blue);
  border-radius:12px;
  padding:18px;
  box-shadow:var(--shadow-dark);
}
.guarantee-check-grid strong{display:block; color:#141414; margin-bottom:6px; font-weight:900}
.guarantee-check-grid span{display:block; color:var(--grey-text); line-height:1.55; font-size:.92rem}
@media(max-width:960px){
  .guarantee-review-grid{grid-template-columns:1fr!important}
  .guarantee-check-grid{grid-template-columns:1fr!important}
}

/* Image gallery: no horizontal scrollbar on desktop */
.epicooler-carousel{max-width:1100px; margin-left:auto; margin-right:auto}
.carousel-track{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:18px!important;
  overflow:visible!important;
  scroll-snap-type:none!important;
  padding:0!important;
}
.carousel-slide{
  min-width:0!important;
  scroll-snap-align:none!important;
}
.carousel-slide img{aspect-ratio:16/11; object-fit:cover}
.carousel-control,.carousel-dots{display:none!important}
@media(max-width:900px){.carousel-track{grid-template-columns:1fr 1fr!important}}
@media(max-width:620px){.carousel-track{grid-template-columns:1fr!important}}

/* Secure payment section: payment logos full width, text readable, clear producer-only note */
.payment-clarity-note{
  background:#fff;
  border:1px solid var(--border-blue);
  border-left:4px solid var(--brand);
  border-radius:12px;
  padding:16px 18px;
  margin:22px auto 0;
  max-width:880px;
  color:var(--grey-text)!important;
  font-size:.96rem;
  line-height:1.65;
  text-align:left;
}
.payment-clarity-note strong{color:#141414}
.security-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:30px;
}
.secure-checkout-card,.fraud-alert-card{
  background:#fff;
  border:1px solid var(--border-dark);
  border-top:4px solid var(--brand);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow-dark);
  min-width:0;
}
.fraud-alert-card{border-top-color:var(--red)}
.security-card-head{
  display:flex!important;
  flex-direction:column!important;
  align-items:flex-start!important;
  gap:10px!important;
  margin-bottom:16px!important;
}
.security-card-head img{
  display:block!important;
  width:100%!important;
  max-width:720px!important;
  height:auto!important;
  max-height:96px!important;
  object-fit:contain!important;
  object-position:left center!important;
  background:#f7faff;
  border:1px solid rgba(20,20,20,.06);
  border-radius:12px;
  padding:12px;
}
.security-card-head h3{
  font-size:1.35rem!important;
  line-height:1.2!important;
  margin:2px 0 0!important;
  color:#141414!important;
}
.secure-buy-path{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  background:linear-gradient(135deg,rgba(23,105,255,.09),rgba(239,124,39,.08));
  border:1px solid var(--border-blue);
  border-radius:16px;
  padding:22px;
  margin-top:24px;
  box-shadow:var(--shadow-dark);
}
.secure-buy-path strong{font-family:var(--font-display); font-size:1.3rem; color:#141414}
.secure-buy-path p{margin:4px 0 0; color:var(--grey-text)}
.warning-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  background:rgba(210,71,57,.1);
  color:var(--red);
  border:1px solid rgba(210,71,57,.25);
  border-radius:50%;
  font-weight:900;
}
@media(max-width:900px){
  .security-split{grid-template-columns:1fr}
  .secure-buy-path{flex-direction:column; align-items:flex-start}
}

/* Four use-case cards: 2x2 layout */
#alltag .feature-grid{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  max-width:920px;
  margin-left:auto;
  margin-right:auto;
}
#alltag .feature-card.media-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}
@media(max-width:700px){#alltag .feature-grid{grid-template-columns:1fr!important}}

/* Technology section: keep video and image contained */
#technologie .two-col{
  grid-template-columns:minmax(0,.9fr) minmax(0,1fr)!important;
  align-items:center!important;
  gap:34px!important;
}
.media-column{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  width:100%;
  max-width:560px;
  margin-left:auto;
  min-width:0;
}
.media-column img,.media-column video{
  width:100%!important;
  max-width:100%!important;
  height:auto!important;
  max-height:330px!important;
  object-fit:cover!important;
  border-radius:var(--radius);
  border:1px solid var(--border-dark);
  box-shadow:var(--shadow-dark);
  display:block;
}
.media-column video{
  aspect-ratio:16/9!important;
  background:#111;
}
@media(max-width:960px){
  #technologie .two-col{grid-template-columns:1fr!important}
  .media-column{max-width:100%; margin:24px auto 0}
}

/* FAQ: one plus only */
.faq-question span[aria-hidden="true"]{display:none!important}
.faq-question{padding-right:48px!important}
.faq-question::after{content:'+'!important; color:var(--brand)!important; font-size:24px!important; font-weight:700!important; line-height:1}
.faq-item.active .faq-question::after,.faq-item.open .faq-question::after{content:'×'!important; transform:translateY(-50%)!important}

/* Footer: restore old multi-column style */
.site-footer{
  background:#07182f!important;
  color:#d7e7ff!important;
  padding:70px 0 34px!important;
}
.site-footer .footer-grid{
  display:grid!important;
  grid-template-columns:1.25fr .8fr .8fr .9fr!important;
  gap:48px!important;
  align-items:start!important;
  max-width:1180px!important;
  margin:0 auto!important;
  padding:0 24px!important;
  text-align:left!important;
}
.footer-logo{
  max-width:240px!important;
  height:auto!important;
  margin:0 0 24px!important;
  display:block!important;
}
.site-footer p{color:#d7e7ff!important; line-height:1.75!important; font-size:1rem!important}
.footer-small{color:#9fb4d2!important; font-size:.88rem!important; max-width:none!important}
.site-footer h4{
  color:#fff!important;
  font-family:var(--font-body)!important;
  font-size:1.08rem!important;
  font-weight:900!important;
  margin-bottom:16px!important;
}
.footer-link,.footer-page-link{
  display:block!important;
  color:#d7e7ff!important;
  font-size:1rem!important;
  font-weight:800!important;
  margin:0 0 12px!important;
}
.footer-link:hover,.footer-page-link:hover{color:#fff!important}
.site-footer .btn-cta,.site-footer .btn{
  background:linear-gradient(135deg,#f28a2e,#ef6f11)!important;
  color:#fff!important;
  border-radius:999px!important;
  box-shadow:0 14px 34px rgba(239,111,17,.25)!important;
}
.footer-bottom{
  max-width:1180px!important;
  margin:46px auto 0!important;
  padding:22px 24px 0!important;
  border-top:1px solid rgba(255,255,255,.14)!important;
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:18px!important;
  text-align:left!important;
  color:#9fb4d2!important;
}
@media(max-width:900px){
  .site-footer .footer-grid{grid-template-columns:1fr 1fr!important; gap:28px!important}
}
@media(max-width:620px){
  .site-footer .footer-grid{grid-template-columns:1fr!important}
  .footer-bottom{flex-direction:column!important; align-items:flex-start!important}
}

/* General media/cards constraints */
img,video,svg{max-width:100%}
.feature-card,.price-card,.secure-checkout-card,.fraud-alert-card,.guarantee-copy,.guarantee-visual-card{overflow:hidden}

.footer-cta{margin-top:18px!important; display:inline-flex!important; width:auto!important; min-width:260px!important; justify-content:center!important;}
@media(max-width:620px){.footer-cta{width:100%!important; min-width:0!important}}


/* ═══ GREEN HIGH-CONTRAST CTA SYSTEM — DE Review Update ═══ */
:root{
  --cta-green:#14a44d;
  --cta-green-dark:#0f7f3a;
  --cta-green-light:#22c55e;
  --cta-green-soft:rgba(20,164,77,.13);
  --cta-shadow:0 12px 34px rgba(20,164,77,.38);
  --cta-shadow-strong:0 18px 48px rgba(20,164,77,.52);
}
.btn-cta,
.nav-cta,
.mobile-nav-cta,
.btn.btn-primary,
.btn-primary,
.btn-order,
.solution-cta-box a,
.secure-buy-path .btn-cta,
.site-footer .btn-cta,
.site-footer .btn,
.footer-cta,
a[class*="btn"][href*="fasttrack38"],
a.track-link.btn-cta{
  background:linear-gradient(135deg,var(--cta-green),var(--cta-green-dark))!important;
  color:#fff!important;
  border:0!important;
  box-shadow:var(--cta-shadow)!important;
}
.btn-cta:hover,
.nav-cta:hover,
.mobile-nav-cta:hover,
.btn.btn-primary:hover,
.btn-primary:hover,
.btn-order:hover,
.solution-cta-box a:hover,
.site-footer .btn-cta:hover,
.site-footer .btn:hover,
.footer-cta:hover,
a[class*="btn"][href*="fasttrack38"]:hover,
a.track-link.btn-cta:hover{
  background:linear-gradient(135deg,var(--cta-green-light),var(--cta-green-dark))!important;
  color:#fff!important;
  transform:translateY(-2px);
  box-shadow:var(--cta-shadow-strong)!important;
}
.btn-cta::before{
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent)!important;
}
.nav-cta{
  min-width:260px;
  justify-content:center;
}
.hero-verdict,
.score-card,
.decision-card,
.official-intro,
.solution-cta-box,
.benefits-bridge,
.price-card.featured,
.guarantee-copy,
.secure-buy-path{
  border-color:rgba(20,164,77,.30)!important;
}
.hero-verdict .verd-score,
.score-num,
.ov-good,
.check-yes,
.section-label,
.icon-good{
  color:var(--cta-green)!important;
}
.score-bar-fill,
.rating-bar-fill,
.decision-card::before,
.section-title h2::after{
  background:linear-gradient(90deg,var(--cta-green),var(--cta-green-light))!important;
}
.price-card.featured,
.guarantee-visual-card,
.secure-checkout-card{
  box-shadow:0 12px 38px rgba(20,164,77,.14)!important;
}

/* German policy page safety and legal page styling */
.policy-hero{
  background:linear-gradient(160deg,#f0f7ff 0%,#edf2fb 100%);
  padding:72px 0;
}
.policy-card{
  background:#fff;
  border:1px solid rgba(20,164,77,.16);
  border-radius:18px;
  box-shadow:0 14px 48px rgba(20,20,20,.08);
  padding:34px;
  max-width:980px;
  margin:0 auto;
}
.policy-card h1,
.policy-card h2,
.policy-card h3{
  color:#141414;
}
.policy-card h1{
  font-family:var(--font-display);
  font-size:clamp(2.2rem,5vw,3.4rem);
  line-height:1.04;
  margin-bottom:14px;
}
.policy-card h2{
  font-size:1.45rem;
  margin-top:28px;
  margin-bottom:10px;
}
.policy-card p,
.policy-card li{
  color:#3a3f50;
  line-height:1.75;
}
.policy-card a{
  color:var(--cta-green-dark);
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
}
.policy-meta{
  border-left:4px solid var(--cta-green);
  background:var(--cta-green-soft);
  padding:14px 18px;
  border-radius:0 12px 12px 0;
  margin:0 0 24px;
}
.policy-meta p{margin:0!important;}
.policy-callout{
  background:rgba(20,164,77,.08);
  border:1px solid rgba(20,164,77,.28);
  border-left:4px solid var(--cta-green);
  border-radius:12px;
  padding:16px 18px;
  margin-top:22px;
}
@media(max-width:620px){
  .policy-card{padding:24px 18px;}
  .nav-cta{min-width:0;}
}


/* ═══════════════════════════════════════════
   FINAL VISUAL POLISH — media fit, 2x2 grids,
   comparison header, footer/button refinements
═══════════════════════════════════════════ */

/* 1) Videos: show the full frame, no cropping */
.real-video-media,
.video-frame{
  aspect-ratio:16/9!important;
  background:#07182f!important;
  border-radius:14px 14px 0 0!important;
  overflow:hidden!important;
}
.real-video-media video,
.video-frame video,
.media-card video{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:center!important;
  background:#07182f!important;
}

/* 2) Product/media image gallery: 2/2 layout and no cropped images */
.epicooler-carousel{
  max-width:940px!important;
}
.carousel-track{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:20px!important;
  overflow:visible!important;
}
.carousel-slide{
  background:#fff!important;
  border:1px solid var(--border-blue)!important;
  border-radius:14px!important;
  overflow:hidden!important;
  box-shadow:var(--shadow-dark)!important;
}
.carousel-slide img{
  width:100%!important;
  height:auto!important;
  aspect-ratio:16/10!important;
  object-fit:contain!important;
  object-position:center!important;
  background:#f7fbff!important;
  padding:0!important;
}
.carousel-caption{
  background:#fff!important;
  color:#3a3f50!important;
  border-top:1px solid rgba(20,20,20,.06)!important;
  padding:13px 16px!important;
}
@media(max-width:720px){
  .carousel-track{grid-template-columns:1fr!important}
}

/* 3) Comparison table header: black background, white text */
.comparison-table thead th,
.review-comparison-table thead th,
.comparison-table-wrap table thead th{
  background:#141414!important;
  color:#fff!important;
  border-color:#141414!important;
}
.comparison-table thead th:first-child,
.review-comparison-table thead th:first-child{
  color:#fff!important;
}
.comparison-table .product-col-header{
  background:#141414!important;
  color:#fff!important;
}

/* 4) Application cards: 2/2 and images fully visible */
#alltag .feature-grid{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  max-width:940px!important;
  gap:22px!important;
}
#alltag .feature-card.media-card{
  padding:0!important;
  overflow:hidden!important;
  background:#fff!important;
}
#alltag .feature-card.media-card img{
  width:100%!important;
  height:auto!important;
  aspect-ratio:16/9!important;
  object-fit:contain!important;
  object-position:center!important;
  background:#f7fbff!important;
  padding:0!important;
}
#alltag .feature-card.media-card h3,
#alltag .feature-card.media-card p{
  padding-left:24px!important;
  padding-right:24px!important;
}
#alltag .feature-card.media-card h3{
  margin-top:20px!important;
}
#alltag .feature-card.media-card p{
  padding-bottom:24px!important;
}
@media(max-width:720px){
  #alltag .feature-grid{grid-template-columns:1fr!important}
}

/* 5) Technology section: keep image and video inside the card without cutting */
#technologie .media-column{
  max-width:620px!important;
}
#technologie .media-column img,
#technologie .media-column video{
  width:100%!important;
  height:auto!important;
  max-height:none!important;
  aspect-ratio:16/9!important;
  object-fit:contain!important;
  object-position:center!important;
  background:#07182f!important;
  border-radius:14px!important;
  overflow:hidden!important;
}
#technologie .media-column img{
  background:#fff!important;
}

/* 6) Footer CTA: same rectangular style as the page buttons */
.site-footer .btn-cta,
.site-footer .btn,
.footer-cta{
  border-radius:9px!important;
  padding:16px 28px!important;
  min-width:260px!important;
  line-height:1.25!important;
  text-align:center!important;
  justify-content:center!important;
}

/* 7) Hero secondary button: blue, not green */
.hero-actions .btn-secondary.btn-cta,
.cta-row .btn-secondary.btn-cta[href="#fazit"]{
  background:linear-gradient(135deg,#1769ff,#0b54d9)!important;
  color:#fff!important;
  box-shadow:0 12px 34px rgba(23,105,255,.32)!important;
  border:0!important;
}
.hero-actions .btn-secondary.btn-cta:hover,
.cta-row .btn-secondary.btn-cta[href="#fazit"]:hover{
  background:linear-gradient(135deg,#2d7cff,#0a49bb)!important;
  color:#fff!important;
  box-shadow:0 18px 46px rgba(23,105,255,.44)!important;
}

/* Extra safety: prevent media overflow anywhere */
.real-video-card,
.video-card,
.media-column,
.carousel-slide,
.feature-card.media-card{
  min-width:0!important;
}


/* ═══════════════════════════════════════════
   MOBILE FINAL FIXES — hero rating first fold + comparison cards
═══════════════════════════════════════════ */

/* Mobile: show the product image + rating card at the beginning of the first fold */
@media(max-width:900px){
  .hero{
    padding-top:0!important;
  }
  .hero-grid{
    display:flex!important;
    flex-direction:column!important;
    gap:0!important;
    min-height:0!important;
    padding-top:18px!important;
  }
  .hero-visual.hero-right,
  .hero-right{
    display:flex!important;
    order:-1!important;
    width:100%!important;
    min-height:0!important;
    border-left:0!important;
    background:transparent!important;
    margin:0 auto 18px!important;
    padding:0!important;
    overflow:visible!important;
  }
  .hero-content.hero-left,
  .hero-left{
    order:1!important;
    width:100%!important;
    padding:0 0 44px!important;
    gap:14px!important;
  }
  .hero-card{
    width:100%!important;
    max-width:420px!important;
    margin:0 auto!important;
    padding:12px!important;
    border-radius:18px!important;
    background:#fff!important;
    border:1px solid rgba(20,164,77,.22)!important;
    box-shadow:0 12px 34px rgba(20,20,20,.10)!important;
    overflow:visible!important;
  }
  .hero-card .hero-product,
  .hero-right img{
    width:100%!important;
    height:auto!important;
    max-height:260px!important;
    object-fit:contain!important;
    object-position:center!important;
    animation:none!important;
    border-radius:14px!important;
    background:#f7fbff!important;
  }
  .hero-badge-float,
  .rating-card{
    position:relative!important;
    left:auto!important;
    right:auto!important;
    bottom:auto!important;
    top:auto!important;
    margin:-22px auto 0!important;
    max-width:92%!important;
    width:auto!important;
    padding:12px 14px!important;
    border-radius:12px!important;
    z-index:4!important;
    box-shadow:0 10px 28px rgba(20,164,77,.20)!important;
  }
  .rating-card strong,
  .hero-badge-float strong{
    font-size:1.65rem!important;
  }
  .rating-card span{
    font-size:11.5px!important;
    line-height:1.35!important;
  }
  .hero h1{
    font-size:clamp(1.9rem,8.2vw,2.45rem)!important;
    line-height:1.08!important;
  }
  .hero-sub{
    font-size:15px!important;
    line-height:1.65!important;
  }
}

@media(max-width:480px){
  .hero-card{max-width:360px!important}
  .hero-card .hero-product,
  .hero-right img{
    max-height:220px!important;
  }
}

/* Desktop keeps the comparison table; mobile uses readable cards instead of a cut table */
.comparison-mobile-cards{
  display:none;
}

@media(max-width:760px){
  #vergleich .comparison-table-wrap{
    display:none!important;
  }
  .comparison-mobile-cards{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:14px!important;
    margin:22px 0 18px!important;
  }
  .comparison-mobile-card{
    background:#fff!important;
    border:1px solid rgba(20,164,77,.22)!important;
    border-radius:14px!important;
    box-shadow:0 10px 28px rgba(20,20,20,.08)!important;
    overflow:hidden!important;
  }
  .comparison-mobile-card h3{
    background:#141414!important;
    color:#fff!important;
    font-family:var(--font-display)!important;
    font-size:1.1rem!important;
    line-height:1.15!important;
    letter-spacing:.4px!important;
    margin:0!important;
    padding:13px 16px!important;
  }
  .comparison-mobile-options{
    display:grid!important;
    grid-template-columns:1fr!important;
  }
  .comparison-mobile-option{
    display:grid!important;
    gap:4px!important;
    padding:13px 16px!important;
    border-top:1px solid rgba(20,20,20,.08)!important;
  }
  .comparison-mobile-option strong{
    display:block!important;
    color:#141414!important;
    font-weight:900!important;
    font-size:.9rem!important;
    letter-spacing:.2px!important;
  }
  .comparison-mobile-option span{
    display:block!important;
    color:#3a3f50!important;
    font-size:.9rem!important;
    line-height:1.55!important;
  }
  .comparison-mobile-option.featured{
    background:rgba(20,164,77,.08)!important;
    border-left:4px solid var(--cta-green)!important;
  }
  .comparison-mobile-option.featured strong{
    color:var(--cta-green-dark)!important;
  }
  #vergleich .review-note{
    margin-top:16px!important;
  }
}

/* Safety: prevent any hidden comparison overflow on very narrow devices */
@media(max-width:480px){
  #vergleich .container{
    overflow:hidden!important;
  }
  .comparison-mobile-card,
  .comparison-mobile-option{
    min-width:0!important;
  }
}


/* ═══════════════════════════════════════════
   MOBILE HERO TOP POLISH — tighter top bar + clean first-fold product card
   Added after QA screenshot: prevents rating card overlap/cut on mobile.
═══════════════════════════════════════════ */
@media(max-width:600px){
  body{
    padding-top:122px!important;
  }
  .urgent-bar{
    min-height:52px!important;
    height:52px!important;
    padding:7px 12px!important;
    font-size:11px!important;
    line-height:1.2!important;
    letter-spacing:.18px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    white-space:normal!important;
  }
  #main-nav{
    top:52px!important;
    height:70px!important;
  }
  .nav-inner{
    min-height:70px!important;
    padding:0 18px!important;
  }
  .nav-brand img,
  .logo-img{
    max-height:34px!important;
    width:auto!important;
  }
  .nav-toggle{
    width:38px!important;
    height:38px!important;
    align-items:center!important;
    justify-content:center!important;
  }
}

@media(max-width:900px){
  .hero{
    padding-top:0!important;
  }
  .hero-grid{
    padding-top:14px!important;
  }
  .hero-card{
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:0!important;
    max-width:390px!important;
    width:100%!important;
    margin:0 auto!important;
    padding:12px!important;
    overflow:visible!important;
  }
  .hero-card .hero-product,
  .hero-card > img.hero-product,
  .hero-right img{
    display:block!important;
    width:100%!important;
    height:auto!important;
    max-height:245px!important;
    object-fit:contain!important;
    object-position:center center!important;
    flex:0 0 auto!important;
    border-radius:14px!important;
    margin:0 auto!important;
  }
  .hero-card .rating-card,
  .hero-card .hero-badge-float,
  .rating-card.hero-badge-float{
    position:relative!important;
    display:block!important;
    left:auto!important;
    right:auto!important;
    top:auto!important;
    bottom:auto!important;
    transform:none!important;
    margin:-10px auto 0!important;
    width:calc(100% - 28px)!important;
    max-width:310px!important;
    min-width:0!important;
    padding:12px 14px!important;
    overflow:visible!important;
    text-align:left!important;
  }
  .hero-card .rating-card strong,
  .hero-card .hero-badge-float strong{
    display:block!important;
    font-size:1.55rem!important;
    line-height:1.05!important;
    margin:0 0 4px!important;
    white-space:nowrap!important;
  }
  .hero-card .rating-card span,
  .hero-card .hero-badge-float span{
    display:block!important;
    font-size:11.2px!important;
    line-height:1.34!important;
    max-width:100%!important;
    color:#4f5d72!important;
  }
}

@media(max-width:430px){
  .hero-grid{
    padding-left:16px!important;
    padding-right:16px!important;
  }
  .hero-card{
    max-width:100%!important;
    padding:10px!important;
  }
  .hero-card .hero-product,
  .hero-right img{
    max-height:220px!important;
  }
  .hero-card .rating-card,
  .hero-card .hero-badge-float{
    width:calc(100% - 20px)!important;
    max-width:290px!important;
  }
}

@media(max-width:360px){
  body{padding-top:126px!important}
  .urgent-bar{
    height:56px!important;
    min-height:56px!important;
    font-size:10.5px!important;
  }
  #main-nav{
    top:56px!important;
  }
  .hero-card .hero-product,
  .hero-right img{
    max-height:205px!important;
  }
  .hero-card .rating-card,
  .hero-card .hero-badge-float{
    max-width:270px!important;
  }
}


/* ═══════════════════════════════════════════
   QA FIX — mobile hero, complete hamburger menu, and disappearing urgent bar
═══════════════════════════════════════════ */

/* Top urgent bar hides after the user scrolls, while the main nav moves to the top. */
.urgent-bar{
  transition:transform .24s ease, opacity .24s ease, visibility .24s ease!important;
  will-change:transform,opacity;
}
#main-nav{
  transition:top .24s ease, box-shadow .24s ease!important;
}
body.announcement-hidden .urgent-bar{
  transform:translateY(-110%)!important;
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
}
body.announcement-hidden #main-nav{
  top:0!important;
  box-shadow:0 8px 28px rgba(0,0,0,.11)!important;
}
body.announcement-hidden .mobile-menu{
  top:68px!important;
  height:calc(100svh - 68px)!important;
  max-height:calc(100svh - 68px)!important;
}

/* On mobile, use the dedicated hamburger panel only; avoid opening the hidden desktop nav too. */
@media(max-width:960px){
  #navLinks,
  #navLinks.open{
    display:none!important;
  }

  .mobile-menu{
    left:0!important;
    right:0!important;
    width:100%!important;
    max-width:100%!important;
    top:98px!important;
    height:auto!important;
    max-height:calc(100svh - 98px)!important;
    transform:translateY(-10px)!important;
    opacity:0!important;
    pointer-events:none!important;
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    align-content:start!important;
    gap:8px!important;
    padding:14px!important;
    overflow-y:auto!important;
    border-left:0!important;
    border-top:1px solid var(--border-blue)!important;
    box-shadow:0 18px 42px rgba(20,20,20,.16)!important;
  }
  .mobile-menu.active{
    transform:translateY(0)!important;
    opacity:1!important;
    pointer-events:auto!important;
  }
  .mobile-menu .mobile-close{
    grid-column:1/-1!important;
    justify-self:end!important;
    margin-bottom:2px!important;
  }
  .mobile-menu a{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    min-height:42px!important;
    padding:9px 8px!important;
    border:1px solid rgba(20,164,77,.18)!important;
    border-radius:10px!important;
    background:#f7fbff!important;
    color:#141414!important;
    font-size:.86rem!important;
    line-height:1.15!important;
    text-align:center!important;
    white-space:normal!important;
  }
  .mobile-menu a:hover{
    background:rgba(20,164,77,.09)!important;
    border-color:rgba(20,164,77,.36)!important;
  }
  .mobile-menu a.btn,
  .mobile-menu a.btn-cta,
  .mobile-menu a.track-link{
    grid-column:1/-1!important;
    min-height:48px!important;
    margin-top:4px!important;
    color:#fff!important;
    border:0!important;
    background:linear-gradient(135deg,var(--cta-green),var(--cta-green-dark))!important;
  }
  body.menu-open{
    overflow:hidden!important;
  }
}

/* Keep the hero product centered and fully visible on mobile. */
@media(max-width:900px){
  .hero{
    overflow:hidden!important;
    min-height:0!important;
  }
  .hero .container.hero-grid,
  .container.hero-grid{
    width:100%!important;
    max-width:100%!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:flex-start!important;
    padding:18px 18px 0!important;
    margin:0 auto!important;
    gap:0!important;
    min-height:0!important;
  }
  .hero-visual.hero-right,
  .hero-right{
    order:-1!important;
    width:100%!important;
    max-width:430px!important;
    margin:0 auto 18px!important;
    padding:0!important;
    border-left:0!important;
    background:transparent!important;
    overflow:visible!important;
    min-height:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
  }
  .hero-card{
    width:100%!important;
    max-width:390px!important;
    margin:0 auto!important;
    padding:12px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    border-radius:18px!important;
    overflow:visible!important;
    background:#fff!important;
    border:1px solid rgba(20,164,77,.22)!important;
    box-shadow:0 12px 34px rgba(20,20,20,.10)!important;
    transform:none!important;
  }
  .hero-card .hero-product,
  .hero-card > img.hero-product,
  .hero-right img{
    display:block!important;
    width:min(100%,330px)!important;
    max-width:100%!important;
    height:auto!important;
    max-height:none!important;
    min-height:0!important;
    aspect-ratio:auto!important;
    object-fit:contain!important;
    object-position:center center!important;
    margin:0 auto!important;
    transform:none!important;
    animation:none!important;
    position:relative!important;
    left:auto!important;
    right:auto!important;
    top:auto!important;
    bottom:auto!important;
    border-radius:14px!important;
    background:#f7fbff!important;
  }
  .hero-card .rating-card,
  .hero-card .hero-badge-float,
  .rating-card.hero-badge-float{
    position:relative!important;
    left:auto!important;
    right:auto!important;
    top:auto!important;
    bottom:auto!important;
    transform:none!important;
    width:calc(100% - 24px)!important;
    max-width:310px!important;
    margin:-8px auto 0!important;
    text-align:left!important;
  }
  .hero-content.hero-left,
  .hero-left{
    width:100%!important;
    max-width:760px!important;
    margin:0 auto!important;
    padding:0 0 44px!important;
  }
}

@media(max-width:600px){
  body.announcement-hidden .mobile-menu{
    top:70px!important;
    height:calc(100svh - 70px)!important;
    max-height:calc(100svh - 70px)!important;
  }
  .mobile-menu{
    top:122px!important;
    max-height:calc(100svh - 122px)!important;
    padding:12px!important;
    gap:7px!important;
  }
  .mobile-menu a{
    min-height:40px!important;
    padding:8px 6px!important;
    font-size:.78rem!important;
    letter-spacing:.15px!important;
  }
  .mobile-menu a.btn,
  .mobile-menu a.btn-cta,
  .mobile-menu a.track-link{
    min-height:46px!important;
    font-size:.86rem!important;
  }
  .hero .container.hero-grid,
  .container.hero-grid{
    padding-left:14px!important;
    padding-right:14px!important;
  }
  .hero-visual.hero-right,
  .hero-right{
    max-width:100%!important;
  }
  .hero-card{
    max-width:360px!important;
    padding:10px!important;
  }
  .hero-card .hero-product,
  .hero-card > img.hero-product,
  .hero-right img{
    width:min(100%,310px)!important;
  }
}

@media(max-width:360px){
  .mobile-menu{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    padding:10px!important;
    gap:6px!important;
  }
  .mobile-menu a{
    min-height:38px!important;
    font-size:.72rem!important;
    padding:7px 5px!important;
  }
  .hero-card .hero-product,
  .hero-card > img.hero-product,
  .hero-right img{
    width:min(100%,285px)!important;
  }
}


/* ═══════════════════════════════════════════
   QA FIX — top urgent bar square corners
   Removes rounded clipping from the highest announcement bar.
═══════════════════════════════════════════ */
.urgent-bar,
.urgent-bar::before,
.urgent-bar::after{
  border-radius:0!important;
  clip-path:none!important;
}
.urgent-bar{
  left:0!important;
  right:0!important;
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  overflow:visible!important;
  box-sizing:border-box!important;
}


/* ═══════════════════════════════════════════
   QA FIX — square urgent bar + desktop anchor fit
   Keeps the top announcement full-width with no rounded clipping and
   compresses desktop anchor spacing so the nav never collides with CTA.
═══════════════════════════════════════════ */
.urgent-bar,
.urgent-bar::before,
.urgent-bar::after{
  border-radius:0!important;
  border-start-start-radius:0!important;
  border-start-end-radius:0!important;
  border-end-start-radius:0!important;
  border-end-end-radius:0!important;
  -webkit-border-radius:0!important;
  clip-path:none!important;
  -webkit-clip-path:none!important;
  mask-image:none!important;
  -webkit-mask-image:none!important;
}

.urgent-bar{
  position:fixed!important;
  top:0!important;
  left:0!important;
  right:auto!important;
  width:100vw!important;
  min-width:100vw!important;
  max-width:100vw!important;
  margin:0!important;
  border:0!important;
  outline:0!important;
  box-shadow:none!important;
  overflow:visible!important;
  box-sizing:border-box!important;
}

/* Desktop/tablet header: reduce spacing, allow more usable width, and prevent overflow. */
@media(min-width:1021px){
  .topbar .nav-inner,
  #main-nav .nav-inner{
    width:100%!important;
    max-width:none!important;
    padding-left:clamp(16px,2.2vw,44px)!important;
    padding-right:clamp(16px,2.2vw,44px)!important;
    gap:clamp(8px,.75vw,14px)!important;
  }

  .topbar-logo,
  .nav-brand{
    flex:0 0 clamp(165px,13vw,235px)!important;
    min-width:0!important;
  }

  .topbar-logo img,
  .nav-brand img{
    width:auto!important;
    height:clamp(32px,2.2vw,39px)!important;
    max-width:clamp(155px,13vw,235px)!important;
    object-fit:contain!important;
  }

  .nav-links{
    flex:1 1 auto!important;
    min-width:0!important;
    max-width:none!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:0!important;
    overflow:visible!important;
    white-space:nowrap!important;
  }

  .nav-links a{
    flex:0 1 auto!important;
    font-size:clamp(11px,.72vw,13px)!important;
    line-height:1!important;
    padding:6px clamp(4px,.42vw,8px)!important;
    letter-spacing:0!important;
    white-space:nowrap!important;
  }

  .nav-cta.btn-cta,
  .nav-cta{
    flex:0 0 auto!important;
    min-width:clamp(230px,19vw,360px)!important;
    max-width:clamp(230px,21vw,380px)!important;
    margin-left:clamp(4px,.55vw,10px)!important;
    padding-left:clamp(14px,1.25vw,22px)!important;
    padding-right:clamp(14px,1.25vw,22px)!important;
    font-size:clamp(13px,.9vw,15px)!important;
    white-space:nowrap!important;
  }
}

@media(min-width:1021px) and (max-width:1280px){
  .topbar-logo,
  .nav-brand{
    flex-basis:150px!important;
  }
  .topbar-logo img,
  .nav-brand img{
    max-width:150px!important;
  }
  .nav-links a{
    font-size:11px!important;
    padding-left:4px!important;
    padding-right:4px!important;
  }
  .nav-cta.btn-cta,
  .nav-cta{
    min-width:218px!important;
    max-width:250px!important;
    font-size:12.5px!important;
  }
}

/* Mobile announcement bar: square corners, no text clipping, correct nav offset. */
@media(max-width:600px){
  body.exact-copy-page,
  body{
    padding-top:112px!important;
  }

  .urgent-bar{
    height:44px!important;
    min-height:44px!important;
    max-height:none!important;
    padding:5px 8px!important;
    font-size:10.5px!important;
    line-height:1.15!important;
    letter-spacing:.1px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    white-space:normal!important;
    flex-wrap:wrap!important;
    border-radius:0!important;
    overflow:visible!important;
  }

  .topbar,
  #main-nav{
    top:44px!important;
    height:68px!important;
  }

  .mobile-menu{
    top:112px!important;
    max-height:calc(100svh - 112px)!important;
  }

  body.announcement-hidden .mobile-menu{
    top:68px!important;
    max-height:calc(100svh - 68px)!important;
  }
}

@media(max-width:360px){
  body.exact-copy-page,
  body{
    padding-top:116px!important;
  }

  .urgent-bar{
    height:48px!important;
    min-height:48px!important;
    padding:5px 7px!important;
    font-size:9.8px!important;
    line-height:1.13!important;
  }

  .topbar,
  #main-nav{
    top:48px!important;
  }

  .mobile-menu{
    top:116px!important;
    max-height:calc(100svh - 116px)!important;
  }
}


/* ═══════════════════════════════════════════
   FINAL QA HEADER FIX — 2026-05-31
   1) barra azul superior SEM cantos arredondados no mobile
   2) âncoras desktop encostadas no CTA sem estourar largura
   ═══════════════════════════════════════════ */

/* Reset explícito para impedir qualquer arredondamento herdado do topo. */
html,
body{
  border-radius:0!important;
  -webkit-border-radius:0!important;
}

/* Barra de anúncio: fundo desenhado por pseudo-elemento quadrado para eliminar
   qualquer clipping/raio visual que o navegador ainda pudesse aplicar ao bloco. */
body > .urgent-bar,
body > .urgent-bar.urgent-strip{
  position:fixed!important;
  top:0!important;
  left:0!important;
  right:auto!important;
  bottom:auto!important;
  z-index:2147483000!important;
  width:100vw!important;
  min-width:100vw!important;
  max-width:100vw!important;
  height:32px!important;
  min-height:32px!important;
  max-height:none!important;
  margin:0!important;
  padding:0 12px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  color:#fff!important;
  font-size:13px!important;
  line-height:1.15!important;
  font-weight:800!important;
  letter-spacing:.25px!important;
  background:transparent!important;
  border:0!important;
  outline:0!important;
  box-shadow:none!important;
  overflow:visible!important;
  box-sizing:border-box!important;
  border-radius:0!important;
  border-top-left-radius:0!important;
  border-top-right-radius:0!important;
  border-bottom-left-radius:0!important;
  border-bottom-right-radius:0!important;
  -webkit-border-radius:0!important;
  clip-path:none!important;
  -webkit-clip-path:none!important;
  mask:none!important;
  -webkit-mask:none!important;
  isolation:isolate!important;
}

body > .urgent-bar::before,
body > .urgent-bar.urgent-strip::before{
  content:""!important;
  position:absolute!important;
  z-index:-1!important;
  top:0!important;
  bottom:0!important;
  left:-8px!important;
  right:-8px!important;
  width:auto!important;
  height:auto!important;
  background:linear-gradient(90deg,#1556c9 0%,#175fe2 50%,#1556c9 100%)!important;
  background-size:200% 100%!important;
  animation:gradShift 4s ease infinite!important;
  border:0!important;
  outline:0!important;
  box-shadow:none!important;
  border-radius:0!important;
  -webkit-border-radius:0!important;
  clip-path:none!important;
  -webkit-clip-path:none!important;
  mask:none!important;
  -webkit-mask:none!important;
  pointer-events:none!important;
}

body > .urgent-bar::after,
body > .urgent-bar.urgent-strip::after{
  content:none!important;
  display:none!important;
}

/* Mantém o comportamento de sumir ao rolar. */
body.announcement-hidden > .urgent-bar{
  transform:translateY(-115%)!important;
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
}

/* Desktop: empurra as âncoras para perto do CTA e reduz espaçamento sem cortar textos. */
@media(min-width:1021px){
  body.exact-copy-page,
  body{
    padding-top:100px!important;
  }

  .topbar,
  #main-nav{
    top:32px!important;
    height:68px!important;
  }

  body.announcement-hidden .topbar,
  body.announcement-hidden #main-nav{
    top:0!important;
  }

  .topbar .nav-inner,
  #main-nav .nav-inner{
    width:100%!important;
    max-width:none!important;
    padding-left:clamp(34px,2.4vw,54px)!important;
    padding-right:clamp(34px,2.2vw,44px)!important;
    gap:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
  }

  .topbar-logo,
  .nav-brand{
    flex:0 0 clamp(185px,14.5vw,260px)!important;
    min-width:0!important;
    margin:0!important;
  }

  .topbar-logo img,
  .nav-brand img{
    width:auto!important;
    height:clamp(34px,2.25vw,42px)!important;
    max-width:clamp(175px,14.5vw,260px)!important;
    object-fit:contain!important;
  }

  .nav-links{
    flex:0 1 auto!important;
    min-width:0!important;
    width:auto!important;
    max-width:none!important;
    margin-left:auto!important;
    margin-right:clamp(8px,.85vw,16px)!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-end!important;
    gap:0!important;
    overflow:visible!important;
    white-space:nowrap!important;
  }

  .nav-links a{
    flex:0 0 auto!important;
    width:auto!important;
    font-size:clamp(12px,.82vw,15px)!important;
    line-height:1!important;
    padding:6px clamp(5px,.42vw,9px)!important;
    margin:0!important;
    letter-spacing:.02px!important;
    white-space:nowrap!important;
  }

  .nav-cta.btn-cta,
  .nav-cta{
    flex:0 0 auto!important;
    width:auto!important;
    min-width:clamp(285px,18vw,365px)!important;
    max-width:clamp(285px,19vw,365px)!important;
    margin-left:0!important;
    padding-left:clamp(18px,1.35vw,28px)!important;
    padding-right:clamp(18px,1.35vw,28px)!important;
    font-size:clamp(13px,.9vw,16px)!important;
    white-space:nowrap!important;
  }
}

@media(min-width:1021px) and (max-width:1440px){
  .topbar .nav-inner,
  #main-nav .nav-inner{
    padding-left:24px!important;
    padding-right:24px!important;
  }

  .topbar-logo,
  .nav-brand{
    flex-basis:165px!important;
  }

  .topbar-logo img,
  .nav-brand img{
    max-width:165px!important;
    height:36px!important;
  }

  .nav-links{
    margin-right:8px!important;
  }

  .nav-links a{
    font-size:11.5px!important;
    padding-left:4px!important;
    padding-right:4px!important;
  }

  .nav-cta.btn-cta,
  .nav-cta{
    min-width:235px!important;
    max-width:285px!important;
    padding-left:15px!important;
    padding-right:15px!important;
    font-size:12.5px!important;
  }
}

@media(min-width:1021px) and (max-width:1180px){
  .topbar .nav-inner,
  #main-nav .nav-inner{
    padding-left:18px!important;
    padding-right:18px!important;
  }

  .topbar-logo,
  .nav-brand{
    flex-basis:145px!important;
  }

  .topbar-logo img,
  .nav-brand img{
    max-width:145px!important;
  }

  .nav-links a{
    font-size:10.5px!important;
    padding-left:3px!important;
    padding-right:3px!important;
  }

  .nav-cta.btn-cta,
  .nav-cta{
    min-width:210px!important;
    max-width:245px!important;
    font-size:11.5px!important;
  }
}

/* Mobile: barra azul quadrada de ponta a ponta, com texto visível. */
@media(max-width:600px){
  body.exact-copy-page,
  body{
    padding-top:108px!important;
  }

  body > .urgent-bar,
  body > .urgent-bar.urgent-strip{
    top:0!important;
    left:0!important;
    right:auto!important;
    width:100vw!important;
    min-width:100vw!important;
    max-width:100vw!important;
    height:40px!important;
    min-height:40px!important;
    padding:3px 8px!important;
    font-size:9.6px!important;
    line-height:1.12!important;
    letter-spacing:0!important;
    white-space:normal!important;
    flex-wrap:wrap!important;
    border-radius:0!important;
    -webkit-border-radius:0!important;
    overflow:visible!important;
  }

  body > .urgent-bar::before,
  body > .urgent-bar.urgent-strip::before{
    left:-10px!important;
    right:-10px!important;
    border-radius:0!important;
    -webkit-border-radius:0!important;
  }

  .topbar,
  #main-nav{
    top:40px!important;
    height:68px!important;
  }

  body.announcement-hidden .topbar,
  body.announcement-hidden #main-nav{
    top:0!important;
  }

  .mobile-menu{
    top:108px!important;
    max-height:calc(100svh - 108px)!important;
  }

  body.announcement-hidden .mobile-menu{
    top:68px!important;
    max-height:calc(100svh - 68px)!important;
  }
}

@media(max-width:360px){
  body.exact-copy-page,
  body{
    padding-top:110px!important;
  }

  body > .urgent-bar,
  body > .urgent-bar.urgent-strip{
    height:42px!important;
    min-height:42px!important;
    padding:3px 7px!important;
    font-size:9.1px!important;
    line-height:1.1!important;
  }

  .topbar,
  #main-nav{
    top:42px!important;
  }

  body.announcement-hidden .topbar,
  body.announcement-hidden #main-nav{
    top:0!important;
  }

  .mobile-menu{
    top:110px!important;
    max-height:calc(100svh - 110px)!important;
  }
}



/* ═══════════════════════════════════════════
   QA FINAL — mobile top announcement vertical spacing
   Keeps the blue announcement behavior, but adds top breathing room so the
   text is not visually clipped by the rounded mobile viewport/container.
═══════════════════════════════════════════ */
@media(max-width:1020px){
  body.exact-copy-page,
  body{
    padding-top:106px!important;
  }

  body > .urgent-bar,
  body > .urgent-bar.urgent-strip{
    height:38px!important;
    min-height:38px!important;
    max-height:none!important;
    padding:6px 8px 2px!important;
    display:flex!important;
    align-items:flex-start!important;
    justify-content:center!important;
    text-align:center!important;
    line-height:1.15!important;
    overflow:visible!important;
    white-space:normal!important;
  }

  .topbar,
  #main-nav{
    top:38px!important;
    height:68px!important;
  }

  body.announcement-hidden .topbar,
  body.announcement-hidden #main-nav{
    top:0!important;
  }

  .mobile-menu{
    top:106px!important;
    max-height:calc(100svh - 106px)!important;
  }

  body.announcement-hidden .mobile-menu{
    top:68px!important;
    max-height:calc(100svh - 68px)!important;
  }
}

@media(max-width:600px){
  body.exact-copy-page,
  body{
    padding-top:114px!important;
  }

  body > .urgent-bar,
  body > .urgent-bar.urgent-strip{
    height:46px!important;
    min-height:46px!important;
    padding:7px 8px 3px!important;
    align-items:flex-start!important;
    font-size:9.6px!important;
    line-height:1.13!important;
  }

  .topbar,
  #main-nav{
    top:46px!important;
  }

  .mobile-menu{
    top:114px!important;
    max-height:calc(100svh - 114px)!important;
  }

  body.announcement-hidden .mobile-menu{
    top:68px!important;
    max-height:calc(100svh - 68px)!important;
  }
}

@media(max-width:360px){
  body.exact-copy-page,
  body{
    padding-top:116px!important;
  }

  body > .urgent-bar,
  body > .urgent-bar.urgent-strip{
    height:48px!important;
    min-height:48px!important;
    padding-top:8px!important;
    padding-bottom:3px!important;
    font-size:9.1px!important;
    line-height:1.12!important;
  }

  .topbar,
  #main-nav{
    top:48px!important;
  }

  .mobile-menu{
    top:116px!important;
    max-height:calc(100svh - 116px)!important;
  }
}
