:root {
    --gold-primary: #b4923a;
    --gold-light: #f7ef8a;
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --navy-presidential: #0a192f;
    --navy-deep: #050c18;
    --deep-navy: #0a1128;
    --trump-red: #e01a22;
    --border-gold: #c5a059;
    --premium-white: #f8fafc;
    --accent-gold: linear-gradient(110deg, #b4923a 0%, #f7ef8a 50%, #b4923a 100%);
    --bg-color: #020617;
    --text-color: #f8fafc;
    --card-bg: #0a192f;
    --card-border: #1e3a5f;
    --section-alt: #050c18;
    --footer-bg: #020617;
    --trust-bg: #050c18;
    --trust-border: #0a192f;
    --cta-section-bg: #0a192f;
    --cta-text: #f8fafc;
    --cta-sub: #93c5fd;
    --value-bg: #050c18;
    --value-text: #94a3b8;
    --value-item-bg: #0a192f;
    --stat-value: #f8fafc;
    --faq-text: #94a3b8;
}

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

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

html::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 15px solid transparent;
    border-image: var(--gold-gradient) 1;
    z-index: 9999;
    pointer-events: none;
}

body {
    font-family: 'Montserrat', 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color .3s ease, color .3s ease
}

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

a {
    color: inherit;
    text-decoration: none
}

button {
    cursor: pointer;
    border: none;
    font: inherit
}

::selection {
    background: #1e3a8a;
    color: #fff
}

:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 3px;
    border-radius: 4px
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

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

.gold-text {
    background: var(--accent-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 30s linear infinite
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e3a8a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 10000;
    transition: top .2s
}

.skip-link:focus {
    top: 0
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    padding: 20px 0
}

.nav.scrolled {
    background: rgba(5, 12, 24, .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
    border-bottom: 1px solid rgba(180, 146, 58, 0.2);
    padding: 12px 0
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.02em;
    font-size: .85rem;
    color: #fff;
    transition: color .4s
}

.nav.scrolled .nav-brand {
    color: #f8fafc
}

.nav-brand svg {
    width: 40px;
    height: 21px;
    flex-shrink: 0
}

.nav-links {
    display: none;
    gap: 32px;
    align-items: center
}

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

.nav-links a {
    font-size: .65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .75);
    transition: color .3s
}

.nav.scrolled .nav-links a {
    color: #f8fafc;
    font-weight: 900;
}

.nav-links a:hover,
.nav.scrolled .nav-links a:hover {
    color: #b4923a
}

.mobile-menu-toggle {
    display: none;
    background: none;
    color: #fff;
    padding: 5px;
    cursor: pointer;
    z-index: 101;
    border: none;
}

.nav.scrolled .mobile-menu-toggle {
    color: #f8fafc;
}

@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: block;
        margin-left: 15px;
    }

    .nav-actions .nav-cta {
        display: none !important;
    }

    .nav-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .nav-brand svg {
        width: 30px;
        height: 15px;
    }

    .nav-brand {
        font-size: 0.8rem;
    }

    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        background: rgba(10, 25, 47, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(255, 215, 0, 0.2);
        margin-top: 0;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex !important;
    }
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav.scrolled .nav-cta {
    background: rgba(10, 25, 47, 0.8);
    border-color: rgba(180, 146, 58, 0.5);
}

[data-theme="dark"] .nav.scrolled .nav-cta {
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.nav-cta:hover {
    background: rgba(180, 146, 58, 0.15);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 146, 58, 0.25), inset 0 0 15px rgba(255, 215, 0, 0.2);
}

.nav-cta:hover:before {
    left: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.theme-toggle-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .3);
    color: var(--gold-primary);
    padding: 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    width: 36px;
    height: 36px
}

.nav.scrolled .theme-toggle-btn {
    border-color: var(--card-border)
}

.theme-toggle-btn:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(180, 146, 58, .2)
}

.theme-toggle-btn svg {
    width: 18px;
    height: 18px
}

.theme-toggle-btn .moon {
    display: none
}

[data-theme="dark"] .theme-toggle-btn .sun {
    display: none
}

[data-theme="dark"] .theme-toggle-btn .moon {
    display: block
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    background-color: var(--deep-navy);
    color: #fff
}

/* gold page border is now on body::before */

.hero::after {
    content: '';
    position: absolute;
    inset: 15px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, .4), inset 0 0 80px rgba(180, 146, 58, .15), inset 0 0 120px rgba(255, 200, 50, .05);
    z-index: 20;
    pointer-events: none
}

.hero-flag {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgd2lkdGg9IjEyMzUiIGhlaWdodD0iNjUwIj4NCjxkZWZzPg0KPHBhdGggaWQ9InMiIHRyYW5zZm9ybT0ic2NhbGUoMjApIiBmaWxsPSIjZmZmIiBkPSJNMCwtMSBMMC41ODc3OSwwLjgwOTAyIEwtMC45NTEwNiwtMC4zMDkwMiBMMC45NTEwNiwtMC4zMDkwMiBMLTAuNTg3NzksMC44MDkwMnoiLz4NCjxnIGlkPSJzNyI+DQoJPGcgaWQ9InM2Ij4NCgkJPHVzZSB4bGluazpocmVmPSIjcyIgeD0iMzciIHk9IjM1Ii8+DQoJCTx1c2UgeGxpbms6aHJlZj0iI3MiIHg9IjEwNyIgeT0iMzUiLz4NCgkJPHVzZSB4bGluazpocmVmPSIjcyIgeD0iMTc3IiB5PSIzNSIvPg0KCQk8dXNlIHhsaW5rOmhyZWY9IiNzIiB4PSIyNDciIHk9IjM1Ii8+DQoJCTx1c2UgeGxpbms6aHJlZj0iI3MiIHg9IjMxNyIgeT0iMzUiLz4NCgkJPHVzZSB4bGluazpocmVmPSIjcyIgeD0iMzg3IiB5PSIzNSIvPg0KCTwvZz4NCgk8dXNlIHhsaW5rOmhyZWY9IiNzIiB4PSI0NTciIHk9IjM1Ii8+DQo8L2c+DQo8ZyBpZD0idSI+DQoJPHVzZSB4bGluazpocmVmPSIjczciLz4NCgk8dXNlIHhsaW5rOmhyZWY9IiNzNiIgeD0iMzUiIHk9IjQwIi8+DQoJPHVzZSB4bGluazpocmVmPSIjczciIHk9IjgwIi8+DQoJPHVzZSB4bGluazpocmVmPSIjczYiIHg9IjM1IiB5PSIxMjAiLz4NCgk8dXNlIHhsaW5rOmhyZWY9IiNzNyIgeT0iMTYwIi8+DQoJPHVzZSB4bGluazpocmVmPSIjczYiIHg9IjM1IiB5PSIyMDAiLz4NCgk8dXNlIHhsaW5rOmhyZWY9IiNzNyIgeT0iMjQwIi8+DQoJPHVzZSB4bGluazpocmVmPSIjczYiIHg9IjM1IiB5PSIyODAiLz4NCjwvZz4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIxMjM1IiBoZWlnaHQ9IjY1MCIgZmlsbD0iI0IzMTk0MiIvPg0KPHBhdGggc3Ryb2tlPSIjRkZGIiBzdHJva2Utd2lkdGg9IjUwIiBkPSJNMCw3NUgxMjM1TTAsMTc1SDEyMzVNMCwyNzVIMTIzNU0wLDM3NUgxMjM1TTAsNDc1SDEyMzVNMCw1NzVIMTIzNSIvPg0KPHJlY3Qgd2lkdGg9IjQ5NCIgaGVpZ2h0PSIzNTAiIGZpbGw9IiMwQTMxNjEiLz4NCjx1c2UgeGxpbms6aHJlZj0iI3UiLz4NCjwvc3ZnPg==') center/cover no-repeat;
    opacity: .45;
    z-index: 1
}

.hero-sunset {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 55%, rgba(255, 195, 0, .3) 0%, rgba(255, 160, 20, .2) 25%, rgba(255, 120, 0, .1) 45%, transparent 70%), radial-gradient(ellipse at 30% 65%, rgba(218, 165, 32, .15) 0%, rgba(180, 146, 58, .08) 40%, transparent 65%), radial-gradient(ellipse at 50% 30%, rgba(255, 223, 100, .08) 0%, transparent 50%), linear-gradient(180deg, rgba(255, 200, 50, .06) 0%, transparent 40%, rgba(10, 17, 40, .3) 100%);
    z-index: 2
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center 35%, rgba(10, 17, 40, .2) 0%, rgba(10, 17, 40, .5) 50%, rgba(10, 17, 40, .75) 100%);
    z-index: 4
}

.hero-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    z-index: 3
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 20px;
    width: 100%;
    color: #fff;
    z-index: 10;
    position: relative
}

.hero-eyebrow,
.hero-midline {
    font-family: 'Source Sans 3', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: .3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5)
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    color: var(--gold-primary);
    /* Reliable gold fallback */
    position: relative;
    z-index: 15;
    opacity: 1 !important;
    visibility: visible !important;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
    .hero-title {
        background: var(--gold-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, .3));
    }
}

.great-seal-container {
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.great-seal-container img {
    width: clamp(80px, 15vw, 120px);
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, .5)) drop-shadow(0 0 30px rgba(255, 215, 0, .2));
    transition: filter .3s ease
}

.seal-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: var(--gold-gradient);
    opacity: .6
}

.hero-tagline {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 500;
    margin-bottom: 30px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, .5));
}

.cta-button-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1em 2.2em;
    color: #fff;
    font-size: clamp(1rem, 3.5vw, 1.4rem);
    font-weight: 900;
    text-decoration: none;
    border-radius: 8px;
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(180, 146, 58, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    overflow: visible;
    /* Changed to visible to let the glow out */
    margin-bottom: 20px;
}

.cta-button-hero:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(30, 30, 40, 0.8);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.cta-glow-container {
    position: absolute;
    inset: -2px;
    border-radius: 9px;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.cta-button-hero:hover .cta-glow-container {
    opacity: 1;
}

.cta-glow-beam {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(from 0deg,
            #f7ef8a 0deg,
            #b4923a 10deg,
            transparent 11deg,
            transparent 30deg);
    filter: blur(15px);
    opacity: 0.8;
}

.cta-urgency {
    margin-top: 18px;
    font-size: clamp(.85rem, 2vw, 1.15rem);
    letter-spacing: .2em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 18px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, .6));
}

.hero-footer-traits {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    font-size: clamp(0.75rem, 2vw, 1rem);
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase
}

.hero-footer-traits span {
    display: flex;
    align-items: center
}

.hero-footer-traits span::before {
    content: "★";
    margin-right: 12px;
    color: gold;
    font-size: .8em
}

.hero-footer-traits span:first-child::before {
    content: ""
}

/* TRUST BAR */
.trust-bar {
    padding: 48px 0;
    background: var(--trust-bg);
    border-bottom: 1px solid var(--trust-border);
    transition: background .3s
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 48px;
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #64748b;
}

[data-theme="dark"] .trust-bar-inner {
    color: #94a3b8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: #22c55e
}

/* DATA SECTION */
.data-section {
    padding: 120px 0;
    background: var(--bg-color);
    position: relative;
    transition: background .3s
}

.section-eyebrow {
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: #2563eb;
    margin-bottom: 16px
}

[data-theme="dark"] .section-eyebrow {
    color: #60a5fa
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-color);
    line-height: 1.05;
    letter-spacing: .05em;
    text-transform: uppercase
}

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

.data-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px
}

@media(min-width:768px) {
    .data-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between
    }
}

.data-header-left {
    max-width: 560px
}

.data-header-right {
    max-width: 380px;
    color: var(--value-text);
    font-weight: 500;
    font-size: .95rem;
    line-height: 1.7
}

.data-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

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

.data-card {
    padding: 60px 45px;
    border-radius: 4px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1)
}

.data-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(180, 146, 58, .1) 0%, transparent 100%);
    pointer-events: none
}

.data-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-light);
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c) !important;
    box-shadow: 0 40px 100px rgba(180, 146, 58, 0.4);
    z-index: 20;
}

.data-card:hover .data-card-title,
.data-card:hover .data-card-desc {
    color: #050c18 !important;
    /* Dark navy for high contrast on gold */
}

.data-card:hover .data-card-icon {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    color: #050c18;
}

.data-card:hover .data-card-value {
    color: #050c18;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.data-card-icon {
    display: inline-flex;
    padding: 18px;
    background: rgba(255, 255, 255, .03);
    border-radius: 2px;
    border: 1px solid rgba(180, 146, 58, .3);
    margin-bottom: 32px;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.data-card-value {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    letter-spacing: .1em;
    line-height: 1;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.data-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.data-card-desc {
    font-size: .95rem;
    color: var(--value-text);
    font-weight: 400;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.data-card-desc a {
    color: var(--gold-primary);
    text-decoration: underline;
    text-underline-offset: 3px
}

/* VALUE SECTION */
.value-section {
    padding: 120px 0;
    /* background: var(--section-alt); */
    transition: background .3s
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center
}

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

.value-content {
    max-width: 520px
}

.value-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 24px
}

.value-text {
    color: var(--value-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px
}

.value-text a {
    color: var(--gold-primary);
    text-decoration: underline;
    text-underline-offset: 3px
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 16px;
    background: var(--value-item-bg);
    border-radius: 4px;
    border-left: 3px solid var(--gold-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .03);
    transition: all .3s ease
}

.value-item:hover {
    transform: translateX(8px);
    border-left-color: var(--gold-light)
}

.value-item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
    margin-top: 2px
}

.value-item-text {
    font-size: .95rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.5
}

.value-stats {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04)
}

.value-stat {
    padding: 20px 0;
    border-bottom: 1px solid var(--trust-border)
}

.value-stat-label {
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #94a3b8;
    margin-bottom: 4px
}

.value-stat-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--stat-value);
    letter-spacing: -.02em
}

.value-stat-value .highlight {
    color: #2563eb
}

[data-theme="dark"] .value-stat-value .highlight {
    color: #60a5fa
}

/* FAQ SECTION */
.faq-section {
    padding: 120px 0;
    /* background: var(--bg-color); */
    transition: background .3s
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--trust-border)
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    padding: 28px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    cursor: pointer;
    transition: color .3s
}

.faq-question:hover {
    color: #2563eb
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: #94a3b8;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .3s
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
    padding: 0
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 16px
}

.faq-answer p {
    font-size: .95rem;
    color: var(--faq-text);
    line-height: 1.8;
    font-weight: 500
}

/* CTA SECTION */
.cta-section {
    padding: 160px 0;
    background: var(--cta-section-bg);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: background .4s ease;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M15 4 L17.5 11.6 L25.5 11.6 L19 16.3 L21.5 23.9 L15 19.2 L8.5 23.9 L11 16.3 L4.5 11.6 L12.5 11.6 Z'/%3E%3C%2Fsvg%3E");
    -webkit-mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #94a3b8;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 56px;
    padding: 0 16px;
}

.cta-domain {
    display: inline-block;
    margin-top: 12px;
    font-weight: 900;
    color: #fff;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    word-break: break-word;
    /* Added for mobile overflow */
    overflow-wrap: anywhere;
    /* Ensure it stays in container */
}

@media (max-width: 480px) {
    .cta-domain {
        font-size: 1.05rem;
    }
}

.cta-domain::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--trump-red);
    box-shadow: 0 0 15px var(--trump-red);
    border-radius: 2px;
}

.cta-form-container {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

.cta-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1em 2.2em;
    padding: 20px 56px;
    color: #fff !important;
    font-size: 1.13rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 8px;
    background: rgba(20, 20, 25, 0.82) !important;
    border: 1px solid rgba(180, 146, 58, 0.4) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    overflow: visible;
    cursor: pointer;
}

.cta-submit:hover {
    transform: translateY(-5px) scale(1.01);
    background: rgba(30, 30, 40, 0.9) !important;
    border-color: rgba(255, 215, 0, 0.6) !important;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.cta-submit:hover .cta-glow-container {
    opacity: 1;
}

.cta-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.8s ease;
}

.cta-submit:hover::before {
    left: 100%;
}

.cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #64748b;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
}

.cta-badge svg {
    color: #22c55e;
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.4));
}

/* FOOTER */
.footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--card-border);
    color: var(--text-color);
    padding: 80px 0 48px;
    transition: background .3s
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--trust-border)
}

@media(min-width:768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between
    }
}

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

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase
}

.footer-desc {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #94a3b8;
    max-width: 320px;
    line-height: 1.8
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em
}

.footer-links-title {
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 900
}

.footer-links a {
    display: block;
    color: #94a3b8;
    padding: 6px 0;
    transition: color .3s
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-top: 32px;
    font-size: .55rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #cbd5e1
}

@media(min-width:768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between
    }
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-color);
    padding: 20px 24px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .08);
    border-top: 1px solid var(--card-border);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.cookie-banner.visible {
    transform: translateY(0)
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center
}

@media(min-width:768px) {
    .cookie-inner {
        flex-direction: row;
        justify-content: space-between
    }
}

.cookie-text {
    font-size: .85rem;
    color: var(--value-text);
    line-height: 1.6;
    max-width: 700px
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 700;
    transition: all .3s
}

.cookie-btn-accept {
    background: #0f172a;
    color: #fff
}

[data-theme="dark"] .cookie-btn-accept {
    background: var(--gold-primary);
    color: #0f172a
}

/* VIDEO BACKGROUND & PLAYER */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.42;
    pointer-events: none;
}

.hero-video-card {
    position: relative;
    margin: 36px auto 0;
    max-width: 680px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(180, 146, 58, 0.5);
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.08), 0 20px 60px rgba(0, 0, 0, 0.55);
    background: rgba(5, 12, 28, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-video-card video {
    display: block;
    width: 100%;
    height: auto;
}

.hero-video-gold-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0.6;
}