/*
 * BETSSON CASINO - CYBERPUNK CASINO DESIGN SYSTEM
 * Fonts: Orbitron (display) + Rajdhani (body)
 * Dark theme only, turquoise-orange neon accents.
 */

:root {
    --background: #0a0f1c;
    --foreground: #e8edf5;
    --card: #111a2e;
    --card-foreground: #e8edf5;
    --popover: #111a2e;
    --popover-foreground: #e8edf5;
    --primary: #22d3ee;
    --primary-foreground: #04121a;
    --secondary: #1a2438;
    --secondary-foreground: #e8edf5;
    --muted: #243049;
    --muted-foreground: #9aa8c0;
    --accent: #fb923c;
    --accent-foreground: #1a0e04;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #2c3a55;
    --input: #1a2438;
    --ring: #22d3ee;

    /* Spacing scale (8px base grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 100px;

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

    --font-display: "Orbitron", sans-serif;
    --font-body: "Rajdhani", sans-serif;

    --glow-teal: rgba(34, 211, 238, 0.45);
    --glow-orange: rgba(251, 146, 60, 0.45);
}

.dark {
    --background: #0a0f1c;
    --foreground: #e8edf5;
    --card: #111a2e;
    --card-foreground: #e8edf5;
    --popover: #111a2e;
    --popover-foreground: #e8edf5;
    --primary: #22d3ee;
    --primary-foreground: #04121a;
    --secondary: #1a2438;
    --secondary-foreground: #e8edf5;
    --muted: #243049;
    --muted-foreground: #9aa8c0;
    --accent: #fb923c;
    --accent-foreground: #1a0e04;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #2c3a55;
    --input: #1a2438;
    --ring: #22d3ee;
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*, *::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, [class*="table-"] { max-width: 100%; overflow-x: auto; }

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

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

section { overflow-x: clip; }

/* ============================================
   BASE / TYPOGRAPHY
   Orbitron headings, Rajdhani body.
   ============================================ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    background-image:
        radial-gradient(circle at 15% 0%, rgba(34, 211, 238, 0.08), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(251, 146, 60, 0.07), transparent 45%);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--foreground);
    margin: 0 0 var(--space-sm);
}

h1 { font-size: clamp(2.125rem, 5vw + 1rem, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.625rem, 3vw + 0.5rem, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem); font-weight: 500; }
h4 { font-size: clamp(1.1rem, 1vw + 0.5rem, 1.35rem); font-weight: 500; }

p { margin: 0 0 var(--space-md); max-width: 72ch; }

a { color: var(--primary); text-decoration: none; transition: color 250ms ease-out; }
a:hover { color: var(--accent); }

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

strong { color: var(--foreground); font-weight: 700; }

::selection { background: var(--primary); color: var(--primary-foreground); }

.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: 2000;
    background: var(--accent); color: var(--accent-foreground);
    padding: var(--space-xs) var(--space-md); border-radius: 0 0 var(--radius) 0;
    font-family: var(--font-display); font-weight: 600;
}
.skip-link:focus { left: 0; }

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

/* ============================================
   LAYOUT HELPERS
   .container - centered max-width wrapper
   .section - vertical rhythm
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--space-sm);
}

.section { padding-block: var(--space-2xl); scroll-margin-top: calc(var(--header-h) + var(--space-md)); }
@media (min-width: 1024px) { .section { padding-block: var(--space-2xl); } }

.section__head { max-width: 60ch; margin-bottom: var(--space-xl); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__kicker {
    font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary);
    display: block; margin-bottom: var(--space-xs);
}
.section__lead { color: var(--muted-foreground); font-size: 1.1rem; }

.neon-divider {
    height: 2px; border: 0; margin-block: var(--space-lg);
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   .btn base, .btn--accent (orange CTA),
   .btn--primary (teal), .btn--ghost, .btn--lg
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs);
    min-height: 44px; padding: 0 var(--space-md);
    font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
    letter-spacing: 0.05em; text-transform: uppercase;
    border: 1px solid transparent; border-radius: var(--radius);
    cursor: pointer; text-align: center;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, background-color 250ms ease-out, color 250ms ease-out;
}
.btn:hover { transform: translateY(-2px); }

.btn--accent {
    background: var(--accent); color: var(--accent-foreground);
    box-shadow: 0 0 0 rgba(251,146,60,0);
}
.btn--accent:hover {
    color: var(--accent-foreground);
    box-shadow: 0 6px 28px var(--glow-orange), 0 0 16px var(--glow-orange);
}

.btn--primary {
    background: var(--primary); color: var(--primary-foreground);
}
.btn--primary:hover { color: var(--primary-foreground); box-shadow: 0 6px 28px var(--glow-teal); }

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

.btn--lg { min-height: 56px; padding: 0 var(--space-xl); font-size: 1.05rem; }

.btn--block { display: flex; width: 100%; }

/* ============================================
   HEADER + NAVIGATION
   Sticky dark header, neon wordmark, desktop nav,
   mobile slide-in drawer.
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(10, 15, 28, 0.92);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 769px) {
    .site-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.site-header__inner {
    max-width: var(--max-width); margin-inline: auto;
    padding: 0 var(--space-sm);
    min-height: var(--header-h);
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
}

.site-brand {
    display: inline-flex; align-items: center; gap: var(--space-xs);
    font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
    text-transform: uppercase; letter-spacing: 0.04em; color: var(--foreground);
    flex-shrink: 0;
}
.site-brand:hover { color: var(--foreground); }
.site-brand__mark {
    display: grid; place-items: center; width: 38px; height: 38px;
    border-radius: 10px; font-size: 1.35rem; font-weight: 900;
    color: #04121a;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 18px var(--glow-teal);
}
.site-brand__accent { color: var(--primary); }

.primary-nav { display: flex; align-items: center; gap: var(--space-lg); }
.primary-nav__list {
    display: flex; align-items: center; gap: var(--space-md);
    list-style: none; margin: 0; padding: 0;
}
.primary-nav__link {
    font-family: var(--font-display); font-weight: 500; font-size: 0.9rem;
    letter-spacing: 0.04em; text-transform: uppercase; color: var(--foreground);
    padding: var(--space-xs) 0; position: relative; white-space: nowrap;
}
.primary-nav__link::after {
    content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 250ms ease-out;
}
.primary-nav__link:hover { color: var(--primary); }
.primary-nav__link:hover::after { width: 100%; }

.primary-nav__cta { display: flex; align-items: center; gap: var(--space-xs); }

.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0; z-index: 1001;
    background: transparent; border: 1px solid var(--border); border-radius: var(--radius);
    cursor: pointer;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px; margin-inline: auto;
    background: var(--foreground); transition: transform 250ms ease-out, opacity 250ms ease-out;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
        flex-direction: column; align-items: stretch; justify-content: flex-start;
        gap: 0; padding: var(--space-md) var(--space-sm) var(--space-2xl);
        background: var(--background);
        border-top: 1px solid var(--border);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 250ms ease-out;
        display: none;
    }
    .primary-nav.is-open { display: flex; transform: translateX(0); }
    .primary-nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .primary-nav__link {
        display: flex; align-items: center; min-height: 52px;
        font-size: 1.1rem; border-bottom: 1px solid var(--border);
    }
    .primary-nav__link::after { display: none; }
    .primary-nav__cta {
        flex-direction: column; align-items: stretch; width: 100%;
        margin-top: var(--space-md); gap: var(--space-sm);
    }
    .primary-nav__cta .btn { width: 100%; }
}

/* ============================================
   HERO
   Full-bleed cyberpunk banner with bonus block.
   ============================================ */
.hero {
    position: relative; isolation: isolate;
    padding-block: var(--space-2xl);
    border-bottom: 1px solid var(--border);
}
.hero__bg {
    position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
    object-fit: cover;
}
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(10,15,28,0.72), rgba(10,15,28,0.9)),
                linear-gradient(90deg, rgba(10,15,28,0.85), rgba(10,15,28,0.35));
}
.hero__inner {
    max-width: var(--max-width); margin-inline: auto; padding-inline: var(--space-sm);
    display: grid; gap: var(--space-xl); align-items: center;
}
@media (min-width: 1024px) {
    .hero { padding-block: var(--space-3xl); }
    .hero__inner { grid-template-columns: 1.2fr 0.8fr; }
}
.hero__eyebrow {
    display: inline-block; font-family: var(--font-display); font-weight: 600;
    font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--primary); margin-bottom: var(--space-sm);
}
.hero__title { margin-bottom: var(--space-md); text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.hero__title .accent {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__text { color: var(--foreground); font-size: 1.15rem; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-lg); }

/* Bonus block (glowing panel) */
.bonus-block {
    padding: var(--space-lg); border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(17,26,46,0.95), rgba(10,15,28,0.95));
    border: 1px solid var(--primary);
    box-shadow: 0 0 32px var(--glow-teal), inset 0 0 24px rgba(34,211,238,0.08);
    text-align: center;
}
.bonus-block__label {
    font-family: var(--font-display); font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--accent); font-size: 0.9rem;
}
.bonus-block__amount {
    display: block; font-family: var(--font-display); font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 3.75rem); line-height: 1.05; margin-block: var(--space-xs);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bonus-block__spins {
    font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
    color: var(--foreground); text-transform: uppercase; letter-spacing: 0.05em;
}
.bonus-block__note { color: var(--muted-foreground); font-size: 0.9rem; margin-top: var(--space-sm); margin-bottom: var(--space-md); }
.bonus-block .btn { width: 100%; }

/* ============================================
   INFO CARD (component)
   Holographic glass card, image top, neon glow on hover.
   ============================================ */
.card-grid {
    display: grid; gap: var(--space-md);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .card-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.card-grid--2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .card-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.info-card {
    display: flex; flex-direction: column; min-width: 0;
    background: linear-gradient(160deg, var(--card), rgba(10,15,28,0.9));
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, border-color 250ms ease-out;
}
.info-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 24px var(--glow-teal), 0 0 40px var(--glow-orange);
}
.info-card__media { aspect-ratio: 5 / 3; overflow: hidden; }
.info-card__media img { width: 100%; height: 100%; object-fit: cover; }
.info-card__icon {
    font-size: 2.4rem; padding: var(--space-md) var(--space-md) 0;
    color: var(--primary);
}
.info-card__body { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; }
@media (min-width: 1024px) { .info-card__body { padding: var(--space-lg); } }
.info-card__badge {
    align-self: flex-start; font-family: var(--font-display); font-weight: 600;
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent-foreground); background: var(--accent);
    padding: 4px 10px; border-radius: 999px; margin-bottom: var(--space-xs);
}
.info-card__title { font-size: 1.2rem; margin-bottom: var(--space-xs); }
.info-card__text { color: var(--muted-foreground); font-size: 1rem; margin-bottom: var(--space-md); }
.info-card__link {
    margin-top: auto; font-family: var(--font-display); font-weight: 600;
    font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--primary); display: inline-flex; align-items: center; gap: var(--space-xs);
}
.info-card__link:hover { color: var(--accent); gap: 12px; }

/* ============================================
   STAT HIGHLIGHT (component)
   Oversized glowing gradient numbers in a row.
   ============================================ */
.stat-highlight {
    background: linear-gradient(160deg, rgba(17,26,46,0.7), rgba(10,15,28,0.7));
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: var(--space-lg);
}
.stat-highlight__title {
    text-align: center; font-family: var(--font-display); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
}
.stat-highlight__row {
    display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-md);
}
@media (min-width: 768px) { .stat-highlight__row { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.stat-highlight__item {
    text-align: center; padding: var(--space-sm);
    border-inline-end: 1px solid var(--border);
}
.stat-highlight__item:last-child { border-inline-end: 0; }
@media (max-width: 767px) {
    .stat-highlight__item:nth-child(even) { border-inline-end: 0; }
    .stat-highlight__item:nth-child(1), .stat-highlight__item:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: var(--space-md); }
}
.stat-highlight__number {
    display: block; font-family: var(--font-display); font-weight: 900;
    font-size: clamp(1.75rem, 5vw, 2.75rem); line-height: 1.05;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    text-shadow: 0 0 22px rgba(34,211,238,0.25);
}
.stat-highlight__label {
    display: block; margin-top: var(--space-xs); color: var(--muted-foreground);
    font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
    text-transform: uppercase; letter-spacing: 0.05em;
}

/* ============================================
   CTA BANNER (component)
   Full-bleed neon-framed conversion section.
   ============================================ */
.cta-banner {
    position: relative;
    padding-block: var(--space-2xl);
    scroll-margin-top: calc(var(--header-h) + var(--space-md));
    background: linear-gradient(160deg, rgba(17,26,46,0.9), rgba(10,15,28,0.95));
    border-block: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent) 1;
}
@media (min-width: 1024px) { .cta-banner { padding-block: var(--space-2xl); } }
.cta-banner__inner {
    max-width: 60ch; margin-inline: auto; padding-inline: var(--space-sm); text-align: center;
}
.cta-banner__heading { margin-bottom: var(--space-sm); }
.cta-banner__subtext { color: var(--foreground); font-size: 1.15rem; margin-inline: auto; margin-bottom: var(--space-lg); }
.cta-banner__btn { min-width: min(320px, 100%); }
.cta-banner__micro { color: var(--muted-foreground); font-size: 0.85rem; margin-top: var(--space-md); margin-bottom: 0; }

/* ============================================
   FAQ ACCORDION (component)
   Native details/summary glass panels.
   ============================================ */
.faq-accordion { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-accordion__title { text-align: center; margin-bottom: var(--space-lg); }
.faq-item {
    background: linear-gradient(160deg, var(--card), rgba(10,15,28,0.9));
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: border-color 250ms ease-out, box-shadow 250ms ease-out;
}
.faq-item[open] { border-color: var(--primary); box-shadow: 0 0 20px var(--glow-teal); }
.faq-item__question {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    padding: var(--space-md); cursor: pointer; list-style: none;
    font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
    text-transform: none; color: var(--foreground);
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__chevron { color: var(--primary); transition: transform 250ms ease-out; flex-shrink: 0; }
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__answer {
    padding: 0 var(--space-md) var(--space-md);
    border-left: 3px solid var(--primary); margin-left: var(--space-md);
}
.faq-item__answer p { color: var(--muted-foreground); margin: 0; }

/* ============================================
   ENGAGEMENT PATTERNS
   .tldr-box, .callout, .pull-quote,
   .trust-row, comparison table, split editorial
   ============================================ */
.tldr-box {
    background: linear-gradient(160deg, rgba(34,211,238,0.08), rgba(17,26,46,0.6));
    border: 1px solid var(--primary); border-left-width: 4px;
    border-radius: var(--radius); padding: var(--space-lg);
    box-shadow: 0 0 22px rgba(34,211,238,0.12);
}
.tldr-box__title {
    font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary);
    margin-bottom: var(--space-sm);
}
.tldr-box ul { margin: 0; }
.tldr-box p:last-child { margin-bottom: 0; }

.callout {
    background: linear-gradient(160deg, rgba(251,146,60,0.08), rgba(17,26,46,0.6));
    border: 1px solid var(--accent); border-left-width: 4px;
    border-radius: var(--radius); padding: var(--space-md) var(--space-lg);
    margin-block: var(--space-lg);
}
.callout__title {
    font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--accent); margin-bottom: var(--space-xs);
}
.callout p:last-child { margin-bottom: 0; }

.pull-quote {
    font-family: var(--font-display); font-style: italic; font-weight: 500;
    font-size: clamp(1.35rem, 3vw, 1.75rem); line-height: 1.35;
    color: var(--foreground); text-align: center; text-transform: none;
    max-width: 40ch; margin: var(--space-xl) auto; padding: var(--space-lg) 0;
    border-block: 1px solid var(--border);
}
.pull-quote cite {
    display: block; margin-top: var(--space-sm); font-family: var(--font-body);
    font-style: normal; font-size: 1rem; color: var(--primary); letter-spacing: 0.05em;
}

/* Split editorial (image + text) */
.split {
    display: grid; gap: var(--space-lg); align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 0 32px rgba(34,211,238,0.12); }
.split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split--reverse .split__media { order: -1; }
@media (min-width: 900px) { .split--reverse .split__media { order: 1; } }

/* Numbered step flow */
.step-flow { display: grid; gap: var(--space-md); counter-reset: step; list-style: none; padding: 0; }
@media (min-width: 768px) { .step-flow { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.step-flow__item {
    position: relative; padding: var(--space-lg) var(--space-md) var(--space-md);
    background: linear-gradient(160deg, var(--card), rgba(10,15,28,0.9));
    border: 1px solid var(--border); border-radius: var(--radius);
}
.step-flow__item::before {
    counter-increment: step; content: counter(step);
    position: absolute; top: calc(-1 * var(--space-sm)); left: var(--space-md);
    width: 40px; height: 40px; display: grid; place-items: center;
    font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
    color: #04121a; border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 16px var(--glow-teal);
}
.step-flow__item h3 { margin-top: var(--space-sm); font-size: 1.15rem; }
.step-flow__item p { color: var(--muted-foreground); margin-bottom: 0; }

/* Comparison table */
.comparison-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.comparison-table thead th {
    font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.05em; text-align: left; color: var(--foreground);
    padding: var(--space-sm) var(--space-md);
    background: var(--secondary); border-bottom: 2px solid var(--primary);
}
.comparison-table tbody td {
    padding: var(--space-sm) var(--space-md); border-bottom: 1px solid var(--border);
    color: var(--muted-foreground);
}
.comparison-table tbody tr:hover td { background: rgba(34,211,238,0.05); }
.comparison-table td:first-child { color: var(--foreground); font-weight: 600; }

/* Trust badges row */
.trust-row {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: var(--space-md); padding: var(--space-lg) 0;
}
.trust-badge {
    display: inline-flex; align-items: center; gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md); border-radius: 999px;
    border: 1px solid var(--border); background: var(--secondary);
    font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
    letter-spacing: 0.05em; text-transform: uppercase; color: var(--foreground);
}
.trust-badge--age { border-color: var(--accent); color: var(--accent); }
.trust-badge img { width: auto; height: 32px; }

/* Provider / payment logo strip */
.logo-strip {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: var(--space-lg); padding: var(--space-lg);
    background: var(--secondary); border: 1px solid var(--border); border-radius: var(--radius);
}
.logo-strip img { width: auto; max-width: 100%; height: auto; opacity: 0.9; }

/* Breadcrumb */
.breadcrumb { padding-block: var(--space-md); font-size: 0.9rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: var(--space-xs); list-style: none; padding: 0; margin: 0; color: var(--muted-foreground); }
.breadcrumb li::after { content: "/"; margin-left: var(--space-xs); color: var(--border); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted-foreground); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current="page"] { color: var(--foreground); }

/* Prose helper for long content */
.prose > * + * { margin-top: var(--space-md); }
.prose h2 { margin-top: var(--space-xl); }
.prose h3 { margin-top: var(--space-lg); }

/* ============================================
   FOOTER
   Four-zone grid collapsing to single column.
   ============================================ */
.site-footer {
    margin-top: var(--space-2xl);
    background: linear-gradient(180deg, rgba(10,15,28,0.4), rgba(17,26,46,0.9));
    border-top: 1px solid var(--border);
}
.site-footer__inner {
    max-width: var(--max-width); margin-inline: auto; padding: var(--space-2xl) var(--space-sm) var(--space-lg);
    display: grid; gap: var(--space-xl); grid-template-columns: 1fr;
}
@media (min-width: 640px) { .site-footer__inner { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.site-brand--footer { margin-bottom: var(--space-sm); }
.site-footer__desc { color: var(--muted-foreground); font-size: 0.95rem; max-width: 40ch; }
.site-footer__heading {
    font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary);
    margin-bottom: var(--space-sm);
}
.site-footer__list { list-style: none; padding: 0; margin: 0; }
.site-footer__list li { margin-bottom: var(--space-xs); }
.site-footer__list a { color: var(--muted-foreground); font-weight: 500; }
.site-footer__list a:hover { color: var(--primary); }
.site-footer__payments { width: 100%; max-width: 360px; height: auto; border-radius: var(--radius); }
.site-footer__badges { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-bottom: var(--space-sm); }
.license-badge {
    display: inline-flex; align-items: center; padding: 6px 12px; border-radius: var(--radius);
    border: 1px solid var(--border); background: var(--secondary);
    font-family: var(--font-display); font-weight: 600; font-size: 0.8rem;
    letter-spacing: 0.05em; color: var(--foreground);
}
.license-badge--age { border-color: var(--accent); color: var(--accent); }
.site-footer__note { color: var(--muted-foreground); font-size: 0.85rem; margin-bottom: 0; }
.site-footer__bottom {
    border-top: 1px solid var(--border); padding: var(--space-md) var(--space-sm);
    text-align: center;
}
.site-footer__bottom p { color: var(--muted-foreground); font-size: 0.85rem; margin: 0 auto; max-width: 80ch; }

/* ============================================
   ANIMATIONS
   Scroll reveal + neon shimmer + reduced motion.
   ============================================ */
.animate-on-scroll {
    opacity: 0; transform: translateY(24px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.stat-highlight__item { transition-delay: calc(var(--stagger, 0) * 90ms); }

@keyframes shimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .animate-on-scroll { opacity: 1; transform: none; }
}
