/*
 * WildRobin Casino - Design System
 * Dark forest adventure aesthetic with neon green and gold accents.
 * Single theme (dark) - no theme switcher.
 */

/* ============================================
   DESIGN TOKENS
   Dark forest palette: near-black bg, neon green primary, gold secondary
   ============================================ */

:root {
    /* Core colors */
    --background: #0a1410;
    --background-alt: #0f1d16;
    --foreground: #f0f4f0;
    --card: #13241c;
    --card-foreground: #f0f4f0;
    --popover: #13241c;
    --popover-foreground: #f0f4f0;

    /* Primary - neon emerald green */
    --primary: #2ee6a6;
    --primary-foreground: #0a1410;
    --primary-dim: rgba(46, 230, 166, 0.12);

    /* Secondary - luminous gold */
    --secondary: #ffd700;
    --secondary-foreground: #0a1410;

    /* Muted - shadowed moss / sage gray */
    --muted: #4a5d4f;
    --muted-foreground: #cbd1cd;

    /* Accent - ember red for urgency */
    --accent: #e32533;
    --accent-foreground: #ffffff;

    /* Borders & inputs */
    --border: #2a3d30;
    --input: #13241c;
    --ring: #2ee6a6;

    /* Gradients & glows */
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    --green-glow: 0 0 20px rgba(46, 230, 166, 0.25);
    --green-glow-strong: 0 0 30px rgba(46, 230, 166, 0.4);
    --gold-glow: 0 0 15px rgba(255, 215, 0, 0.2);
    --gold-glow-strong: 0 0 25px rgba(255, 215, 0, 0.4);

    /* Typography */
    --font-heading: "Cinzel", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;

    /* Spacing */
    --header-height: 64px;
    --section-spacing: 70px;
    --container-max: 1280px;
    --card-padding: 24px;
    --card-padding-mobile: 16px;
    --gap: 24px;
    --gap-mobile: 16px;

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

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

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

ul, ol {
    list-style: none;
}

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

section {
    overflow: clip;
}

/* ============================================
   SKIP LINK
   ============================================ */

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    z-index: 1002;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top 200ms ease-out;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   TYPOGRAPHY
   Cinzel for headings, Inter for body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--foreground);
}

h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 0.03em;
}

h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    letter-spacing: 0.02em;
}

h3 {
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 500;
}

h4 {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 600;
}

p {
    margin-bottom: 28px;
}

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

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

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

.section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
        --section-spacing: 90px;
    }
}

.section-headline {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--foreground);
    margin-bottom: 48px;
    text-align: center;
}

.dark-forest-bg {
    background-color: var(--background);
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 20, 16, 0.95);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 16px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.site-brand:hover {
    color: var(--secondary);
}

.brand-icon {
    width: 36px;
    height: 36px;
    color: var(--secondary);
    flex-shrink: 0;
}

.site-brand__text {
    white-space: nowrap;
}

/* Primary nav - mobile drawer by default */
.primary-nav {
    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%);
    visibility: hidden;
    transition: transform var(--transition), visibility var(--transition);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 17px;
    font-weight: 500;
    color: var(--foreground);
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}

.nav-list a:hover {
    background: var(--primary-dim);
    color: var(--primary);
}

.nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

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

/* Mobile menu toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-shrink: 0;
}

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

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

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

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

/* Desktop navigation */
@media (min-width: 1024px) {
    .site-header {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .primary-nav {
        position: static;
        transform: none;
        visibility: visible;
        transition: none;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        padding: 0;
        background: transparent;
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        gap: 28px;
    }

    .nav-list a {
        min-height: 44px;
        padding: 12px 4px;
    }

    .nav-cta-group {
        flex-direction: row;
        gap: 12px;
        padding-top: 0;
        border-top: none;
    }

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

    .menu-toggle {
        display: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--secondary-foreground);
    box-shadow: var(--gold-glow);
}

.btn-gold:hover {
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-2px);
    color: var(--secondary-foreground);
}

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

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

.btn-green {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--green-glow);
}

.btn-green:hover {
    box-shadow: var(--green-glow-strong);
    transform: translateY(-2px);
    color: var(--primary-foreground);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background) 0%, #0d1a14 50%, var(--background) 100%);
    padding-top: calc(var(--header-height) + 20px);
    overflow: clip;
}

.hero-arrow-motif {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-arrow-motif::before,
.hero-arrow-motif::after {
    content: '';
    position: absolute;
    left: -20%;
    width: 140%;
    height: 1px;
    transform: rotate(-12deg);
}

.hero-arrow-motif::before {
    top: 58%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.25) 30%, rgba(255, 215, 0, 0.5) 50%, rgba(255, 215, 0, 0.25) 70%, transparent 100%);
}

.hero-arrow-motif::after {
    top: 64%;
    background: linear-gradient(90deg, transparent 0%, rgba(46, 230, 166, 0.15) 40%, rgba(46, 230, 166, 0.3) 50%, rgba(46, 230, 166, 0.15) 60%, transparent 100%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 30px;
    gap: 30px;
}

.hero-content {
    max-width: 600px;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--foreground);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero-cta {
    font-size: 18px;
    padding: 16px 40px;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.hero-image {
    max-height: 380px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(46, 230, 166, 0.15));
}

@media (min-width: 768px) {
    .hero-image-wrapper {
        max-width: 450px;
    }

    .hero-image {
        max-height: 480px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 90vh;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 40px;
        padding-top: 30px;
    }

    .hero-content {
        flex: 1;
        max-width: 55%;
    }

    .hero-image-wrapper {
        flex: 0 0 42%;
        max-width: 550px;
        margin: 0;
        position: relative;
    }

    .hero-image {
        max-height: 80vh;
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* ============================================
   STAT BLOCK
   ============================================ */

.stat-section {
    background: var(--background);
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: var(--card-padding-mobile);
    box-shadow: 0 0 30px rgba(46, 230, 166, 0.08);
}

.stat-item {
    text-align: center;
    padding: 12px 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 42px);
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted-foreground);
    font-weight: 500;
}

.stat-subtext {
    max-width: 700px;
    margin: 28px auto 0;
    text-align: center;
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
}

.stat-cta {
    display: flex;
    margin: 32px auto 0;
}

@media (min-width: 768px) {
    .stat-block {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        padding: var(--card-padding);
    }

    .stat-item {
        flex: 1;
    }
}

/* ============================================
   INFO CARD GRID
   ============================================ */

.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-mobile);
}

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--card-padding-mobile);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--green-glow);
    border-color: var(--primary);
}

.info-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--background-alt);
}

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

.info-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}

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

.info-card-description {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    flex: 1;
}

.info-card-link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
}

.info-card-link:hover {
    color: var(--secondary);
}

.grid-cta {
    display: flex;
    margin: 40px auto 0;
}

@media (min-width: 640px) {
    .info-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gap);
    }

    .info-card {
        padding: var(--card-padding);
    }
}

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

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    position: relative;
    background: linear-gradient(135deg, var(--background) 0%, #0d1a14 50%, var(--background) 100%);
    padding: 70px 0;
    overflow: clip;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-arrow-motif {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cta-arrow-motif::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 140%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.2) 30%, rgba(255, 215, 0, 0.4) 50%, rgba(255, 215, 0, 0.2) 70%, transparent 100%);
    transform: rotate(-8deg);
}

.cta-banner-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

.cta-banner-headline {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--foreground);
    margin-bottom: 20px;
}

.cta-banner-subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-banner-btn {
    font-size: 18px;
    padding: 16px 40px;
}

.cta-micro-copy {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 16px;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 90px 0;
    }
}

/* ============================================
   FAQ ACCORDION
   Native details/summary with styled appearance
   ============================================ */

.faq-section {
    background: var(--background);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.faq-item[open] {
    border-left: 3px solid var(--primary);
}

.faq-question {
    cursor: pointer;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    min-height: 48px;
    transition: color var(--transition);
}

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

.faq-question::after {
    content: '\25BC';
    font-size: 12px;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-item[open] .faq-question {
    color: var(--primary);
}

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

/* ============================================
   SEO CONTENT
   ============================================ */

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-content h2 {
    margin-bottom: 28px;
    text-align: left;
}

.seo-content h3 {
    margin-top: 36px;
    margin-bottom: 16px;
}

.seo-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 28px;
}

.seo-content p a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--primary-dim);
    text-underline-offset: 3px;
}

.seo-content p a:hover {
    color: var(--secondary);
    text-decoration-color: var(--secondary);
}

.seo-content ul, .seo-content ol {
    margin-bottom: 28px;
    padding-left: 24px;
}

.seo-content li {
    margin-bottom: 12px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.seo-content ul li {
    list-style: disc;
}

.seo-content ol li {
    list-style: decimal;
}

.seo-content strong {
    color: var(--foreground);
    font-weight: 600;
}

/* ============================================
   PAYMENT STRIP
   ============================================ */

.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.payment-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 44px;
    padding: 0 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.payment-strip-item:hover {
    border-color: var(--primary);
    box-shadow: var(--green-glow);
}

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

/* Callout / highlight box */
.callout-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 28px 0;
}

.callout-box p {
    margin-bottom: 0;
    color: var(--muted-foreground);
}

/* Summary / TL;DR box */
.summary-box {
    background: var(--primary-dim);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 24px;
    margin: 28px 0;
}

.summary-box p {
    margin-bottom: 0;
    color: var(--foreground);
    font-weight: 500;
}

/* Pull quote */
.pull-quote {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
    border-left: 3px solid var(--secondary);
    padding-left: 24px;
    margin: 36px 0;
    font-style: italic;
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-top: 12px;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
}

/* ============================================
   PAYMENT SECTION (Homepage)
   ============================================ */

.payment-section {
    background: var(--background);
}

.payment-strip-text {
    max-width: 700px;
    margin: 28px auto 0;
    text-align: center;
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
}

.payment-strip-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.payment-strip-text a:hover {
    color: var(--secondary);
}

.payment-strip-item img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--background-alt);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.brand-icon--footer {
    width: 32px;
    height: 32px;
    color: var(--secondary);
}

.footer-brand__text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.04em;
}

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

.footer-text {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

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

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

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

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

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.footer-18 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    padding-bottom: 24px;
}

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

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

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
        gap: 40px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* Staggered animation for grid children */
.info-card-grid .info-card:nth-child(1) { transition-delay: 0ms; }
.info-card-grid .info-card:nth-child(2) { transition-delay: 150ms; }
.info-card-grid .info-card:nth-child(3) { transition-delay: 300ms; }
.info-card-grid .info-card:nth-child(4) { transition-delay: 450ms; }
.info-card-grid .info-card:nth-child(5) { transition-delay: 600ms; }
.info-card-grid .info-card:nth-child(6) { transition-delay: 750ms; }
.info-card-grid .info-card:nth-child(7) { transition-delay: 900ms; }
.info-card-grid .info-card:nth-child(8) { transition-delay: 1050ms; }

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

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

/* ============================================
   SITEMAP PAGE
   ============================================ */

.sitemap-header {
    padding-top: calc(var(--header-height) + 30px);
    text-align: center;
}

.sitemap-subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.sitemap-list-section {
    padding-top: 0;
}

.sitemap-list-container {
    max-width: 800px;
}

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sitemap-entry {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.sitemap-entry:last-child {
    border-bottom: none;
}

.sitemap-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    transition: color var(--transition);
}

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

.sitemap-link--current {
    color: var(--muted-foreground);
    cursor: default;
}

.sitemap-link--current:hover {
    color: var(--muted-foreground);
}

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

.sitemap-footer-note {
    padding-top: 0;
    text-align: center;
}

.sitemap-note {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

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