/* ============================================
   BIZZO CASINO - TROPICAL DESIGN SYSTEM
   Mobile-first. Light theme only.
   ============================================ */

/* ============================================
   RESET & OVERFLOW SAFETY
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }

pre, code { max-width: 100%; overflow-x: auto; }
pre code { display: block; min-width: 0; }

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

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

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

section { overflow: clip; }

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: #ffffff;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
}
.skip-link:focus { top: 0; color: #ffffff; }
.skip-link:hover { color: #ffffff; }

/* ============================================
   TYPOGRAPHY
   Bagel Fat One headings, Plus Jakarta Sans body
   ============================================ */
h1, h2, h3, h4 {
    font-family: "Bagel Fat One", "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    line-height: 1.15;
    color: var(--primary);
    margin: 0 0 var(--space-md);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(30px, 5vw, 44px); }
h2 { font-size: clamp(26px, 4vw, 34px); }
h3 { font-size: clamp(20px, 2.6vw, 24px); }
h4 { font-size: 20px; }

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

a { color: #a01030; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 200ms ease; }
a:hover { color: #6b0a20; }

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

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

blockquote {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-left: 4px solid var(--gold);
    background: var(--muted);
    border-radius: var(--radius-md);
    font-style: italic;
    color: var(--primary);
}
blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 15px;
    color: var(--muted-foreground);
}

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

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

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-xl);
}
.section-header p { color: var(--muted-foreground); font-size: 18px; }

.section-alt { background: var(--muted); }
.section-cream { background: var(--background); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 300ms cubic-bezier(.2,.8,.2,1), box-shadow 300ms, background 200ms;
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff8247 100%);
    color: var(--secondary-foreground);
    box-shadow: 0 6px 20px rgba(255, 94, 98, 0.35), 0 0 0 0 rgba(232, 179, 57, 0);
}
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold), 0 10px 28px rgba(255, 94, 98, 0.45);
    color: var(--secondary-foreground);
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #f5c44a 100%);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-4px); }

.btn-large {
    min-height: 56px;
    padding: 18px 36px;
    font-size: 18px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--primary);
    color: var(--primary-foreground);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

body { padding-top: var(--header-height); }

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-foreground);
    text-decoration: none;
    flex-shrink: 0;
}
.brand .logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--secondary);
    padding: 4px;
}
.brand-name {
    font-family: "Bagel Fat One", sans-serif;
    font-size: 22px;
    letter-spacing: 0.5px;
}
.brand-accent { color: var(--gold); }

/* Desktop navigation */
.main-nav {
    display: none;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav-list a {
    color: var(--primary-foreground);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: background 200ms, color 200ms;
}
.nav-list a:hover { background: rgba(255,255,255,0.1); color: var(--gold); }

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}
.nav-cta .btn {
    min-height: 42px;
    padding: 10px 20px;
    font-size: 14px;
}
.nav-cta .btn-ghost {
    color: var(--primary-foreground);
    border-color: rgba(255,255,255,0.4);
}
.nav-cta .btn-ghost:hover {
    background: var(--primary-foreground);
    color: var(--primary);
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 24px;
    }
}

/* Burger */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 48px;
    height: 48px;
    padding: 12px 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    border-radius: 8px;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-foreground);
    border-radius: 3px;
    transition: transform 300ms ease, opacity 200ms ease;
    transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}

/* Mobile drawer */
@media (max-width: 1023px) {
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        display: none;
        flex-direction: column;
        padding: var(--space-lg) 24px var(--space-xl);
        overflow-y: auto;
        z-index: 999;
        gap: var(--space-lg);
    }
    .main-nav.is-open {
        display: flex;
    }
    .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }
    .main-nav .nav-list a {
        color: var(--primary);
        background: var(--muted);
        padding: 16px 20px;
        min-height: 56px;
        display: flex;
        align-items: center;
        font-size: 18px;
        border-radius: 12px;
    }
    .main-nav .nav-list a:hover {
        background: var(--accent);
        color: var(--accent-foreground);
    }
    .main-nav .nav-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .main-nav .nav-cta .btn {
        width: 100%;
        min-height: 52px;
        font-size: 16px;
    }
    .main-nav .nav-cta .btn-ghost {
        color: var(--primary);
        border-color: var(--primary);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-3xl);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 94, 98, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(20, 184, 166, 0.12) 0%, transparent 40%);
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}
@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-col h2.footer-title {
    font-family: "Bagel Fat One", sans-serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: var(--space-md);
    margin-top: 0;
    line-height: 1.2;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(253, 246, 232, 0.85);
    font-size: 15px;
}
.footer-col a:hover { color: var(--gold); }

.footer-tagline {
    color: rgba(253, 246, 232, 0.75);
    font-size: 15px;
    margin-top: 16px;
    max-width: 320px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    color: var(--primary-foreground);
    border: 1px solid rgba(255,255,255,0.2);
}
.badge-age { background: #a01030; border-color: #a01030; color: #ffffff; }

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.payment-logos li {
    background: rgba(255,255,255,0.08);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.12);
    margin: 0;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--space-xl) auto 0;
    padding: var(--space-lg) 20px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(253, 246, 232, 0.7);
    margin-bottom: 10px;
}
.footer-bottom .responsible strong { color: var(--gold); }

/* ============================================
   HERO - tropical full-bleed
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-2xl) 0 var(--space-3xl);
    background:
        radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 94, 98, 0.2) 0%, transparent 50%),
        linear-gradient(160deg, #3d1a5b 0%, #5a2680 50%, #2a1530 100%);
    color: var(--primary-foreground);
    overflow: clip;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(232, 179, 57, 0.15) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
}
.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}
.hero h1 {
    color: var(--primary-foreground);
    font-size: clamp(32px, 6vw, 56px);
    margin-bottom: var(--space-md);
}
.hero h1 .accent { color: var(--gold); }
.hero-lead {
    font-size: clamp(17px, 2.2vw, 20px);
    color: rgba(253, 246, 232, 0.88);
    max-width: 560px;
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: var(--space-lg) 0;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: var(--space-md);
    font-size: 14px;
    color: rgba(253, 246, 232, 0.75);
}
.hero-trust .badge { background: rgba(232, 179, 57, 0.18); border-color: rgba(232, 179, 57, 0.35); color: var(--gold); }
.hero-mascot {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-mascot img {
    max-width: 100%;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
    animation: bison-bob 4s ease-in-out infinite;
}

@keyframes bison-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   GAME CARDS
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) {
    .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}
@media (min-width: 1024px) {
    .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
}
.game-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) {
    .game-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.game-card {
    position: relative;
    background: linear-gradient(180deg, #3d1a5b 0%, #2a1530 100%);
    border: 2px solid var(--muted);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 300ms cubic-bezier(.2,.8,.2,1), box-shadow 300ms;
    min-width: 0;
}
.game-card:hover, .game-card:focus-within {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}
.game-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.game-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}
.game-card:hover .game-card-media img { transform: scale(1.06); }

.game-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.game-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 26, 91, 0.7);
    color: var(--primary-foreground);
    font-family: "Bagel Fat One", sans-serif;
    font-size: 20px;
    opacity: 0;
    transition: opacity 300ms;
    z-index: 3;
}
.game-card-play::before {
    content: "Spielen";
    background: var(--secondary);
    padding: 12px 28px;
    border-radius: 999px;
    box-shadow: var(--shadow-gold);
}
.game-card:hover .game-card-play, .game-card:focus-within .game-card-play { opacity: 1; }

.game-card-body {
    padding: 14px 16px 18px;
    text-align: center;
}
.game-card-title {
    font-family: "Bagel Fat One", sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 0 0 4px;
}
.game-card-provider {
    font-size: 14px;
    color: var(--accent);
    margin: 0;
    font-weight: 600;
}

/* ============================================
   INFO CARDS
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}
@media (min-width: 1024px) {
    .info-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .info-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .info-grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
    .info-grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

.info-card {
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: transform 300ms, box-shadow 300ms;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .info-card { padding: 28px; }
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.info-card-visual {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96px;
}
.info-card-visual img {
    max-height: 96px;
    width: auto;
    object-fit: contain;
}
.info-card-icon {
    font-size: 56px;
    line-height: 1;
}
.info-card-title {
    font-family: "Bagel Fat One", sans-serif;
    font-size: 22px;
    color: var(--primary);
    margin: 0 0 8px;
}
.info-card-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    border-radius: 3px;
    margin-bottom: 14px;
}
.info-card-text {
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}
.info-card-link {
    color: #c2143a;
    font-weight: 700;
    font-size: 15px;
    margin-top: auto;
}
.info-card-link:hover { color: #6b4d0a; }

/* ============================================
   STAT HIGHLIGHTS
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) {
    .stats-row { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
}
.stats-row-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) {
    .stats-row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.stat-highlight {
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0.05) 100%);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    min-width: 0;
}
.stat-icon {
    font-size: 20px;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}
.stat-number {
    display: block;
    font-family: "Bagel Fat One", sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1;
    color: #6b4d0a;
    margin-bottom: 8px;
}
.stat-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}
.stat-highlight.is-visible .stat-number {
    animation: stat-pulse 1.2s ease-out;
}
@keyframes stat-pulse {
    0% { transform: scale(0.85); opacity: 0; }
    60% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 94, 98, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #3d1a5b 0%, #5a2680 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) 24px;
    color: var(--primary-foreground);
    overflow: clip;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin: var(--space-2xl) 0;
    box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) {
    .cta-banner {
        grid-template-columns: 1.4fr 1fr;
        padding: var(--space-2xl) var(--space-xl);
    }
}
.cta-banner-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-banner-decor .palm {
    position: absolute;
    font-size: 120px;
    opacity: 0.12;
}
.palm-left { top: -20px; left: -20px; transform: rotate(-20deg); }
.cta-banner-decor .coin {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold) 0%, var(--gold-deep) 100%);
    box-shadow: 0 0 16px rgba(232, 179, 57, 0.6);
    color: transparent;
}
.coin-1 { top: 15%; right: 40%; }
.coin-2 { bottom: 20%; left: 30%; width: 18px; height: 18px; }
.coin-3 { top: 40%; right: 15%; width: 16px; height: 16px; }

.cta-banner-content { position: relative; z-index: 2; }
.cta-banner-title {
    color: var(--primary-foreground);
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 12px;
}
.cta-banner-subtitle {
    color: rgba(253, 246, 232, 0.85);
    font-size: 17px;
    margin-bottom: var(--space-md);
    max-width: 520px;
}
.cta-banner-micro {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(253, 246, 232, 0.65);
}
.cta-banner-mascot {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}
.cta-banner-mascot img {
    max-width: 280px;
    width: 100%;
    animation: bison-bob 4s ease-in-out infinite;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.3));
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: background 300ms;
}
.faq-item[open] {
    background: rgba(20, 184, 166, 0.08);
    border-color: var(--accent);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    min-height: 56px;
}
@media (min-width: 768px) {
    .faq-question { font-size: 19px; }
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    transition: transform 300ms;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 24px 24px;
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.7;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin: 0; }

/* ============================================
   DATA TABLE
   ============================================ */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    min-width: 540px;
}
.data-table caption {
    caption-side: top;
    text-align: left;
    font-weight: 700;
    color: var(--primary);
    padding: 12px 0;
    font-size: 15px;
}
.data-table thead {
    background: rgba(20, 184, 166, 0.18);
}
.data-table th, .data-table td {
    padding: 16px 18px;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}
.data-table thead th {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.data-table tbody tr:nth-child(even) { background: var(--muted); }
.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody th {
    font-weight: 700;
    color: var(--primary);
}
.data-table .gold {
    font-family: "Bagel Fat One", sans-serif;
    color: #6b4d0a;
    font-size: 18px;
}

/* ============================================
   ENGAGEMENT & CRO PATTERNS
   ============================================ */
.tldr-box {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(232, 179, 57, 0.1));
    border-left: 5px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: var(--space-lg) 0;
}
.tldr-box h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: #0d6b62;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tldr-box p { margin: 0; font-size: 16px; }

.callout {
    background: var(--muted);
    border-left: 5px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: var(--space-md) 0;
    font-size: 16px;
}
.callout strong { color: #c2143a; }
.callout-gold { border-left-color: var(--gold); }
.callout-gold strong { color: #6b4d0a; }

.pull-quote {
    font-family: "Bagel Fat One", sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    color: var(--primary);
    border-left: none;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    padding: 24px 0;
    margin: var(--space-xl) 0;
    text-align: center;
    line-height: 1.3;
    background: transparent;
    font-style: normal;
}
.pull-quote cite { color: var(--muted-foreground); font-size: 14px; }

.check-list {
    list-style: none;
    padding-left: 0;
}
.check-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    font-size: 16px;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
}

.x-list { list-style: none; padding-left: 0; }
.x-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
}
.x-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: var(--muted);
    color: var(--destructive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* Trust badges row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 28px;
    padding: 24px;
    background: var(--muted);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}
.trust-row span {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.75;
}

/* Testimonial / social proof */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
}
.testimonial .stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 12px;
}
.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: var(--muted-foreground);
    margin-bottom: 14px;
}
.testimonial .author {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

/* Comparison table recommended column */
.comparison-table .recommended {
    background: rgba(232, 179, 57, 0.15) !important;
    position: relative;
}
.comparison-table th.recommended::after {
    content: "★";
    display: block;
    color: #6b4d0a;
}

/* Section content (SEO body) */
.seo-content {
    max-width: 860px;
    margin: 0 auto;
}
.seo-content h2 {
    margin-top: var(--space-xl);
}
.seo-content h3 {
    margin-top: var(--space-lg);
}
.seo-content p, .seo-content li { font-size: 17px; line-height: 1.75; }
.seo-content ul { margin-bottom: var(--space-md); }

/* ============================================
   TROPICAL CANVAS DECORATIONS
   ============================================ */
.tropical-canvas {
    position: relative;
}

.coin-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: var(--space-2xl) 0;
}
.coin-divider::before,
.coin-divider::after {
    content: "";
    flex: 1;
    max-width: 140px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.coin-divider span {
    font-size: 24px;
    color: var(--gold);
    animation: coin-spin 6s linear infinite;
}
@keyframes coin-spin {
    0% { transform: rotateY(0); }
    100% { transform: rotateY(360deg); }
}

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

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

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: #6b4d0a; }
.text-coral { color: #c2143a; }
.text-accent { color: #0d6b62; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-lg { margin-bottom: var(--space-lg); }

.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}
@media (min-width: 768px) {
    .two-col { grid-template-columns: 1fr 1fr; }
}
.two-col img { border-radius: var(--radius-lg); }

/* Redirect placeholder page */
.redirect-wrap {
    min-height: calc(100vh - var(--header-height) - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 20px;
}
.redirect-card {
    background: var(--card);
    border: 2px solid var(--muted);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    max-width: 520px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.redirect-card img {
    margin: 0 auto var(--space-md);
    animation: bison-bob 3s ease-in-out infinite;
    max-width: 200px;
}
.redirect-card .loader {
    display: inline-block;
    width: 48px;
    height: 6px;
    background: var(--muted);
    border-radius: 3px;
    overflow: hidden;
    margin-top: var(--space-md);
    position: relative;
}
.redirect-card .loader::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--secondary), var(--gold));
    animation: loader 1.5s ease-in-out infinite;
}
@keyframes loader {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}