/*
 * Millioner Casino - Design System
 * Luxury dark theme with champagne gold accents
 * Fonts: Playfair Display (headings) + Manrope (body)
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --background: #14100c;
    --foreground: #f5ead6;
    --card: #1d1712;
    --card-foreground: #f5ead6;
    --popover: #100c09;
    --popover-foreground: #f5ead6;
    --primary: #d4af37;
    --primary-hover: #e6c251;
    --primary-foreground: #171208;
    --secondary: #6b4423;
    --secondary-foreground: #f5ead6;
    --muted: #2a221b;
    --muted-foreground: #b8a994;
    --accent: #8e1e2f;
    --accent-foreground: #f7e8dc;
    --destructive: #dd1d47;
    --destructive-foreground: #fff7ed;
    --border: #6b5324;
    --border-soft: #3d3020;
    --input: #201912;
    --ring: #d4af37;

    /* Typography */
    --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 56px;
    --space-2xl: 96px;

    /* Container */
    --max-width: 1200px;

    /* Transitions */
    --transition: 0.25s ease-out;
}

/* Dark theme tokens identical (single fixed theme, no switcher) */
.dark {
    --background: #14100c;
    --foreground: #f5ead6;
    --card: #1d1712;
    --card-foreground: #f5ead6;
    --popover: #100c09;
    --popover-foreground: #f5ead6;
    --primary: #d4af37;
    --primary-hover: #e6c251;
    --primary-foreground: #171208;
    --secondary: #6b4423;
    --secondary-foreground: #f5ead6;
    --muted: #2a221b;
    --muted-foreground: #b8a994;
    --accent: #8e1e2f;
    --accent-foreground: #f7e8dc;
    --destructive: #dd1d47;
    --destructive-foreground: #fff7ed;
    --border: #6b5324;
    --border-soft: #3d3020;
    --input: #201912;
    --ring: #d4af37;
}

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

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

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

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code, .code-block code {
    display: block;
    min-width: 0;
}

.table-wrapper, [class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

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

input, textarea, select {
    max-width: 100%;
}

section {
    overflow: clip;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    text-decoration: underline;
}

ul, ol {
    padding-left: 24px;
    margin: 0 0 24px;
}

li {
    margin-bottom: 8px;
}

img {
    display: block;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    margin: 0 0 16px;
    line-height: 1.2;
    color: var(--foreground);
}

h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 21px;
    font-weight: 500;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

p {
    margin: 0 0 24px;
}

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

/* Inline gold highlight for headlines */
.gold-italic {
    color: var(--primary);
    font-style: italic;
}

.gold-text {
    color: var(--primary);
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.content-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .content-wrapper {
        padding: 0 24px;
    }
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 64px;
    }
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--muted-foreground);
    max-width: 60ch;
    margin: 0 auto;
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}

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

/* ============================================
   GOLD FRAME & DIVIDERS
   Signature art-deco hairline frame with corner ornaments
   ============================================ */
.gold-frame {
    position: relative;
    border: 1px solid var(--border);
}

.gold-frame::before,
.gold-frame::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid var(--primary);
    pointer-events: none;
}

.gold-frame::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.gold-frame::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.gold-divider {
    position: relative;
    height: 1px;
    background: var(--border-soft);
    margin: var(--space-xl) 0;
}

@media (min-width: 1024px) {
    .gold-divider {
        margin: var(--space-2xl) 0;
    }
}

.gold-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    background: var(--primary-hover);
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-lg {
    min-height: 52px;
    padding: 0 40px;
    font-size: 17px;
}

/* Shimmer sweep on primary buttons */
.btn__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    pointer-events: none;
    animation: btn-shimmer 4s ease-in-out infinite;
}

@keyframes btn-shimmer {
    0% { left: -100%; }
    40%, 100% { left: 100%; }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 64px;
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom-color: var(--border);
}

@media (min-width: 1024px) {
    .site-header {
        height: 80px;
        padding: 0 24px;
        background: rgba(20, 16, 12, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .site-header.is-scrolled {
        background: rgba(20, 16, 12, 0.95);
    }
}

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

.site-brand:hover {
    text-decoration: none;
}

.site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
    .site-brand__text {
        font-size: 20px;
    }
}

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

/* Primary nav - mobile drawer by default */
.primary-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    flex-direction: column;
    padding: 24px 16px;
}

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

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
}

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

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 0;
    color: var(--foreground);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    font-family: var(--font-sans);
}

.nav-list a:hover {
    color: var(--primary);
    text-decoration: none;
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.nav-cta .btn {
    width: 100%;
}

/* Desktop nav */
@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        position: static;
        background: none;
        padding: 0;
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        gap: 32px;
        margin: 0;
    }

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

    .nav-list a {
        min-height: auto;
        padding: 0;
        font-size: 15px;
    }

    .nav-cta {
        flex-direction: row;
        gap: 12px;
        margin-top: 0;
    }

    .nav-cta .btn {
        width: auto;
        padding: 0 20px;
        min-height: 44px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--popover);
    border-top: 1px solid var(--border-soft);
    padding: var(--space-xl) 16px 24px;
}

@media (min-width: 1024px) {
    .site-footer {
        padding: 80px 24px 24px;
    }
}

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

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

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

.footer-brand {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

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

.footer-link {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

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

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

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    align-items: center;
}

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

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

/* ============================================
   TRUST BADGES & PAYMENT METHODS
   ============================================ */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 500;
    font-family: var(--font-sans);
}

.trust-badge::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid var(--accent);
    color: var(--accent-foreground);
    background: var(--accent);
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    font-family: var(--font-sans);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    filter: grayscale(0.8);
    opacity: 0.9;
    font-family: var(--font-sans);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 12, 0.6) 0%, rgba(20, 16, 12, 0.88) 100%);
}

.hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--space-xl) 16px;
}

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

.hero__frame {
    max-width: 700px;
    position: relative;
    padding: var(--space-md);
    border: 1px solid var(--border);
    background: rgba(20, 16, 12, 0.75);
}

@media (min-width: 1024px) {
    .hero__frame {
        padding: var(--space-lg) var(--space-lg);
    }
}

.hero__title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .hero__title { font-size: 48px; }
}

.hero__subtitle {
    color: var(--muted-foreground);
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 60ch;
}

@media (min-width: 1024px) {
    .hero__subtitle { font-size: 17px; }
}

.hero__offer {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-family: var(--font-sans);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__cta .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .hero__cta .btn {
        width: auto;
    }
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block {
    position: relative;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: var(--space-lg) var(--space-md);
}

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

@media (min-width: 1024px) {
    .stat-block {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0;
        padding: var(--space-lg) var(--space-md);
    }
}

.stat-block__diamond {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--primary);
    z-index: 1;
}

.stat-block__diamond--top {
    top: -6px;
}

.stat-block__diamond--bottom {
    bottom: -6px;
}

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

@media (min-width: 1024px) {
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: var(--border-soft);
    }
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--primary);
    display: block;
    line-height: 1.1;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .stat-number { font-size: 44px; }
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    display: block;
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

/* 2-column grid variant */
.feature-card-grid--2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

/* 4-column grid variant */
.feature-card-grid--4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

.feature-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border-soft);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    min-width: 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .feature-card { padding: var(--space-lg); }
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.12);
}

.feature-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 2;
    font-family: var(--font-sans);
}

.feature-card__image-wrap {
    margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-md);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .feature-card__image-wrap {
        margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) var(--space-lg);
    }
}

.feature-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

@media (min-width: 1024px) {
    .feature-card__image { height: 240px; }
}

.feature-card__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feature-card__icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.feature-card__title {
    font-family: var(--font-serif);
    font-size: 21px;
    color: var(--foreground);
    margin-bottom: 12px;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .feature-card__title { font-size: 24px; }
}

.feature-card__desc {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    max-width: 70ch;
}

.feature-card__link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    align-self: flex-start;
}

.feature-card__link:hover {
    text-decoration: none;
    color: var(--primary-hover);
}

.feature-card__link .arrow {
    transition: transform var(--transition);
}

.feature-card__link:hover .arrow {
    transform: translateX(4px);
}

/* ============================================
   HOW-TO STEPS
   ============================================ */
.how-to-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.how-to-steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: var(--border-soft);
}

.step-item {
    display: flex;
    gap: var(--space-md);
    padding: 12px 0;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    transform: rotate(45deg);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    background: var(--background);
}

.step-number span {
    transform: rotate(-45deg);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.step-content {
    padding-top: 6px;
    min-width: 0;
}

.step-title {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

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

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-soft);
    transition: background var(--transition), border-color var(--transition);
}

.faq-item[open] {
    background: rgba(107, 68, 35, 0.08);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0 var(--space-md);
    margin-bottom: 8px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 16px 0;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--foreground);
    font-size: 16px;
    list-style: none;
    gap: var(--space-sm);
}

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

.faq-question span:first-child {
    flex: 1;
    min-width: 0;
}

.faq-chevron {
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--transition);
    display: flex;
    align-items: center;
}

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

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

.faq-answer p {
    margin: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: var(--space-xl) 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.cta-banner__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    max-width: 100%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__frame {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
    border: 1px solid var(--border);
    background: rgba(29, 23, 18, 0.6);
}

.cta-banner__headline {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--foreground);
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .cta-banner__headline { font-size: 36px; }
}

.cta-banner__subtext {
    color: var(--muted-foreground);
    margin-bottom: 32px;
    font-size: 16px;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__btn {
    min-height: 52px;
    font-size: 17px;
    padding: 0 40px;
    width: 100%;
    max-width: 360px;
}

@media (min-width: 640px) {
    .cta-banner__btn { width: auto; }
}

.cta-banner__micro {
    margin-top: var(--space-sm);
    font-size: 13px;
    color: var(--muted-foreground);
    font-family: var(--font-sans);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: start;
}

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

.testimonial-card {
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border-soft);
    min-width: 0;
}

.testimonial-card__quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--foreground);
    line-height: 1.5;
    margin-bottom: 16px;
}

.testimonial-card__quote::before {
    content: '\201C';
    color: var(--primary);
    font-size: 28px;
    line-height: 0;
    vertical-align: -6px;
    margin-right: 4px;
}

.testimonial-card__author {
    color: var(--muted-foreground);
    font-size: 14px;
    font-family: var(--font-sans);
    margin-bottom: 0;
}

.testimonial-card__author strong {
    color: var(--foreground);
    font-weight: 600;
}

/* ============================================
   CALLOUT & SUMMARY BOXES
   ============================================ */
.callout {
    border-left: 3px solid var(--primary);
    background: var(--muted);
    padding: var(--space-md);
    border-radius: 0 8px 8px 0;
    margin: var(--space-md) 0;
    max-width: 800px;
}

.callout--accent {
    border-left-color: var(--accent);
}

.callout--warning {
    border-left-color: var(--accent);
    background: rgba(142, 30, 47, 0.08);
}

.callout__title {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: 8px;
    font-weight: 600;
}

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

.summary-box {
    border: 1px solid var(--border);
    background: var(--card);
    padding: var(--space-md);
    border-radius: 8px;
    margin: var(--space-md) 0;
    max-width: 800px;
}

.summary-box__title {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

/* ============================================
   PULL QUOTE
   ============================================ */
.pull-quote {
    font-family: var(--font-serif);
    font-size: 22px;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.4;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    margin: var(--space-lg) auto;
    text-align: center;
    max-width: 800px;
}

@media (min-width: 1024px) {
    .pull-quote { font-size: 26px; }
}

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

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    margin: var(--space-md) 0;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
}

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

.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-soft);
    font-size: 15px;
    color: var(--muted-foreground);
}

.comparison-table th {
    font-family: var(--font-serif);
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    background: var(--card);
}

.comparison-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.04);
}

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

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-sans);
}

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

.badge--ruby {
    background: var(--accent);
    color: var(--accent-foreground);
}

/* ============================================
   PROSE (SEO text blocks)
   ============================================ */
.prose {
    max-width: 800px;
    margin: 0 auto;
}

.prose p {
    margin-bottom: 24px;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.7;
}

.prose p strong {
    color: var(--foreground);
    font-weight: 600;
}

.prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(212, 175, 55, 0.4);
}

.prose a:hover {
    text-decoration-color: var(--primary);
    color: var(--primary-hover);
}

.prose ul,
.prose ol {
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.7;
    padding-left: 24px;
    margin-bottom: 24px;
}

.prose li {
    margin-bottom: 8px;
}

.prose h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

/* ============================================
   BONUS TERMS LIST
   ============================================ */
.bonus-terms {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
    max-width: 800px;
}

.bonus-terms li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 15px;
    color: var(--muted-foreground);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.bonus-terms li::before {
    content: '\25C6';
    color: var(--primary);
    flex-shrink: 0;
    font-size: 10px;
    margin-top: 6px;
}

/* ============================================
   SPLIT LAYOUT (media + content side by side)
   ============================================ */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.split-layout__media {
    display: flex;
    justify-content: center;
}

.split-layout__img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

/* ============================================
   SITEMAP LIST
   ============================================ */
.sitemap-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

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

.sitemap-item {
    background: var(--card);
    padding: var(--space-md);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    min-width: 0;
}

@media (min-width: 1024px) {
    .sitemap-item { padding: var(--space-lg); }
}

.sitemap-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.12);
}

.sitemap-item__title {
    font-size: 21px;
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .sitemap-item__title { font-size: 24px; }
}

.sitemap-item__title a {
    color: var(--foreground);
    text-decoration: none;
    transition: color var(--transition);
}

.sitemap-item__title a:hover {
    color: var(--primary);
    text-decoration: none;
}

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

/* ============================================
   ANIMATIONS & MOTION
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

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

@keyframes btn-shimmer {
    0% { left: -100%; }
    40%, 100% { left: 100%; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.full-width { width: 100%; }

.sr-only,
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

    .btn__shimmer {
        display: none;
    }

    html {
        scroll-behavior: auto;
    }
}
