/* =========================================================
   Panda Casino — общая дизайн-система
   ========================================================= */

:root {
  --bg: #0b0d12;
  --bg-soft: #10131b;
  --panel: #171b26;
  --panel-2: #1e2330;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f5f8;
  --text-muted: #9aa1b2;
  --text-dim: #6b7080;
  --gold: #ffc94a;
  --gold-2: #ffab2e;
  --gold-deep: #c9861a;
  --bamboo: #6fd97a;
  --bamboo-2: #3fae63;
  --red: #ff5470;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --ff-display: 'Baloo 2', 'Nunito', sans-serif;
  --ff-body: 'Nunito', 'Segoe UI', Arial, sans-serif;
  --header-h: 78px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 .6em;
  color: #fff;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

p { margin: 0 0 1.1em; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section--tight { padding: 44px 0; }

.section-head {
  max-width: 720px;
  margin: 0 0 36px;
}

.section-head .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 201, 74, 0.12);
  border: 1px solid rgba(255, 201, 74, 0.35);
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px) scale(.98); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1a1200;
  box-shadow: 0 10px 24px rgba(255, 171, 46, 0.35);
}

.btn--primary:hover { filter: brightness(1.07); box-shadow: 0 14px 30px rgba(255, 171, 46, 0.45); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn--bamboo {
  background: linear-gradient(135deg, var(--bamboo) 0%, var(--bamboo-2) 100%);
  color: #06210d;
  box-shadow: 0 10px 24px rgba(63, 174, 99, 0.35);
}

.btn--bamboo:hover { filter: brightness(1.08); }

.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 13, 18, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.brand img { width: 44px; height: 44px; object-fit: contain; }

.brand span.accent { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text-muted);
  font-size: .95rem;
  transition: background .15s ease, color .15s ease;
}

.main-nav a:hover, .main-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-login-mobile { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(255, 201, 74, 0.14) 0%, transparent 60%),
    radial-gradient(50% 50% at 10% 20%, rgba(111, 217, 122, 0.12) 0%, transparent 60%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-copy .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-copy h1 { margin-bottom: 16px; }

.hero-copy .lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 6px;
}

.trust-row .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-dim);
  font-weight: 700;
}

.trust-row .trust-item svg { color: var(--bamboo); flex-shrink: 0; }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art .glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 201, 74, 0.35) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.chip-float {
  position: absolute;
  background: var(--panel-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .8rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chip-float.chip-1 { top: 6%; left: -4%; color: var(--gold); }
.chip-float.chip-2 { bottom: 10%; right: -6%; color: var(--bamboo); }

/* ---------- Winners ticker ---------- */

.winners-ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.winners-ticker::before,
.winners-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.winners-ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
.winners-ticker::after { right: 0; background: linear-gradient(270deg, var(--bg-soft), transparent); }

.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .82rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 0 20px;
  flex-shrink: 0;
}

.ticker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 84, 112, .6);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 84, 112, .6); }
  70% { box-shadow: 0 0 0 8px rgba(255, 84, 112, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 84, 112, 0); }
}

.ticker-track-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 14px;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
  padding-right: 14px;
}

.winners-ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px 7px 8px;
  font-size: .85rem;
  flex-shrink: 0;
}

.ticker-item .avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--bamboo));
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; color: #10131b;
  flex-shrink: 0;
}

.ticker-item b { color: #fff; }
.ticker-item .win-amount { color: var(--bamboo); font-weight: 800; }
.ticker-item .win-game { color: var(--text-dim); }

/* ---------- Recent wins panel ---------- */

.wins-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.wins-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
}

.wins-panel-head h3 { margin: 0; display: flex; align-items: center; gap: 10px; }

.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--bamboo);
  box-shadow: 0 0 0 0 rgba(111, 217, 122, .6);
  animation: pulse-green 1.6s infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(111, 217, 122, .6); }
  70% { box-shadow: 0 0 0 7px rgba(111, 217, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 217, 122, 0); }
}

.wins-list {
  max-height: 380px;
  overflow: hidden;
  padding: 8px;
}

.win-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  animation: rowIn .45s ease;
}

.win-row:hover { background: var(--panel-2); }

@keyframes rowIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.win-row .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.win-row .win-info { flex: 1; min-width: 0; }
.win-row .win-info .name { font-weight: 800; color: #fff; font-size: .95rem; }
.win-row .win-info .game { color: var(--text-dim); font-size: .82rem; }
.win-row .win-meta { text-align: right; flex-shrink: 0; }
.win-row .win-meta .amount { font-weight: 800; color: var(--bamboo); font-size: 1rem; }
.win-row .win-meta .time { color: var(--text-dim); font-size: .76rem; }

/* ---------- Cards grid ---------- */

.grid {
  display: grid;
  gap: 20px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255, 201, 74, 0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: .93rem; }

/* Game card */

.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}

.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.game-card .thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--panel-2), var(--bg-soft));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.game-card .thumb img { width: 60%; }

.game-card .thumb .tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: #fff;
  font-size: .7rem; font-weight: 800;
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase;
}

.game-card .thumb .rtp {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.55); color: var(--gold);
  font-size: .7rem; font-weight: 800;
  padding: 4px 8px; border-radius: 8px;
}

.game-card .info { padding: 14px 16px; }
.game-card .info h4 { margin: 0 0 2px; font-family: var(--ff-body); font-weight: 800; font-size: .95rem; color: #fff; }
.game-card .info span { font-size: .78rem; color: var(--text-dim); }

.game-card .play-overlay {
  position: absolute; inset: 0;
  background: rgba(11,13,18,.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s ease;
}

.game-card:hover .play-overlay { opacity: 1; }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px 22px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px; left: 20px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  font-family: var(--ff-display);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Bonus cards / table ---------- */

.bonus-card {
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.bonus-card.featured { border-color: rgba(255, 201, 74, .5); }

.bonus-card .ribbon {
  position: absolute; top: 18px; right: -34px;
  background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 800;
  padding: 4px 40px;
  transform: rotate(35deg);
}

.bonus-card .value {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.bonus-card ul { margin: 16px 0; }
.bonus-card ul li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: .92rem;
}

.bonus-card ul li svg { color: var(--bamboo); flex-shrink: 0; margin-top: 3px; }

.promo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1.5px dashed var(--gold-deep);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 30px 0;
}

.promo-box .code {
  font-family: 'Courier New', monospace;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .05em;
}

.promo-box .label { font-size: .78rem; color: var(--text-dim); }

table.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border-radius: var(--radius-md);
  overflow: hidden;
}

table.data-table th, table.data-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}

table.data-table th {
  background: var(--panel-2);
  color: var(--gold);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

table.data-table tr:last-child td { border-bottom: none; }
table.data-table td { color: var(--text-muted); }

/* ---------- FAQ accordion ---------- */

.accordion { display: flex; flex-direction: column; gap: 12px; }

.accordion-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff;
}

.accordion-item summary::-webkit-details-marker { display: none; }

.accordion-item summary .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--panel-2);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease;
  font-size: 1.1rem;
  font-weight: 400;
}

.accordion-item[open] summary .plus { transform: rotate(45deg); }

.accordion-item .accordion-body {
  padding: 0 22px 20px;
  color: var(--text-muted);
}

.accordion-item .accordion-body p:last-child { margin-bottom: 0; }

/* ---------- Payments strip ---------- */

.payments-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.payments-strip .pay-chip {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-weight: 800;
  font-size: .9rem;
  color: var(--text-muted);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: linear-gradient(120deg, rgba(255,201,74,.14), rgba(111,217,122,.1));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner h2 { margin-bottom: 8px; }
.cta-banner p { margin: 0; max-width: 460px; }

/* ---------- Breadcrumbs ---------- */

.breadcrumbs {
  padding: 18px 0 0;
  font-size: .85rem;
  color: var(--text-dim);
}

.breadcrumbs a { color: var(--text-muted); font-weight: 700; }
.breadcrumbs a:hover { color: var(--gold); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 30px 0 46px;
  text-align: left;
}

.page-hero .lead { max-width: 720px; font-size: 1.05rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 56px 0 26px;
  margin-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 34px;
}

.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; max-width: 320px; }

.footer-col h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: .92rem; }
.footer-col ul li a:hover { color: var(--gold); }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 8px;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 14px;
}

.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  font-size: .78rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-legal p { color: var(--text-dim); font-size: .78rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  font-size: .78rem;
  color: var(--text-dim);
}

/* ---------- Responsible gaming strip ---------- */

.responsible-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 84, 112, 0.08);
  border: 1px solid rgba(255, 84, 112, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .85rem;
  color: var(--text-muted);
}

.responsible-strip strong { color: var(--red); }

/* ---------- Utilities ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.color-gold { color: var(--gold); }
.color-bamboo { color: var(--bamboo); }
.small { font-size: .85rem; }
.seo-block { color: var(--text-muted); }
.seo-block h2 { margin-top: 1.4em; }
.seo-block h3 { margin-top: 1.2em; color: #fff; }
.seo-block ul, .seo-block ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.seo-block ul { list-style: disc; }
.seo-block ol { list-style: decimal; }
.seo-block li { margin-bottom: .5em; }
.seo-block strong { color: #fff; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-art img { max-width: 260px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn--ghost { display: none; }

  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--bg);
    padding: 20px;
    gap: 6px;
    z-index: 99;
    overflow-y: auto;
  }

  .main-nav.mobile-open a { padding: 16px; font-size: 1.05rem; text-align: center; }
  .main-nav.mobile-open .nav-login-mobile {
    display: block;
    margin-top: 10px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    color: var(--gold);
  }

  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner p { max-width: none; }
  .section { padding: 46px 0; }
  table.data-table { display: block; overflow-x: auto; white-space: nowrap; }
}
