/*
 * Cleobetra Casino - Design System
 * Dark luxury Egyptian theme: deep navy-black, gold, turquoise
 * Fonts: Cinzel (headlines), Outfit (body)
 * Mobile-first responsive design
 */

/* ============================================
   DESIGN TOKENS
   Single dark theme - no light/dark toggle per brief
   ============================================ */

:root {
    /* Backgrounds */
    --bg-base: #07090f;
    --bg-deep: #0a0e1a;
    --bg-navy: #0f1729;
    --bg-card: #131c30;
    --bg-card-hover: #182342;
    --bg-elevated: #1a2540;

    /* Foreground / Text */
    --fg-primary: #fdf6e3;
    --fg-secondary: #d4c5a0;
    --fg-muted: #9a8c6e;
    --fg-faint: #897a5f;

    /* Brand Colors */
    --gold: #d4af37;
    --gold-bright: #f0c850;
    --gold-deep: #b8941f;
    --turquoise: #06b6d4;
    --turquoise-bright: #22d3ee;
    --turquoise-deep: #0891b2;

    /* Accents */
    --accent-crimson: #c0392b;
    --accent-sand: #c9a96e;

    /* Borders */
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-gold-strong: rgba(212, 175, 55, 0.5);
    --border-turquoise: rgba(6, 182, 212, 0.25);
    --border-subtle: rgba(212, 197, 160, 0.12);

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
    --shadow-gold-hover: 0 0 32px rgba(212, 175, 55, 0.3);
    --shadow-turquoise: 0 0 20px rgba(6, 182, 212, 0.15);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #f0c850 0%, #d4af37 50%, #b8941f 100%);
    --gradient-gold-text: linear-gradient(180deg, #f5d061 0%, #d4af37 100%);
    --gradient-navy: linear-gradient(180deg, #0f1729 0%, #0a0e1a 100%);
    --gradient-hero: linear-gradient(180deg, rgba(7,9,15,0.3) 0%, rgba(7,9,15,0.85) 60%, rgba(7,9,15,1) 100%);
    --gradient-cta: linear-gradient(180deg, #0a0e1a 0%, #0f1729 50%, #0a0e1a 100%);

    /* Typography */
    --font-heading: "Cinzel", Georgia, serif;
    --font-body: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 120px;

    /* Layout */
    --max-width: 1200px;
    --header-height: 72px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ============================================
   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: 16px;
    line-height: 1.6;
    color: var(--fg-primary);
    background: var(--bg-base);
    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(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

section {
    overflow: clip;
}

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

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

.section-padding {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

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

.gold-text {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
}

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

/* ============================================
   TYPOGRAPHY SYSTEM
   Cinzel for headlines, Outfit for body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--fg-primary);
}

h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 600;
}

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

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

p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--fg-secondary);
    margin-bottom: var(--space-md);
}

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

.section-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--turquoise-bright);
    display: block;
    margin-bottom: var(--space-sm);
}

/* ============================================
   BUTTONS
   Gold primary, outline secondary, turquoise glow on hover
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 32px;
    min-height: 44px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-deep);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    color: var(--bg-deep);
    box-shadow: 0 0 24px rgba(6, 182, 212, 0.4), 0 4px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    color: var(--fg-primary);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-bright);
}

.btn-turquoise {
    background: transparent;
    color: var(--turquoise-bright);
    border: 1.5px solid var(--turquoise);
}

.btn-turquoise:hover {
    color: var(--bg-deep);
    background: var(--turquoise);
}

/* ============================================
   HEADER & NAVIGATION
   Sticky translucent header with dark navy backdrop
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 9, 15, 0.96);
    border-bottom: 1px solid var(--border-gold);
}

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

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

.site-brand .logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

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

.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-xl);
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--fg-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-ctas {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-login {
    font-size: 14px;
    padding: 10px 24px;
}

.nav-cta {
    font-size: 14px;
    padding: 10px 24px;
}

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) 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(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-deep);
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
        padding: var(--space-xl) var(--space-lg);
        overflow-y: auto;
        display: none;
        border-top: 1px solid var(--border-gold);
        z-index: 999;
    }

    .primary-nav.is-open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-item {
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        font-size: 18px;
        padding: var(--space-md) 0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-ctas {
        flex-direction: column;
        gap: var(--space-md);
        margin-top: var(--space-lg);
    }

    .nav-login, .nav-cta {
        width: 100%;
        font-size: 16px;
        padding: 16px;
        text-align: center;
    }
}

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

    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   FOOTER
   Four-column layout collapsing to stacked on mobile
   ============================================ */

.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-gold);
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-lg);
}

.footer-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

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

.footer-link {
    font-size: 15px;
    color: var(--fg-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-text {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--fg-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.trust-badges {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-copyright {
    font-size: 14px;
    color: var(--fg-muted);
}

.footer-disclaimer {
    font-size: 13px;
    color: var(--fg-faint);
    line-height: 1.5;
}

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

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

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

/* ============================================
   HERO SECTION
   Full-bleed cinematic banner with gradient overlay
   ============================================ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
}

.hero-title {
    font-size: clamp(28px, 6vw, 52px);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtext {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--fg-primary);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

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

.hero-micro-copy {
    font-size: 13px;
    color: var(--fg-muted);
    margin-top: var(--space-sm);
}

@media (min-width: 768px) {
    .hero {
        min-height: 700px;
    }

    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

/* ============================================
   CTA BANNER COMPONENT
   Full-width conversion section with spark particles
   ============================================ */

.cta-banner-section {
    position: relative;
    background: var(--gradient-cta);
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    overflow: clip;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.cta-banner-sparks {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, var(--gold-bright), transparent),
        radial-gradient(1px 1px at 60% 70%, var(--gold-bright), transparent),
        radial-gradient(1px 1px at 80% 20%, var(--gold), transparent),
        radial-gradient(2px 2px at 40% 80%, var(--gold-bright), transparent),
        radial-gradient(1px 1px at 10% 60%, var(--gold), transparent),
        radial-gradient(1px 1px at 90% 50%, var(--gold-bright), transparent),
        radial-gradient(1px 1px at 50% 10%, var(--gold), transparent),
        radial-gradient(2px 2px at 70% 40%, var(--gold-bright), transparent);
    background-size: 100% 100%;
    opacity: 0.4;
    pointer-events: none;
}

.cta-banner-hieroglyphs {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(212, 175, 55, 0.03) 80px,
        rgba(212, 175, 55, 0.03) 82px
    );
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-headline {
    font-size: clamp(24px, 5vw, 38px);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-banner-subtext {
    font-size: 16px;
    color: var(--fg-primary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

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

.cta-micro-copy {
    font-size: 12px;
    color: var(--fg-muted);
    margin-top: var(--space-md);
}

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

/* ============================================
   STAT BLOCK COMPONENT
   Horizontal metrics with gold gradient numbers
   ============================================ */

.stat-block-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    background: var(--bg-navy);
    border-top: 2px solid var(--turquoise);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--transition-normal);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: var(--space-xs);
    line-height: 1;
}

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

.stat-source {
    font-size: 12px;
    color: var(--fg-muted);
    margin-top: var(--space-xs);
}

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

    .stat-item {
        flex: 1;
        position: relative;
    }

    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: var(--border-gold);
    }
}

/* ============================================
   CARD GRID SYSTEM
   Dark navy cards with gold/turquoise accents
   ============================================ */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    min-width: 0;
}

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

.card-featured {
    border-color: var(--border-gold-strong);
    background: var(--bg-card-hover);
}

.card-turquoise {
    border-top: 2px solid var(--turquoise);
}

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

.card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--fg-primary);
    margin-bottom: var(--space-sm);
}

.card-description {
    font-size: 14px;
    color: var(--fg-secondary);
    line-height: 1.6;
}

.card-icon {
    font-size: 36px;
    margin-bottom: var(--space-md);
    display: block;
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================
   GAME CATEGORY CARDS
   Specific styling for game preview cards
   ============================================ */

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-normal);
    min-width: 0;
}

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

.game-card-icon {
    margin-bottom: var(--space-md);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.game-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--fg-primary);
    margin-bottom: var(--space-xs);
}

.game-card-count {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.game-card-desc {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.5;
}

/* ============================================
   VIP PROGRESSION BAR
   Stepped pyramid visualization with 5 tiers
   ============================================ */

.vip-progression {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.vip-tier {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    transition: all var(--transition-normal);
}

.vip-tier:hover {
    border-color: var(--border-gold-strong);
    box-shadow: var(--shadow-gold);
}

.vip-tier-current {
    border-color: var(--turquoise);
    box-shadow: var(--shadow-turquoise);
}

.vip-tier-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    min-width: 40px;
    text-align: center;
}

.vip-tier-info {
    flex: 1;
    min-width: 0;
}

.vip-tier-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--fg-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vip-tier-benefits {
    font-size: 13px;
    color: var(--fg-muted);
    margin-top: 2px;
}

@media (min-width: 768px) {
    .vip-progression {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: var(--space-sm);
    }

    .vip-tier {
        flex-direction: column;
        text-align: center;
        flex: 1;
        max-width: 180px;
        padding: var(--space-md);
    }
}

/* ============================================
   PAYMENT METHODS DISPLAY
   Logo strip + two-column detail layout
   ============================================ */

.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.payment-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 56px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--fg-secondary);
    text-align: center;
    transition: all var(--transition-normal);
}

.payment-logo-card:hover {
    border-color: var(--border-gold-strong);
    box-shadow: var(--shadow-gold);
}

.payment-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

.payment-detail-col h3 {
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.payment-detail-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.payment-detail-col li {
    font-size: 14px;
    color: var(--fg-secondary);
    display: flex;
    justify-content: space-between;
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-subtle);
}

/* ============================================
   TRUST & SECURITY SECTION
   Two-column shield + license layout
   ============================================ */

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-turquoise);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
}

.trust-card-icon {
    margin-bottom: var(--space-md);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.trust-card h3 {
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.trust-card p {
    font-size: 14px;
    color: var(--fg-secondary);
    line-height: 1.6;
}

.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
}

.trust-badge-large {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 56px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--fg-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
}

/* ============================================
   FAQ ACCORDION
   Native <details>/<summary> with styled chevron
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    cursor: pointer;
    list-style: none;
    min-height: 44px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--fg-primary);
    transition: color var(--transition-fast);
}

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

.faq-question:hover {
    color: var(--gold);
}

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

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

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

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 16px;
    color: var(--fg-secondary);
    line-height: 1.7;
    background: var(--bg-navy);
}

/* ============================================
   COMPARISON TABLE
   Styled data table with gold header row
   ============================================ */

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: var(--space-xl) 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gold);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-navy);
    min-width: 500px;
}

.comparison-table thead tr {
    background: var(--bg-elevated);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-align: left;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 2px solid var(--border-gold);
    white-space: nowrap;
}

.comparison-table td {
    font-size: 14px;
    color: var(--fg-secondary);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-turquoise);
}

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

.comparison-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.comparison-table .highlight-col {
    background: rgba(212, 175, 55, 0.05);
}

/* ============================================
   ENGAGEMENT PATTERNS
   Summary box, callout, pull quote, stat highlight
   ============================================ */

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

.summary-box-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.summary-box p {
    font-size: 15px;
    color: var(--fg-secondary);
    margin-bottom: 0;
}

/* Callout / Highlight Box */
.callout {
    background: var(--bg-card);
    border: 1px solid var(--border-turquoise);
    border-left: 4px solid var(--turquoise);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.callout-icon {
    flex-shrink: 0;
}

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

.callout-content p {
    font-size: 15px;
    color: var(--fg-secondary);
    margin-bottom: 0;
}

/* Pull Quote */
.pull-quote {
    position: relative;
    background: var(--bg-navy);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    text-align: center;
    border-top: 2px solid var(--border-gold);
    border-bottom: 2px solid var(--border-gold);
}

.pull-quote-text {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    color: var(--fg-primary);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: var(--space-md);
}

.pull-quote cite {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gold);
    font-style: normal;
}

/* Stat Highlight (inline) */
.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-xl);
    margin: var(--space-md) 0;
}

.stat-highlight-number {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-highlight-label {
    font-size: 13px;
    color: var(--turquoise-bright);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

/* ============================================
   CONTENT SECTIONS
   General article/prose styling
   ============================================ */

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

.content-section-alt {
    padding: var(--space-2xl) 0;
    background: var(--bg-deep);
}

.content-section .container {
    max-width: var(--max-width);
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.article-body h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--gold);
}

.article-body p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.article-body ul, .article-body ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.article-body li {
    margin-bottom: var(--space-sm);
    color: var(--fg-secondary);
    line-height: 1.6;
}

.article-body strong {
    color: var(--gold);
    font-weight: 600;
}

.article-body a {
    color: var(--turquoise-bright);
    text-decoration: underline;
    text-decoration-color: var(--border-turquoise);
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

.article-body a:hover {
    color: var(--turquoise);
    text-decoration-color: var(--turquoise);
}

/* ============================================
   SECTION HEADER
   Standardized section heading block
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 16px;
    color: var(--fg-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   BADGE / TAG
   Small inline labels
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border: 1px solid var(--border-gold);
}

.badge-turquoise {
    background: rgba(6, 182, 212, 0.15);
    color: var(--turquoise-bright);
    border: 1px solid var(--border-turquoise);
}

.badge-demo {
    background: rgba(6, 182, 212, 0.15);
    color: var(--turquoise-bright);
    border: 1px solid var(--border-turquoise);
}

/* ============================================
   SITEMAP PAGE
   Page list with gold left-border accent cards
   ============================================ */

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.sitemap-entry {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: border-color var(--transition-normal);
}

.sitemap-entry:hover {
    border-color: var(--border-gold-strong);
}

.sitemap-entry-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--fg-primary);
    margin-bottom: var(--space-xs);
}

.sitemap-entry-url {
    font-family: "Outfit", monospace;
    font-size: 14px;
    color: var(--turquoise-bright);
    margin-bottom: var(--space-sm);
    word-break: break-all;
}

.sitemap-entry-desc {
    font-size: 16px;
    color: var(--fg-secondary);
    line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   Scroll reveal with fade-in slide-up
   ============================================ */

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

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

/* ============================================
   DECORATIVE ELEMENTS
   Hieroglyph pattern, scarab divider
   ============================================ */

.hieroglyph-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(212, 175, 55, 0.02) 40px,
        rgba(212, 175, 55, 0.02) 42px
    );
    pointer-events: none;
    z-index: 0;
}

.scarab-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.scarab-divider::before,
.scarab-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.scarab-divider-icon {
    font-size: 24px;
    color: var(--gold);
}

/* ============================================
   RESPONSIVE SECTION SPACING
   120px desktop / 64px mobile
   ============================================ */

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

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

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

/* ============================================
   ACCESSIBILITY
   Focus states and reduced motion
   ============================================ */

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

.btn:focus-visible {
    outline: 2px solid var(--turquoise-bright);
    outline-offset: 3px;
}

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

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle,
    .cta-banner-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
