:root {
  --bg: #040806;
  --surface: #0b1511;
  --surface-2: #101e18;
  --surface-3: #14271f;
  --text: #f4f8f5;
  --muted: #a8bbb0;
  --green: #25e28a;
  --green-dark: #08a962;
  --gold: #d8b76a;
  --red: #d44a4a;
  --blue: #70aaff;
  --line: rgba(255, 255, 255, .11);
  --line-green: rgba(37, 226, 138, .28);
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --max: 1240px;
  --header: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 3%, rgba(212, 74, 74, .12), transparent 24rem),
    radial-gradient(circle at 9% 20%, rgba(37, 226, 138, .1), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green); }
a:hover { color: #79f7b7; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: -5rem;
  left: 1rem;
  padding: .7rem 1rem;
  border-radius: .5rem;
  color: #041009;
  background: #fff;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: .75rem max(1rem, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(4, 8, 6, .94);
  backdrop-filter: blur(18px);
}

.brand-link { display: inline-flex; margin-right: auto; }
.brand-link img { width: 166px; height: 50px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav ul, .footer-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a, .footer-nav a {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--green); }
.nav-actions { display: flex; gap: .55rem; }
.site-nav .btn-primary, .site-nav .btn-primary:hover { color: #02150c; }
.site-nav .btn-secondary, .site-nav .btn-secondary:hover { color: var(--text); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: .75rem;
  color: var(--text);
  background: var(--surface);
  font-size: 1.25rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .75rem 1.1rem;
  border: 1px solid transparent;
  border-radius: .75rem;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #02150c;
  background: linear-gradient(135deg, var(--green), #70f5b0);
  box-shadow: 0 12px 30px rgba(37, 226, 138, .2);
}
.btn-primary:hover { color: #02150c; box-shadow: 0 14px 38px rgba(37, 226, 138, .3); }
.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .05);
}
.btn-secondary:hover { color: var(--text); border-color: var(--green); }
.btn:focus-visible, .menu-toggle:focus-visible, .cookie-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

.hero {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero > img { width: 100%; height: 490px; object-fit: cover; object-position: center 32%; opacity: .62; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 4, .97) 0%, rgba(2, 7, 4, .72) 48%, rgba(2, 7, 4, .14) 87%),
    linear-gradient(0deg, var(--bg), transparent 30%);
}
.hero-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: max(1rem, calc((100% - var(--max)) / 2));
  width: min(650px, calc(100% - 2rem));
  transform: translateY(-50%);
}
.flag-line { display: flex; align-items: center; gap: .65rem; }
.flag-icon { width: 36px; height: 36px; object-fit: contain; }
.eyebrow {
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1, .page-hero h1 {
  margin: .65rem 0 1rem;
  max-width: 920px;
  font-size: clamp(2.35rem, 4.2vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -.048em;
}
.hero p, .page-hero p {
  max-width: 720px;
  margin: 0;
  color: #d4e2da;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}
.hero-note { margin-top: 1rem !important; color: #a9bcb2 !important; font-size: .86rem !important; }

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -2.2rem auto 0;
  overflow: hidden;
  border: 1px solid var(--line-green);
  border-radius: 1rem;
  background: rgba(10, 24, 18, .96);
  box-shadow: var(--shadow);
}
.trust-item { padding: 1rem 1.2rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--text); font-size: .95rem; }
.trust-item span { color: var(--muted); font-size: .8rem; }

.page-index {
  width: min(var(--max), calc(100% - 2rem));
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 1.5rem auto 0;
  padding: .75rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(9, 24, 16, .86);
  scrollbar-width: thin;
}
.page-index strong { padding: .55rem .7rem; color: var(--text); white-space: nowrap; }
.page-index a {
  padding: .55rem .75rem;
  border-radius: .55rem;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.page-index a:hover, .page-index a:focus-visible { color: var(--bg); background: var(--green); }

.section { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; padding: 3.8rem 0; }
.section.compact { padding-block: 2.8rem; }
.section-heading { max-width: 820px; margin-bottom: 2rem; }
.section-heading.inline { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 2rem; }
.section h2, .page-copy h2 {
  margin: .45rem 0 1rem;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -.03em;
}
.section h3, .page-copy h3 { line-height: 1.25; }
.section p, .page-copy p { color: var(--muted); }
.text-link { font-weight: 850; text-decoration: none; }

.game-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem; }
.game-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.game-card:hover { transform: translateY(-5px); border-color: var(--line-green); box-shadow: 0 18px 40px rgba(37, 226, 138, .12); }
.game-card img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.game-card span {
  position: absolute;
  right: .55rem;
  bottom: .55rem;
  left: .55rem;
  padding: .5rem;
  border-radius: .55rem;
  color: #fff;
  background: rgba(2, 7, 4, .88);
  font-size: .79rem;
  font-weight: 850;
  text-align: center;
}

.split { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 1.5rem; align-items: stretch; }
.panel, .info-card, .tier-card, .legal-card {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(145deg, rgba(18, 38, 29, .92), rgba(8, 15, 12, .96));
  box-shadow: 0 16px 45px rgba(0, 0, 0, .18);
}
.panel { min-width: 0; padding: 1.7rem; }
.promo-feature { display: grid; grid-template-columns: minmax(220px, .72fr) 1fr; gap: 1.8rem; align-items: center; }
.promo-feature img { width: 100%; border-radius: .85rem; }
.promo-feature h2 { margin-top: 0; }
.check-list { margin: 1.2rem 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: .65rem 0; padding-left: 1.6rem; color: #c9d7d0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.info-card { padding: 1.45rem; }
.info-card .number { color: rgba(37, 226, 138, .45); font-size: 2.5rem; font-weight: 950; line-height: 1; }
.info-card h3 { margin: .7rem 0 .5rem; }
.info-card p { margin-bottom: 0; }

.process-list { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.process-list li { counter-increment: steps; position: relative; padding: 1.35rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); }
.process-list li::before { content: "0" counter(steps); display: block; margin-bottom: .7rem; color: var(--green); font-size: .78rem; font-weight: 950; letter-spacing: .12em; }
.process-list strong { display: block; margin-bottom: .45rem; font-size: 1.05rem; }
.process-list span { color: var(--muted); font-size: .9rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--gold); background: rgba(255, 255, 255, .035); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
td { color: #c5d3cc; }
tbody tr:last-child td { border-bottom: 0; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pros-cons article { padding: 1.5rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); }
.pros-cons article:first-child { border-color: var(--line-green); }
.pros-cons article:last-child { border-color: rgba(216, 183, 106, .25); }
.pros-cons ul { padding-left: 1.2rem; color: #c6d4cd; }
.pros-cons li { margin: .55rem 0; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem;
  border: 1px solid var(--line-green);
  border-radius: 1.1rem;
  background: linear-gradient(120deg, rgba(8, 58, 35, .75), rgba(12, 20, 16, .96));
}
.cta-band h2 { margin: 0 0 .4rem; }
.cta-band p { margin: 0; }

.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.faq-list details { padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: .85rem; background: var(--surface); }
.faq-list summary { cursor: pointer; font-weight: 850; }
.faq-list p { margin: .7rem 0 0; }

.page-hero {
  min-height: 300px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(2, 8, 5, .97), rgba(3, 22, 13, .66)),
    url('../images/hero-banners/hero.webp') center / cover;
}
.page-hero.alt {
  background:
    linear-gradient(95deg, rgba(2, 9, 5, .97), rgba(4, 34, 21, .65)),
    url('../images/live-casino/imgi_95_bg-banner-desktop-2xHmjBhn.webp') center / cover;
}
.page-hero.promo-hero {
  background:
    linear-gradient(90deg, rgba(2, 8, 5, .97), rgba(3, 22, 13, .72)),
    url('../images/bonus-cards/bonus-background.webp') center / cover;
}
.page-hero > div { width: min(var(--max), calc(100% - 2rem)); padding: 3rem 0; }
.page-hero h1 { max-width: 760px; font-size: clamp(2.2rem, 4vw, 3.55rem); }
.page-hero p { max-width: 760px; }
.breadcrumbs { margin-bottom: 1rem; color: var(--muted); font-size: .84rem; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }

.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.offer-card {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(77, 101, 195, .58);
  border-radius: 1rem;
  background:
    linear-gradient(90deg, rgba(11, 17, 68, .98) 0 58%, rgba(13, 20, 75, .54)),
    url('../images/bonus-cards/bonus-background.webp') center / cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .32);
}
.offer-card::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(transparent, rgba(18, 29, 110, .35)); pointer-events: none; }
.offer-copy { position: relative; z-index: 2; width: 70%; display: flex; flex-direction: column; align-items: flex-start; padding: 1.35rem; }
.offer-kicker { min-height: 2.6em; color: var(--green); font-size: .82rem; font-weight: 950; letter-spacing: .04em; text-transform: uppercase; }
.offer-card h2 { max-width: 14ch; margin: .9rem 0 .7rem; font-size: clamp(1.35rem, 1.75vw, 1.75rem); }
.offer-card p { max-width: 34ch; font-size: .9rem; }
.offer-card dl { width: 100%; display: grid; gap: .38rem; margin: 0 0 1rem; }
.offer-card dl div { display: flex; justify-content: space-between; gap: .75rem; padding-bottom: .35rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.offer-card dt { color: #aab8c9; font-size: .72rem; }
.offer-card dd { margin: 0; color: #fff; font-size: .76rem; font-weight: 850; text-align: right; }
.offer-card .btn { width: 100%; margin-top: auto; }
.offer-card > img { position: absolute; z-index: 1; right: -13%; bottom: 2%; width: 58%; height: auto; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .45)); }
.data-note { margin: 1rem 0 0; font-size: .84rem; }

.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tier-card { position: relative; padding: 1.45rem; overflow: hidden; }
.tier-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--green), var(--gold)); }
.tier-card span { color: var(--gold); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.tier-card h2 { margin-top: .45rem; font-size: 1.5rem; }

.payment-method-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.payment-card { min-width: 0; padding: 1.35rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); }
.payment-card h2 { margin: .15rem 0 .6rem; font-size: 1.18rem; }
.payment-card > p { margin: 0; font-size: .86rem; line-height: 1.55; }
.payment-logo { width: 104px; height: 62px; display: grid; place-items: center; margin-bottom: .9rem; padding: .65rem; overflow: hidden; border-radius: .7rem; background: #fff; }
.payment-logo img { display: block; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; }
.payment-brand-pair { width: 154px; height: 62px; display: flex; align-items: center; gap: .65rem; margin-bottom: .9rem; padding: .65rem; overflow: hidden; border-radius: .7rem; background: #fff; }
.payment-brand-pair img { min-width: 0; max-width: calc(62% - .35rem); max-height: 38px; object-fit: contain; }
.payment-brand-pair img + img { max-width: calc(38% - .35rem); }
.cdn-logo img { width: 68%; height: 68%; max-width: 68%; max-height: 68%; object-fit: contain; }
.payment-wordmark span { color: #862165; font-size: 1.28rem; font-weight: 950; letter-spacing: -.05em; }
.bank-logo { background: #0c2419; }
.bank-logo img { width: 68%; height: 68%; max-width: 68%; max-height: 68%; object-fit: contain; }
.payment-facts { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.payment-facts span { padding: .35rem .55rem; border: 1px solid var(--line-green); border-radius: 999px; color: #cce9dc; background: rgba(37, 226, 138, .07); font-size: .72rem; font-weight: 800; }
.payment-icon-row { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: center; gap: .45rem; margin: 1.1rem 0 .7rem; }
.payment-method-mini { min-width: 0; height: 58px; display: grid; grid-template-rows: 30px auto; place-items: center; padding: .35rem .25rem .3rem; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: .55rem; background: #f8faf9; }
.payment-method-mini img { display: block; width: auto; max-width: 58px; height: 28px; object-fit: contain; clip-path: inset(0); }
.mini-wordmark { align-self: center; color: #862165; font-size: .82rem; font-weight: 950; letter-spacing: -.04em; }
.payment-method-mini small { max-width: 100%; overflow: hidden; color: #26332d; font-size: .58rem; font-weight: 850; line-height: 1; text-overflow: ellipsis; white-space: nowrap; }

.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 2rem; align-items: start; }
.page-copy { min-width: 0; }
.page-copy section { padding: 0 0 2.2rem; }
.page-copy ul { color: var(--muted); }
.page-copy li { margin: .55rem 0; }
.legal-card { position: sticky; top: calc(var(--header) + 1rem); padding: 1.2rem; }
.legal-card h2 { margin-top: 0; font-size: 1.2rem; }
.legal-card a { display: block; margin: .55rem 0; font-weight: 750; text-decoration: none; }

.age-card { display: flex; align-items: center; gap: 1rem; padding: 1.4rem; border: 1px solid rgba(216, 183, 106, .3); border-radius: 1rem; background: rgba(216, 183, 106, .06); }
.age-badge { display: grid; flex: 0 0 auto; width: 64px; height: 64px; place-items: center; border: 2px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 1.25rem; font-weight: 950; }

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  display: grid;
  grid-template-columns: 1.1fr 2fr auto;
  gap: 2rem;
  margin: 3rem auto 0;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-brand img { width: 150px; }
.footer-brand p, .footer-note, .copyright { color: var(--muted); font-size: .85rem; }
.footer-nav { flex-wrap: wrap; }
.footer-note, .copyright { grid-column: 1 / -1; margin: 0; }
.copyright { opacity: .72; }

.cookie-banner {
  position: fixed;
  z-index: 300;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: min(760px, calc(100% - 2rem));
  margin-left: auto;
  padding: 1.15rem;
  border: 1px solid var(--line-green);
  border-radius: 1rem;
  background: rgba(8, 18, 13, .98);
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin: 0 0 .35rem; font-size: 1.15rem; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .88rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .9rem; }
.cookie-btn { min-height: 42px; padding: .65rem .9rem; border: 1px solid var(--line); border-radius: .65rem; color: var(--text); background: var(--surface-3); font-weight: 800; cursor: pointer; }
.cookie-btn.primary { color: #02150c; border-color: var(--green); background: var(--green); }

@media (max-width: 1080px) {
  .menu-toggle { display: grid; place-items: center; }
  .site-nav {
    position: absolute;
    top: var(--header);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - var(--header));
    padding: 1rem;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 13, 9, .99);
  }
  .site-nav.open { display: block; }
  .site-nav ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: .2rem; }
  .site-nav a { display: block; padding: .75rem; }
  .nav-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: .8rem; }
  .nav-actions .btn { display: flex; }
  .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .payment-method-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .payment-method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-header { min-height: 70px; }
  .brand-link img { width: 150px; height: 45px; }
  .site-nav { top: 70px; max-height: calc(100dvh - 70px); }
  .site-nav ul { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 500px; }
  .hero > img { height: 500px; object-position: 57% center; }
  .hero::after { background: linear-gradient(0deg, var(--bg), rgba(2, 7, 4, .78) 64%, rgba(2, 7, 4, .22)); }
  .hero-copy { top: auto; bottom: 1.6rem; transform: none; }
  .hero h1 { font-size: 2.2rem; }
  .page-hero { min-height: 260px; }
  .page-hero > div { padding: 2.4rem 0; }
  .page-hero h1 { font-size: 2.15rem; }
  .hero p, .page-hero p { font-size: .98rem; line-height: 1.55; }
  .hero-note { font-size: .75rem !important; }
  .trust-strip { grid-template-columns: 1fr 1fr; margin-top: -1rem; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .section { padding-block: 2.8rem; }
  .section-heading.inline { display: block; }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
  .split, .promo-feature, .pros-cons, .legal-layout { grid-template-columns: 1fr; }
  .promo-feature img { max-width: 260px; margin: auto; }
  .info-grid, .offer-grid, .payment-method-grid, .process-list { grid-template-columns: 1fr; }
  .payment-method-grid { gap: .8rem; }
  .payment-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-areas:
      "logo title"
      "logo copy"
      "facts facts";
    column-gap: 1rem;
    padding: 1rem;
  }
  .payment-card > .payment-logo,
  .payment-card > .payment-brand-pair { grid-area: logo; width: 92px; height: 60px; margin: 0; padding: .55rem; }
  .payment-card > .payment-brand-pair { display: grid; grid-template-columns: 1.15fr .85fr; gap: .35rem; }
  .payment-card > .payment-brand-pair img,
  .payment-card > .payment-brand-pair img + img { width: 100%; max-width: 100%; max-height: 34px; }
  .payment-card > h2 { grid-area: title; margin: .05rem 0 .35rem; font-size: 1.08rem; }
  .payment-card > p { grid-area: copy; font-size: .82rem; line-height: 1.45; }
  .payment-card > .payment-facts { grid-area: facts; margin-top: .8rem; }
  .faq-list { grid-template-columns: 1fr; }
  .cta-band { align-items: stretch; flex-direction: column; padding: 1.5rem; }
  .cta-band .btn { width: 100%; }
  .legal-card { position: static; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer .age-badge { grid-column: 1; }
  .footer-note, .copyright { grid-column: 1; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 430px) {
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .btn { width: 100%; }
  .hero { min-height: 520px; }
  .hero > img { height: 520px; }
  .hero-copy { bottom: 1.2rem; }
  .hero .button-row { gap: .55rem; margin-top: 1rem; }
  .hero .btn { min-height: 43px; padding: .65rem .85rem; }
  .offer-card { min-height: 380px; }
  .offer-copy { width: 78%; padding: 1.2rem; }
  .offer-card > img { right: -24%; width: 75%; opacity: .78; }
  .offer-card h2 { font-size: 1.45rem; }
  .payment-icon-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tier-grid { grid-template-columns: 1fr; }
  .trust-item { padding: .85rem; }
  .trust-item strong { font-size: .86rem; }
  .trust-item span { font-size: .73rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
