/*
 * BETSSON CASINO - DESIGN SYSTEM
 * Velvet-night VIP luxury aesthetic.
 * Fonts: Playfair Display (display) + Manrope (body).
 * Single dark theme (site ships dark; no theme switcher).
 */

:root {
    --background: #04120f;
    --foreground: #f5efe6;
    --card: #101d22;
    --card-foreground: #f5efe6;
    --popover: #101d22;
    --popover-foreground: #f5efe6;
    --primary: #2dd4bf;
    --primary-foreground: #04120f;
    --secondary: #1a2830;
    --secondary-foreground: #f5efe6;
    --muted: #1a2830;
    --muted-foreground: #b3c0c2;
    --accent: #fb923c;
    --accent-foreground: #1a1005;
    --destructive: #d70c2f;
    --destructive-foreground: #f5efe6;
    --border: #2c3d42;
    --input: #2c3d42;
    --ring: #2dd4bf;

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

    --radius: 16px;
    --radius-sm: 10px;
    --maxw: 1200px;
    --header-h: 64px;

    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Manrope", system-ui, -apple-system, sans-serif;

    --shadow-glow: 0 8px 32px rgba(251, 146, 60, 0.18);
    --shadow-glow-strong: 0 12px 44px rgba(251, 146, 60, 0.34);
}

.dark {
    --background: #04120f;
    --foreground: #f5efe6;
    --card: #101d22;
    --card-foreground: #f5efe6;
    --popover: #101d22;
    --popover-foreground: #f5efe6;
    --primary: #2dd4bf;
    --primary-foreground: #04120f;
    --secondary: #1a2830;
    --secondary-foreground: #f5efe6;
    --muted: #1a2830;
    --muted-foreground: #b3c0c2;
    --accent: #fb923c;
    --accent-foreground: #1a1005;
    --destructive: #d70c2f;
    --destructive-foreground: #f5efe6;
    --border: #2c3d42;
    --input: #2c3d42;
    --ring: #2dd4bf;
}

/* ============================================
   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; }

/* ============================================
   BASE / TYPOGRAPHY
   ============================================ */
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: var(--background);
    background-image:
        radial-gradient(120% 60% at 80% -10%, rgba(45, 212, 191, 0.08), transparent 60%),
        radial-gradient(90% 50% at 10% 110%, rgba(251, 146, 60, 0.07), transparent 60%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: 30px; font-weight: 700; }
h2 { font-size: 26px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 500; }
h4 { font-size: 18px; font-weight: 600; }

@media (min-width: 1024px) {
    h1 { font-size: 44px; }
    h2 { font-size: 34px; }
    h3 { font-size: 24px; }
}

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

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

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

strong { color: var(--foreground); }

small, .small-print { font-size: 14px; }

.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(--accent); color: var(--accent-foreground);
    padding: var(--space-xs) var(--space-sm); border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container, .max-w-1200 {
    width: 100%;
    max-width: var(--maxw);
    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); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.lead { font-size: 19px; color: var(--muted-foreground); }

.text-accent { color: var(--accent); }

/* Oversized orange-gradient pull-quote figures */
.pull-figure {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    background: linear-gradient(120deg, #fb923c, #fdba74);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ============================================
   BUTTONS
   .btn base, --accent (primary CTA), --ghost, --outline, --lg
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 200ms ease-out;
}
.btn:hover { text-decoration: none; }

.btn--accent {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-glow);
}
.btn--accent:hover { transform: scale(1.03); box-shadow: var(--shadow-glow-strong); }

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

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn--outline:hover { background: var(--primary); color: var(--primary-foreground); transform: scale(1.03); }

.btn--lg { min-height: 56px; padding: 16px 40px; font-size: 18px; }

/* ============================================
   HEADER + NAV
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: color-mix(in srgb, var(--background) 92%, transparent);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .site-header { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
}

.site-header__inner {
    max-width: var(--maxw);
    margin-inline: auto;
    min-height: var(--header-h);
    padding-inline: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--foreground);
}
.site-brand:hover { text-decoration: none; }
.site-brand__mark {
    display: inline-grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 9px;
    background: #04120f;
    color: var(--primary);
    font-size: 20px;
    position: relative;
}
.site-brand__mark::after {
    content: "";
    position: absolute; top: 4px; right: 4px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
}
.site-brand__accent, .site-brand__text .site-brand__accent { color: var(--accent); }
.site-brand__text { letter-spacing: -0.01em; }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px; height: 48px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
}
.nav-toggle span {
    display: block; height: 2px; width: 100%;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 200ms ease, opacity 200ms ease;
}
.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 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) calc(var(--space-xl));
    overflow-y: auto;
    flex-direction: column;
}
.primary-nav.is-open { display: flex; }

.primary-nav__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px var(--space-xs);
    color: var(--foreground);
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.primary-nav__list a:hover { color: var(--primary); }

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: auto;
    padding-top: var(--space-lg);
}
.primary-nav__actions .btn { width: 100%; }

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        padding: 0;
        background: transparent;
        overflow: visible;
    }
    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-md);
    }
    .primary-nav__list a {
        min-height: auto;
        padding: 6px 0;
        border-bottom: 2px solid transparent;
        font-weight: 600;
    }
    .primary-nav__list a:hover { border-bottom-color: var(--accent); }
    .primary-nav__actions {
        flex-direction: row;
        margin-top: 0;
        padding-top: 0;
        gap: var(--space-sm);
    }
    .primary-nav__actions .btn { width: auto; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding-block: var(--space-xl);
    overflow: clip;
}
@media (min-width: 1024px) { .hero { padding-block: var(--space-2xl); } }

.hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 70% 40%, rgba(251, 146, 60, 0.22), transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--space-sm);
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero__inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-2xl); }
}
.hero__title { font-size: 32px; }
@media (min-width: 1024px) { .hero__title { font-size: 48px; } }
.hero__title .text-accent { color: var(--accent); }
.hero__text { font-size: 19px; color: var(--muted-foreground); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-sm); }
.hero__media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.hero__media img { width: 100%; display: block; border-radius: var(--radius); }

/* bonus badge overlay */
.hero-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    background: color-mix(in srgb, var(--card) 88%, transparent);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-glow);
}
.hero-badge__value { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 26px; color: var(--accent); }
.hero-badge__label { font-size: 14px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.08em; }

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

.info-card {
    position: relative;
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    overflow: clip;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
}
.info-card__halo {
    position: absolute;
    inset: auto -20% -40% -20%;
    height: 120px;
    background: radial-gradient(50% 100% at 50% 100%, rgba(251, 146, 60, 0.28), transparent 70%);
    pointer-events: none;
    animation: haloPulse 4s ease-in-out infinite;
}
.info-card__body { position: relative; z-index: 1; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); border-color: var(--accent); }
.info-card__image { display: block; width: 72px; height: 72px; object-fit: contain; margin-bottom: var(--space-sm); }
.info-card__icon { font-size: 34px; display: block; margin-bottom: var(--space-xs); }
.info-card__title { color: var(--primary); font-size: 20px; margin-bottom: var(--space-xs); }
.info-card__text { color: var(--muted-foreground); font-size: 16px; margin-bottom: var(--space-sm); }
.info-card__link { font-weight: 700; color: var(--accent); }
.info-card__link:hover { text-decoration: underline; }

@keyframes haloPulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

/* ============================================
   STAT HIGHLIGHT (component)
   ============================================ */
.stat-highlight {
    position: relative;
    padding: var(--space-xl) var(--space-sm);
    text-align: center;
    overflow: clip;
}
.stat-highlight__glow {
    position: absolute; inset: 0;
    background: radial-gradient(50% 80% at 50% 50%, rgba(251, 146, 60, 0.10), transparent 70%);
    pointer-events: none;
}
.stat-highlight__heading { position: relative; margin-bottom: var(--space-lg); }
.stat-highlight__row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: var(--maxw);
    margin-inline: auto;
}
@media (min-width: 768px) { .stat-highlight__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .stat-highlight__row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat-highlight__item { display: flex; flex-direction: column; gap: var(--space-xs); }
.stat-highlight__figure {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    background: linear-gradient(120deg, #fb923c, #fdba74);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat-highlight__label { color: var(--muted-foreground); font-size: 16px; }

/* ============================================
   FAQ ACCORDION (component)
   ============================================ */
.faq-accordion { max-width: var(--maxw); margin-inline: auto; }
.faq-accordion__heading { text-align: center; margin-bottom: var(--space-lg); }
.faq-accordion__list { display: flex; flex-direction: column; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}
.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 18px 20px;
    min-height: 48px;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--primary);
    list-style: none;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__chevron {
    flex-shrink: 0;
    width: 12px; height: 12px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    transition: transform 300ms ease;
}
.faq-item[open] .faq-item__chevron { transform: rotate(-135deg); }
.faq-item__answer {
    padding: 0 20px 20px;
    color: var(--foreground);
}
.faq-item__answer p { color: var(--muted-foreground); margin: 0; }

/* ============================================
   CTA BANNER (component)
   ============================================ */
.cta-banner {
    position: relative;
    text-align: center;
    background: #04120f;
    padding-block: var(--space-xl);
    overflow: clip;
}
@media (min-width: 1024px) { .cta-banner { padding-block: var(--space-2xl); } }
.cta-banner__glow {
    position: absolute; inset: 0;
    background: radial-gradient(50% 90% at 50% 50%, rgba(251, 146, 60, 0.28), transparent 65%);
    pointer-events: none;
}
.cta-banner__inner {
    position: relative;
    max-width: 760px;
    margin-inline: auto;
    padding-inline: var(--space-sm);
}
.cta-banner__heading { color: #f5efe6; margin-bottom: var(--space-sm); }
.cta-banner__text { color: #b3c0c2; margin-inline: auto; margin-bottom: var(--space-md); }
.cta-banner__micro { font-size: 14px; color: #b3c0c2; margin-top: var(--space-sm); margin-bottom: 0; }

/* ============================================
   ENGAGEMENT PATTERNS
   TL;DR box, callout, pull-quote, trust badges, steps, terms box
   ============================================ */
.tldr-box, .callout {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-block: var(--space-lg);
}
.tldr-box h2, .callout h2, .tldr-box h3, .callout h3 { color: var(--primary); font-size: 20px; }
.tldr-box p:last-child, .callout p:last-child { margin-bottom: 0; }
.callout--warning { border-left-color: var(--destructive); }

.pull-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 26px;
    line-height: 1.4;
    color: var(--foreground);
    border-left: 4px solid var(--accent);
    padding-left: var(--space-md);
    margin-block: var(--space-lg);
}
.pull-quote cite { display: block; font-size: 16px; font-style: normal; color: var(--muted-foreground); margin-top: var(--space-xs); }

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.trust-badges li {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    max-width: 100%;
    text-align: center;
}
.age-badge {
    display: inline-grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 800;
    font-size: 15px;
    margin-top: var(--space-sm);
}

/* Logo / payment strip */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.logo-strip li {
    padding: 10px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    color: var(--foreground);
    margin: 0;
}

/* Numbered steps */
.steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    display: grid;
    gap: var(--space-md);
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.steps li {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 20px 20px 68px;
    margin: 0;
    counter-increment: step;
}
.steps li::before {
    content: counter(step);
    position: absolute;
    left: 20px; top: 20px;
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: var(--font-display);
    font-weight: 700;
}
.steps li strong { display: block; color: var(--primary); font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; }

/* Timeline (about page) */
.timeline { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--border); }
.timeline li { position: relative; padding: 0 0 var(--space-lg) var(--space-lg); margin: 0; }
.timeline li::before {
    content: "";
    position: absolute; left: -7px; top: 4px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 25%, transparent);
}
.timeline .timeline__year { font-family: var(--font-display); font-weight: 700; color: var(--primary); }

/* Comparison / data table */
.table-wrapper { margin-block: var(--space-lg); }
table.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
}
.data-table th, .data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.data-table thead th {
    background: var(--secondary);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 16px;
}
.data-table tbody tr:last-child td { border-bottom: none; }

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

/* Section header block */
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-lg); }
.section-head p { margin-inline: auto; color: var(--muted-foreground); }

/* Standalone lucky link */
.lucky-link {
    text-align: center;
    padding-block: var(--space-lg);
}
.lucky-link a { color: var(--accent); font-weight: 700; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #04120f;
    color: #b3c0c2;
    margin-top: var(--space-2xl);
    border-top: 1px solid var(--border);
}
.site-footer__inner {
    max-width: var(--maxw);
    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, 1fr); } }
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #f5efe6; }
.footer-note { color: #b3c0c2; font-size: 15px; margin-top: var(--space-sm); }
.footer-heading { font-family: var(--font-display); font-size: 16px; color: #f5efe6; margin-bottom: var(--space-sm); }
.footer-links, .footer-payments, .footer-badges {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: var(--space-xs);
}
.footer-links a { color: #b3c0c2; }
.footer-links a:hover { color: var(--primary); }
.footer-payments li, .footer-badges li { color: #b3c0c2; font-size: 15px; }
.site-footer__bottom {
    border-top: 1px solid var(--border);
    padding: var(--space-md) var(--space-sm);
    text-align: center;
}
.site-footer__bottom p { max-width: var(--maxw); margin: 0 auto; font-size: 14px; color: #b3c0c2; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.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: none; }

@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; }
}
