/* Simplified Financial Frontier - Black & Gold Theme */

:root {
    --gold-primary: #C9A227;
    --gold-light: #E5C76B;
    --gold-dark: #8B7025;
    --gold-gradient: linear-gradient(135deg, #C9A227 0%, #E5C76B 50%, #C9A227 100%);
    --black-primary: #0A0A0A;
    --black-secondary: #121212;
    --black-card: #1A1A1A;
    --black-border: #2A2A2A;
    --white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-muted: #9E9E9E;
    --success: #4CAF50;
    --danger: #F44336;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--black-primary);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--black-border);
}

.ticker-bar {
    background: var(--black-secondary);
    border-bottom: 1px solid var(--black-border);
    padding: 0;
    overflow: hidden;
    min-height: 46px;
    width: 100%;
    position: relative;
    z-index: 100;
    display: block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.ticker-bar .tradingview-widget-container {
    width: 100%;
    height: 46px;
    display: block;
    position: relative;
}

.ticker-bar .tradingview-widget-container__widget {
    width: 100%;
    height: 100%;
    display: block;
}

.ticker-bar .tradingview-widget-container__widget iframe {
    width: 100% !important;
    height: 46px !important;
    display: block;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.logo img {
    height: 80px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.6));
    transform: scale(1.02);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.1);
}

.nav-link.active {
    color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.15);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold-primary);
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--black-primary);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

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

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 170px; /* 90px nav + 46px ticker + 34px spacing */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(10, 10, 10, 0.9) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 40%),
        url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-chart {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
}

/* Stats Bar */
.stats-bar {
    background:
        linear-gradient(90deg, rgba(18, 18, 18, 0.98) 0%, rgba(18, 18, 18, 0.95) 50%, rgba(18, 18, 18, 0.98) 100%),
        url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    padding: 2rem 0;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-dark {
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.97) 0%, rgba(18, 18, 18, 0.95) 100%),
        url('https://images.unsplash.com/photo-1642790106117-e829e14a795f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Asset Classes Cards */
.asset-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.asset-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.asset-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.asset-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asset-icon svg {
    width: 40px;
    height: 40px;
    color: var(--gold-primary);
}

.asset-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.asset-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--gold-primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* TradingView Widget Containers */
.widget-container {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem 0;
}

.widget-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.widget-header h4 {
    font-size: 1rem;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--black-border);
    padding-bottom: 0.5rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.1);
}

.tab-btn.active {
    color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.15);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--black-secondary);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Withdrawal Form */
.withdrawal-form-section {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.withdrawal-form-section h3 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.withdrawal-form-section .form-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .withdrawal-form-section {
        padding: 1.5rem;
    }
}

.form-input-currency {
    position: relative;
}

.form-input-currency .currency-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-weight: 600;
}

.form-input-currency .form-input {
    padding-left: 2.5rem;
}

textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--black-border);
}

.btn-submit {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Footer */
.footer {
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.97) 0%, rgba(10, 10, 10, 0.99) 100%),
        url('https://images.unsplash.com/photo-1620321023374-d1a68fbc720d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--gold-dark);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
    border-radius: 10px;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.5));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer responsive - tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-brand img {
        margin: 0 auto 1rem;
        display: block;
    }

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

    .footer-links ul {
        padding: 0;
    }
}

/* Footer responsive - mobile */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        margin: 0 auto 1rem;
        width: 100%;
    }

    .footer-brand img {
        margin: 0 auto 1rem;
        display: block;
    }

    .footer-links {
        text-align: center;
        width: 100%;
        padding: 0 1rem;
    }

    .footer-links h4 {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 0;
        width: auto;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .risk-disclaimer {
        padding: 1.5rem 0;
    }

    .risk-disclaimer h5 {
        font-size: 0.85rem;
    }

    .risk-disclaimer p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

.footer-links h4 {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

/* Risk Disclaimer */
.risk-disclaimer {
    background: var(--black-primary);
    border-top: 1px solid var(--black-border);
    padding: 2rem 0;
}

.risk-disclaimer h5 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.risk-disclaimer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-bottom {
    background: var(--black-primary);
    border-top: 1px solid var(--black-border);
    padding: 1.5rem 0;
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Page Hero - see enhanced definition below */

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--black-border);
}

.content-section h3 {
    margin: 2rem 0 1rem;
    color: var(--gold-primary);
}

.content-section p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.content-section ul {
    margin: 1rem 0 1rem 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Alert Boxes */
.alert {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #FFC107;
}

.alert-info {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
    color: #2196F3;
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.contact-card svg {
    width: 48px;
    height: 48px;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
}

.contact-card a {
    color: var(--gold-primary);
    text-decoration: none;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation when menu is active */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive - Large screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-text p {
        font-size: 1.35rem;
    }

    .hero-chart {
        height: 500px;
    }

    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }

    .stat-value {
        font-size: 3rem;
    }

    .page-hero h1 {
        font-size: 3.5rem;
    }
}

/* Extra large screens (1600px+) */
@media (min-width: 1600px) {
    .container {
        max-width: 1800px;
    }

    .hero-content {
        gap: 6rem;
    }

    .features-grid {
        gap: 3rem;
    }

    .asset-grid {
        gap: 2rem;
    }
}

/* Responsive - Medium screens */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-chart {
        max-width: 600px;
        margin: 0 auto;
    }

    .asset-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-container .btn-gold {
        display: none;
    }

    .main-nav {
        display: flex;
        position: fixed;
        top: 136px; /* 90px nav + 46px ticker */
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 136px);
        background: var(--black-primary);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 999;
        list-style: none;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
        list-style: none;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.25rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(26, 26, 26, 0.5);
        padding-left: 1rem;
        min-width: unset;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 8px;
        margin-top: 0.5rem;
    }

    .dropdown-menu.show,
    .nav-item:hover .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .hero {
        padding-top: 170px; /* 90px nav + 46px ticker + 34px spacing */
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-chart {
        height: 350px;
    }

    .asset-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section {
        padding: 3rem 0;
    }

    .page-hero {
        padding: 180px 0 60px; /* 90px nav + 46px ticker + spacing */
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-item::after {
        display: none;
    }

    /* Form mobile styles */
    form > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .widget-container {
        margin: 1rem 0;
    }

    .content-section {
        margin-bottom: 2rem;
    }

    .alert {
        padding: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.35rem; }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .logo img {
        height: 60px;
    }

    .nav-container {
        padding: 0 1rem;
        height: 80px;
    }

    .main-nav {
        top: 116px; /* 70px nav + 46px ticker */
        bottom: 0;
        height: calc(100vh - 116px);
    }

    .hero {
        padding-top: 140px; /* 70px nav + 40px ticker + 30px spacing */
    }

    .page-hero {
        padding: 150px 0 40px; /* Account for ticker bar */
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1rem 0;
        border-bottom: 1px solid var(--black-border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .feature-card,
    .asset-card {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

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

    .footer-brand img {
        margin: 0 auto 1rem;
        display: block;
    }

    .ticker-bar {
        min-height: 40px;
    }

    /* Mobile UX improvements */
    .content-section h2 {
        font-size: 1.25rem;
        padding-bottom: 0.75rem;
    }

    .content-section h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.75rem;
    }

    .content-section p {
        font-size: 0.95rem;
    }

    .content-section ul {
        margin-left: 1rem;
    }

    .content-section li {
        font-size: 0.95rem;
    }

    /* Better touch targets */
    .btn {
        min-height: 48px;
        padding: 0.75rem 1.5rem;
    }

    .nav-link {
        min-height: 48px;
    }

    .dropdown-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Improve readability */
    .risk-disclaimer p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .risk-disclaimer h5 {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(201, 162, 39, 0.5);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Floating Decorative Elements */
.floating-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.floating-element.circle {
    width: 300px;
    height: 300px;
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element.square {
    width: 150px;
    height: 150px;
    border: 1px solid var(--gold-primary);
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite;
}

/* Gold Accent Line */
.gold-line {
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.gold-line-animated {
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

/* Glowing Cards */
.glow-card {
    position: relative;
}

.glow-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--gold-gradient);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-card:hover::before {
    opacity: 0.3;
}

/* Enhanced Section Backgrounds */
.section-with-pattern {
    position: relative;
}

.section-with-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(201, 162, 39, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Stats Bar Enhancement */
.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
}

.stat-item:last-child::after {
    display: none;
}

/* Asset Card Enhancements */
.asset-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.asset-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.asset-card:hover::before {
    transform: scaleX(1);
}

/* Feature Card Enhancements */
.feature-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
    width: 100px;
}

/* Decorative Corner Accents */
.corner-accent {
    position: relative;
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--gold-primary);
    border-style: solid;
    opacity: 0.3;
}

.corner-accent::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.corner-accent::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

/* Image Overlays */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Chart Enhancement */
.hero-chart {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
    position: relative;
    animation: glow 4s ease-in-out infinite;
}

/* Page Hero Enhancement */
.page-hero {
    padding: 210px 0 80px; /* 90px nav + 46px ticker + spacing */
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.88) 100%),
        radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.2) 0%, transparent 50%),
        url('https://images.unsplash.com/photo-1590283603385-17ffb3a7f29f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center top;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* Contact Card Enhancement */
.contact-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.contact-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.contact-card svg {
    width: 48px;
    height: 48px;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
}

/* Gradient Text Highlight */
.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(201, 162, 39, 0.2), transparent);
    z-index: -1;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Account Packages Grid */
.account-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Tiers Grid */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.tiers-grid > div {
    background: var(--black-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--black-border);
}

.tiers-grid > div:last-child {
    border-color: var(--gold-primary);
}

.tiers-grid h4 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.tiers-grid p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile styles for account packages */
@media (max-width: 1024px) {
    .account-packages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .account-packages .feature-card {
        padding: 1.5rem !important;
    }

    .account-packages .feature-card h3 {
        font-size: 1.25rem !important;
    }

    .account-packages .feature-card span[style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tiers-grid > div {
        padding: 1.25rem;
    }
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-primary);
}

.review-avatar-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black-primary);
    border: 3px solid var(--gold-primary);
    box-sizing: border-box;
}

.review-info h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.review-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.review-stars {
    color: var(--gold-primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.review-title {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-content {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

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

@media (max-width: 768px) {
    .review-card {
        padding: 1.5rem;
    }

    .review-avatar,
    .review-avatar-placeholder {
        width: 60px;
        height: 60px;
    }

    .review-content {
        font-size: 0.9rem;
    }
}

/* ===================== EXECUTIVE MESSAGE STYLES ===================== */
.executive-message {
    max-width: 900px;
    margin: 0 auto;
    background: var(--black-card);
    border-radius: 20px;
    border: 1px solid var(--black-border);
    overflow: hidden;
}

.executive-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid var(--black-border);
}

.executive-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.2);
    flex-shrink: 0;
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.executive-title {
    font-size: 1.1rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.executive-company {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.message-content {
    padding: 2.5rem;
}

.message-greeting {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--black-border);
}

.message-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.message-signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--black-border);
}

.message-signature p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.signature-name {
    font-size: 1.25rem !important;
    font-weight: 700;
    color: var(--white) !important;
    font-style: italic;
}

.signature-title {
    color: var(--gold-primary) !important;
    font-weight: 600;
}

.signature-company {
    color: var(--text-muted) !important;
}

@media (max-width: 768px) {
    .executive-profile {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .executive-image {
        width: 120px;
        height: 120px;
    }

    .executive-info h3 {
        font-size: 1.5rem;
    }

    .message-content {
        padding: 1.5rem;
    }

    .message-content p {
        font-size: 1rem;
    }
}

/* ===================== MEET THE TEAM SECTION ===================== */
.team-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: linear-gradient(145deg, var(--black-card) 0%, var(--black-secondary) 100%);
    border-radius: 24px;
    border: 1px solid var(--black-border);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.15);
}

.team-card-header {
    position: relative;
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, transparent 100%);
}

.team-card-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.25);
    position: relative;
}

.team-card-image::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gold-gradient);
    z-index: -1;
    opacity: 0.5;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.team-card-title {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.team-card-message {
    padding: 1.5rem 2rem 2rem;
}

.team-card-message h4 {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-card-message h4::before {
    content: '"';
    font-size: 2rem;
    color: var(--gold-primary);
    line-height: 1;
}

.team-card-message p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.team-card-message p:last-of-type {
    margin-bottom: 0;
}

.team-card-signature {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--black-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.team-card-signature strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

.team-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-read-more:hover {
    color: var(--gold-light);
    gap: 0.75rem;
}

.team-full-message {
    display: none;
}

.team-full-message.show {
    display: block;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .team-section-header h2 {
        font-size: 2rem;
    }

    .team-card-header {
        padding: 2rem 1.5rem 1rem;
    }

    .team-card-image {
        width: 120px;
        height: 120px;
    }

    .team-card-name {
        font-size: 1.25rem;
    }

    .team-card-message {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .team-card-message p {
        font-size: 0.9rem;
    }
}

/* ===================== SIDE DECORATIONS - DISABLED (using inline images instead) ===================== */
.side-decorations {
    display: none !important;
}

/* ===================== CONTENT WITH SIDE IMAGES (Desktop Only) ===================== */
/* Layout: [images] [content] [images] on desktop, just [content] on mobile */
.content-with-images,
.form-with-images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
}

.content-center,
.form-center {
    flex: 1;
    max-width: 900px;
    width: 100%;
}

.form-center {
    max-width: 700px;
}

.content-side-images,
.form-side-images {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    width: 160px;
    flex-shrink: 0;
    padding-top: 1rem;
}

.content-side-images img,
.form-side-images img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0.85;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.content-side-images.left img,
.form-side-images.left img {
    border-radius: 0 12px 12px 0;
}

.content-side-images.right img,
.form-side-images.right img {
    border-radius: 12px 0 0 12px;
}

.content-side-images img:hover,
.form-side-images img:hover {
    opacity: 1;
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Show side images on desktop (1200px+) */
@media (min-width: 1200px) {
    .content-side-images,
    .form-side-images {
        display: flex;
    }
}

/* Larger images on wider screens */
@media (min-width: 1400px) {
    .content-side-images,
    .form-side-images {
        width: 200px;
        gap: 2rem;
    }

    .content-side-images img,
    .form-side-images img {
        height: 160px;
    }
}

@media (min-width: 1600px) {
    .content-side-images,
    .form-side-images {
        width: 240px;
    }

    .content-side-images img,
    .form-side-images img {
        height: 180px;
    }
}
