/*
 * CASOOLA CASINO - DESIGN SYSTEM
 * Futuristische Sci-Fi Arcade-Ästhetik für das Bot-Town Casino
 * Dunkles Theme mit Neon Blue-Purple und Lime-Cyan Akzenten
 * Fonts: Orbitron (Headlines) + Inter (Body)
 */

/* ============================================
   DESIGN TOKENS
   Dark-only theme (kein Theme-Switcher)
   ============================================ */
:root {
    /* Backgrounds */
    --bg: #0a0e1a;
    --bg-elevated: #111827;
    --card: #111827;
    --card-hover: #1a2332;

    /* Text */
    --foreground: #e2e8f0;
    --foreground-muted: #94a3b8;
    --foreground-bright: #f1f5f9;

    /* Brand Accents */
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --secondary: #9333ea;
    --secondary-glow: rgba(147, 51, 234, 0.4);
    --accent: #67e8f9;
    --accent-foreground: #0a0e1a;
    --accent-glow: rgba(103, 232, 249, 0.3);

    /* Borders */
    --border: #334155;
    --border-accent: rgba(103, 232, 249, 0.25);
    --border-hover: rgba(103, 232, 249, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6, #9333ea);
    --gradient-cta: linear-gradient(135deg, #1e3a8a, #581c87);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-neon: 0 0 15px rgba(103, 232, 249, 0.08);
    --shadow-neon-strong: 0 0 25px rgba(103, 232, 249, 0.2);

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

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 50px;

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

    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Header height */
    --header-h: 72px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--foreground-bright);
}

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

section {
    overflow-x: clip;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--foreground-bright);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
}

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

p {
    margin-bottom: 28px;
}

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

/* Inline SEO anchor links with lime-cyan underline glow */
.seo-anchor {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(103, 232, 249, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--transition), text-shadow var(--transition);
}

.seo-anchor:hover {
    text-decoration-color: var(--accent);
    text-shadow: 0 0 8px rgba(103, 232, 249, 0.4);
    color: var(--accent);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 1024px) {
    .section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.text-center { text-align: center; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: rgba(10, 14, 26, 0.98);
}

/* Disable backdrop-filter on mobile to avoid containing block trap */
@media (max-width: 767px) {
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--bg);
    }
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo {
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--foreground-bright);
    letter-spacing: -0.02em;
}

/* ============================================
   PRIMARY NAVIGATION
   ============================================ */
.primary-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    background: var(--bg);
    z-index: 999;
    overflow-y: auto;
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform 300ms ease-out, visibility 300ms;
    visibility: hidden;
    border-left: 1px solid var(--border);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

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

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-list li {
    border-bottom: 1px solid var(--border);
}

.nav-list li:last-child {
    border-bottom: none;
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 14px 16px;
    color: var(--foreground);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    transition: color var(--transition), padding-left var(--transition);
}

.nav-link:hover {
    color: var(--accent);
    padding-left: 24px;
}

.nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0 0 0;
    border-bottom: none !important;
}

.nav-cta-group .btn {
    width: 100%;
    text-align: center;
}

/* Desktop nav */
@media (min-width: 768px) {
    .primary-nav {
        position: static;
        width: auto;
        max-width: none;
        transform: none;
        visibility: visible;
        background: transparent;
        padding: 0;
        overflow: visible;
        border-left: none;
        box-shadow: none;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .nav-list li {
        border-bottom: none;
    }

    .nav-link {
        min-height: auto;
        padding: 8px 16px;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover {
        padding-left: 16px;
        background: rgba(103, 232, 249, 0.05);
    }

    .nav-cta-group {
        flex-direction: row;
        gap: 8px;
        padding: 0 0 0 8px;
    }

    .nav-cta-group .btn {
        width: auto;
    }
}

/* ============================================
   MOBILE MENU TOGGLE (Hamburger → X)
   ============================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-out, visibility 300ms;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .mobile-menu-overlay {
        display: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    min-height: 44px;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-login:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(103, 232, 249, 0.05);
}

.btn-register {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-register:hover {
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-1px);
    color: #ffffff;
}

.btn-cta {
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(103, 232, 249, 0.3);
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.btn-cta:hover {
    color: var(--accent-foreground);
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(103, 232, 249, 0.6);
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(103, 232, 249, 0.3); }
    50% { box-shadow: 0 0 35px rgba(103, 232, 249, 0.55); }
}

.btn-secondary {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border-accent);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(103, 232, 249, 0.05);
    color: var(--accent);
}

/* ============================================
   HOLOGRAPHIC PANELS & CARDS
   Base container with neon edges and scanline overlay
   ============================================ */
.holo-panel {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-neon);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.holo-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        180deg,
        transparent 0px,
        transparent 3px,
        rgba(103, 232, 249, 0.02) 3px,
        rgba(103, 232, 249, 0.02) 4px
    );
    pointer-events: none;
    z-index: 0;
}

.holo-panel > * {
    position: relative;
    z-index: 1;
}

.holo-panel:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-neon-strong);
}

/* Generic card */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

/* ============================================
   HERO SECTION
   Full-bleed dark hero with model + Caszilla
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.12), transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(147, 51, 234, 0.12), transparent 55%),
        var(--bg);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    text-align: left;
}

.hero-image {
    flex-shrink: 0;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neon-strong);
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--foreground-muted);
    margin-bottom: 32px;
    max-width: 540px;
}

@media (min-width: 1024px) {
    .hero {
        padding-bottom: 100px;
    }

    .hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .hero-content {
        flex: 1 1 50%;
    }

    .hero-image {
        flex: 1 1 50%;
    }

    .hero-subtitle {
        font-size: 20px;
    }
}

/* ============================================
   BONUS STEP GRID (4-Deposit Package)
   ============================================ */
.bonus-step-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.bonus-step-card {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.bonus-step-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-neon-strong);
    border-color: var(--border-hover);
}

/* ============================================
   STAT HIGHLIGHT GRID
   Large numbers with context labels
   ============================================ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 16px;
}

.stat-panel {
    padding: 48px 32px;
    text-align: center;
}

.stat-panel:hover {
    transform: scale(1.03);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(103, 232, 249, 0.3);
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--foreground);
}

.stat-subtitle {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--foreground-muted);
    line-height: 1.5;
}

/* ============================================
   GAME CARDS GRID
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.game-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

.game-card-body {
    padding: 24px;
}

.game-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--foreground-bright);
    margin-bottom: 12px;
}

.game-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground-muted);
    margin-bottom: 0;
}

/* ============================================
   CTA BANNER
   Full-width neon gradient section before footer
   ============================================ */
.cta-section {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    background: var(--gradient-cta);
    overflow: hidden;
}

.cta-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        180deg,
        transparent 0px,
        transparent 3px,
        rgba(255, 255, 255, 0.02) 3px,
        rgba(255, 255, 255, 0.02) 4px
    );
    pointer-events: none;
    z-index: 0;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(103, 232, 249, 0.4);
}

.cta-subtext {
    font-size: 17px;
    color: var(--foreground-bright);
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-microcopy {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 13px;
    color: var(--foreground-muted);
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 100px 20px;
    }

    .cta-headline {
        font-size: 36px;
    }
}

/* ============================================
   FAQ ACCORDION
   Expandable Q&A with neon-edged panels
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item[open] {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-neon);
    border-left: 3px solid var(--accent);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground-bright);
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--foreground-muted);
    transition: transform 300ms ease-out, color var(--transition);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    overflow: hidden;
    transition: height 300ms ease-out, opacity 300ms ease-out;
}

.faq-answer-content {
    padding: 0 32px 32px 32px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground-muted);
}

.faq-answer-content p {
    margin-bottom: 0;
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    padding: 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.trust-badge img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.trust-badge span {
    font-size: 13px;
    color: var(--foreground-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   PAYMENT METHODS STRIP
   ============================================ */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.payment-method {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground-muted);
    transition: all var(--transition);
}

.payment-method:hover {
    border-color: var(--border-accent);
    color: var(--foreground);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    margin: 32px 0;
    box-shadow: var(--shadow-neon);
}

.callout-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.callout-content > :last-child {
    margin-bottom: 0;
}

/* ============================================
   TL;DR SUMMARY BOX
   ============================================ */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 32px 0;
    box-shadow: var(--shadow-neon);
}

.tldr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.tldr-item {
    text-align: center;
}

.tldr-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}

.tldr-label {
    font-size: 14px;
    color: var(--foreground-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    margin: 32px 0;
    max-width: 100%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.data-table th {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    background: rgba(103, 232, 249, 0.05);
}

.data-table tbody tr {
    transition: background var(--transition);
}

.data-table tbody tr:hover {
    background: rgba(103, 232, 249, 0.03);
}

.data-table .recommended {
    background: rgba(103, 232, 249, 0.08);
    border-left: 3px solid var(--accent);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   PULL QUOTE / BLOCKQUOTE
   ============================================ */
.pull-quote {
    margin: 40px 0;
    padding: 32px;
    border-left: 4px solid var(--accent);
    background: var(--card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-neon);
}

.pull-quote p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--foreground-bright);
    margin-bottom: 0;
}

.pull-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: var(--foreground-muted);
    font-style: normal;
}

blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    border-left: 3px solid var(--accent);
    background: var(--card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

blockquote p {
    font-size: 18px;
    color: var(--foreground-bright);
    margin-bottom: 0;
}

blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: var(--foreground-muted);
    font-style: normal;
}

/* ============================================
   STEP LIST (Numbered panels)
   ============================================ */
.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: border-color var(--transition);
}

.step-item:hover {
    border-color: var(--border-accent);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(103, 232, 249, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
}

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

.step-content > :last-child {
    margin-bottom: 0;
}

/* ============================================
   PROVIDER LOGO STRIP
   ============================================ */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
}

.provider-logo {
    padding: 12px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground-muted);
    transition: all var(--transition);
}

.provider-logo:hover {
    border-color: var(--border-accent);
    color: var(--accent);
    box-shadow: var(--shadow-neon);
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 60px 20px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-col {
    min-width: 0;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground-bright);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    color: var(--foreground-muted);
    font-size: 15px;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-text {
    font-size: 14px;
    color: var(--foreground-muted);
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-text:last-child {
    margin-bottom: 0;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icons span {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(103, 232, 249, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--foreground-muted);
    font-weight: 500;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--foreground-muted);
    margin-bottom: 0;
}

.footer-sitemap-link {
    font-size: 13px;
    color: var(--foreground-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-sitemap-link:hover {
    color: var(--accent);
}

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

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

/* ============================================
   SCANLINE KEYFRAME (for moving sweep effect)
   ============================================ */
@keyframes scanlineSweep {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

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

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

/* ============================================
   SKIP LINK (Accessibility)
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 2000;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--accent-foreground);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 20px;
    color: var(--accent-foreground);
}

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
    background: rgba(103, 232, 249, 0.3);
    color: var(--foreground-bright);
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
