/*
 * ============================================
 * VOX CASINO - DESIGN SYSTEM
 * Dark obsidian + orange neon + golden glamour
 * Fonts: Cinzel (headings) / Outfit (body)
 * Mobile-first | Light & dark themes
 * ============================================
 */

/* ============================================
   DESIGN TOKENS
   Dark theme values in :root - no .dark class needed
   ============================================ */
:root {
    color-scheme: light dark;

    /* Backgrounds */
    --background: #0c0a09;          /* near-black obsidian */
    --background-alt: #14110f;       /* slightly lifted */
    --foreground: #fafaf9;          /* cream white */

    /* Cards */
    --card: #1c1917;                /* dark charcoal */
    --card-foreground: #fafaf9;

    /* Primary - vibrant orange */
    --primary: #ff6b00;
    --primary-hover: #ff8533;
    --primary-foreground: #0c0a09;

    /* Secondary - deep charcoal */
    --secondary: #1c1917;
    --secondary-foreground: #fafaf9;

    /* Muted - borders and muted text */
    --muted: #2a2724;
    --muted-foreground: #a8a29e;    /* passes 4.5:1 on both bg and card */
    --border: #3a3733;

    /* Accent - shimmering gold */
    --accent: #d4af37;
    --accent-foreground: #0c0a09;

    /* Destructive */
    --destructive: #e41414;
    --destructive-foreground: #fafaf9;

    /* Form */
    --input: #1c1917;
    --ring: #ff6b00;

    /* Layout */
    --header-height: 64px;
    --max-width: 1200px;
    --section-gap: 50px;
    --section-gap-desktop: 80px;
    --card-padding: 24px;
    --card-padding-desktop: 32px;
    --grid-gap: 24px;
    --radius: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition: 300ms ease-out;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 40px rgba(255, 107, 0, 0.15);
    --glow-primary: 0 0 20px rgba(255, 107, 0, 0.4);
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
@media (prefers-color-scheme: light) {
    :root {
        --background: #f5f5f4;
        --background-alt: #e7e5e4;
        --foreground: #1c1917;

        --card: #ffffff;
        --card-foreground: #1c1917;

        --primary: #b54900;
        --primary-hover: #cc4f00;
        --primary-foreground: #ffffff;

        --secondary: #ffffff;
        --secondary-foreground: #1c1917;

        --muted: #e7e5e4;
        --muted-foreground: #57534e;
        --border: #d6d3d1;

        --accent: #816100;
        --accent-foreground: #ffffff;

        --destructive: #dc2626;
        --destructive-foreground: #ffffff;

        --input: #ffffff;

        --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
        --shadow-hover: 0 12px 40px rgba(232, 93, 0, 0.12);
        --glow-primary: 0 0 20px rgba(232, 93, 0, 0.25);
    }

    .hero__overlay {
        background: linear-gradient(135deg, rgba(245, 245, 244, 0.96) 0%, rgba(245, 245, 244, 0.75) 50%, rgba(245, 245, 244, 0.4) 100%);
    }
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-hover);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    max-width: 100%;
    box-sizing: border-box;
}

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY
   Cinzel for headings, Outfit for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cinzel", serif;
    color: var(--foreground);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 28px;
    font-weight: 700;
}

h2 {
    font-size: 24px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 500;
}

h4 {
    font-size: 18px;
    font-weight: 500;
}

p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

strong, b {
    font-weight: 600;
    color: var(--foreground);
}

.eyebrow {
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

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

.text-orange {
    color: var(--primary);
}

.text-muted {
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
    h4 { font-size: 20px; }
}

/* ============================================
   LAYOUT - Container & Sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: 800px;
}

.section {
    padding: var(--section-gap) 0;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    .section {
        padding: var(--section-gap-desktop) 0;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.site-header__inner {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
    }
    .site-header__inner {
        padding: 0 40px;
    }
}

/* Brand / Logo */
.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-brand__logo {
    border-radius: 6px;
}

.site-brand__name {
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 0.02em;
}

@media (min-width: 1024px) {
    .site-brand__name {
        font-size: 22px;
    }
}

/* Desktop Navigation */
.primary-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform var(--transition);
    visibility: hidden;
}

.primary-nav.is-open {
    transform: translateX(0);
    visibility: visible;
}

.primary-nav__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}

.primary-nav__link:hover,
.primary-nav__link:focus {
    background: var(--muted);
    color: var(--primary);
}

.primary-nav__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .primary-nav {
        position: static;
        transform: none;
        visibility: visible;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        background: transparent;
        padding: 0;
        overflow: visible;
        flex: 1;
        justify-content: center;
    }

    .primary-nav__list {
        flex-direction: row;
        gap: 4px;
    }

    .primary-nav__link {
        min-height: 40px;
        padding: 8px 16px;
        font-size: 15px;
    }

    .primary-nav__mobile-actions {
        display: none;
    }
}

/* Header Actions (Login / Registrieren) */
.header-actions {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-actions .btn-login {
    display: none;
}

@media (min-width: 768px) {
    .header-actions .btn-login {
        display: inline-flex;
    }
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

/* ============================================
   MOBILE MENU - Hamburger
   ============================================ */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    z-index: 1001;
    border-radius: var(--radius);
    transition: background var(--transition);
}

.hamburger:hover {
    background: var(--muted);
}

.hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius);
    min-height: 44px;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition),
                background var(--transition), border-color var(--transition),
                color var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
    min-height: 52px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    min-height: 40px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   SKIP LINK - Accessibility
   ============================================ */
.skip-link {
    position: absolute;
    top: -60px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 14px;
    z-index: 1002;
    border-radius: 0 0 var(--radius) 0;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
    color: var(--primary-foreground);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background-alt);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    margin-top: auto;
}

.site-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .site-footer__inner {
        padding: 0 40px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col__title {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links__link {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    color: var(--muted-foreground);
    transition: color var(--transition);
}

.footer-links__link:hover {
    color: var(--primary);
}

.footer-links__text {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    color: var(--muted-foreground);
}

.footer-text {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-text--warning {
    color: var(--accent);
    font-weight: 600;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom__copyright {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.footer-bottom__legal {
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 10, 9, 0.96) 0%, rgba(12, 10, 9, 0.75) 50%, rgba(12, 10, 9, 0.4) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.hero__title {
    font-family: "Cinzel", serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--foreground);
    margin-bottom: 20px;
}

.hero__subtitle {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__cta {
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .hero {
        min-height: 480px;
        padding: 80px 0;
    }
    .hero__title {
        font-size: 36px;
    }
    .hero__content {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: 600px;
    }
    .hero__title {
        font-size: 48px;
    }
    .hero__subtitle {
        font-size: 18px;
    }
}

/* ============================================
   GAME CARD GRID
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

@media (min-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition),
                border-color var(--transition);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.game-card__image {
    width: 100%;
    aspect-ratio: 400 / 260;
    overflow: hidden;
    background: var(--muted);
}

.game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__body {
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

@media (min-width: 1024px) {
    .game-card__body {
        padding: var(--card-padding-desktop);
    }
}

.game-card__title {
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--foreground);
}

.game-card__desc {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.game-card__desc a {
    color: var(--primary);
    font-weight: 500;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--background);
    padding: 50px 20px;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-banner__flare {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.cta-banner__flare--left {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
}

.cta-banner__flare--right {
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__headline {
    font-family: "Cinzel", serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 16px;
}

.cta-banner__subtext {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-banner__btn {
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 80px 20px;
    }
    .cta-banner__headline {
        font-size: 36px;
    }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), background var(--transition);
}

.faq-item.is-active {
    border-left: 4px solid var(--primary);
    background: rgba(255, 107, 0, 0.04);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: var(--card-padding);
    text-align: left;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    min-height: 48px;
    transition: color var(--transition);
}

@media (min-width: 1024px) {
    .faq-item__question {
        padding: var(--card-padding-desktop);
        font-size: 18px;
    }
}

.faq-item__question:hover {
    color: var(--primary);
}

.faq-item__question-text {
    flex: 1;
    min-width: 0;
}

.faq-item__chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item.is-active .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-item__answer-inner {
    padding: 0 var(--card-padding) var(--card-padding);
}

@media (min-width: 1024px) {
    .faq-item__answer-inner {
        padding: 0 var(--card-padding-desktop) var(--card-padding-desktop);
    }
}

.faq-item__answer-inner p {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* TL;DR / Summary Box */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px;
    margin: 32px 0;
}

@media (min-width: 1024px) {
    .tldr-box {
        padding: 32px;
    }
}

.tldr-box__title {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.tldr-box__content {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
}

.tldr-box__content p {
    margin-bottom: 12px;
}

/* Callout / Highlight Box */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
    position: relative;
}

.callout--warning {
    border-left: 4px solid var(--destructive);
}

.callout--info {
    border-left: 4px solid var(--primary);
}

.callout--success {
    border-left: 4px solid #22c55e;
}

.callout--gold {
    border-left: 4px solid var(--accent);
}

.callout__title {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 8px;
}

.callout__text {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* Stat Highlight */
.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    gap: 4px;
}

.stat-highlight__number {
    font-family: "Cinzel", serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-highlight__label {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-highlight__source {
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

@media (min-width: 1024px) {
    .stat-highlight__number {
        font-size: 56px;
    }
}

/* Stat Row */
.stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .stat-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .stat-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Pull Quote */
.pull-quote {
    margin: 32px 0;
    padding: 24px 32px;
    border-left: 4px solid var(--accent);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote__text {
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
}

.pull-quote__cite {
    display: block;
    margin-top: 12px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
}

@media (min-width: 1024px) {
    .pull-quote__text {
        font-size: 24px;
    }
}

/* ============================================
   CRO PATTERNS
   ============================================ */

/* Trust Badges Row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
    padding: 32px 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
    min-width: 160px;
    max-width: 240px;
}

.trust-badge__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.trust-badge__title {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
}

.trust-badge__text {
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.comparison-table thead th {
    background: var(--card);
    font-weight: 600;
    color: var(--foreground);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table .recommended {
    background: rgba(255, 107, 0, 0.08);
    border-color: var(--primary);
}

.comparison-table .recommended-col {
    position: relative;
}

.comparison-table .recommended-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 4px;
}

/* Data Table (general) */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
}

.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    font-weight: 600;
    color: var(--foreground);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.data-table td {
    color: var(--muted-foreground);
}

.data-table tbody tr:hover {
    background: rgba(255, 107, 0, 0.04);
}

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

/* ============================================
   CONTENT UTILITIES
   ============================================ */

/* Generic Card */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    min-width: 0;
}

@media (min-width: 1024px) {
    .card {
        padding: var(--card-padding-desktop);
    }
}

.card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.card-gold {
    border-color: var(--accent);
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

@media (min-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.split-layout__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.split-layout__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Step List */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.step-list__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-list__badge {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 16px;
}

.step-list__content {
    flex: 1;
    min-width: 0;
}

.step-list__title {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 4px;
}

.step-list__text {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Badge / Tag */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge--orange {
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary);
}

.badge--gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent);
}

.badge--outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted-foreground);
}

/* Provider Filter Strip */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 24px 0;
}

.provider-strip__item {
    padding: 10px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all var(--transition);
}

.provider-strip__item:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.03);
}

/* Section Heading */
.section-heading {
    margin-bottom: 40px;
}

.section-heading__title {
    font-family: "Cinzel", serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 12px;
}

.section-heading__text {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 700px;
}

@media (min-width: 1024px) {
    .section-heading__title {
        font-size: 36px;
    }
}

/* Prose blocks for SEO content */
.prose {
    max-width: 800px;
    margin: 0 auto;
}

.prose p {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 20px;
}

.prose p a {
    color: var(--primary);
    font-weight: 500;
}

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

.prose h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.prose h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.prose ul,
.prose ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.prose ul li,
.prose ol li {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 8px;
    list-style: disc;
}

.prose ol li {
    list-style: decimal;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 600ms ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid children */
.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

/* No-JS fallback: show everything */
.no-js .animate-on-scroll {
    opacity: 1;
    transform: none;
}

.no-js .faq-item__answer {
    max-height: none;
    overflow: visible;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none; }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sitemap-entry {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--border);
    border-radius: var(--radius);
    padding: var(--card-padding);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.sitemap-entry:hover {
    border-left-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: scale(1.01);
}

@media (min-width: 1024px) {
    .sitemap-entry {
        padding: var(--card-padding-desktop);
    }
}

.sitemap-entry__title {
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 8px;
}

.sitemap-entry__url {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
}

.sitemap-entry__url a {
    color: var(--primary);
    font-weight: 500;
}

.sitemap-entry__desc {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

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