/* ==========================================================
   BonusForex30 — Premium Stylesheet
   Design system: dark fintech, money-green accent,
   high-trust typography, no shouting.
   ========================================================== */

:root {
  /* Color system */
  --bg:        #07090f;
  --bg-2:      #0b0f1a;
  --bg-3:      #0e1422;
  --surface:   #111827;
  --surface-2: #161f33;
  --surface-3: #1c2740;
  --border:    #1f2a44;
  --border-2:  #2a3656;
  --hairline:  rgba(255,255,255,0.06);

  --text:      #eef2f7;
  --text-2:    #c8d0de;
  --text-dim:  #8b95a8;
  --text-mute: #5d6678;

  --brand:     #00d68f;
  --brand-2:   #34e8a9;
  --brand-dim: #00a86f;
  --brand-soft:#00d68f1f;
  --brand-glow:#00d68f33;

  --gold:      #f5b945;
  --gold-soft: #f5b9451f;

  --info:      #4cc9ff;
  --info-soft: #4cc9ff1f;

  --danger:    #ff5c6c;

  --link:      #6cd5ff;

  /* Radii / shadow / motion */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 0 rgba(255,255,255,0.04) inset, 0 4px 16px rgba(0,0,0,0.35);
  --shadow-md: 0 1px 0 rgba(255,255,255,0.05) inset, 0 12px 36px rgba(0,0,0,0.45);
  --shadow-lg: 0 1px 0 rgba(255,255,255,0.06) inset, 0 32px 80px rgba(0,0,0,0.55);
  --shadow-glow: 0 24px 60px -12px rgba(0,214,143,0.35);

  --ease: cubic-bezier(.2,.7,.2,1);

  /* Layout */
  --max: 1180px;
  --gutter: clamp(20px, 5vw, 32px);

  /* Type */
  --font-sans: "Inter", "Söhne", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
               Roboto, Helvetica, Arial, "Apple Color Emoji", sans-serif;
  --font-display: "Inter", "Söhne", ui-sans-serif, system-ui, sans-serif;
  --font-mono: ui-monospace, "JetBrains Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

/* ----------- Reset / base ----------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(900px 480px at 88% -120px, rgba(0,214,143,0.10), transparent 60%),
    radial-gradient(700px 420px at 8% 8%,    rgba(76,201,255,0.08),  transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01","cv11","cv05";
}

img, svg { max-width: 100%; display: block; }
a { color: var(--link); text-decoration: none; transition: color .2s var(--ease); }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

::selection { background: var(--brand-soft); color: #fff; }

/* Container */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand); color: #001b12;
  padding: 8px 12px; border-radius: 6px; font-weight: 600;
}
.skip:focus { left: 8px; top: 8px; z-index: 100; }

/* ----------- Header ----------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,9,15,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 14px;
  gap: 16px;
  position: relative;
  min-height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 700; letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 0;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background:
    radial-gradient(120% 120% at 0% 0%, #34e8a9 0%, #00d68f 45%, #00a86f 100%);
  color: #001b12;
  display: inline-grid; place-items: center;
  font-weight: 800; font-size: 13px; letter-spacing: -0.02em;
  box-shadow: 0 8px 22px -8px rgba(0,214,143,0.7), inset 0 1px 0 rgba(255,255,255,0.4);
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.18);
}
.brand-name { font-size: 17px; font-weight: 700; }
.brand-name span { color: var(--brand); }

.nav-links { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  color: var(--text-2); padding: 9px 14px; border-radius: 8px; font-size: 14.5px;
  font-weight: 500; transition: all .15s var(--ease);
}
.nav-links a:hover { color: var(--text); background: var(--surface); text-decoration: none; }
.nav-links a.cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #001b12; background: var(--brand); font-weight: 700;
  padding: 9px 16px;
  box-shadow: 0 8px 24px -10px var(--brand);
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: max-content;
}
.nav-links a.cta svg { flex: 0 0 auto; }
.nav-links a.cta:hover { background: var(--brand-2); color: #001b12; }
.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  place-items: center; cursor: pointer; font-size: 20px;
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.nav:has(.nav-links.open) .nav-toggle {
  background: var(--brand-soft);
  border-color: rgba(0,214,143,0.4);
  color: var(--brand);
}

/* ----------- Hero ----------- */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand-soft); color: var(--brand);
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid rgba(0,214,143,0.28);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(0,214,143,0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,214,143,0.18); }
  50%      { box-shadow: 0 0 0 9px rgba(0,214,143,0.0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 20px 0 18px;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lede {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 0 28px;
  line-height: 1.65;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-trust {
  display: flex; align-items: center; gap: 14px; margin-top: 26px;
  color: var(--text-dim); font-size: 13.5px; flex-wrap: wrap;
}
.hero-trust .stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
.hero-trust strong { color: var(--text); font-weight: 600; }

/* Hero card (right side) */
.hero-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,214,143,0.06), rgba(0,214,143,0) 60%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 100% 0%, rgba(0,214,143,0.18), transparent 60%);
}
.hero-card-head {
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.broker-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
}
.broker-logo {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, #1d4ed8, #6cd5ff);
  display: inline-grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 11px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.broker-logo img { max-width: 75%; max-height: 75%; display: block; }
.broker-logo--xm {
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 0 0 1px rgba(255,0,0,0.18);
}
.verified-badge {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand); font-size: 12px; font-weight: 600;
}
.hero-amount {
  position: relative;
  margin: 26px 0 6px;
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: var(--text);
}
.hero-amount .currency { font-size: 0.4em; color: var(--text-dim); font-weight: 600; }
.hero-amount .amt {
  background: linear-gradient(180deg, #ffffff 0%, #c8d0de 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-amount .free {
  font-size: 0.22em; padding: 6px 12px; background: var(--brand-soft);
  color: var(--brand); border: 1px solid rgba(0,214,143,0.3); border-radius: 999px;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  align-self: center;
}
.hero-card h3 {
  margin: 6px 0 16px; font-size: 17px; font-weight: 600; color: var(--text-2);
  position: relative;
}
.hero-checks { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; position: relative; }
.hero-checks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--text-2);
}
.hero-checks svg { flex: none; margin-top: 2px; color: var(--brand); }

.hero-card .btn { width: 100%; justify-content: center; }

/* Partner badge — gold gradient pill */
.partner-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: #2a1a00;
  background: linear-gradient(135deg, #ffd770, #f5b945 60%, #d99820);
  border: 1px solid rgba(245,185,69,0.6);
  padding: 5px 10px; border-radius: 6px;
  box-shadow: 0 6px 14px -6px rgba(245,185,69,0.6),
              inset 0 1px 0 rgba(255,255,255,0.4);
}
.partner-badge::before {
  content: ""; width: 12px; height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2l2.4 6.4 6.6.4-5 4.6 1.6 6.4-5.6-3.4-5.6 3.4 1.6-6.4-5-4.6 6.6-.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2l2.4 6.4 6.6.4-5 4.6 1.6 6.4-5.6-3.4-5.6 3.4 1.6-6.4-5-4.6 6.6-.4z'/></svg>") center/contain no-repeat;
}

/* Promo code reveal box */
.promo-code {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  background:
    linear-gradient(180deg, rgba(0,214,143,0.08), rgba(0,214,143,0.02));
  border: 1px dashed rgba(0,214,143,0.45);
  border-radius: 12px;
}
.promo-code-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim);
  display: flex; flex-direction: column; gap: 2px; line-height: 1.2;
}
.promo-code-label small { color: var(--text-mute); font-weight: 500; letter-spacing: 0.04em; text-transform: none; font-size: 11px; }
.promo-code-value {
  font-family: var(--font-mono);
  font-size: 18px; font-weight: 800; color: var(--brand);
  letter-spacing: 0.12em; text-align: center;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(0,214,143,0.3);
  padding: 8px 12px; border-radius: 8px;
  text-shadow: 0 0 12px rgba(0,214,143,0.4);
}
.promo-code-copy {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--brand); color: #001b12;
  border: none; cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s var(--ease), transform .12s var(--ease);
}
.promo-code-copy:hover { background: var(--brand-2); transform: scale(1.05); }
.promo-code-copy.copied { background: var(--info); color: #fff; }

/* Regulator chips strip */
.regs-strip {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px;
  align-items: center; justify-content: center;
}
.regs-strip span {
  font-size: 10.5px; font-weight: 700; color: var(--text-dim);
  background: var(--surface-2); border: 1px solid var(--border);
  padding: 4px 8px; border-radius: 5px; letter-spacing: 0.05em;
}
.regs-strip-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--text-2); font-weight: 600;
  margin-left: 4px;
}
.regs-strip-trust strong { color: var(--brand); font-weight: 800; }

.hero-card-foot {
  margin-top: 14px; font-size: 12.5px; color: var(--text-mute); text-align: center;
}

/* Mini sparkline strip */
.spark {
  margin-top: 18px; height: 56px; width: 100%;
  display: block; opacity: 0.85;
}

/* ----------- Trust strip ----------- */
.trust-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
  padding: 22px 0;
}
.trust-row {
  display: flex; align-items: center; gap: clamp(18px, 4vw, 40px);
  flex-wrap: wrap; justify-content: center;
  color: var(--text-dim); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.reg-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-2); font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; white-space: nowrap;
}
.reg-badge svg { color: var(--brand); flex: none; }

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  white-space: nowrap;
  transition: transform .12s var(--ease), background .15s var(--ease),
              border-color .15s var(--ease), box-shadow .2s var(--ease);
}
.btn svg { flex: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(180deg, var(--brand-2) 0%, var(--brand) 100%);
  color: #001b12;
  box-shadow: 0 12px 30px -10px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover { box-shadow: 0 16px 40px -10px rgba(0,214,143,0.55), inset 0 1px 0 rgba(255,255,255,0.45); color: #001b12; }
.btn-ghost {
  background: var(--surface); color: var(--text); border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-2); }
.btn-link {
  background: transparent; color: var(--brand); padding: 12px 4px;
  border-radius: 0; border: 0; border-bottom: 1px solid transparent;
}
.btn-link:hover { color: var(--brand-2); border-bottom-color: var(--brand-2); transform: none; text-decoration: none; }

.btn-arrow { transition: transform .2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ----------- Stat strip ----------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-top: 40px;
}
.stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 20px;
  position: relative; overflow: hidden;
}
.stat::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--brand), transparent);
}
.stat .num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800; letter-spacing: -0.025em; color: var(--text);
  line-height: 1.05;
}
.stat .num span { color: var(--brand); }
.stat .lbl { font-size: 13px; color: var(--text-dim); margin-top: 4px; }

/* ----------- Sections ----------- */
.section { padding: clamp(52px, 8vw, 96px) 0; }
.section-head { margin-bottom: 36px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px;
  color: var(--brand); font-weight: 700;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: -0.025em; margin: 12px 0 10px;
  font-weight: 800; line-height: 1.15;
}
.section .sub { color: var(--text-2); font-size: 17px; max-width: 720px; line-height: 1.6; }

/* ----------- Offer cards ----------- */
.offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.offer {
  --card-glow: transparent;
  --card-accent: var(--border-2);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 30%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
}
.offer::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--card-accent);
  opacity: 0.7;
}
.offer:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
}

/* ---- Featured card ---- */
.offer.featured {
  --card-accent: linear-gradient(90deg, var(--brand-2), var(--brand), var(--brand-dim));
  border-color: rgba(0,214,143,0.45);
  background:
    radial-gradient(120% 80% at 100% -10%, rgba(0,214,143,0.16), transparent 55%),
    radial-gradient(80% 60% at 0% 100%, rgba(76,201,255,0.07), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 30%),
    var(--surface);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 24px 60px -24px rgba(0,214,143,0.4),
    0 0 0 1px rgba(0,214,143,0.12);
}
.offer.featured::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: -1;
  border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(0,214,143,0.55), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}

/* Featured badge — premium pill, same flow position as .offer-tag */
.offer-ribbon {
  align-self: flex-end;
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #001b12;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 6px;
  border: 1px solid rgba(0,214,143,0.5);
  box-shadow:
    0 6px 18px -6px rgba(0,214,143,0.7),
    inset 0 1px 0 rgba(255,255,255,0.35);
  margin-bottom: -8px;
}
.offer-ribbon::before {
  content: ""; width: 12px; height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>") center/contain no-repeat;
}

/* Status pill — sits at the top of the card as a flow element */
.offer-tag {
  align-self: flex-end;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-soft); color: var(--brand);
  font-size: 10.5px; font-weight: 700; padding: 5px 9px; border-radius: 6px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(0,214,143,0.32);
  margin-bottom: -8px; /* pull next block closer */
}
.offer-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; box-shadow: 0 0 8px currentColor;
}
.offer-tag.warn  { color: var(--gold);     background: var(--gold-soft);  border-color: rgba(245,185,69,0.32); }
.offer-tag.muted { color: var(--text-dim); background: var(--surface-2);  border-color: var(--border-2); }
.offer-tag.muted::before { box-shadow: none; opacity: 0.6; }

/* ---- Header row: logo + broker + score ---- */
.offer-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.offer-head--no-score { grid-template-columns: 44px minmax(0, 1fr); }

.offer-logo {
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px; color: #fff;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 6px 14px -6px rgba(0,0,0,0.6);
  position: relative;
  flex-shrink: 0;
}
.offer-logo img {
  max-width: 70%; max-height: 70%;
  width: auto; height: auto;
  display: block;
}
.offer-logo--xm {
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 6px 14px -6px rgba(255,0,0,0.35),
    0 0 0 1px rgba(255,0,0,0.15);
}
.offer-logo--fbs  { background: linear-gradient(135deg, #7c3aed, #c4b5fd); color: #fff; }
.offer-logo--mute { background: linear-gradient(135deg, #475569, #94a3b8); color: #e2e8f0; }

.offer-broker {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
}
.offer-broker-name {
  font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.005em;
  line-height: 1.2;
}
.offer-regs {
  display: flex; flex-wrap: wrap; gap: 4px;
}
.offer-regs span {
  font-size: 10.5px; font-weight: 600; color: var(--text-dim);
  background: var(--surface-2); border: 1px solid var(--border);
  padding: 2px 6px; border-radius: 4px;
  letter-spacing: 0.04em;
}

.offer-score {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  line-height: 1;
}
.offer-score-num {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em;
}
.offer-score-stars {
  font-size: 11px; color: var(--gold); letter-spacing: 1px;
}
.offer-score-label {
  font-size: 10px; color: var(--text-dim); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px;
}

/* ---- Amount block ---- */
.offer-amount {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--text); line-height: 1;
  margin-top: 2px;
}
.offer-amount-currency {
  font-size: 28px; color: var(--text-2);
  align-self: flex-start; margin-top: 6px;
}
.offer-amount-value {
  font-size: 56px;
  background: linear-gradient(180deg, #fff 0%, #b9ffe1 50%, var(--brand) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
.offer-amount-meta {
  font-family: var(--font-sans);
  font-size: 12.5px; font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  align-self: flex-end; margin-bottom: 8px;
}
.offer-amount-text {
  font-size: 26px; font-weight: 800; color: var(--text-2);
  letter-spacing: -0.02em;
}

.offer-title {
  font-size: 14.5px; font-weight: 600;
  color: var(--text-2); margin: -6px 0 0; line-height: 1.5;
}

/* ---- Bullet list ---- */
.offer-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
}
.offer-list li {
  font-size: 13.5px; color: var(--text-2);
  padding-left: 24px; position: relative;
  line-height: 1.5;
}
.offer-list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--brand-soft);
  border: 1px solid rgba(0,214,143,0.4);
}
.offer-list li::after {
  content: ""; position: absolute; left: 4px; top: 7px;
  width: 8px; height: 4px;
  border-left: 1.6px solid var(--brand);
  border-bottom: 1.6px solid var(--brand);
  transform: rotate(-45deg);
}
.offer:not(.featured) .offer-list li::before {
  background: var(--surface-2);
  border-color: var(--border-2);
}
.offer:not(.featured) .offer-list li::after {
  border-color: var(--text-dim);
}

/* ---- Footer ---- */
.offer-foot {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
}
.offer-foot .btn {
  width: 100%;
  justify-content: center;
}
.offer-more {
  text-align: center; font-size: 12.5px;
  color: var(--text-dim); font-weight: 500;
  text-decoration: none;
}
.offer-more:hover { color: var(--text-2); text-decoration: underline; }

@media (max-width: 480px) {
  .offer-amount-value { font-size: 48px; }
}

/* ----------- "How it works" feature row ----------- */
.feature-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px;
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 14px;
  border: 1px solid rgba(0,214,143,0.25);
}
.feature h3 { margin: 0 0 6px; font-size: 16.5px; font-weight: 700; }
.feature p { margin: 0; font-size: 14.5px; color: var(--text-dim); line-height: 1.55; }

/* ----------- Tables ----------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
table.data {
  width: 100%; border-collapse: collapse; font-size: 14.5px;
  background: transparent;
}
table.data th, table.data td {
  text-align: left; padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-2);
}
table.data thead th {
  background: var(--surface-2); color: var(--text);
  font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-2);
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* Stacked card layout for tables on mobile */
@media (max-width: 640px) {
  .table-wrap {
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }
  table.data { font-size: 14px; }
  table.data thead {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }
  table.data tbody { display: block; }
  table.data tbody tr {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 4px 0;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
  }
  table.data tbody tr:last-child { margin-bottom: 0; }
  table.data tbody tr:hover td { background: transparent; }
  table.data tbody td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--hairline);
    text-align: right;
    color: var(--text);
    word-break: break-word;
  }
  table.data tbody tr td:last-child { border-bottom: 0; }
  table.data tbody td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    max-width: 45%;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    text-align: left;
  }
  table.data tbody td:not([data-label])::before { content: none; }
}

/* ----------- Article ----------- */
.article-head {
  padding: clamp(40px, 6vw, 72px) 0 24px;
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(0,214,143,0.04), transparent);
}
.article-head .crumbs { font-size: 13px; color: var(--text-mute); }
.article-head .crumbs a { color: var(--text-dim); }
.article-head h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.1; letter-spacing: -0.028em;
  margin: 14px 0 14px; font-weight: 800;
  max-width: 880px;
}
.author-chip { display: inline-flex; align-items: center; gap: 8px; }
.author-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--info), var(--brand));
  display: inline-grid; place-items: center;
  color: #001b12; font-weight: 800; font-size: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

.prose { max-width: 760px; margin: 0 auto; padding-block: 8px 64px; overflow-wrap: break-word; word-wrap: break-word; }
.prose h2 {
  font-family: var(--font-display);
  margin: 44px 0 14px; font-size: 28px; letter-spacing: -0.022em; font-weight: 800;
}
.prose h3 { margin: 28px 0 10px; font-size: 19px; font-weight: 700; }
.prose p { margin: 0 0 16px; color: var(--text); font-size: 16.5px; }
.prose ul, .prose ol { padding-left: 22px; margin: 6px 0 18px; color: var(--text); }
.prose li { margin-bottom: 8px; }
.prose .lead {
  font-size: 19.5px; line-height: 1.6;
  color: var(--text); border-left: 3px solid var(--brand);
  padding: 4px 0 4px 18px; margin: 0 0 28px;
}
.prose blockquote {
  margin: 18px 0; padding: 16px 20px;
  background: var(--surface); border-left: 3px solid var(--brand);
  border-radius: 6px; color: var(--text-2); font-size: 15.5px;
}
.prose code {
  background: var(--surface-2); padding: 2px 6px; border-radius: 5px;
  font-size: 0.9em; font-family: var(--font-mono);
}
.prose .callout {
  margin: 24px 0; padding: 18px 20px;
  background: var(--gold-soft); border: 1px solid rgba(245,185,69,0.3);
  border-radius: var(--r-sm); color: var(--text);
}
.prose .callout strong { color: var(--gold); }
.prose .info {
  margin: 24px 0; padding: 18px 20px;
  background: var(--brand-soft); border: 1px solid rgba(0,214,143,0.3);
  border-radius: var(--r-sm); color: var(--text);
}
.prose .info strong { color: var(--brand); }

/* Definition list */
.kv {
  display: grid; grid-template-columns: 220px 1fr; gap: 0;
  border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; background: var(--surface); margin: 14px 0 24px;
}
.kv > div { padding: 13px 16px; border-bottom: 1px solid var(--border); }
.kv > div:nth-child(odd) {
  background: var(--surface-2); color: var(--text-dim); font-weight: 500; font-size: 14px;
}
.kv > div:nth-child(even) { font-size: 14.5px; color: var(--text); }
.kv > div:nth-last-child(-n+2) { border-bottom: 0; }

/* Article meta strip — visible E-E-A-T signals under the H1 */
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 14px;
  margin: -8px 0 24px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: var(--r-md);
  font-size: 13px; color: var(--text-2);
  margin-top: 30px;
}
.article-meta-item {
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.article-meta-item svg {
  flex: none; color: var(--text-dim);
}
.article-meta-item strong {
  color: var(--text); font-weight: 600;
}
.article-meta-item.fresh strong { color: var(--brand); }
.article-meta a {
  color: var(--text-2); text-decoration: underline;
  text-decoration-color: var(--border-2); text-underline-offset: 3px;
}
.article-meta a:hover { color: var(--text); text-decoration-color: var(--brand); }
.article-meta-sep {
  color: var(--text-mute);
  user-select: none;
}

/* Sources/references list */
.sources {
  margin-top: 36px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.sources h3 {
  margin: 0 0 14px;
  font-size: 14px; font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.sources ol {
  margin: 0; padding-left: 22px;
  display: grid; gap: 10px;
}
.sources li {
  font-size: 14px; color: var(--text-2); line-height: 1.55;
}
.sources li a {
  color: var(--text); font-weight: 500;
  text-decoration: underline; text-decoration-color: var(--border-2);
  text-underline-offset: 3px;
}
.sources li a:hover { text-decoration-color: var(--brand); color: var(--brand); }
.sources li small {
  display: block; color: var(--text-mute); font-size: 12.5px; margin-top: 2px;
}

/* Glossary entries */
.glossary {
  display: grid; gap: 14px; margin: 24px 0;
}
.glossary-entry {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 22px;
  scroll-margin-top: 80px;
}
.glossary-entry h3 {
  margin: 0 0 8px;
  font-size: 17px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.glossary-entry h3 .gl-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand);
  background: var(--brand-soft); padding: 3px 8px; border-radius: 4px;
  border: 1px solid rgba(0,214,143,0.25);
}
.glossary-entry p {
  margin: 0; color: var(--text-2); font-size: 14.5px; line-height: 1.6;
}
.glossary-entry p + p { margin-top: 8px; }
.glossary-toc {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 18px 0 28px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.glossary-toc a {
  font-size: 12.5px; font-weight: 600;
  color: var(--text-2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 6px;
  text-decoration: none;
}
.glossary-toc a:hover { color: var(--brand); border-color: rgba(0,214,143,0.35); background: var(--brand-soft); }

/* Steps (HowTo) */
.steps {
  display: grid; gap: 14px;
  counter-reset: step;
  margin: 20px 0 28px; padding: 0;
  list-style: none;
}
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 20px 18px 64px; position: relative;
  transition: border-color .2s var(--ease);
}
.step:hover { border-color: var(--border-2); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 18px; top: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #001b12;
  display: grid; place-items: center; font-weight: 800; font-size: 13px;
  box-shadow: 0 6px 16px -4px var(--brand-glow);
}
.step h3 { margin: 0 0 6px; font-size: 16.5px; font-weight: 700; }
.step p { margin: 0; color: var(--text-dim); font-size: 14.5px; line-height: 1.55; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 16px 20px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.faq details:hover { border-color: var(--border-2); }
.faq details[open] { border-color: var(--border-2); background: var(--surface-2); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16px; color: var(--text);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--brand-soft); border: 1px solid rgba(0,214,143,0.3);
  background-image:
    linear-gradient(var(--brand), var(--brand)),
    linear-gradient(var(--brand), var(--brand));
  background-size: 10px 2px, 2px 10px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: transform .25s var(--ease), background-size .25s var(--ease);
}
.faq details[open] summary::after { background-size: 10px 2px, 0 0; transform: rotate(180deg); }
.faq details p { margin: 12px 0 0; color: var(--text-2); font-size: 15px; line-height: 1.65; }

/* Two-column / cards */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px;
}
.card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.card p { margin: 0; color: var(--text-dim); font-size: 14.5px; }

/* Pros / Cons */
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 22px 0 28px; }
.pc > div {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 20px 22px;
}
.pc h4 { margin: 0 0 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.pc .pros h4 { color: var(--brand); }
.pc .cons h4 { color: var(--gold); }
.pc ul { margin: 0; padding-left: 0; list-style: none; }
.pc li { margin-bottom: 9px; font-size: 14.5px; padding-left: 24px; position: relative; line-height: 1.5; color: var(--text-2); }
.pc .pros li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 700;
}
.pc .cons li::before {
  content: "!"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 800;
  width: 16px; height: 16px; border-radius: 50%; background: var(--gold-soft);
  display: grid; place-items: center; font-size: 11px; line-height: 1;
}

/* CTA Block */
.cta-block {
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(0,214,143,0.16), transparent 70%),
    radial-gradient(80% 100% at 100% 100%, rgba(76,201,255,0.10), transparent 70%),
    var(--surface);
  border: 1px solid rgba(0,214,143,0.3);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between;
  margin: 32px 0; position: relative; overflow: hidden;
}
.cta-block h3 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.cta-block p { margin: 6px 0 0; color: var(--text-2); font-size: 14.5px; }

/* Disclaimer */
.disclaimer {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 20px;
  font-size: 13px; color: var(--text-dim); line-height: 1.7;
  margin-top: 36px;
}
.disclaimer strong { color: var(--text); }

/* TOC */
.toc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 16px 20px; margin: 8px 0 28px;
}
.toc strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 10px; }
.toc ol { margin: 0; padding-left: 22px; }
.toc li { margin-bottom: 5px; font-size: 14.5px; }
.toc a { color: var(--text); }
.toc a:hover { color: var(--brand); }

/* Verdict box (review pages) */
.verdict {
  display: grid; grid-template-columns: 130px 1fr; gap: 22px; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px;
  margin: 18px 0 28px;
}
.verdict-score {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-align: center;
}
.verdict-score small { display: block; font-size: 14px; color: var(--text-dim); font-weight: 600; -webkit-text-fill-color: var(--text-dim); margin-top: 4px; }
.verdict h3 { margin: 0 0 4px; font-size: 18px; }
.verdict p { margin: 0; color: var(--text-dim); font-size: 14.5px; }

/* Testimonials / mini-reviews */
.tmnl-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tmnl {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px;
}
.tmnl-stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; margin-bottom: 8px; }
.tmnl-quote { color: var(--text); font-size: 15px; line-height: 1.6; margin: 0 0 14px; }
.tmnl-by {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-dim);
}
.tmnl-by .author-avatar { width: 26px; height: 26px; }

/* ----------- Footer ----------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: 56px 0 28px;
  margin-top: 80px;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px;
}
.foot-brand p { color: var(--text-dim); font-size: 14px; max-width: 380px; margin: 14px 0 0; line-height: 1.6; }
.foot h5 { margin: 0 0 14px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 700; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 8px; }
.foot a { color: var(--text-2); font-size: 14.5px; }
.foot a:hover { color: var(--brand); text-decoration: none; }
.foot-bottom {
  border-top: 1px solid var(--hairline); margin-top: 36px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: var(--text-mute); font-size: 13px;
}

/* ----------- Floating mobile CTA ----------- */
.mobile-cta {
  position: fixed; bottom: 14px; left: 14px; right: 14px; z-index: 40;
  display: none;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #001b12; font-weight: 700; font-size: 15px;
  text-align: center; padding: 14px 18px; border-radius: 14px;
  box-shadow: 0 18px 40px -10px rgba(0,214,143,0.5);
  text-decoration: none;
}
.mobile-cta:hover { text-decoration: none; color: #001b12; }

/* ----------- Responsive ----------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .offers { grid-template-columns: 1fr 1fr; }
  .tmnl-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { padding-block: 12px; min-height: 60px; }
  .brand-mark { width: 32px; height: 32px; font-size: 12px; }
  .brand-name { font-size: 16px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute;
    top: calc(100% + 8px); left: 0; right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 14px;
    gap: 2px;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,0.02);
    z-index: 60;
  }
  .nav-links.open a {
    padding: 12px 14px;
    text-align: center;
    font-size: 15px;
    border-radius: 10px;
  }
  .nav-links.open a.cta {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 14px 16px;
    font-size: 15px;
  }
  .nav-toggle {
    display: grid;
    flex-shrink: 0;
  }
  .nav-toggle:hover {
    background: var(--surface-2);
    border-color: var(--border-2);
  }

  /* Full-width CTAs on mobile */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-block { flex-direction: column; align-items: stretch; text-align: left; }
  .cta-block .btn { width: 100%; justify-content: center; }

  .stats { grid-template-columns: 1fr 1fr; }
  .offers { grid-template-columns: 1fr; }
  .grid-2, .pc, .tmnl-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .kv { grid-template-columns: 140px 1fr; }
  .verdict { grid-template-columns: 1fr; text-align: center; }
  .mobile-cta { display: block; }
  .site-footer { padding-bottom: 88px; }
}
@media (max-width: 480px) {
  .feature-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .kv { grid-template-columns: 130px 1fr; }
  .cta-block { padding: 22px; }
  .cta-block h3 { font-size: 19px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
