/* ============================================
   FUGU CASINO - Design System
   Comic-book underwater aesthetic: deep navy-teal backgrounds,
   gold/turquoise/coral accents, Bungee display + Nunito body.
   Mobile-first. Dark theme only (no switcher per brief).
   ============================================ */
.dark {
    --background: #021e2b;
    --background-alt: #052e3a;
    --background-gradient-start: #021e2b;
    --background-gradient-end: #052e3a;

    /* Foreground / text */
    --foreground: #f8fafc;
    --foreground-soft: #e2e8f0;
    --foreground-muted: #b8c4d0;

    /* Surfaces */
    --card: #052e3a;
    --card-foreground: #f8fafc;
    --card-hover: #073845;

    /* Primary (turquoise) */
    --primary: #14b8a6;
    --primary-foreground: #042f2e;
    --primary-hover: #2dd4bf;

    /* Secondary (coral) */
    --secondary: #f43f5e;
    --secondary-foreground: #000000;
    --secondary-hover: #fb7185;

    /* Accent (gold) */
    --accent: #facc15;
    --accent-foreground: #422006;
    --accent-hover: #fde047;

    /* Muted */
    --muted: #134e4a;
    --muted-foreground: #a8e6db;

    /* Borders */
    --border: #0f3d47;
    --border-light: #1a5563;

    /* Destructive */
    --destructive: #ef4444;
    --destructive-foreground: #000000;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 20px rgba(250, 204, 21, 0.35);
    --shadow-turquoise: 0 0 16px rgba(20, 184, 166, 0.3);

    /* Gradients */
    --gradient-ocean: linear-gradient(180deg, #021e2b 0%, #052e3a 100%);
    --gradient-teal-navy: linear-gradient(135deg, #0e7490 0%, #021e2b 100%);
    --gradient-gold: radial-gradient(circle at center, #fde047 0%, #facc15 50%, #eab308 100%);
    --gradient-cta: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);

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

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease-out;
    --transition-base: 300ms ease-out;
    --transition-slow: 500ms ease-out;

    /* Typography */
    --font-display: "Bungee", sans-serif;
    --font-body: "Nunito", sans-serif;

    /* Layout */
    --max-width: 1200px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    background-image: var(--gradient-ocean);
    background-attachment: fixed;
    min-height: 100vh;
    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-fast);
}

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

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

section {
    overflow: clip;
    scroll-margin-top: var(--header-height);
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Bungee: display headings, stat numbers, CTAs
   Nunito: body, descriptions, micro-copy
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    color: var(--foreground);
}

h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 400;
    margin-bottom: var(--space-md);
}

h4 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 400;
    margin-bottom: var(--space-md);
}

p {
    margin-bottom: var(--space-lg);
}

/* ============================================
   LAYOUT CONTAINER
   ============================================ */
#main-content {
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.section-sm {
    padding: var(--space-lg) 0;
}

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

/* ============================================
   HEADER & NAVIGATION
   Sticky semi-transparent header with bubble logo.
   Mobile drawer below 1024px.
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #021e2b;
    border-bottom: 1px solid var(--border);
    min-height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.logo {
    border-radius: var(--radius-full);
    border: 2px solid var(--accent);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--accent);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    border: 2px solid var(--accent);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.logo-icon-sm {
    width: 36px;
    height: 36px;
    font-size: 20px;
}

/* Desktop nav (hidden on mobile) */
.primary-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--foreground-soft);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(20, 184, 166, 0.1);
}

.nav-cta-group {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    margin-left: var(--space-md);
}

.nav-login {
    padding: 8px 20px;
}

.nav-register {
    padding: 8px 24px;
}

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

.burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--accent);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

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

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

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

/* Mobile nav drawer */
.primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    background: #021e2b;
    z-index: 1100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-xl) var(--space-lg);
    animation: slideInRight var(--transition-base) forwards;
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
    width: 100%;
}

.primary-nav.is-open .nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--card);
}

.primary-nav.is-open .nav-cta-group {
    flex-direction: column;
    margin-left: 0;
    margin-top: var(--space-md);
    gap: var(--space-md);
}

.primary-nav.is-open .nav-cta-group .btn {
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Desktop: show inline nav, hide hamburger */
@media (min-width: 1024px) {
    .primary-nav {
        display: block;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   BUTTONS
   Gold CTA, turquoise primary, outline secondary.
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 16px;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    min-height: 48px;
    padding: 12px 32px;
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
    color: var(--accent-foreground);
}

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

.btn-outline:hover {
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary-hover);
}

.btn-cta {
    background: var(--gradient-gold);
    color: var(--accent-foreground);
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    padding: 16px 24px;
    min-height: 56px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    max-width: 100%;
}

@media (min-width: 768px) {
    .btn-cta {
        font-size: 18px;
        padding: 16px 40px;
        white-space: nowrap;
    }
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
    color: var(--accent-foreground);
}

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(250, 204, 21, 0);
    }
}

/* ============================================
   HERO SECTIONS
   Full-bleed banner with ocean gradient, mascot,
   speech bubbles, treasure motifs.
   ============================================ */
.hero {
    position: relative;
    background: var(--gradient-teal-navy);
    padding: var(--space-xl) 0;
    overflow: clip;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-visual img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-speech-bubble {
    position: absolute;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: var(--font-display);
    font-size: 22px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 3px solid var(--foreground);
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.hero-speech-bubble.bubble-top {
    top: 10%;
    right: 5%;
}

.hero-speech-bubble.bubble-bottom {
    bottom: 15%;
    left: 5%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content h1 {
    color: var(--foreground);
}

.hero-content .hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--foreground-soft);
    max-width: 700px;
    margin: 0 auto;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

@media (min-width: 768px) {
    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-lg);
}

.section-header h2 {
    color: var(--accent);
}

.section-header p {
    font-size: 18px;
    color: var(--foreground-soft);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   FEATURE CARD GRID
   1 col mobile → 2 col tablet → 3 col desktop
   ============================================ */
.feature-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

@media (min-width: 1024px) {
    .feature-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    min-width: 0;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent);
    z-index: 5;
}

.card-image-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.card-image-wrapper img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xs);
    flex-shrink: 0;
}

.card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.card-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--foreground);
}

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

.card-link {
    font-weight: 700;
    color: var(--primary);
    margin-top: auto;
}

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

/* ============================================
   STAT BLOCK
   Large Bungee numbers with count-up animation.
   Stacks vertically on mobile, horizontal desktop.
   ============================================ */
.stat-block-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-item:nth-child(even) .stat-number {
    color: var(--primary);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
}

.stat-citation {
    font-size: 12px;
    font-style: italic;
    color: var(--foreground-muted);
    margin-top: 4px;
}

@media (min-width: 640px) {
    .stat-block-wrapper {
        flex-direction: row;
        justify-content: space-around;
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .stat-block-wrapper {
        gap: var(--space-xl);
    }
}

/* ============================================
   FAQ ACCORDION
   Vertical stack of <details> with chevron.
   Coral accent border when open.
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item[open] {
    border-left-color: var(--secondary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 18px;
    text-transform: uppercase;
    color: var(--foreground);
    list-style: none;
    user-select: none;
}

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

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

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

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

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground-soft);
    margin: 0;
}

/* ============================================
   CTA BANNER
   Full-width section, deep ocean gradient,
   gold radial button, scroll-triggered reveal.
   ============================================ */
.cta-banner {
    background: var(--gradient-teal-navy);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    overflow: clip;
}

.cta-banner-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.cta-subtext {
    font-size: 18px;
    color: var(--foreground-soft);
    max-width: 600px;
}

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

@media (min-width: 1024px) {
    .cta-banner {
        padding: var(--space-2xl) var(--space-lg);
    }
}

/* ============================================
   FOOTER
   Four-column layout collapsing to single col.
   Payment badges, license, 18+, Seitenübersicht.
   ============================================ */
.site-footer {
    background: var(--background-alt);
    border-top: 1px solid var(--border);
    padding: var(--space-xl) 0 var(--space-lg);
    margin-top: var(--space-xl);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.footer-brand-col {
    max-width: 320px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 15px;
    color: var(--foreground-soft);
    line-height: 1.5;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--accent);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--foreground-soft);
    font-size: 16px;
}

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

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.payment-badge {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--foreground-soft);
}

.license-badge {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-sm);
}

.license-text {
    font-size: 13px;
    color: var(--foreground-soft);
    line-height: 1.5;
}

.age-warning {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--accent);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--space-lg) auto 0;
    padding: var(--space-lg) var(--space-lg) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

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

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-2xl);
    }
}

/* ============================================
   ENGAGEMENT PATTERNS
   Summary box, callout, pull quote, details/summary,
   comparison table, social proof.
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

.summary-box h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.summary-box p {
    color: var(--foreground-soft);
    margin: 0;
}

/* Callout / highlight box */
.callout {
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

.callout-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.callout p {
    color: var(--foreground-soft);
    margin: 0;
}

/* Pull quote */
.pull-quote {
    font-size: 22px;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.5;
    border-left: 4px solid var(--primary);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-2xl) 0;
    font-style: italic;
}

.pull-quote cite {
    display: block;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
}

/* Comparison table */
.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
}

.table-wrapper[tabindex]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table th {
    background: var(--card);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    padding: var(--space-md);
    border: 1px solid var(--border);
    text-align: left;
}

.comparison-table td {
    background: var(--background-alt);
    color: var(--foreground-soft);
    padding: var(--space-md);
    border: 1px solid var(--border);
}

.comparison-table tr:nth-child(even) td {
    background: var(--card);
}

.comparison-table .recommended {
    background: rgba(20, 184, 166, 0.12);
    position: relative;
}

.comparison-table .recommended th {
    color: var(--primary);
}

/* Social proof / testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

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

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.testimonial-text {
    font-size: 16px;
    color: var(--foreground-soft);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent);
    font-size: 15px;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) 0;
}

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

/* ============================================
   CONTENT TYPOGRAPHY HELPERS
   ============================================ */
.content-block {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.content-block p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground-soft);
    margin-bottom: var(--space-md);
}

.content-block h2 {
    margin-top: var(--space-xl);
}

.content-block h3 {
    margin-top: var(--space-lg);
}

.content-block ul, .content-block ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.content-block li {
    color: var(--foreground-soft);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.content-block blockquote {
    border-left: 4px solid var(--primary);
    padding: var(--space-md) var(--space-xl);
    margin: var(--space-xl) 0;
    font-size: 18px;
    font-style: italic;
    color: var(--foreground);
}

/* ============================================
   SITEMAP PAGE
   Neutral design, clear list.
   ============================================ */
.sitemap-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.sitemap-item {
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.sitemap-item h3 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.sitemap-item h3 a {
    color: var(--accent);
}

.sitemap-item p {
    font-size: 16px;
    color: var(--foreground-soft);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   Scroll-triggered fade-in slide-up.
   Mascot float. Bubble rise.
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.mascot-float {
    animation: float 3s ease-in-out infinite;
}

.bubble-rise {
    animation: bubbleRise 4s ease-in infinite;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1.3);
        opacity: 0;
    }
}

/* ============================================
   ACCESSIBILITY
   Screen-reader only, focus styles.
   ============================================ */
.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;
}

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

