/*
 * GOLAZZO CASINO - Design System
 * Stadium-energy maximalist aesthetic.
 * Fonts: Anton (headlines) + Rubik (body).
 * Dark football palette: near-black charcoal, electric lime, metallic gold.
 */

/* ============================================
   DESIGN TOKENS
   :root = light (fallback) / .dark = active theme
   Site ships dark-only (body has .dark).
   ============================================ */
:root {
    --background: #0d0d0f;
    --foreground: #f5f5f4;
    --card: #18181b;
    --card-foreground: #f5f5f4;
    --popover: #18181b;
    --popover-foreground: #f5f5f4;
    --primary: #a3e635;
    --primary-foreground: #0d0d0f;
    --secondary: #d4af37;
    --secondary-foreground: #0d0d0f;
    --muted: #27272a;
    --muted-foreground: #b4b4bd;
    --accent: #22c55e;
    --accent-foreground: #0d0d0f;
    --destructive: #f43f5e;
    --destructive-foreground: #0d0d0f;
    --border: #3f3f46;
    --input: #27272a;
    --ring: #a3e635;

    /* Spacing scale (8px grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-2xl: 96px;

    --radius: 8px;
    --radius-lg: 16px;
    --max-width: 1200px;
    --header-h: 64px;

    --font-head: "Anton", "Arial Narrow", sans-serif;
    --font-body: "Rubik", system-ui, -apple-system, sans-serif;

    --glow-lime: 0 0 40px rgba(163, 230, 53, 0.28);
    --glow-gold: 0 0 24px rgba(212, 175, 55, 0.45);
    --slash: linear-gradient(115deg, #a3e635 0%, #a3e635 45%, #d4af37 55%, #d4af37 100%);
}

.dark {
    --background: #0d0d0f;
    --foreground: #f5f5f4;
    --card: #18181b;
    --card-foreground: #f5f5f4;
    --popover: #18181b;
    --popover-foreground: #f5f5f4;
    --primary: #a3e635;
    --primary-foreground: #0d0d0f;
    --secondary: #d4af37;
    --secondary-foreground: #0d0d0f;
    --muted: #27272a;
    --muted-foreground: #b4b4bd;
    --accent: #22c55e;
    --accent-foreground: #0d0d0f;
    --destructive: #f43f5e;
    --destructive-foreground: #0d0d0f;
    --border: #3f3f46;
    --input: #27272a;
    --ring: #a3e635;
}

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

img, video, iframe, embed, object, svg { max-width: 100%; height: auto; }

[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }

pre, code, .code-block, [class*="code"] { max-width: 100%; overflow-x: auto; }
pre code, .code-block code { display: block; min-width: 0; }

.table-wrapper { max-width: 100%; overflow-x: auto; }

p, li, td, th { overflow-wrap: break-word; }

input, textarea, select { max-width: 100%; }

section { overflow: clip; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ============================================
   BASE TYPOGRAPHY
   Anton headings uppercase / Rubik body.
   ============================================ */
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }

p { margin: 0 0 var(--space-md); }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { margin: 0 0 var(--space-md); padding-left: 1.4em; }
li { margin-bottom: var(--space-xs); }

strong { font-weight: 700; }

.lime { color: var(--primary); }
.gold { color: var(--secondary); }

@media (min-width: 1024px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
}

/* Accessibility helpers */
.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;
}
.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 1100;
    background: var(--primary); color: var(--primary-foreground);
    padding: var(--space-xs) var(--space-sm); font-weight: 600; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; }

/* ============================================
   LAYOUT PRIMITIVES
   .container - centered max-width wrapper
   .section - vertical rhythm block
   .section-heading - uppercase heading with lime accent
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--space-sm);
}

.section { padding-block: var(--space-xl); }
@media (min-width: 1024px) { .section { padding-block: var(--space-2xl); } }

.section--tight { padding-block: var(--space-lg); }

.section-heading { position: relative; }
.section-heading::after {
    content: ""; display: block; width: 56px; height: 4px;
    margin-top: var(--space-sm); border-radius: 2px; background: var(--slash);
}
.section-heading--center { text-align: center; }
.section-heading--center::after { margin-inline: auto; }

.eyebrow {
    display: inline-block; font-family: var(--font-head); text-transform: uppercase;
    color: var(--secondary); letter-spacing: 0.08em; font-size: 15px;
    margin-bottom: var(--space-xs);
}

.lead { font-size: 19px; color: var(--muted-foreground); }
.text-block { max-width: 68ch; }

/* Diagonal floodlight slash divider */
.slash-divider {
    height: 4px; width: 100%; border: 0; margin: 0;
    background: var(--slash); opacity: 0.85;
}

/* ============================================
   BUTTONS
   .btn base / .btn--primary lime / .btn--ghost outline
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: var(--space-xs); min-height: 48px;
    padding: 12px 28px; border-radius: var(--radius);
    font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.03em;
    font-size: 16px; line-height: 1; text-align: center; text-decoration: none;
    border: 2px solid transparent; cursor: pointer;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background-color 0.2s;
}
.btn:hover { text-decoration: none; transform: scale(1.03); }

.btn--primary { background: var(--primary); color: var(--primary-foreground); }
.btn--primary:hover { box-shadow: var(--glow-gold); }

.btn--ghost {
    background: transparent; color: var(--foreground); border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--glow-lime); }

.btn--gold { background: var(--secondary); color: var(--secondary-foreground); }
.btn--gold:hover { box-shadow: var(--glow-lime); }

.btn--lg { min-height: 56px; padding: 16px 40px; font-size: 20px; }
.btn--block { display: flex; width: 100%; }

@media (prefers-reduced-motion: reduce) {
    .btn:hover { transform: none; }
    html { scroll-behavior: auto; }
}

/* ============================================
   HEADER + NAVIGATION
   Sticky dark header, mobile slide-in drawer.
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--max-width); margin-inline: auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-sm); min-height: var(--header-h);
    padding-inline: var(--space-sm);
}

.site-brand {
    display: inline-flex; align-items: center; gap: var(--space-xs);
    font-family: var(--font-head); text-transform: uppercase;
    font-size: 22px; letter-spacing: 0.02em; color: var(--foreground);
    text-decoration: none; flex-shrink: 0;
}
.site-brand:hover { text-decoration: none; }
.site-brand__mark {
    width: 26px; height: 26px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--primary) 0%, var(--primary) 55%, #0d0d0f 56%);
    box-shadow: var(--glow-lime); position: relative; flex-shrink: 0;
}
.site-brand__mark::after {
    content: ""; position: absolute; top: 50%; left: -6px; width: 40px; height: 4px;
    transform: translateY(-50%) rotate(-20deg); background: var(--secondary); border-radius: 2px; opacity: 0.85;
}
.site-brand__accent { color: var(--primary); }

.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 48px; padding: 10px; z-index: 1001;
    background: transparent; border: 1px solid var(--border); border-radius: var(--radius);
    cursor: pointer;
}
.nav-toggle span {
    display: block; height: 3px; width: 100%; border-radius: 2px;
    background: var(--primary); transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer default hidden */
.primary-nav {
    display: none;
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 999;
    background: var(--background);
    padding: var(--space-md) var(--space-sm) var(--space-xl);
    overflow-y: auto;
    flex-direction: column; gap: var(--space-md);
}
.primary-nav.is-open { display: flex; }

.primary-nav__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; align-items: stretch; gap: var(--space-xs);
}
.primary-nav__list a {
    display: flex; align-items: center; min-height: 48px;
    padding: 12px var(--space-sm); border-radius: var(--radius);
    font-family: var(--font-head); text-transform: uppercase; font-size: 20px;
    color: var(--foreground); border-bottom: 1px solid var(--border);
}
.primary-nav__list a:hover { color: var(--primary); text-decoration: none; background: var(--muted); }

.primary-nav__cta {
    display: flex; flex-direction: column; gap: var(--space-xs);
    margin-top: var(--space-sm);
}
.primary-nav__cta .btn { width: 100%; }

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav {
        display: flex; position: static; inset: auto; z-index: auto;
        flex-direction: row; align-items: center; gap: var(--space-lg);
        background: transparent; padding: 0; overflow: visible;
    }
    .primary-nav__list { flex-direction: row; align-items: center; gap: var(--space-md); }
    .primary-nav__list a {
        min-height: auto; padding: 8px 4px; font-size: 16px; border-bottom: 2px solid transparent;
        border-radius: 0; background: transparent;
    }
    .primary-nav__list a:hover { background: transparent; border-bottom-color: var(--primary); }
    .primary-nav__cta { flex-direction: row; margin-top: 0; }
    .primary-nav__cta .btn { width: auto; }
}

/* ============================================
   HERO
   Full-bleed stadium hero, split copy + image.
   ============================================ */
.hero {
    position: relative;
    background: radial-gradient(1200px 500px at 80% -10%, rgba(163,230,53,0.12), transparent 60%),
                radial-gradient(900px 400px at 10% 110%, rgba(212,175,55,0.10), transparent 60%),
                var(--background);
    border-bottom: 1px solid var(--border);
    overflow: clip;
}
.hero::before {
    content: ""; position: absolute; top: -20%; left: 30%; width: 60%; height: 140%;
    background: var(--slash); opacity: 0.06; transform: rotate(-16deg); pointer-events: none;
}
.hero__inner {
    position: relative; z-index: 1;
    max-width: var(--max-width); margin-inline: auto;
    padding: var(--space-xl) var(--space-sm);
    display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center;
}
.hero__content { max-width: 620px; }
.hero__title { margin-bottom: var(--space-sm); }
.hero__title--big { font-size: clamp(30px, 7.4vw, 56px); line-height: 1.06; }
.hero__value {
    font-family: var(--font-head); color: var(--primary);
    font-size: clamp(28px, 7vw, 44px); line-height: 1; display: block;
    text-shadow: var(--glow-lime);
}
.hero__sub { color: var(--secondary); font-family: var(--font-head); text-transform: uppercase; font-size: 18px; }
.hero__lead { color: var(--muted-foreground); font-size: 18px; margin-block: var(--space-sm) var(--space-md); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.hero__micro { font-size: 14px; color: var(--secondary); margin-top: var(--space-sm); }
.hero__media { position: relative; }
.hero__media img { display: block; width: 100%; border-radius: var(--radius-lg); }

@media (min-width: 1024px) {
    .hero__title--big { line-height: 1.02; }
    .hero__inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-2xl); padding-block: var(--space-2xl); }
}

/* ============================================
   GRIDS
   .card-grid - responsive 2/3 col grid for cards
   ============================================ */
.card-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-sm); }
@media (min-width: 768px) { .card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px) { .card-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.split {
    display: grid; grid-template-columns: minmax(0,1fr); gap: var(--space-lg); align-items: center;
}
@media (min-width: 1024px) { .split { grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-2xl); } }
.split__media img { border-radius: var(--radius-lg); width: 100%; display: block; }

/* ============================================
   BONUS CARD component
   ============================================ */
.bonus-card {
    position: relative; min-width: 0;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    display: flex; flex-direction: column; gap: var(--space-xs);
    overflow: clip;
}
@media (min-width: 1024px) { .bonus-card { padding: var(--space-lg); } }
.bonus-card__glow {
    position: absolute; top: -40px; right: -40px; width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(163,230,53,0.20), transparent 70%); pointer-events: none;
}
.bonus-card__slash {
    position: absolute; top: 0; left: -30%; width: 60%; height: 100%;
    background: var(--slash); opacity: 0.10; transform: skewX(-18deg); pointer-events: none;
}
.bonus-card__badge {
    position: relative; align-self: flex-start;
    background: var(--secondary); color: var(--secondary-foreground);
    font-family: var(--font-head); text-transform: uppercase; font-size: 13px;
    padding: 4px 12px; border-radius: 999px; letter-spacing: 0.04em; margin-bottom: var(--space-xs);
}
.bonus-card__title { position: relative; margin: 0; font-size: 22px; }
.bonus-card__value {
    position: relative; font-family: var(--font-head); color: var(--primary);
    font-size: clamp(34px, 9vw, 48px); line-height: 1; margin: 0; text-shadow: var(--glow-lime);
}
.bonus-card__sublabel {
    position: relative; color: var(--secondary); font-family: var(--font-head);
    text-transform: uppercase; font-size: 16px; margin: 0;
}
.bonus-card__desc, .bonus-card__terms { position: relative; margin: 0; }
.bonus-card__desc { color: var(--card-foreground); }
.bonus-card__terms { color: var(--muted-foreground); font-size: 14px; }
.bonus-card__btn { position: relative; margin-top: var(--space-sm); }

/* ============================================
   INFO CARD component
   ============================================ */
.info-card {
    position: relative; min-width: 0;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-md); overflow: clip;
    display: flex; flex-direction: column; gap: var(--space-xs);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--glow-lime); }
.info-card__slash {
    position: absolute; top: -20px; right: -20px; width: 70px; height: 70px;
    background: var(--slash); opacity: 0.14; transform: rotate(30deg); pointer-events: none;
}
.info-card__media { border-radius: var(--radius); overflow: hidden; margin-bottom: var(--space-xs); }
.info-card__media img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.info-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: var(--radius);
    background: var(--muted); color: var(--primary); font-size: 28px;
}
.info-card__title { position: relative; margin: 0; font-size: 20px; }
.info-card__desc { position: relative; margin: 0; color: var(--muted-foreground); }
.info-card__link {
    position: relative; margin-top: auto; padding-top: var(--space-xs);
    font-weight: 600; color: var(--primary);
}
.info-card__link::after { content: " →"; }

/* ============================================
   STAT HIGHLIGHT component
   ============================================ */
.stat-highlight {
    display: grid; grid-template-columns: minmax(0,1fr); gap: var(--space-md);
    text-align: center;
}
@media (min-width: 768px) { .stat-highlight { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.stat-block { position: relative; padding: var(--space-md); }
.stat-block__glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 140px; height: 90px;
    background: radial-gradient(circle, rgba(163,230,53,0.18), transparent 70%); pointer-events: none;
}
.stat-block__number {
    position: relative; display: block; font-family: var(--font-head); color: var(--primary);
    font-size: 48px; line-height: 1; text-shadow: var(--glow-lime);
}
.stat-block__label {
    position: relative; display: block; color: var(--secondary);
    font-weight: 600; margin-top: var(--space-xs);
}
.stat-block__note { position: relative; display: block; color: var(--muted-foreground); font-size: 14px; margin-top: 4px; }

/* ============================================
   CTA BANNER component
   ============================================ */
.cta-banner {
    position: relative; overflow: clip;
    background: radial-gradient(900px 400px at 50% -20%, rgba(163,230,53,0.14), transparent 60%),
                var(--card);
    border-block: 1px solid var(--border);
    padding-block: var(--space-xl);
    text-align: center;
}
@media (min-width: 1024px) { .cta-banner { padding-block: var(--space-2xl); } }
.cta-banner__glow {
    position: absolute; inset: 0;
    background: radial-gradient(600px 300px at 50% 120%, rgba(212,175,55,0.12), transparent 60%);
    pointer-events: none;
}
.cta-banner__slash {
    position: absolute; top: -20%; left: 40%; width: 50%; height: 140%;
    background: var(--slash); opacity: 0.08; transform: rotate(-14deg); pointer-events: none;
    animation: slashPulse 4s ease-in-out infinite;
}
@keyframes slashPulse { 0%,100% { opacity: 0.05; } 50% { opacity: 0.14; } }
.cta-banner__inner {
    position: relative; z-index: 1; max-width: 760px; margin-inline: auto;
    padding-inline: var(--space-sm);
}
.cta-banner__heading { font-size: clamp(28px, 6vw, 40px); margin-bottom: var(--space-sm); }
.cta-banner__subline { color: var(--muted-foreground); font-size: 18px; margin-bottom: var(--space-md); }
.cta-banner__micro { color: var(--secondary); font-size: 14px; margin-top: var(--space-sm); }

/* ============================================
   FAQ ACCORDION component (native details)
   ============================================ */
.faq-accordion { display: flex; flex-direction: column; }
.faq-accordion__heading { margin-bottom: var(--space-md); }
.faq-item {
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
    padding-left: var(--space-sm);
    transition: border-color 0.2s;
}
.faq-item[open] { border-left-color: var(--primary); }
.faq-item__q {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    min-height: 48px; padding: var(--space-sm) 0; cursor: pointer;
    list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q-text {
    font-family: var(--font-head); text-transform: uppercase; font-size: 18px; color: var(--foreground);
}
.faq-item__chevron {
    flex-shrink: 0; width: 14px; height: 14px; border-right: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary); transform: rotate(45deg);
    transition: transform 0.25s ease; margin-top: -6px;
}
.faq-item[open] .faq-item__chevron { transform: rotate(-135deg); margin-top: 4px; }
.faq-item__a { padding: 0 0 var(--space-md); color: var(--muted-foreground); }
.faq-item__a p { margin: 0; }

/* ============================================
   ENGAGEMENT / GEO PATTERNS
   .tldr-box, .callout, .pull-quote
   ============================================ */
.tldr-box {
    background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--primary);
    border-radius: var(--radius); padding: var(--space-md); margin-bottom: var(--space-lg);
}
.tldr-box__label {
    font-family: var(--font-head); text-transform: uppercase; color: var(--primary);
    font-size: 15px; letter-spacing: 0.06em; display: block; margin-bottom: var(--space-xs);
}
.tldr-box p { margin: 0; }

.callout {
    background: var(--muted); border-left: 4px solid var(--secondary);
    border-radius: var(--radius); padding: var(--space-md); margin-block: var(--space-md);
}
.callout__title {
    font-family: var(--font-head); text-transform: uppercase; color: var(--secondary);
    font-size: 17px; margin-bottom: var(--space-xs);
}
.callout p:last-child { margin: 0; }

.pull-quote {
    font-family: var(--font-body); font-style: italic; font-size: 22px; line-height: 1.4;
    border-left: 4px solid var(--primary); padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
    margin-block: var(--space-lg); color: var(--foreground);
}
.pull-quote cite { display: block; font-size: 15px; font-style: normal; color: var(--secondary); margin-top: var(--space-xs); }

/* ============================================
   TABLES - comparison / limits
   ============================================ */
.table-wrapper { margin-block: var(--space-md); border: 1px solid var(--border); border-radius: var(--radius); }
.data-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.data-table caption { text-align: left; padding: var(--space-sm); color: var(--muted-foreground); font-size: 14px; }
.data-table th, .data-table td {
    padding: 12px var(--space-sm); text-align: left; border-bottom: 1px solid var(--border);
}
.data-table thead th {
    font-family: var(--font-head); text-transform: uppercase; font-size: 15px;
    color: var(--primary-foreground); background: var(--primary); letter-spacing: 0.03em;
}
.data-table tbody tr:nth-child(even) { background: var(--muted); }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table .row-highlight { color: var(--secondary); font-weight: 600; }

/* ============================================
   TRUST BADGES / PAYMENT STRIP
   ============================================ */
.badge-row {
    display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; align-items: center;
}
.trust-badge {
    display: inline-flex; align-items: center; gap: var(--space-xs);
    background: var(--card); border: 1px solid var(--border); border-radius: 999px;
    padding: 10px 20px; font-family: var(--font-head); text-transform: uppercase;
    font-size: 15px; color: var(--foreground);
}
.trust-badge--gold { color: var(--secondary); border-color: var(--secondary); }
.trust-badge--lime { color: var(--primary); border-color: var(--primary); }

.payment-strip {
    display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; align-items: center;
}
.payment-chip {
    background: var(--muted); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 10px 18px; font-weight: 600; color: var(--foreground); font-size: 15px;
}

.logo-strip {
    display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: center; align-items: center;
    padding: var(--space-md); border: 1px solid var(--border); border-radius: var(--radius); background: var(--card);
}
.logo-strip img { max-height: 44px; width: auto; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--card); border-top: 1px solid var(--border); margin-top: var(--space-2xl);
}
.site-footer__inner {
    max-width: var(--max-width); margin-inline: auto; padding: var(--space-xl) var(--space-sm) var(--space-lg);
    display: grid; grid-template-columns: 1fr; gap: var(--space-lg);
}
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-brand--footer { margin-bottom: var(--space-sm); }
.site-footer__tag { color: var(--muted-foreground); max-width: 34ch; }
.site-footer__heading {
    font-size: 16px; color: var(--secondary); margin-bottom: var(--space-sm);
}
.site-footer__links, .site-footer__payments {
    list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-xs);
}
.site-footer__links a {
    display: inline-flex; align-items: center; min-height: 44px;
    color: var(--muted-foreground);
}
.site-footer__links a:hover { color: var(--primary); }
.site-footer__payments { flex-direction: row; flex-wrap: wrap; gap: var(--space-xs); }
.site-footer__payments li {
    background: var(--muted); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 6px 12px; font-size: 14px; margin: 0; color: var(--foreground);
}
.site-footer__bottom {
    border-top: 1px solid var(--border); padding: var(--space-lg) var(--space-sm) var(--space-xl);
    max-width: var(--max-width); margin-inline: auto; text-align: center;
}
.site-footer__badges { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; margin-bottom: var(--space-md); }
.footer-badge {
    display: inline-flex; align-items: center;
    border: 1px solid var(--border); border-radius: 999px; padding: 6px 16px;
    font-family: var(--font-head); text-transform: uppercase; font-size: 14px; color: var(--muted-foreground);
}
.footer-badge--age { color: var(--destructive); border-color: var(--destructive); }
.site-footer__legal { color: var(--muted-foreground); font-size: 14px; max-width: 70ch; margin-inline: auto; }
.site-footer__copy { color: var(--muted-foreground); font-size: 14px; margin-top: var(--space-sm); }

/* ============================================
   SITEMAP LIST
   ============================================ */
.sitemap-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-md); }
.sitemap-item {
    position: relative; overflow: clip;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-md);
}
.sitemap-item::after {
    content: ""; position: absolute; top: -20px; right: -20px; width: 60px; height: 60px;
    background: var(--slash); opacity: 0.12; transform: rotate(30deg); pointer-events: none;
}
.sitemap-item h3 { margin: 0 0 var(--space-xs); }
.sitemap-item a { color: var(--primary); }
.sitemap-item p { margin: 0; color: var(--muted-foreground); }

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.animate-on-scroll {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-on-scroll.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .cta-banner__slash { animation: none; }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
