/* ============ ENERGY CASINO REVIEW - DESIGN SYSTEM ============ */
:root{
  --bg:#0d0e12;
  --bg-2:#15171f;
  --bg-3:#1c1f2a;
  --surface:#1f2330;
  --surface-2:#272c3b;
  --border:#2d3344;
  --text:#ececf0;
  --text-dim:#a8acb8;
  --text-muted:#7c8090;
  --primary:#ffc107;
  --primary-2:#ffb300;
  --primary-glow:rgba(255,193,7,.35);
  --accent:#ff6a00;
  --success:#20c997;
  --danger:#ff5566;
  --radius:10px;
  --radius-sm:6px;
  --radius-lg:18px;
  --shadow:0 6px 24px rgba(0,0,0,.35);
  --shadow-glow:0 0 24px rgba(255,193,7,.18);
  --container:1180px;
  --header-h:70px;
  --transition:.25s ease;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:90px}
body{
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  background:var(--bg);
  background-image:
    radial-gradient(ellipse at top right,rgba(255,193,7,.06),transparent 55%),
    radial-gradient(ellipse at bottom left,rgba(255,106,0,.05),transparent 55%);
  background-attachment:fixed;
  color:var(--text);
  line-height:1.65;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%;height:auto;display:block}
a{color:var(--primary);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--primary-2)}

.container{max-width:var(--container);margin:0 auto;padding:0 20px}

/* ============ HEADER ============ */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(13,14,18,.85);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid var(--border);
  height:var(--header-h);
  transition:height var(--transition),background var(--transition);
}
.site-header.shrunk{height:58px;background:rgba(13,14,18,.95)}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:100%;max-width:var(--container);
  margin:0 auto;padding:0 20px;gap:20px;
}
.logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.logo img{height:32px;width:auto}
.nav-desktop{display:flex;gap:6px;flex:1;justify-content:center}
.nav-desktop a{
  color:var(--text-dim);font-weight:500;font-size:14.5px;
  padding:8px 14px;border-radius:var(--radius-sm);
  transition:all var(--transition);
  white-space:nowrap;
}
.nav-desktop a:hover,.nav-desktop a.active{
  color:var(--primary);background:rgba(255,193,7,.08);
}
.header-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#1a1500 !important;
  padding:10px 22px;border-radius:999px;
  font-weight:700;font-size:14px;
  box-shadow:0 4px 14px var(--primary-glow);
  transition:all var(--transition);
  white-space:nowrap;
  border:none;cursor:pointer;
}
.header-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(255,193,7,.45);
  color:#1a1500 !important;
}
.menu-toggle{
  display:none;background:transparent;border:none;
  color:var(--text);width:42px;height:42px;cursor:pointer;
  border-radius:var(--radius-sm);align-items:center;justify-content:center;
}
.menu-toggle svg{width:24px;height:24px}

/* Mobile drawer */
.mobile-drawer{
  position:fixed;top:0;right:-100%;width:85%;max-width:340px;height:100vh;
  background:var(--bg-2);border-left:1px solid var(--border);
  z-index:200;transition:right .35s cubic-bezier(.4,0,.2,1);
  padding:24px 20px;overflow-y:auto;
  box-shadow:-12px 0 32px rgba(0,0,0,.4);
}
.mobile-drawer.open{right:0}
.drawer-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.6);
  opacity:0;pointer-events:none;transition:opacity .3s;z-index:150;
}
.drawer-overlay.open{opacity:1;pointer-events:auto}
.drawer-close{
  background:transparent;border:none;color:var(--text);
  width:40px;height:40px;cursor:pointer;border-radius:var(--radius-sm);
  margin-left:auto;display:block;font-size:24px;
}
.mobile-drawer nav{display:flex;flex-direction:column;gap:4px;margin-top:20px}
.mobile-drawer nav a{
  color:var(--text);padding:13px 14px;border-radius:var(--radius-sm);
  font-weight:500;font-size:15px;
  border-bottom:1px solid var(--border);
}
.mobile-drawer nav a:hover{background:var(--surface)}
.mobile-drawer .header-cta{margin-top:24px;width:100%;justify-content:center}

/* ============ HERO ============ */
.hero{
  position:relative;padding:64px 0 56px;overflow:hidden;
  background:linear-gradient(180deg,rgba(255,193,7,.05) 0%,transparent 100%);
}
.hero::before{
  content:"";position:absolute;top:-100px;right:-80px;width:380px;height:380px;
  background:radial-gradient(circle,var(--primary-glow),transparent 70%);
  pointer-events:none;
}
.hero-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:48px;align-items:center;position:relative}
.hero h1{
  font-size:clamp(28px,4.2vw,46px);line-height:1.15;
  font-weight:800;letter-spacing:-.02em;margin-bottom:16px;
}
.hero h1 .highlight{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero p.lead{font-size:18px;color:var(--text-dim);margin-bottom:24px;max-width:580px}
.hero-meta{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:28px}
.hero-meta .pill{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--surface);border:1px solid var(--border);
  padding:7px 14px;border-radius:999px;font-size:13.5px;color:var(--text-dim);
}
.hero-meta .pill svg{width:16px;height:16px;color:var(--primary)}
.hero-cta-row{display:flex;gap:14px;flex-wrap:wrap}

/* Verdict box (hero-side) */
.verdict-box{
  background:linear-gradient(160deg,var(--surface),var(--bg-3));
  border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:28px;box-shadow:var(--shadow);
  position:relative;overflow:hidden;
}
.verdict-box::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
}
.verdict-rating{display:flex;align-items:baseline;gap:8px;margin-bottom:8px}
.verdict-rating .score{font-size:48px;font-weight:800;color:var(--primary);line-height:1}
.verdict-rating .max{color:var(--text-muted);font-size:18px}
.verdict-stars{display:flex;gap:3px;margin-bottom:14px}
.verdict-stars .star{
  width:22px;height:22px;color:var(--primary);
  filter:drop-shadow(0 0 4px var(--primary-glow));
}
.verdict-stars .star.empty{color:var(--border)}
.verdict-title{font-size:14px;color:var(--text-muted);text-transform:uppercase;letter-spacing:.08em;margin-bottom:6px}
.verdict-tagline{font-size:18px;font-weight:700;margin-bottom:18px}
.verdict-points{list-style:none;margin-bottom:20px}
.verdict-points li{
  display:flex;gap:10px;align-items:flex-start;padding:7px 0;
  color:var(--text-dim);font-size:14.5px;
}
.verdict-points li::before{
  content:"";width:6px;height:6px;border-radius:50%;
  background:var(--primary);margin-top:9px;flex-shrink:0;
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 28px;border-radius:999px;font-weight:700;font-size:15px;
  border:none;cursor:pointer;transition:all var(--transition);
  text-decoration:none;line-height:1;
}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#1a1500 !important;
  box-shadow:0 6px 20px var(--primary-glow);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(255,193,7,.5);
  color:#1a1500 !important;
}
.btn-ghost{
  background:transparent;color:var(--text) !important;
  border:1px solid var(--border);
}
.btn-ghost:hover{border-color:var(--primary);color:var(--primary) !important}
.btn-large{padding:18px 36px;font-size:16px}
.btn-block{display:flex;width:100%}

/* ============ SECTIONS ============ */
section.content{padding:48px 0}
section.content:nth-of-type(even){background:rgba(255,255,255,.012)}

h2{font-size:clamp(22px,3vw,32px);margin-bottom:18px;line-height:1.2;font-weight:800;letter-spacing:-.01em}
h3{font-size:clamp(19px,2.2vw,24px);margin:24px 0 12px;font-weight:700}
h4{font-size:18px;margin:18px 0 8px;font-weight:700;color:var(--primary)}
p{margin-bottom:14px;color:var(--text-dim)}
p strong,li strong{color:var(--text)}

ul.bullets,ol.steps{margin:14px 0 18px 18px;color:var(--text-dim)}
ul.bullets li,ol.steps li{margin-bottom:8px;line-height:1.65}

/* Pros & Cons */
.pros-cons{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin:24px 0}
.pros-cons .card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:22px;transition:transform var(--transition);
}
.pros-cons .card:hover{transform:translateY(-3px)}
.pros-cons .card.pros{border-left:3px solid var(--success)}
.pros-cons .card.cons{border-left:3px solid var(--danger)}
.pros-cons h3{margin-top:0;display:flex;align-items:center;gap:8px;font-size:18px}
.pros-cons .pros h3{color:var(--success)}
.pros-cons .cons h3{color:var(--danger)}
.pros-cons ul{list-style:none}
.pros-cons li{padding:8px 0;color:var(--text-dim);display:flex;gap:10px;font-size:14.5px;line-height:1.55}
.pros-cons li::before{
  font-weight:bold;flex-shrink:0;margin-top:1px;
}
.pros-cons .pros li::before{content:"+";color:var(--success)}
.pros-cons .cons li::before{content:"−";color:var(--danger)}

/* Tables */
.table-wrap{overflow-x:auto;margin:18px 0;border-radius:var(--radius);border:1px solid var(--border)}
table{width:100%;border-collapse:collapse;background:var(--surface);font-size:14.5px}
th,td{padding:14px 16px;text-align:left;border-bottom:1px solid var(--border)}
th{background:var(--surface-2);font-weight:700;color:var(--primary);font-size:13.5px;text-transform:uppercase;letter-spacing:.04em}
tr:last-child td{border-bottom:none}
tr:hover td{background:rgba(255,193,7,.03)}

/* Callout */
.callout{
  background:linear-gradient(135deg,rgba(255,193,7,.08),rgba(255,106,0,.05));
  border:1px solid rgba(255,193,7,.25);
  border-left:4px solid var(--primary);
  border-radius:var(--radius);padding:20px 22px;margin:22px 0;
}
.callout strong{color:var(--primary)}
.callout-warn{
  background:linear-gradient(135deg,rgba(255,85,102,.08),rgba(255,85,102,.03));
  border:1px solid rgba(255,85,102,.25);
  border-left:4px solid var(--danger);
}
.callout-warn strong{color:var(--danger)}
.callout-info{
  background:linear-gradient(135deg,rgba(32,201,151,.08),rgba(32,201,151,.03));
  border:1px solid rgba(32,201,151,.25);
  border-left:4px solid var(--success);
}
.callout-info strong{color:var(--success)}

/* Figures */
figure{margin:24px auto;text-align:center}
figure img{
  width:90%;max-width:760px;height:auto;
  border-radius:var(--radius);
  box-shadow:0 8px 32px rgba(0,0,0,.35);
  margin:0 auto;
}
figcaption{
  margin-top:10px;font-size:13.5px;color:var(--text-muted);font-style:italic;
}

/* ============ FAQ ACCORDION ============ */
.faq{display:flex;flex-direction:column;gap:10px;margin:18px 0}
.faq-item{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
  transition:border-color var(--transition);
}
.faq-item[open]{border-color:rgba(255,193,7,.35)}
.faq-item summary{
  list-style:none;cursor:pointer;padding:18px 22px;
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  font-weight:600;font-size:16px;color:var(--text);
  transition:background var(--transition);
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:hover{background:var(--surface-2)}
.faq-item summary::after{
  content:"";width:12px;height:12px;flex-shrink:0;
  border-right:2px solid var(--primary);border-bottom:2px solid var(--primary);
  transform:rotate(45deg);transition:transform .25s;
}
.faq-item[open] summary::after{transform:rotate(-135deg)}
.faq-body{padding:0 22px 20px;color:var(--text-dim);line-height:1.7}
.faq-body p{margin-bottom:10px}
.faq-body p:last-child{margin-bottom:0}

/* ============ CTA STRIP ============ */
.cta-strip{
  background:linear-gradient(135deg,var(--bg-3),var(--surface-2));
  border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:36px;margin:32px 0;text-align:center;
  position:relative;overflow:hidden;
}
.cta-strip::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(ellipse at center top,var(--primary-glow),transparent 60%);
  pointer-events:none;
}
.cta-strip > *{position:relative}
.cta-strip h3{font-size:24px;margin-bottom:8px}
.cta-strip p{margin-bottom:18px;color:var(--text-dim);max-width:560px;margin-left:auto;margin-right:auto}

/* ============ STATS GRID ============ */
.stats-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:16px;margin:24px 0;
}
.stat-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:22px;text-align:center;
  transition:transform var(--transition),border-color var(--transition);
}
.stat-card:hover{transform:translateY(-3px);border-color:rgba(255,193,7,.4)}
.stat-card .value{font-size:30px;font-weight:800;color:var(--primary);margin-bottom:4px;line-height:1}
.stat-card .label{font-size:13px;color:var(--text-muted);text-transform:uppercase;letter-spacing:.05em}

/* ============ TABS ============ */
.tabs{margin:22px 0}
.tab-buttons{
  display:flex;gap:4px;background:var(--surface);
  border:1px solid var(--border);border-radius:var(--radius);
  padding:4px;margin-bottom:16px;flex-wrap:wrap;
}
.tab-buttons button{
  flex:1;background:transparent;color:var(--text-dim);
  border:none;padding:12px 16px;border-radius:var(--radius-sm);
  cursor:pointer;font-weight:600;font-size:14px;
  transition:all var(--transition);min-width:120px;
}
.tab-buttons button:hover{color:var(--text)}
.tab-buttons button.active{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#1a1500;box-shadow:0 2px 8px var(--primary-glow);
}
.tab-panel{display:none;animation:fade .3s}
.tab-panel.active{display:block}
@keyframes fade{from{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}

/* ============ STEPS / TIMELINE ============ */
.timeline{margin:24px 0;position:relative}
.timeline::before{
  content:"";position:absolute;left:18px;top:8px;bottom:8px;width:2px;
  background:linear-gradient(180deg,var(--primary),transparent);
}
.timeline-item{
  position:relative;padding:0 0 22px 56px;
}
.timeline-item:last-child{padding-bottom:0}
.timeline-item .num{
  position:absolute;left:0;top:0;width:38px;height:38px;
  border-radius:50%;background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#1a1500;font-weight:800;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px var(--primary-glow);font-size:15px;z-index:1;
}
.timeline-item h4{margin:6px 0 6px;color:var(--text);font-size:17px}
.timeline-item p{margin:0;color:var(--text-dim);font-size:14.5px}

/* ============ CALCULATOR / INTERACTIVES ============ */
.calculator{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:26px;margin:24px 0;
}
.calc-row{
  display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:end;
  margin-bottom:18px;
}
.calc-field label{
  display:block;font-size:13px;color:var(--text-muted);
  text-transform:uppercase;letter-spacing:.06em;margin-bottom:8px;
}
.calc-field input,.calc-field select{
  width:100%;background:var(--bg-2);color:var(--text);
  border:1px solid var(--border);border-radius:var(--radius-sm);
  padding:12px 14px;font-size:16px;font-family:inherit;
  transition:border-color var(--transition);
}
.calc-field input:focus,.calc-field select:focus{
  outline:none;border-color:var(--primary);box-shadow:0 0 0 3px var(--primary-glow);
}
.calc-result{
  background:linear-gradient(135deg,rgba(255,193,7,.1),rgba(255,106,0,.06));
  border:1px solid rgba(255,193,7,.3);
  border-radius:var(--radius);padding:18px;margin-top:8px;
}
.calc-result-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:6px 0;border-bottom:1px dashed rgba(255,193,7,.15);
}
.calc-result-row:last-child{border-bottom:none;font-size:18px;font-weight:700}
.calc-result .label{color:var(--text-dim)}
.calc-result .value{color:var(--primary);font-weight:700}

/* Bonus tier slider */
.tier-display{
  background:linear-gradient(135deg,var(--bg-3),var(--surface));
  border:1px solid var(--border);border-radius:var(--radius);
  padding:24px;text-align:center;margin:18px 0;
}
.tier-deposit{font-size:14px;color:var(--text-muted);text-transform:uppercase;letter-spacing:.06em;margin-bottom:6px}
.tier-amount{font-size:36px;font-weight:800;color:var(--primary);margin-bottom:6px;line-height:1}
.tier-spins{font-size:18px;color:var(--text);margin-bottom:14px}
.tier-bar{
  height:10px;background:var(--surface-2);border-radius:999px;overflow:hidden;
  position:relative;
}
.tier-bar-fill{
  height:100%;background:linear-gradient(90deg,var(--primary),var(--accent));
  border-radius:999px;transition:width .4s ease;
}
input[type="range"]{
  -webkit-appearance:none;appearance:none;width:100%;height:6px;
  background:var(--surface-2);border-radius:999px;outline:none;margin:14px 0;
}
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;appearance:none;width:22px;height:22px;
  border-radius:50%;background:linear-gradient(135deg,var(--primary),var(--primary-2));
  cursor:pointer;box-shadow:0 2px 8px var(--primary-glow);border:2px solid var(--bg);
}
input[type="range"]::-moz-range-thumb{
  width:22px;height:22px;border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  cursor:pointer;box-shadow:0 2px 8px var(--primary-glow);border:2px solid var(--bg);
}

/* Comparison bars */
.bar-row{display:grid;grid-template-columns:140px 1fr 90px;gap:12px;align-items:center;margin-bottom:10px}
.bar-row .label{font-size:14px;color:var(--text-dim)}
.bar-row .bar-track{height:24px;background:var(--surface-2);border-radius:6px;overflow:hidden;position:relative}
.bar-row .bar-fill{
  height:100%;background:linear-gradient(90deg,var(--primary),var(--accent));
  border-radius:6px;transition:width 1.2s cubic-bezier(.4,0,.2,1);width:0;
}
.bar-row .value{font-size:14px;color:var(--primary);font-weight:600;text-align:right}

/* Game category filter */
.game-filter{display:flex;gap:8px;flex-wrap:wrap;margin:18px 0}
.game-filter button{
  background:var(--surface);color:var(--text-dim);
  border:1px solid var(--border);
  padding:8px 16px;border-radius:999px;cursor:pointer;
  font-size:14px;font-weight:500;transition:all var(--transition);
}
.game-filter button:hover{border-color:var(--primary);color:var(--text)}
.game-filter button.active{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#1a1500;border-color:transparent;font-weight:700;
}
.game-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:14px;margin:18px 0;
}
.game-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:18px;
  transition:all var(--transition);
}
.game-card.hidden{display:none}
.game-card:hover{transform:translateY(-3px);border-color:rgba(255,193,7,.3)}
.game-card .game-icon{
  width:42px;height:42px;border-radius:10px;
  background:linear-gradient(135deg,rgba(255,193,7,.15),rgba(255,106,0,.1));
  display:flex;align-items:center;justify-content:center;margin-bottom:12px;
}
.game-card .game-icon svg{width:24px;height:24px;color:var(--primary)}
.game-card h4{margin:0 0 4px;color:var(--text);font-size:16px}
.game-card p{margin:0;font-size:13.5px;color:var(--text-muted)}

/* Copy code button */
.code-box{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--bg-2);border:1px dashed var(--primary);
  border-radius:var(--radius);padding:10px 14px;
  font-family:'JetBrains Mono',ui-monospace,monospace;
  margin:6px 4px;
}
.code-box .code{color:var(--primary);font-weight:700;font-size:15px;letter-spacing:.05em}
.code-box .copy-btn{
  background:transparent;border:none;color:var(--text-dim);cursor:pointer;
  padding:4px 8px;border-radius:4px;font-size:13px;
  transition:all var(--transition);
}
.code-box .copy-btn:hover{color:var(--primary);background:rgba(255,193,7,.1)}
.code-box .copy-btn.copied{color:var(--success)}

/* ============ BREADCRUMBS ============ */
.breadcrumbs{
  padding:16px 0;font-size:13.5px;color:var(--text-muted);
  border-bottom:1px solid var(--border);
}
.breadcrumbs a{color:var(--text-muted)}
.breadcrumbs a:hover{color:var(--primary)}
.breadcrumbs span.sep{margin:0 8px;opacity:.6}

/* ============ FOOTER ============ */
.site-footer{
  background:var(--bg-2);border-top:1px solid var(--border);
  padding:48px 0 24px;margin-top:60px;
}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr;
  gap:32px;margin-bottom:32px;
}
.footer-brand img{height:32px;margin-bottom:14px}
.footer-brand p{font-size:14px;color:var(--text-muted);max-width:380px}
.footer-col h5{
  font-size:13px;text-transform:uppercase;letter-spacing:.08em;
  color:var(--primary);margin-bottom:14px;font-weight:700;
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:8px}
.footer-col a{color:var(--text-dim);font-size:14px}
.footer-col a:hover{color:var(--primary)}
.footer-bottom{
  padding-top:24px;border-top:1px solid var(--border);
  display:flex;flex-wrap:wrap;justify-content:space-between;
  align-items:center;gap:16px;
}
.footer-bottom p{margin:0;font-size:13px;color:var(--text-muted)}
.footer-badges{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.age-badge{
  width:36px;height:36px;border-radius:50%;
  background:var(--danger);color:white;display:flex;align-items:center;
  justify-content:center;font-weight:800;font-size:13px;
}
.footer-disclaimer{
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--radius);padding:16px;margin-top:18px;
  font-size:13px;color:var(--text-muted);line-height:1.6;
}

/* Back to top */
.back-to-top{
  position:fixed;bottom:24px;right:24px;width:48px;height:48px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#1a1500;border:none;border-radius:50%;cursor:pointer;
  box-shadow:0 6px 20px var(--primary-glow);
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;transition:all .3s;z-index:90;
}
.back-to-top.visible{opacity:1;visibility:visible}
.back-to-top:hover{transform:translateY(-3px)}
.back-to-top svg{width:20px;height:20px}

/* ============ RESPONSIVE ============ */
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;gap:32px}
  .nav-desktop{display:none}
  .menu-toggle{display:flex}
  .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
  .pros-cons{grid-template-columns:1fr}
  .calc-row{grid-template-columns:1fr}
  figure img{width:100%}
}
@media (max-width:600px){
  body{font-size:15px}
  .hero{padding:42px 0 36px}
  section.content{padding:34px 0}
  .verdict-box{padding:22px}
  .footer-grid{grid-template-columns:1fr}
  .header-cta{padding:9px 16px;font-size:13px}
  .logo img{height:28px}
  .cta-strip{padding:24px 18px}
  .bar-row{grid-template-columns:1fr;gap:4px}
  .bar-row .value{text-align:left}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .stat-card{padding:16px}
  .stat-card .value{font-size:24px}
  .timeline-item{padding-left:50px}
  .timeline::before{left:16px}
  .timeline-item .num{width:34px;height:34px;font-size:13px}
}
@media (max-width:380px){
  .stats-grid{grid-template-columns:1fr}
}
