/* =====================================================
   Panda Casino — стили сайта
   Тёмно-зелёная палитра, золотые CTA, глянцевые карточки
   ===================================================== */

:root {
  --bg: #060f0a;
  --bg-alt: #0a1a12;
  --surface: #0f2318;
  --surface-2: #12291c;
  --surface-glow: linear-gradient(155deg, #163826 0%, #0d1f15 55%, #091510 100%);
  --border: rgba(212, 175, 91, 0.18);
  --border-soft: rgba(255, 255, 255, 0.06);

  --green: #17b56b;
  --green-light: #2fe08a;
  --green-deep: #0a5c38;

  --gold: #f0c34d;
  --gold-light: #ffe29a;
  --gold-deep: #b6822a;
  --gold-grad: linear-gradient(135deg, #ffe29a 0%, #f0c34d 45%, #d19a2f 100%);

  --text: #eef6f0;
  --text-dim: #b7c8bd;
  --text-mute: #86998d;

  --danger: #ff6b6b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 12px 30px -10px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 10px 24px -8px rgba(240, 195, 77, 0.45);
  --container: 1220px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(650px 420px at 12% -6%, rgba(23, 181, 107, 0.16), transparent 60%),
    radial-gradient(700px 460px at 92% 8%, rgba(240, 195, 77, 0.10), transparent 60%);
  background-repeat: no-repeat;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { line-height: 1.22; margin: 0 0 .5em; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--text-dim); }
button { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.eyebrow::before { content: "◆"; color: var(--green-light); font-size: 10px; }

.section-head { max-width: 720px; margin: 0 0 32px; }
.section-head h2 { font-size: clamp(24px, 3.2vw, 34px); color: #fff; }
.section-head p { font-size: 16px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-gold {
  background: var(--gold-grad);
  color: #201202;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { filter: brightness(1.07); box-shadow: 0 14px 30px -8px rgba(240, 195, 77, 0.6); }

.btn-green {
  background: linear-gradient(135deg, var(--green-light), var(--green) 60%, var(--green-deep));
  color: #04150c;
  box-shadow: 0 10px 22px -8px rgba(23, 181, 107, 0.5);
}
.btn-green:hover { filter: brightness(1.08); }

.btn-outline {
  background: transparent;
  border-color: rgba(240, 195, 77, 0.55);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(240, 195, 77, 0.08); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-soft);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); }

.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 15, 10, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 30px; width: auto; }

.site-nav { flex: 1; }
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.site-nav a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dim);
  transition: color .15s, background .15s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-light);
  background: rgba(240, 195, 77, 0.08);
}

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--gold-light); margin: 0 auto; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 64px;
  border-bottom: 1px solid var(--border-soft);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 78% 10%, rgba(23, 181, 107, 0.22), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 12.5px; font-weight: 700; color: var(--gold-light);
}
.pill.green { color: var(--green-light); border-color: rgba(23,181,107,.3); }

.hero h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  color: #fff;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--gold-light); }
.hero-sub { font-size: 17px; color: var(--text-dim); max-width: 560px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 10px; }
.hero-note { font-size: 13px; color: var(--text-mute); }

.hero-art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-art img {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Promo cards row */
.promo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.promo-card {
  background: var(--surface-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, border-color .18s ease;
}
.promo-card:hover { transform: translateY(-4px); border-color: rgba(240,195,77,.5); }
.promo-card img {
  width: 58px; height: 58px; border-radius: 12px;
  object-fit: cover; object-position: left center;
  flex-shrink: 0; background: #081208;
  border: 1px solid var(--border-soft);
}
.promo-card-title { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.promo-card-text { font-size: 12.5px; color: var(--text-mute); margin: 0; }

/* ---------- Category chips ---------- */
.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  color: var(--text-dim);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { border-color: rgba(240,195,77,.4); color: #fff; }
.chip.is-active {
  background: var(--gold-grad);
  color: #201202;
  border-color: transparent;
}

/* ---------- Game cards ---------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.game-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
}
.game-card:hover { transform: translateY(-5px); border-color: rgba(240, 195, 77, .45); }
.game-thumb { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #081008; }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.game-card:hover .game-thumb img { transform: scale(1.06); }
.game-tag {
  position: absolute; top: 10px; left: 10px;
  background: rgba(6, 15, 10, 0.75);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 11px; font-weight: 700;
  padding: 4px 9px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.game-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6, 15, 10, 0.55);
  opacity: 0; transition: opacity .2s ease;
}
.game-card:hover .game-play-overlay { opacity: 1; }
.game-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.game-title { font-size: 14.5px; font-weight: 800; color: #fff; margin: 0; }
.game-provider { font-size: 12px; color: var(--text-mute); margin: 0; }
.game-body .btn { margin-top: auto; }

.grid-foot { text-align: center; margin-top: 32px; }

.empty-note {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
}

/* ---------- Winners ticker ---------- */
.winners-block {
  background: var(--surface-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 40px;
}
.winners-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; flex-wrap: wrap; gap: 8px;
}
.winners-head h3 { margin: 0; font-size: 17px; color: #fff; display: flex; align-items: center; gap: 8px;}
.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 0 rgba(47, 224, 138, .6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 224, 138, .55); }
  70% { box-shadow: 0 0 0 8px rgba(47, 224, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 224, 138, 0); }
}
.winners-note { font-size: 12px; color: var(--text-mute); }
.winners-list { display: flex; flex-direction: column; gap: 8px; max-height: 280px; overflow: hidden; }
.winner-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 12px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13.5px;
  animation: slideIn .4s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.winner-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #201202;
}
.winner-name { font-weight: 700; color: #fff; }
.winner-game { color: var(--text-mute); font-size: 12px; }
.winner-amount { color: var(--green-light); font-weight: 800; white-space: nowrap; }
.winner-time { color: var(--text-mute); font-size: 12px; white-space: nowrap; }

/* ---------- SEO text sections ---------- */
.seo-block { border-top: 1px solid var(--border-soft); }
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
}
.seo-item h2 {
  font-size: 21px;
  color: #fff;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.seo-item h2 span.num {
  font-size: 13px;
  color: #201202;
  background: var(--gold-grad);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.seo-item p { font-size: 15px; }
.seo-item ul { margin: 10px 0 0; padding-left: 0; }
.seo-item ul li {
  position: relative; padding-left: 20px; margin-bottom: 8px; color: var(--text-dim); font-size: 14.5px;
}
.seo-item ul li::before { content: "✓"; color: var(--green-light); position: absolute; left: 0; font-weight: 800; }

/* ---------- Payment table ---------- */
.pay-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border-soft); }
.pay-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--surface); }
.pay-table th, .pay-table td { padding: 14px 18px; text-align: left; font-size: 14.5px; }
.pay-table thead th {
  background: rgba(240, 195, 77, 0.08);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .03em;
  border-bottom: 1px solid var(--border);
}
.pay-table tbody tr { border-bottom: 1px solid var(--border-soft); }
.pay-table tbody tr:last-child { border-bottom: none; }
.pay-table tbody td:first-child { font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; }
.pay-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.pay-icon { width: 22px; height: 22px; border-radius: 6px; background: var(--gold-grad); flex-shrink: 0; }
.pay-foot-note { margin-top: 12px; font-size: 12.5px; color: var(--text-mute); }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: none; border: none; color: #fff;
  padding: 18px 20px;
  font-size: 15.5px; font-weight: 700; text-align: left;
  cursor: pointer;
}
.faq-q .ico {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-light); font-size: 15px;
  transition: transform .2s ease;
}
.faq-item.is-open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 20px 20px; font-size: 14.5px; color: var(--text-dim); }
.faq-item.is-open .faq-a { max-height: 600px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, #0d2a1a 0%, #123a24 55%, #0a2016 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px 220px at 90% 0%, rgba(240,195,77,.18), transparent 70%);
}
.cta-banner-text { position: relative; z-index: 1; max-width: 560px; }
.cta-banner h2 { color: #fff; font-size: clamp(20px, 2.6vw, 28px); margin-bottom: 8px; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Bonus / Live cards ---------- */
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.bonus-card {
  background: var(--surface-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; gap: 18px;
  box-shadow: var(--shadow-card);
}
.bonus-card img {
  width: 92px; height: 92px; border-radius: 14px;
  object-fit: cover; object-position: left center;
  flex-shrink: 0; background: #081208;
  border: 1px solid var(--border-soft);
}
.bonus-card h3 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.bonus-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.bonus-tags span {
  font-size: 11.5px; font-weight: 700; color: var(--green-light);
  background: rgba(23,181,107,.12); border: 1px solid rgba(23,181,107,.3);
  padding: 4px 9px; border-radius: 999px;
}

.live-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.live-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
  text-align: left;
}
.live-card .live-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.live-card h3 { color: #fff; font-size: 16.5px; margin-bottom: 6px; }
.live-card p { font-size: 13.5px; margin-bottom: 0; }

/* Promo code box */
.promocode-box {
  background: var(--surface-glow);
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.promocode-value {
  display: flex; align-items: center; gap: 10px;
  background: rgba(6,15,10,.6);
  border: 1px dashed var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--gold-light);
  font-size: 17px;
}
.copy-feedback { font-size: 12.5px; color: var(--green-light); margin-left: 6px; opacity: 0; transition: opacity .2s; }
.copy-feedback.show { opacity: 1; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 13px; color: var(--text-mute); margin-bottom: 18px; }
.breadcrumbs a { color: var(--text-mute); }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs span[aria-hidden] { margin: 0 6px; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { padding: 40px 0 44px; border-bottom: 1px solid var(--border-soft); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 85% 0%, rgba(23,181,107,.18), transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center; }
.page-hero h1 { font-size: clamp(26px, 3.6vw, 38px); color: #fff; }
.page-hero-art { display: flex; justify-content: center; }
.page-hero-art img { max-width: 260px; width: 100%; height: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.5)); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border-soft); background: var(--bg-alt); padding-top: 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-brand img { height: 26px; margin-bottom: 12px; }
.footer-brand p { font-size: 13.5px; }
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--gold-light);
  font-weight: 800; font-size: 13px;
}
.footer-col h3 { color: #fff; font-size: 14px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .04em; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13.5px; color: var(--text-dim); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-disclaimer { font-size: 12px; color: var(--text-mute); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 18px 0 26px;
  font-size: 12.5px;
  color: var(--text-mute);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-bottom a { color: var(--text-mute); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 240px; }
  .promo-row { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .seo-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .page-hero-art { order: -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .site-nav.is-open { max-height: 70vh; overflow-y: auto; }
  .site-nav ul { flex-direction: column; padding: 10px 16px 18px; }
  .site-nav a { display: block; padding: 12px 14px; }
  .header-actions .btn-ghost span.full,
  .header-actions { gap: 8px; }
  .header-actions .btn { padding: 10px 14px; font-size: 13.5px; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-row { grid-template-columns: 1fr 1fr; }
  .live-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .winner-row { grid-template-columns: auto 1fr; row-gap: 4px; }
  .winner-amount, .winner-time { grid-column: 2; justify-self: start; }
}

@media (max-width: 520px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .promo-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .section { padding: 44px 0; }
}
