/* =========================================================================
   Front Casino Review — "Aurora Midnight" design system
   Dark, gradient-driven, glass-panel layout. No white backgrounds,
   dividers/rules are replaced with spacing + soft glow + elevation.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --bg-0: #0a0e1c;
  --bg-1: #0f1430;
  --bg-2: #161b3d;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --panel-hover: rgba(255, 255, 255, 0.10);
  --ink-0: #f4f6ff;
  --ink-1: #c7cbe8;
  --ink-2: #9096c0;
  --ink-3: #6a6f96;
  --violet: #8b5cf6;
  --cyan: #34d1c8;
  --amber: #f5a524;
  --pink: #f5578a;
  --ok: #34d399;
  --warn: #f5a524;
  --danger: #f5578a;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow-violet: 0 0 0 1px rgba(139, 92, 246, 0.25), 0 20px 60px -15px rgba(139, 92, 246, 0.35);
  --shadow-glow-cyan: 0 0 0 1px rgba(52, 209, 200, 0.25), 0 20px 60px -15px rgba(52, 209, 200, 0.3);
  --font-display: 'Space Grotesk', 'Sora', system-ui, sans-serif;
  --font-body: 'Sora', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink-1);
  background:
    radial-gradient(ellipse 900px 600px at 12% -10%, rgba(139, 92, 246, 0.28), transparent 60%),
    radial-gradient(ellipse 800px 700px at 110% 10%, rgba(52, 209, 200, 0.18), transparent 55%),
    radial-gradient(ellipse 700px 600px at 50% 120%, rgba(245, 87, 138, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2));
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-0);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-1); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Age gate strip ---------- */
.age-strip {
  background: linear-gradient(90deg, #1a0f2e, #0f1a2e);
  color: var(--ink-2);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 7px 16px;
}
.age-strip b {
  color: var(--amber);
  background: rgba(245, 165, 36, 0.12);
  padding: 1px 8px;
  border-radius: 20px;
  margin-right: 6px;
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(10, 14, 28, 0.72);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-0);
}
nav.primary-nav ul {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
nav.primary-nav a {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .18s ease, background .18s ease;
}
nav.primary-nav a:hover { color: var(--ink-0); background: var(--panel); }
nav.primary-nav a.active { color: var(--ink-0); background: var(--panel-strong); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #0a0e1c;
  background: linear-gradient(135deg, var(--amber), #ffcf6b);
  box-shadow: 0 4px 18px -4px rgba(245, 165, 36, 0.6);
}
.menu-toggle {
  display: none;
  background: var(--panel);
  border: none;
  color: var(--ink-0);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--violet), #6d3ff0);
  color: #fff;
  box-shadow: var(--shadow-glow-violet);
}
.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), #23a89f);
  color: #06231f;
  box-shadow: var(--shadow-glow-cyan);
}
.btn-ghost {
  background: var(--panel);
  color: var(--ink-0);
}
.btn-ghost:hover { background: var(--panel-strong); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 40px;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--panel);
  color: var(--cyan);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  max-width: 820px;
}
.hero h1 span {
  background: linear-gradient(100deg, var(--violet), var(--cyan) 60%, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  max-width: 620px;
  font-size: 17px;
  color: var(--ink-2);
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 640px;
}
.stat-tile {
  background: var(--panel);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
}
.stat-tile .num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-0);
}
.stat-tile .lbl { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }

/* ---------- Section headers ---------- */
.section { padding: 46px 0; }
.section-head { max-width: 640px; margin-bottom: 32px; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(24px, 3.4vw, 34px); }
.section-head p { color: var(--ink-2); }

/* ---------- Cards / panels ---------- */
.panel {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Brand cards */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.brand-card {
  position: relative;
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 30px;
  overflow: hidden;
  transition: transform .22s ease, background .22s ease;
}
.brand-card:hover { transform: translateY(-4px); background: var(--panel-hover); }
.brand-card::before {
  content: '';
  position: absolute;
  inset: -40% -40% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--accent, var(--violet)) 0%, transparent 70%);
  opacity: 0.22;
  pointer-events: none;
}
.brand-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
}
.brand-logo-wrap {
  height: 46px;
  display: flex;
  align-items: center;
}
.brand-logo-wrap img { height: 100%; width: auto; }
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.25);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-0);
}
.rating-chip .star { color: var(--amber); }
.brand-card p.tagline { color: var(--ink-2); font-size: 14.5px; margin-bottom: 18px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--ink-2);
}
.license-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-3);
  background: rgba(0,0,0,0.2);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.license-note a { color: var(--cyan); font-weight: 600; }
.license-note a:hover { text-decoration: underline; }
.card-cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* Generic feature cards */
.feature-card {
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 24px;
}
.feature-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  margin-bottom: 16px;
  font-size: 19px;
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--ink-2); margin: 0; }

/* Steps */
.step-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
}
.step .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255,255,255,0.35);
  margin-bottom: 10px;
  display: block;
}
.step h4 { font-size: 15.5px; margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--ink-2); margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, rgba(139,92,246,0.25), rgba(52,209,200,0.18));
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { margin-bottom: 6px; font-size: 26px; }
.cta-banner p { margin: 0; color: var(--ink-2); }

/* ---------- Review page ---------- */
.review-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 44px 0 20px;
  flex-wrap: wrap;
}
.review-hero .brand-logo-wrap { height: 60px; }
.review-hero .brand-logo-wrap img { height: 100%; }
.review-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.score-ring {
  width: 92px; height: 92px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  background: conic-gradient(var(--cyan) calc(var(--score) * 1%), rgba(255,255,255,0.08) 0);
  margin-left: auto;
}
.score-ring .inner {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--bg-1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.score-ring .inner b { font-family: var(--font-display); font-size: 20px; color: var(--ink-0); }
.score-ring .inner span { font-size: 10px; color: var(--ink-3); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.pc-card { border-radius: var(--radius-md); padding: 22px; }
.pc-card.pros { background: rgba(52, 211, 153, 0.09); }
.pc-card.cons { background: rgba(245, 87, 138, 0.09); }
.pc-card h4 { font-size: 15px; margin-bottom: 12px; }
.pc-card.pros h4 { color: var(--ok); }
.pc-card.cons h4 { color: var(--danger); }
.pc-card li { display: flex; gap: 8px; font-size: 14px; color: var(--ink-1); margin-bottom: 9px; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { }
.spec-table td {
  padding: 13px 0;
  font-size: 14.5px;
  color: var(--ink-1);
}
.spec-table td:first-child { color: var(--ink-3); width: 45%; }
.spec-table tr + tr td { border-top: 1px solid rgba(255,255,255,0.06); }

.verdict-box {
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-top: 10px;
}
.verdict-box .quote-mark { font-size: 40px; font-family: var(--font-display); color: var(--violet); line-height: 0.5; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--panel);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--ink-0);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 20px; color: var(--ink-2); font-size: 14.5px; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-1); margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: rgba(0,0,0,0.28);
  color: var(--ink-0);
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  transition: box-shadow .18s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  box-shadow: 0 0 0 2px var(--violet);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--ink-3); margin-top: -8px; margin-bottom: 18px; }
.alert-success {
  background: rgba(52,211,153,0.12);
  color: var(--ok);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* ---------- Contact tiles ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; }
.contact-tile { display: flex; gap: 14px; padding: 18px; border-radius: var(--radius-sm); background: var(--panel); margin-bottom: 12px; }
.contact-tile .icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(139,92,246,0.22); color: var(--cyan); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-tile h4 { font-size: 14.5px; margin-bottom: 4px; }
.contact-tile p { font-size: 13.5px; margin: 0; color: var(--ink-2); }

/* ---------- Legal pages ---------- */
.legal-page { padding: 50px 0 80px; }
.legal-page .legal-header { max-width: 720px; margin-bottom: 34px; }
.legal-page .updated { font-size: 13px; color: var(--ink-3); }
.legal-body { max-width: 780px; }
.legal-body h2 { font-size: 20px; margin-top: 36px; }
.legal-body h3 { font-size: 16.5px; margin-top: 24px; color: var(--ink-0); }
.legal-body p, .legal-body li { color: var(--ink-2); font-size: 15px; }
.legal-body ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.legal-body ul li { margin-bottom: 8px; }
.legal-toc {
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.legal-toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-bottom: 12px; }
.legal-toc ol { list-style: decimal; padding-left: 18px; }
.legal-toc li { margin-bottom: 6px; }
.legal-toc a { color: var(--cyan); font-size: 14px; }
.legal-toc a:hover { text-decoration: underline; }

/* ---------- Support org strip ---------- */
.support-strip {
  padding: 36px 0;
  background: rgba(0,0,0,0.18);
}
.support-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.support-logos { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.support-logos img { height: 34px; width: auto; opacity: 0.88; filter: grayscale(15%); transition: opacity .2s ease; }
.support-logos a:hover img { opacity: 1; }
.support-copy { max-width: 380px; font-size: 13.5px; color: var(--ink-3); }
.support-copy b { color: var(--ink-1); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.35) 40%);
  padding-top: 50px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand .brand-mark { margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: var(--ink-3); max-width: 300px; }
.footer-col h5 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; color: var(--ink-2); transition: color .16s ease; }
.footer-col a:hover { color: var(--cyan); }

.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
}
.footer-legal-row a { color: var(--ink-2); padding: 4px 2px; }
.footer-legal-row a:hover { color: var(--cyan); }
.footer-legal-row .sep { color: var(--ink-3); }

.footer-age {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  background: rgba(0,0,0,0.22);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  padding: 22px 26px;
}
.footer-age .badge-18 { width: 46px; height: 46px; font-size: 16px; border-radius: 12px; }
.footer-age p { margin: 0; font-size: 13px; color: var(--ink-3); }
.footer-age b { color: var(--ink-1); }

.footer-bottom {
  padding: 22px 0 30px;
  font-size: 12.5px;
  color: var(--ink-3);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Cookie consent modal ---------- */
.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  max-width: 620px;
  margin: 0 auto;
  background: rgba(15, 20, 48, 0.92);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.08);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.19,1,.22,1), opacity .4s ease;
}
.cookie-consent.is-visible { transform: translateY(0); opacity: 1; }
.cookie-consent-inner { display: flex; gap: 18px; align-items: flex-start; flex-wrap: wrap; }
.cookie-consent .cookie-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.cookie-consent-text { flex: 1; min-width: 220px; }
.cookie-consent-text h4 { font-size: 14.5px; margin-bottom: 6px; color: var(--ink-0); }
.cookie-consent-text p { font-size: 13px; color: var(--ink-3); margin: 0; }
.cookie-consent-text a { color: var(--cyan); }
.cookie-consent-actions { display: flex; gap: 10px; width: 100%; margin-top: 4px; }
@media (min-width: 640px) {
  .cookie-consent-actions { width: auto; margin-top: 0; }
}

/* ---------- Misc ---------- */
.pill-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 87, 138, 0.1);
  color: var(--pink);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.avatar-circle {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #fff;
}
.team-card { background: var(--panel); border-radius: var(--radius-md); padding: 22px; text-align: center; }
.team-card .avatar-circle { margin: 0 auto 14px; }
.team-card h4 { font-size: 15px; margin-bottom: 3px; }
.team-card span { font-size: 12.5px; color: var(--ink-3); }

.methodology-list { counter-reset: m; }
.methodology-list li {
  counter-increment: m;
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.methodology-list li::before {
  content: counter(m);
  position: absolute; left: 0; top: -2px;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--ink-0);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  display: flex; align-items: center; justify-content: center;
}

.not-found { text-align: center; padding: 100px 20px; }
.not-found h1 { font-size: 90px; background: linear-gradient(100deg, var(--violet), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .brand-grid, .grid-2, .grid-3, .pros-cons, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  nav.primary-nav { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .step-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .review-hero { flex-direction: column; align-items: flex-start; }
  .score-ring { margin-left: 0; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 620px) {
  .cta-banner { padding: 30px; }
}

nav.primary-nav.mobile-open ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 20px;
  right: 20px;
  background: rgba(15, 20, 48, 0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 760px) {
  nav.primary-nav.mobile-open { display: block; }
}
