/*
 * CASINA CASINO - Arena-Noir Design System
 * Spanish corrida theme: deep charcoal, crimson neon, burnished gold.
 * Single fixed dark theme (no switcher).
 */

:root {
    --background: #14100e;
    --foreground: #f5ece0;
    --card: #331420;
    --card-foreground: #f5ece0;
    --popover: #221016;
    --popover-foreground: #f5ece0;
    --primary: #f35d6c;
    --primary-foreground: #16090b;
    --secondary: #4a1626;
    --secondary-foreground: #f5ece0;
    --muted: #2e2422;
    --muted-foreground: #c9bcb0;
    --accent: #e8b34a;
    --accent-foreground: #171006;
    --destructive: #dd1313;
    --destructive-foreground: #fdf2f2;
    --border: #4a3a35;
    --input: #241b18;
    --ring: #f35d6c;

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

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

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

    --content-max: 1200px;
    --header-h: 68px;

    --gold-gradient: linear-gradient(120deg, #f2d489 0%, #e8b34a 45%, #c98a24 100%);
    --crimson-glow: 0 0 24px rgba(240, 55, 74, 0.35);
}

/* Keep dark identical - single fixed theme */
.dark {
    --background: #14100e;
    --foreground: #f5ece0;
    --card: #331420;
    --card-foreground: #f5ece0;
    --popover: #221016;
    --popover-foreground: #f5ece0;
    --primary: #f35d6c;
    --primary-foreground: #16090b;
    --secondary: #4a1626;
    --secondary-foreground: #f5ece0;
    --muted: #2e2422;
    --muted-foreground: #c9bcb0;
    --accent: #e8b34a;
    --accent-foreground: #171006;
    --destructive: #dd1313;
    --destructive-foreground: #fdf2f2;
    --border: #4a3a35;
    --input: #241b18;
    --ring: #f35d6c;
}

/* ============================================
   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 { 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;
    background-color: var(--background);
    background-image:
        radial-gradient(1200px 600px at 50% -10%, rgba(240, 55, 74, 0.10), transparent 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(232, 179, 74, 0.06), transparent 55%);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(30px, 6vw, 52px); font-weight: 700; }
h2 { font-size: clamp(26px, 4.5vw, 38px); font-weight: 700; }
h3 { font-size: clamp(20px, 3vw, 26px); font-weight: 600; }
h4 { font-family: var(--font-body); font-size: clamp(18px, 2.5vw, 20px); font-weight: 600; }

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

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

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

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

.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(--primary); color: var(--primary-foreground);
    padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

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

/* ============================================
   LAYOUT HELPERS
   .container - max-width text/card wrapper
   .section - vertical rhythm block
   ============================================ */
.container { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 var(--space-sm); }
.container--narrow { max-width: 800px; }

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

.section__head { max-width: 760px; margin-bottom: var(--space-lg); }
.section__eyebrow {
    display: inline-block; font-family: var(--font-body); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px;
    color: var(--accent); margin-bottom: var(--space-xs);
}
.lead { font-size: clamp(17px, 2.4vw, 19px); color: var(--muted-foreground); }

/* Gold gradient stat text */
.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: var(--accent);
}

/* ============================================
   SIGNATURE MULETA RING
   Thin crimson-to-gold arc framing badges/models
   ============================================ */
.muleta-ring {
    position: relative;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    color: var(--accent);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 13px;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--card), var(--card)) padding-box,
        linear-gradient(120deg, var(--primary), var(--accent)) border-box;
    box-shadow: 0 0 18px rgba(240, 55, 74, 0.2);
}

.ring-frame {
    position: relative;
    border-radius: 999px;
    padding: 8px;
    background:
        radial-gradient(circle, transparent 62%, rgba(240,55,74,0.12) 64%, transparent 78%),
        conic-gradient(from 180deg, var(--primary), var(--accent), var(--primary));
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(20, 16, 14, 0.88);
    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(--content-max); margin: 0 auto;
    min-height: var(--header-h);
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-md); padding: 0 var(--space-sm);
}

.site-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--foreground); font-family: var(--font-display); }
.site-brand:hover { color: var(--foreground); }
.site-brand__mark {
    width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, transparent 40%, var(--primary) 42%, transparent 52%),
        var(--gold-gradient);
    box-shadow: 0 0 14px rgba(240, 55, 74, 0.4);
}
.site-brand__text { font-size: 20px; font-weight: 700; letter-spacing: 0.04em; }
.site-brand__accent { color: var(--accent); margin-left: 3px; }

/* Nav toggle (hamburger) */
.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; z-index: 1001;
    background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm);
    cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--foreground); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s 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 on mobile) */
.primary-nav { display: none; }
.primary-nav.is-open {
    display: flex; flex-direction: column;
    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;
    gap: var(--space-md);
}
.primary-nav.is-open .primary-nav__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
}
.primary-nav.is-open .primary-nav__list a {
    display: flex; align-items: center; min-height: 48px;
    padding: 0 var(--space-sm); color: var(--foreground); font-weight: 600;
    border-bottom: 1px solid var(--border);
}
.primary-nav.is-open .primary-nav__list a:hover { color: var(--accent); }
.primary-nav.is-open .primary-nav__actions {
    display: flex; flex-direction: column; gap: var(--space-sm); margin-top: auto;
}
.primary-nav.is-open .primary-nav__actions .btn { width: 100%; }

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav {
        display: flex; align-items: center; gap: var(--space-lg);
        position: static; background: transparent; padding: 0;
    }
    .primary-nav__list {
        display: flex; align-items: center; gap: var(--space-md);
        list-style: none; margin: 0; padding: 0;
    }
    .primary-nav__list a { color: var(--muted-foreground); font-weight: 600; font-size: 15px; }
    .primary-nav__list a:hover { color: var(--accent); }
    .primary-nav__actions { display: flex; align-items: center; gap: var(--space-sm); }
}

/* ============================================
   BUTTONS
   .btn--primary crimson CTA, .btn--ghost outline, .btn--gold accent
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 12px 26px; border-radius: 999px;
    font-family: var(--font-body); font-weight: 700; font-size: 16px;
    text-align: center; cursor: pointer; border: 1px solid transparent;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease;
}
.btn--primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--crimson-glow); }
.btn--primary:hover { color: var(--primary-foreground); transform: translateY(-2px) scale(1.02); box-shadow: 0 0 34px rgba(240, 55, 74, 0.55); }
.btn--ghost { background: transparent; color: var(--foreground); border-color: var(--border); }
.btn--ghost:hover { color: var(--accent); border-color: var(--accent); }
.btn--gold { background: var(--gold-gradient); color: var(--accent-foreground); }
.btn--gold:hover { color: var(--accent-foreground); transform: translateY(-2px) scale(1.02); box-shadow: 0 0 28px rgba(232, 179, 74, 0.5); }
.btn--lg { min-height: 54px; padding: 16px 34px; font-size: 17px; }

/* ============================================
   CARDS
   .card base surface, .card--featured accent border
   ============================================ */
.card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-md); min-width: 0;
}
@media (min-width: 1024px) { .card { padding: var(--space-lg); } }
.card--featured { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(232,179,74,0.25), 0 18px 40px rgba(0,0,0,0.4); }
.card--wine { background: var(--secondary); }
.card__title { margin-bottom: var(--space-xs); }

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

/* ============================================
   HERO
   Full-bleed arena backdrop, text left, model right
   ============================================ */
.hero { position: relative; padding: var(--space-xl) 0; overflow: clip; }
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(700px 400px at 20% 20%, rgba(240,55,74,0.14), transparent 60%),
        radial-gradient(600px 500px at 85% 60%, rgba(232,179,74,0.08), transparent 55%);
}
.hero__inner { display: grid; gap: var(--space-lg); align-items: center; grid-template-columns: minmax(0,1fr); }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.1fr 0.9fr; } .hero { padding: var(--space-2xl) 0; } }
.hero__content h1 { margin-bottom: var(--space-md); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }
.hero__media { position: relative; text-align: center; }
.hero__media img { display: inline-block; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }
.hero__media::after {
    content: ""; position: absolute; inset: 8% 12%; z-index: -1; border-radius: 50%;
    background: conic-gradient(from 180deg, var(--primary), var(--accent), var(--primary));
    filter: blur(30px); opacity: 0.4;
}

/* ============================================
   STAT HIGHLIGHTS
   ============================================ */
.stat-row { display: flex; flex-wrap: wrap; gap: var(--space-lg); }
.stat { min-width: 120px; }
.stat__number {
    display: block; font-family: var(--font-display); font-weight: 700;
    font-size: clamp(36px, 6vw, 56px); line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat__label { display: block; font-size: 14px; color: var(--muted-foreground); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================
   GAME THUMBNAIL
   zoom + gold "Jetzt spielen" overlay on hover
   ============================================ */
.game-thumb {
    position: relative; display: block; border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--border); background: var(--card);
}
.game-thumb img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.3s ease; }
.game-thumb:hover img { transform: scale(1.06); }
.game-thumb__overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(0deg, rgba(20,16,14,0.85), rgba(20,16,14,0.1));
    opacity: 0; transition: opacity 0.25s ease;
}
.game-thumb:hover .game-thumb__overlay, .game-thumb:focus-within .game-thumb__overlay { opacity: 1; }
.game-thumb__cta {
    font-family: var(--font-display); font-weight: 600; color: var(--accent);
    border: 1px solid var(--accent); border-radius: 999px; padding: 8px 18px; font-size: 14px;
}
.game-thumb__title { padding: 12px var(--space-sm); font-weight: 600; font-size: 15px; }
.game-thumb__tag { display: block; font-size: 12px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================
   LEADERBOARD
   ============================================ */
.leaderboard { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.leaderboard__row {
    display: flex; align-items: center; gap: var(--space-sm);
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 14px var(--space-sm);
}
.leaderboard__rank {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
    display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
    background: var(--muted); color: var(--foreground);
}
.leaderboard__row--top .leaderboard__rank { background: var(--gold-gradient); color: var(--accent-foreground); }
.leaderboard__name { font-weight: 600; flex: 1; min-width: 0; }
.leaderboard__xp { color: var(--accent); font-weight: 700; font-family: var(--font-display); flex-shrink: 0; }

/* ============================================
   VIP TIER LADDER
   ============================================ */
.tier-ladder { display: grid; gap: var(--space-md); grid-template-columns: minmax(0,1fr); }
@media (min-width: 768px) { .tier-ladder { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); } }
.tier {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-md); text-align: center;
}
.tier--peak { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(232,179,74,0.3); }
.tier__badge {
    width: 56px; height: 56px; margin: 0 auto var(--space-sm); border-radius: 50%;
    display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
    background: var(--secondary); color: var(--accent); border: 2px solid var(--accent);
}
.tier__name { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-bottom: 4px; }
.tier__meta { font-size: 14px; color: var(--muted-foreground); margin: 0; }

/* VIP progress bar (animates on scroll) */
.progress { height: 10px; border-radius: 999px; background: var(--muted); overflow: hidden; }
.progress__fill {
    height: 100%; width: 0; border-radius: 999px; background: var(--gold-gradient);
    transition: width 900ms ease-out;
}
.animate-on-scroll.is-visible .progress__fill { width: var(--progress, 60%); }

/* ============================================
   CATEGORY TILE
   ============================================ */
.cat-tile {
    display: block; position: relative; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); background: var(--card); padding: var(--space-md);
    min-height: 140px;
}
.cat-tile:hover { border-color: var(--accent); transform: translateY(-2px); transition: all 0.2s ease; }
.cat-tile__icon { font-size: 28px; margin-bottom: var(--space-xs); }
.cat-tile__name { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--foreground); margin-bottom: 4px; }
.cat-tile__desc { font-size: 14px; color: var(--muted-foreground); margin: 0; }

/* ============================================
   PAYMENT / TRUST STRIP
   ============================================ */
.trust-strip { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; justify-content: center; }
.trust-strip__item {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--muted); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 10px 16px; color: var(--muted-foreground); font-weight: 600; font-size: 14px;
    filter: grayscale(0.2);
}
.trust-strip__item img { height: 24px; width: auto; }

.age-badge {
    display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
    background: var(--primary); color: var(--primary-foreground); font-weight: 800; font-size: 14px;
    border: 2px solid var(--foreground);
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
/* TL;DR / summary box */
.summary-box {
    background: var(--secondary); border: 1px solid var(--border); border-left: 4px solid var(--accent);
    border-radius: var(--radius); padding: var(--space-md); margin-bottom: var(--space-lg);
}
.summary-box__label { font-family: var(--font-display); font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; display: block; margin-bottom: var(--space-xs); }

/* Callout / highlight */
.callout {
    background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--primary);
    border-radius: var(--radius); padding: var(--space-md); margin: var(--space-md) 0;
}
.callout--gold { border-left-color: var(--accent); }

/* Pull quote */
.pull-quote {
    font-family: var(--font-display); font-style: italic; font-size: clamp(22px, 3.5vw, 28px);
    line-height: 1.4; color: var(--foreground); border-left: 4px solid var(--accent);
    padding-left: var(--space-md); margin: var(--space-lg) 0;
}
.pull-quote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 15px; color: var(--muted-foreground); margin-top: var(--space-xs); }

/* details/summary expandable */
details.disclosure {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-sm) var(--space-md); margin-bottom: var(--space-sm);
}
details.disclosure summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; min-height: 44px; }
details.disclosure summary::-webkit-details-marker { display: none; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.table-wrapper { margin: var(--space-md) 0; border-radius: var(--radius); border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.comparison-table th, .comparison-table td { padding: 14px var(--space-sm); text-align: left; border-bottom: 1px solid var(--border); }
.comparison-table thead th { background: var(--secondary); font-family: var(--font-display); color: var(--foreground); }
.comparison-table th[scope="row"] { font-weight: 600; color: var(--foreground); }
.comparison-table .col-recommended { background: rgba(232, 179, 74, 0.08); color: var(--foreground); }
.comparison-table thead .col-recommended { background: var(--secondary); box-shadow: inset 0 0 0 1px var(--accent); }
.tick { color: var(--accent); font-weight: 700; }
.cross { color: var(--muted-foreground); }

/* ============================================
   BONUS STEP CARDS & NUMBERED STEPS
   ============================================ */
.bonus-step { position: relative; text-align: center; }
.bonus-step__no {
    display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
    font-family: var(--font-display); font-weight: 700; font-size: 20px;
    background: var(--primary); color: var(--primary-foreground);
    box-shadow: var(--crimson-glow); margin-bottom: var(--space-sm);
}
.bonus-step__amount {
    font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.5vw, 30px);
    line-height: 1.2; margin-bottom: 4px;
}
.bonus-step__fs { color: var(--accent); font-weight: 700; margin-bottom: var(--space-sm); }
.bonus-step__meta { font-size: 15px; color: var(--muted-foreground); margin-bottom: 0; }

.steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-md); counter-reset: step; }
.steps__item { display: flex; gap: var(--space-md); align-items: flex-start; }
.steps__no {
    flex-shrink: 0; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
    font-family: var(--font-display); font-weight: 700; font-size: 22px;
    background: var(--primary); color: var(--primary-foreground);
    box-shadow: var(--crimson-glow);
}

/* ============================================
   FAQ ACCORDION (component)
   ============================================ */
.faq__inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--space-sm); }
.faq__title { margin-bottom: var(--space-lg); }
.faq__list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq__item {
    background: var(--secondary); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px;
}
@media (min-width: 1024px) { .faq__item { padding: var(--space-lg); } }
.faq__question {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    cursor: pointer; list-style: none; min-height: 44px;
    font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--foreground);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__chevron { flex-shrink: 0; color: var(--accent); transition: transform 0.25s ease; }
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__answer { padding-top: var(--space-sm); color: var(--muted-foreground); }
.faq__answer p:last-child { margin-bottom: 0; }
.faq__answer a { color: var(--accent); }

/* ============================================
   CTA BANNER (component)
   Full-bleed conversion moment with muleta ring
   ============================================ */
.cta-banner {
    position: relative; text-align: center;
    padding: var(--space-xl) var(--space-sm);
    background:
        radial-gradient(700px 340px at 50% 30%, rgba(240,55,74,0.16), transparent 65%),
        var(--popover);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    margin-top: var(--space-2xl);
}
@media (min-width: 1024px) { .cta-banner { padding: var(--space-2xl) var(--space-sm); } }
.cta-banner__inner { max-width: 680px; margin: 0 auto; }
.cta-banner__badge { margin-bottom: var(--space-md); }
.cta-banner__title { margin-bottom: var(--space-sm); }
.cta-banner__subline { color: var(--muted-foreground); margin-bottom: var(--space-lg); font-size: 18px; }
.cta-banner__microcopy { margin-top: var(--space-md); margin-bottom: 0; font-size: 13px; color: var(--muted-foreground); }

/* ============================================
   SITEMAP
   ============================================ */
.sitemap-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-md); }
.sitemap-list__item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-md); }
.sitemap-list__item h3 { margin-bottom: var(--space-xs); }
.sitemap-list__item p { margin: 0; color: var(--muted-foreground); font-size: 15px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { border-top: 1px solid var(--border); background: var(--popover); margin-top: var(--space-2xl); }
.site-footer__inner {
    max-width: var(--content-max); margin: 0 auto; padding: var(--space-xl) var(--space-sm) var(--space-lg);
    display: grid; gap: var(--space-lg); grid-template-columns: minmax(0,1fr);
}
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); } }
.site-footer__col { min-width: 0; }
.site-brand--footer { margin-bottom: var(--space-sm); }
.site-footer__license { font-size: 14px; color: var(--muted-foreground); }
.site-footer__badge { font-size: 14px; color: var(--muted-foreground); display: flex; align-items: center; gap: 10px; }
.site-footer__heading { font-family: var(--font-display); font-size: 16px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: var(--space-sm); }
.site-footer__links, .site-footer__payments { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__payments { flex-direction: row; flex-wrap: wrap; max-width: 100%; }
.site-footer__links a { color: var(--muted-foreground); font-weight: 500; }
.site-footer__links a:hover { color: var(--accent); }
.site-footer__payments li { background: var(--muted); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 13px; color: var(--muted-foreground); }
.site-footer__bottom { border-top: 1px solid var(--border); text-align: center; padding: var(--space-md) var(--space-sm); }
.site-footer__bottom p { margin: 0; font-size: 14px; color: var(--muted-foreground); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb { padding: var(--space-md) 0 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; font-size: 14px; }
.breadcrumb li { color: var(--muted-foreground); }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--border); }
.breadcrumb a { color: var(--muted-foreground); }
.breadcrumb a:hover { color: var(--accent); }

/* ============================================
   SCROLL ANIMATIONS
   fade + slide-up 24px with 80ms stagger via inline delay
   ============================================ */
.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: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .animate-on-scroll { opacity: 1; transform: none; }
    .progress__fill { transition: 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;
}
