/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 25%, rgba(45, 36, 22, 0.1) 50%, rgba(20, 20, 20, 0.98) 75%, rgba(0, 0, 0, 0.95) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(192, 192, 192, 0.03) 0%, transparent 50%),
        linear-gradient(0deg, #000000 0%, #1a1a1a 100%);
    color: #f5f5f5;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

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

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes for staggered animations */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .slide-up,
    .scale-in,
    .slide-left,
    .slide-right,
    .stagger-animation {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Header - Minimalist */
.header {
    position: relative;
    z-index: 100;
    padding: 25px 0;
    background: transparent;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5f5f5;
    letter-spacing: 1px;
    text-decoration: none;
    font-family: 'Orbitron', 'Rajdhani', 'Exo 2', sans-serif;
    text-transform: uppercase;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #F5DEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: rgba(245, 245, 245, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #f5f5f5;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #DAA520;
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: #000 !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
}

.nav-cta:hover {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

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


/* Hero Section */
.hero {
    position: relative;
    z-index: 10;
    padding: 80px 0 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, #000000 0%, #1a1a1a 35%, #2a2a2a 65%, #0f0f0f 100%),
        conic-gradient(from 45deg at 20% 30%, rgba(218, 165, 32, 0.1) 0deg, transparent 120deg),
        conic-gradient(from 225deg at 80% 70%, rgba(255, 215, 0, 0.08) 0deg, transparent 120deg);
    background-size: 100% 100%, 800px 800px, 900px 900px;
    background-position: center, 20% 30%, 80% 70%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(218, 165, 32, 0.03) 50%, transparent 100%),
        radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: backgroundShift 8s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% { 
        opacity: 0.6;
        transform: translateX(-2px);
    }
    100% { 
        opacity: 0.9;
        transform: translateX(2px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.urgency-counter {
    margin-bottom: 35px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.counter-text {
    display: block;
    color: #DAA520;
    font-weight: 500;
    margin-bottom: 18px;
    font-size: 1rem;
    text-align: center;
}

.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.time-unit {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
}

.time-unit span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #DAA520;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.time-unit label {
    font-size: 0.85rem;
    color: #C0C0C0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

.title-main {
    display: block;
    color: #f5f5f5;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #F5DEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.title-sub {
    display: block;
    font-size: 2.2rem;
    color: #C0C0C0;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(245, 245, 245, 0.85);
    margin-bottom: 45px;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    gap: 45px;
    margin-top: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #F5DEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-label {
    font-size: 0.95rem;
    color: #C0C0C0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Form Container - Clean Design */
.form-container {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideInRight 1s ease-out;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #F5DEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.form-header p {
    color: rgba(245, 245, 245, 0.8);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.trial-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.benefit {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    padding: 5px 0;
    border-left: 3px solid #DAA520;
    padding-left: 15px;
    background: rgba(218, 165, 32, 0.05);
    border-radius: 5px;
    margin: 2px 0;
}

.trial-deadline {
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 8px;
    text-align: center;
}

.trial-deadline small {
    color: #DAA520;
    font-weight: 500;
    font-size: 0.85rem;
    display: block;
}

/* Premium Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1.5px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    color: #f5f5f5;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    font-weight: 300;
}

.form-group input::placeholder {
    color: rgba(245, 245, 245, 0.5);
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #DAA520;
    background: rgba(218, 165, 32, 0.05);
    transform: translateY(-1px);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #f5f5f5;
    padding: 10px;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 8px;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 300;
}

.error-message.show {
    opacity: 1;
}

/* Ultra Premium CTA Button */
.cta-button {
    position: relative;
    padding: 18px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 
        0 8px 25px rgba(218, 165, 32, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 15px;
    font-family: 'Rajdhani', 'Orbitron', sans-serif;
    box-shadow: 
        0 10px 30px rgba(218, 165, 32, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(218, 165, 32, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #FFD700 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
}

.form-footer p {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.7);
    font-weight: 300;
}

/* Video Introduction Section */
.video-intro {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(218, 165, 32, 0.3);
}

.video-intro::before {
    display: none;
} width="6" height="10" fill="%23ff4444"/><line x1="133" y1="90" x2="133" y2="110"/></g><!-- Order Book --><rect x="400" y="60" width="200" height="150" fill="%23000a1a" stroke="%23DAA520" stroke-width="1" opacity="0.9"/><text x="405" y="75" fill="%23DAA520" font-size="10" font-weight="bold" font-family="monospace">ORDER BOOK</text><text x="415" y="90" fill="%23fff" font-size="8" font-family="monospace">SIZE</text><text x="465" y="90" fill="%23fff" font-size="8" font-family="monospace">PRICE</text><text x="515" y="90" fill="%23fff" font-size="8" font-family="monospace">TOTAL</text><!-- Sell Orders (Red) --><text x="415" y="105" fill="%23ff4444" font-size="8" font-family="monospace">0.15</text><text x="465" y="105" fill="%23ff4444" font-size="8" font-family="monospace">43,521</text><text x="515" y="105" fill="%23ff4444" font-size="8" font-family="monospace">6,528</text><text x="415" y="115" fill="%23ff4444" font-size="8" font-family="monospace">0.25</text><text x="465" y="115" fill="%23ff4444" font-size="8" font-family="monospace">43,520</text><text x="515" y="115" fill="%23ff4444" font-size="8" font-family="monospace">10,880</text><text x="415" y="125" fill="%23ff4444" font-size="8" font-family="monospace">0.08</text><text x="465" y="125" fill="%23ff4444" font-size="8" font-family="monospace">43,519</text><text x="515" y="125" fill="%23ff4444" font-size="8" font-family="monospace">3,481</text><!-- Current Price --><rect x="415" y="135" width="160" height="12" fill="%23DAA520" opacity="0.3"/><text x="465" y="143" fill="%23DAA520" font-size="9" font-weight="bold" font-family="monospace">43,518.34</text><!-- Buy Orders (Green) --><text x="415" y="155" fill="%2300ff88" font-size="8" font-family="monospace">0.12</text><text x="465" y="155" fill="%2300ff88" font-size="8" font-family="monospace">43,517</text><text x="515" y="155" fill="%2300ff88" font-size="8" font-family="monospace">5,222</text><text x="415" y="165" fill="%2300ff88" font-size="8" font-family="monospace">0.33</text><text x="465" y="165" fill="%2300ff88" font-size="8" font-family="monospace">43,516</text><text x="515" y="165" fill="%2300ff88" font-size="8" font-family="monospace">14,360</text><text x="415" y="175" fill="%2300ff88" font-size="8" font-family="monospace">0.21</text><text x="465" y="175" fill="%2300ff88" font-size="8" font-family="monospace">43,515</text><text x="515" y="175" fill="%2300ff88" font-size="8" font-family="monospace">9,138</text><!-- Market Depth Chart --><rect x="650" y="60" width="250" height="100" fill="%23000a1a" stroke="%23DAA520" stroke-width="1" opacity="0.9"/><text x="655" y="75" fill="%23DAA520" font-size="10" font-weight="bold" font-family="monospace">MARKET DEPTH</text><g stroke="%2300ff88" stroke-width="1" fill="url(%23terminalGreen)" opacity="0.7"><path d="M660,140 L680,135 L700,130 L720,125 L740,120 L760,115 L775,115 L775,150 L660,150 Z"/></g><g stroke="%23ff4444" stroke-width="1" fill="url(%23terminalRed)" opacity="0.7"><path d="M775,115 L790,120 L810,125 L830,130 L850,135 L870,140 L890,145 L890,150 L775,150 Z"/></g><!-- Price Ticker --><rect x="650" y="200" width="300" height="120" fill="%23000a1a" stroke="%23DAA520" stroke-width="1" opacity="0.9"/><text x="655" y="215" fill="%23DAA520" font-size="10" font-weight="bold" font-family="monospace">LIVE PRICES</text><text x="660" y="230" fill="%23fff" font-size="8" font-family="monospace">BTC</text><text x="700" y="230" fill="%2300ff88" font-size="8" font-family="monospace">43,518.34</text><text x="770" y="230" fill="%2300ff88" font-size="8" font-family="monospace">+2.45%</text><text x="660" y="245" fill="%23fff" font-size="8" font-family="monospace">ETH</text><text x="700" y="245" fill="%2300ff88" font-size="8" font-family="monospace">2,645.12</text><text x="770" y="245" fill="%2300ff88" font-size="8" font-family="monospace">+1.89%</text><text x="660" y="260" fill="%23fff" font-size="8" font-family="monospace">ADA</text><text x="700" y="260" fill="%23ff4444" font-size="8" font-family="monospace">0.4521</text><text x="770" y="260" fill="%23ff4444" font-size="8" font-family="monospace">-0.67%</text><text x="660" y="275" fill="%23fff" font-size="8" font-family="monospace">SOL</text><text x="700" y="275" fill="%2300ff88" font-size="8" font-family="monospace">98.76</text><text x="770" y="275" fill="%2300ff88" font-size="8" font-family="monospace">+4.12%</text><text x="660" y="290" fill="%23fff" font-size="8" font-family="monospace">DOT</text><text x="700" y="290" fill="%23ff4444" font-size="8" font-family="monospace">7.234</text><text x="770" y="290" fill="%23ff4444" font-size="8" font-family="monospace">-1.23%</text><!-- Trading Performance --><rect x="20" y="250" width="350" height="100" fill="%23000a1a" stroke="%23DAA520" stroke-width="1" opacity="0.9"/><text x="25" y="265" fill="%23DAA520" font-size="10" font-weight="bold" font-family="monospace">TRADING PERFORMANCE</text><text x="30" y="280" fill="%23fff" font-size="8" font-family="monospace">Total P&amp;L:</text><text x="120" y="280" fill="%2300ff88" font-size="8" font-family="monospace">+$127,445.67</text><text x="30" y="295" fill="%23fff" font-size="8" font-family="monospace">Win Rate:</text><text x="120" y="295" fill="%2300ff88" font-size="8" font-family="monospace">87.3%</text><text x="30" y="310" fill="%23fff" font-size="8" font-family="monospace">Sharpe Ratio:</text><text x="120" y="310" fill="%2300ff88" font-size="8" font-family="monospace">2.14</text><text x="30" y="325" fill="%23fff" font-size="8" font-family="monospace">Max Drawdown:</text><text x="120" y="325" fill="%23DAA520" font-size="8" font-family="monospace">-8.3%</text><text x="200" y="280" fill="%23fff" font-size="8" font-family="monospace">Active Trades:</text><text x="290" y="280" fill="%2300ff88" font-size="8" font-family="monospace">14</text><text x="200" y="295" fill="%23fff" font-size="8" font-family="monospace">Daily Volume:</text><text x="290" y="295" fill="%23DAA520" font-size="8" font-family="monospace">$2.1M</text><text x="200" y="310" fill="%23fff" font-size="8" font-family="monospace">Avg Trade:</text><text x="290" y="310" fill="%2300ff88" font-size="8" font-family="monospace">$8,456</text><!-- Real-time Chart with Moving Averages --><g stroke="%23DAA520" stroke-width="1" fill="none" opacity="0.6"><path d="M40,400 Q60,390 80,395 T120,385 T160,390 T200,380 T240,375 T280,370 T320,365"/></g><g stroke="%2300ff88" stroke-width="1.5" fill="none" opacity="0.8"><path d="M40,420 Q60,410 80,415 T120,405 T160,410 T200,400 T240,395 T280,390 T320,385"/></g><!-- Technical Indicators --><rect x="400" y="400" width="200" height="80" fill="%23000a1a" stroke="%23DAA520" stroke-width="1" opacity="0.9"/><text x="405" y="415" fill="%23DAA520" font-size="10" font-weight="bold" font-family="monospace">INDICATORS</text><text x="410" y="430" fill="%23fff" font-size="8" font-family="monospace">RSI(14):</text><text x="470" y="430" fill="%2300ff88" font-size="8" font-family="monospace">58.2</text><text x="410" y="445" fill="%23fff" font-size="8" font-family="monospace">MACD:</text><text x="470" y="445" fill="%2300ff88" font-size="8" font-family="monospace">+124.5</text><text x="410" y="460" fill="%23fff" font-size="8" font-family="monospace">BB:</text><text x="470" y="460" fill="%23DAA520" font-size="8" font-family="monospace">MID</text><text x="510" y="430" fill="%23fff" font-size="8" font-family="monospace">Volume:</text><text x="510" y="445" fill="%23DAA520" font-size="8" font-family="monospace">High</text><text x="510" y="460" fill="%23fff" font-size="8" font-family="monospace">Trend:</text><text x="545" y="460" fill="%2300ff88" font-size="8" font-family="monospace">BULL</text><!-- News Feed --><rect x="650" y="400" width="300" height="150" fill="%23000a1a" stroke="%23DAA520" stroke-width="1" opacity="0.9"/><text x="655" y="415" fill="%23DAA520" font-size="10" font-weight="bold" font-family="monospace">MARKET NEWS</text><text x="660" y="430" fill="%2300ff88" font-size="7" font-family="monospace">• Fed keeps rates steady, BTC rallies +2.4%</text><text x="660" y="445" fill="%23fff" font-size="7" font-family="monospace">• Institutional adoption hits new high</text><text x="660" y="460" fill="%23DAA520" font-size="7" font-family="monospace">• ETF inflows exceed $500M this week</text><text x="660" y="475" fill="%23fff" font-size="7" font-family="monospace">• Major bank announces crypto custody</text><text x="660" y="490" fill="%2300ff88" font-size="7" font-family="monospace">• DeFi TVL reaches all-time high</text><!-- Grid overlay --><g stroke="rgba(218,165,32,0.1)" stroke-width="0.5" fill="none"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(218,165,32,0.08)" stroke-width="0.5"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></g></svg>');
    opacity: 0.7;
}

.video-intro::after {
    display: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.6; }
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.video-text {
    padding-right: 20px;
}

.video-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.video-subtitle {
    font-size: 1.2rem;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
}

.video-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(218, 165, 32, 0.3);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-text {
    color: #f5f5f5;
    font-weight: 600;
    font-size: 1rem;
}

.video-player {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 10px 40px rgba(218, 165, 32, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, #001a33, #002244);
    border: 2px solid rgba(218, 165, 32, 0.2);
}

.video-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.7),
        0 15px 50px rgba(218, 165, 32, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(218, 165, 32, 0.4);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #001122 0%, #002244 100%);
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.play-button:hover {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(34, 34, 34, 0.9) 100%);
    color: #FFD700;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(218, 165, 32, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.trust-item {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    padding: 0;
    box-sizing: border-box;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    background: #000;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.close-video {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    width: auto;
    height: auto;
    padding: 10px;
    transition: color 0.2s ease;
}

.close-video:hover {
    color: rgba(255, 255, 255, 0.9);
}

.modal-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.modal-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Success Message Styles */
.success-header {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.success-details ul {
    margin: 10px 0;
    padding-left: 0;
    list-style: none;
}

.success-details li {
    margin: 8px 0;
    padding: 5px 0;
    font-size: 0.95rem;
}

.contact-info {
    text-align: center;
    margin-top: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
}

/* Responsive Video Section */
@media (max-width: 968px) {
    .video-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .video-text {
        padding-right: 0;
    }
    
    .video-title {
        font-size: 2.4rem;
    }
    
    .video-stats {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .video-intro {
        padding: 60px 0;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1.1rem;
    }
    
    .video-modal-content {
        width: 95%;
    }
    
    .close-video {
        top: -40px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(45, 36, 22, 0.05) 100%);
    border-top: 1px solid rgba(218, 165, 32, 0.1);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.video-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.video-title .title-highlight {
    display: block;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #F5DEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-title .title-main {
    display: block;
    color: #f5f5f5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-subtitle {
    font-size: 1.15rem;
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.video-stats {
    display: flex;
    gap: 30px;
}

.video-stat {
    text-align: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.video-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-stat .stat-label {
    font-size: 0.85rem;
    color: #C0C0C0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.video-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(218, 165, 32, 0.2);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%),
        url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAwIiBoZWlnaHQ9IjQwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPgogICAgICA8cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDIxOCwgMTY1LCAzMiwgMC4wNSkiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPC9wYXR0ZXJuPgogIDwvZGVmcz4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+Cjwvc3ZnPgo=');
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.8) 0%, rgba(255, 215, 0, 0.8) 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(218, 165, 32, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: linear-gradient(135deg, rgba(255, 215, 0, 1) 0%, rgba(255, 223, 0, 1) 50%, rgba(218, 165, 32, 1) 100%);
    box-shadow: 
        0 12px 30px rgba(218, 165, 32, 0.4),
        0 6px 18px rgba(0, 0, 0, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

.play-icon {
    color: #000;
    font-size: 1.8rem;
    margin-left: 3px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 25px 25px;
    color: white;
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #DAA520;
}

.video-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-weight: 300;
}

.video-duration {
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    position: absolute;
    top: 15px;
    right: 15px;
    color: #DAA520;
    font-weight: 500;
}

.video-caption {
    text-align: center;
    margin-top: 20px;
}

.video-caption p {
    color: rgba(245, 245, 245, 0.8);
    font-size: 0.95rem;
    font-weight: 300;
}

.video-caption strong {
    color: #DAA520;
}

/* Features Section - Premium Glass Cards */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(218, 165, 32, 0.05) 50%, rgba(0, 0, 0, 0.1) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(218, 165, 32, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section Styling */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 17, 34, 0.9) 0%, rgba(0, 34, 68, 0.9) 100%);
    border-top: 3px solid rgba(218, 165, 32, 0.3);
    border-bottom: 3px solid rgba(218, 165, 32, 0.3);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(218,165,32,0.1)"/><circle cx="30" cy="20" r="1" fill="rgba(218,165,32,0.08)"/><circle cx="50" cy="15" r="1" fill="rgba(218,165,32,0.1)"/><circle cx="70" cy="25" r="1" fill="rgba(218,165,32,0.08)"/><circle cx="90" cy="18" r="1" fill="rgba(218,165,32,0.1)"/><circle cx="20" cy="40" r="1" fill="rgba(218,165,32,0.08)"/><circle cx="40" cy="35" r="1" fill="rgba(218,165,32,0.1)"/><circle cx="60" cy="45" r="1" fill="rgba(218,165,32,0.08)"/><circle cx="80" cy="38" r="1" fill="rgba(218,165,32,0.1)"/></svg>');
    opacity: 0.6;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    margin: 80px 0 40px 0;
    background: linear-gradient(145deg, rgba(218, 165, 32, 0.05) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(218, 165, 32, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: #f5f5f5;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.feature-card {
    background: linear-gradient(145deg, rgba(218, 165, 32, 0.08) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(218, 165, 32, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(218, 165, 32, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.8s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(218, 165, 32, 0.6);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(218, 165, 32, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2) 0%, rgba(218, 165, 32, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(218, 165, 32, 0.3);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(218, 165, 32, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Custom Feature Icons */
.feature-icon i {
    font-size: 2.5rem;
    color: #DAA520;
    font-style: normal;
    font-weight: bold;
}

.icon-cpu::before {
    content: "⚙";
    font-family: 'Arial', sans-serif;
}

.icon-chart::before {
    content: "▲";
    font-family: 'Arial', sans-serif;
}

.icon-shield::before {
    content: "◆";
    font-family: 'Arial', sans-serif;
}

.icon-server::before {
    content: "■";
    font-family: 'Arial', sans-serif;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #f5f5f5;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #F5DEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: rgba(245, 245, 245, 0.85);
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Urgency Indicator */
.urgency-indicator {
    margin-top: 15px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 69, 58, 0.1) 0%, rgba(218, 165, 32, 0.1) 100%);
    border: 1px solid rgba(255, 69, 58, 0.3);
    border-radius: 8px;
    text-align: center;
}

.urgency-text {
    color: #ff453a;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Social Proof - Premium Style */
.social-proof {
    padding: 50px 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(45, 36, 22, 0.05) 100%);
    border-top: 2px solid rgba(218, 165, 32, 0.2);
    border-bottom: 2px solid rgba(218, 165, 32, 0.2);
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(218, 165, 32, 0.3) 50%, transparent 100%);
}

.social-proof h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #F5DEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(25px);
    border: 1.5px solid rgba(218, 165, 32, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.testimonial:hover {
    transform: translateY(-8px);
    border-color: #DAA520;
    box-shadow: 0 20px 45px rgba(218, 165, 32, 0.2);
}

.testimonial-content p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 25px;
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.7;
    font-weight: 300;
}

.testimonial-author strong {
    color: #DAA520;
    font-size: 1.1rem;
    font-weight: 500;
}

.testimonial-author span {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Legal Pages Styles */
.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    border-bottom: 2px solid rgba(218, 165, 32, 0.3);
}

.legal-header h1 {
    font-size: 3rem;
    color: #f5f5f5;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.legal-header p {
    color: rgba(245, 245, 245, 0.7);
    font-size: 1.1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.legal-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.legal-section h2 {
    color: #DAA520;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.legal-section p {
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal-section strong {
    color: #FFD700;
    font-weight: 600;
}

/* Trial Notice Styles */
.trial-notice {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid #DAA520;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.trial-notice h3 {
    color: #DAA520;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.trial-notice p {
    color: rgba(245, 245, 245, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.trial-notice strong {
    color: #FFD700;
    font-weight: 600;
}

.trial-badge {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
}

.trial-badge.featured {
    background: linear-gradient(135deg, #FFD700, #DAA520);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { 
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
        transform: scale(1.02);
    }
}

.trial-info {
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.8);
    text-align: center;
    font-weight: 500;
}

/* Timeline Styles */
.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #DAA520, #FFD700, #DAA520);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    border-color: #DAA520;
    background: rgba(218, 165, 32, 0.05);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.15);
    transform: translateX(10px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #DAA520;
    border: 3px solid #000;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.5);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1.8rem;
    color: #f5f5f5;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.timeline-description {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.timeline-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.timeline-highlight {
    background: rgba(218, 165, 32, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #DAA520;
}

.timeline-highlight strong {
    color: #DAA520;
    display: block;
    margin-bottom: 5px;
}

.timeline-metrics {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.timeline-metric {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    min-width: 120px;
}

.timeline-metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #DAA520;
    display: block;
    font-family: 'Orbitron', sans-serif;
}

.timeline-metric-label {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.7);
    margin-top: 5px;
}

/* Premium Corporate Footer */
.footer {
    padding: 60px 0 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-top: 2px solid rgba(218, 165, 32, 0.3);
    backdrop-filter: blur(15px);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Timeline responsive styles */
    .timeline-container {
        padding: 40px 20px;
    }
    
    .timeline::before {
        left: 30px;
        width: 2px;
    }
    
    .timeline-item {
        padding-left: 60px;
        padding-right: 20px;
    }
    
    .timeline-item::before {
        left: 26px;
        width: 10px;
        height: 10px;
    }
    
    .timeline-year {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .timeline-title {
        font-size: 1.4rem;
    }
    
    .timeline-metrics {
        gap: 15px;
    }
    
    .timeline-metric {
        min-width: 80px;
    }
    
    .timeline-metric-number {
        font-size: 1.3rem;
    }
}

.footer-section {
    color: rgba(245, 245, 245, 0.9);
}

.footer-section h4 {
    color: #DAA520;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: rgba(245, 245, 245, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #DAA520;
    padding-left: 5px;
}

.company-info {
    max-width: 300px;
}

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

.footer-logo .logo-diamond {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.5));
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #F5DEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', 'Rajdhani', 'Exo 2', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-description {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: rgba(245, 245, 245, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 15px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 300;
}

.social-link:hover {
    background: rgba(218, 165, 32, 0.1);
    border-color: #DAA520;
    color: #DAA520;
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-rating {
    margin-bottom: 10px;
}

.stars-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.star {
    color: #666;
    font-size: 1.4rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.star.filled {
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.star.partial {
    background: linear-gradient(90deg, #FFD700 80%, #666 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFD700;
}

.rating-number {
    color: #DAA520;
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 8px;
    display: inline-block;
}

.trust-source {
    color: rgba(245, 245, 245, 0.8);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.trust-reviews {
    color: rgba(245, 245, 245, 0.6);
    font-size: 0.8rem;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-number {
    color: #DAA520;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stats-label {
    color: rgba(245, 245, 245, 0.8);
    font-size: 0.9rem;
}

/* Exchanges Section */
.exchanges-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.exchanges-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f5f5f5;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.exchanges-section p {
    text-align: center;
    color: rgba(245, 245, 245, 0.8);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.exchange-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 15px;
    transition: all 0.1s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform, border-color, background-color;
}

.exchange-item:hover {
    border-color: #DAA520;
    transform: translateY(-5px);
    background: rgba(218, 165, 32, 0.1);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.exchange-logo {
    font-size: 2.5rem;
    margin-bottom: 15px;
    pointer-events: none;
    transition: all 0.1s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform, color, filter;
    color: #C0C0C0;
}

.exchange-logo img {
    pointer-events: none;
    transition: all 0.1s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform, filter;
    filter: brightness(0.8) contrast(1.1);
}

.exchange-item:hover .exchange-logo {
    transform: scale(1.1);
    color: #DAA520;
    filter: brightness(1.3) drop-shadow(0 0 8px rgba(218, 165, 32, 0.6));
}

.exchange-item:hover .exchange-logo img {
    transform: scale(1.05);
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 8px rgba(218, 165, 32, 0.5));
}

.exchange-item span {
    color: #f5f5f5;
    font-weight: 500;
    font-size: 1rem;
}

.exchange-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.exchange-stats .stat {
    text-align: center;
}

.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 0;
    margin: 30px 0;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.03), transparent);
}

.cert-item {
    font-size: 0.85rem;
    color: rgba(245, 245, 245, 0.7);
    font-weight: 300;
    text-align: center;
    padding: 5px 15px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding-top: 30px;
}

.footer-legal p {
    color: rgba(245, 245, 245, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 300;
}

.legal-disclaimer {
    font-style: italic;
    color: rgba(245, 245, 245, 0.5) !important;
}

.registration-info {
    font-size: 0.8rem !important;
    color: rgba(218, 165, 32, 0.7) !important;
    font-weight: 400 !important;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    text-align: right;
}

.contact-item {
    font-size: 0.85rem;
    color: rgba(245, 245, 245, 0.7);
    line-height: 1.4;
    font-weight: 300;
}

.contact-item strong {
    color: #DAA520;
    font-weight: 500;
}

/* Enhanced Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Premium */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .title-sub {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }
    
    .form-container {
        padding: 35px 25px;
    }
    
    
    .countdown {
        justify-content: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
        text-align: center;
    }
    
    .footer-certifications {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .video-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .nav {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .title-sub {
        font-size: 1.4rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 0.8px;
    }
    
    /* Timeline mobile styles */
    .timeline-container {
        padding: 30px 15px;
    }
    
    .timeline {
        padding-left: 40px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding: 20px 15px;
        margin-bottom: 40px;
        padding-left: 50px;
    }
    
    .timeline-item::before {
        left: 16px;
        width: 8px;
        height: 8px;
    }
    
    .timeline-year {
        font-size: 1rem;
    }
    
    .timeline-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .timeline-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .timeline-highlights {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-highlight {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .timeline-metrics {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .timeline-metric {
        min-width: auto;
        align-items: flex-start;
    }
    
    .timeline-metric-number {
        font-size: 1.1rem;
    }
    
    .timeline-metric-label {
        font-size: 0.8rem;
    }
}

/* Loading states - Premium */
.loading {
    opacity: 0.8;
    pointer-events: none;
    filter: blur(1px);
}

.success-message {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1.5px solid #DAA520;
    border-radius: 15px;
    padding: 20px;
    margin-top: 25px;
    text-align: center;
    color: #DAA520;
    font-weight: 400;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.2);
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    min-height: 80vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #F5DEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(245, 245, 245, 0.8);
    font-weight: 300;
}

/* Pricing Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #DAA520;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #f5f5f5;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 1.5rem;
    color: #DAA520;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #DAA520;
}

.price .period {
    font-size: 1rem;
    color: rgba(245, 245, 245, 0.7);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 12px;
    color: rgba(245, 245, 245, 0.8);
    font-size: 0.9rem;
}

.plan-button {
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    color: #DAA520;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
}

.plan-button:hover {
    background: rgba(218, 165, 32, 0.3);
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
    color: #FFD700;
}

.featured-button {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    border: none;
    color: #000;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
    position: relative;
    overflow: hidden;
}

.featured-button:hover {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.7);
}

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

.featured-button:hover::before {
    left: 100%;
}

/* Resources Styles */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.resource-category h3 {
    color: #DAA520;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.resource-item:hover {
    border-color: #DAA520;
    transform: translateY(-2px);
}

.resource-item h4 {
    color: #f5f5f5;
    margin-bottom: 10px;
    font-size: 1rem;
}

.resource-item p {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Company Page Styles */
.company-story, .leadership-team, .company-metrics, .company-values {
    margin-bottom: 60px;
}

.company-story h2, .leadership-team h2, .company-metrics h2, .company-values h2 {
    color: #DAA520;
    margin-bottom: 30px;
    font-size: 2rem;
}

.company-story p {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.member-photo {
    font-size: 4rem;
    margin-bottom: 20px;
}

.team-member h3 {
    color: #f5f5f5;
    margin-bottom: 5px;
}

.member-title {
    color: #DAA520;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.metric-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DAA520;
    display: block;
    margin-bottom: 10px;
}

.metric-label {
    color: rgba(245, 245, 245, 0.8);
    font-size: 0.9rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.value-card h3 {
    color: #f5f5f5;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.value-card p {
    color: rgba(245, 245, 245, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Support Page Styles */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.support-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.support-card h3 {
    color: #f5f5f5;
    margin-bottom: 15px;
}

.support-card p {
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.support-button {
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    color: #DAA520;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
}

.support-button:hover {
    background: rgba(218, 165, 32, 0.25);
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

/* Login Page Styles */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.login-header {
    margin-bottom: 40px;
}

.login-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #f5f5f5;
}

.login-form-container {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
}

.login-form {
    text-align: left;
}

.login-form label {
    color: rgba(245, 245, 245, 0.9);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.login-button {
    width: 100%;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    border: none;
    color: #000;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.login-button:hover {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.login-button:hover::before {
    left: 100%;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    color: rgba(245, 245, 245, 0.8);
    cursor: pointer;
}

.forgot-password {
    color: #DAA520;
    text-decoration: none;
}

.login-divider {
    margin: 20px 0;
    color: rgba(245, 245, 245, 0.5);
}

.google-login {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.google-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.signup-link {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
}

.signup-link a {
    color: #DAA520;
    text-decoration: none;
}

.security-info {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
}

.security-info h3 {
    color: #f5f5f5;
    margin-bottom: 20px;
}

.security-info ul {
    list-style: none;
    padding: 0;
}

.security-info li {
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Cache control */
.no-cache {
    cache-control: no-cache, no-store, must-revalidate;
    pragma: no-cache;
    expires: 0;
}

/* Testimonios con transición suave */
#testimonial-text, #testimonial-name, #testimonial-info {
    transition: opacity 0.3s ease;
}

/* Newsletter Form Styles */
.newsletter-signup {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 20px;
    margin-top: 40px;
}

.newsletter-signup h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #F5DEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
}

.newsletter-signup p {
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1.5px solid rgba(218, 165, 32, 0.3);
    border-radius: 10px;
    color: #f5f5f5;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.newsletter-form input::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #DAA520;
    background: rgba(218, 165, 32, 0.05);
}

.newsletter-form button {
    padding: 15px 25px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    border: none;
    border-radius: 10px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    transform: translateY(-2px);
}

/* Contact Form Styles */
.contact-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(218, 165, 32, 0.05) 50%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 20px;
    margin-top: 40px;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #F5DEB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1.5px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    color: #f5f5f5;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(245, 245, 245, 0.5);
    font-weight: 300;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #DAA520;
    background: rgba(218, 165, 32, 0.05);
    transform: translateY(-1px);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: #1a1a1a;
    color: #f5f5f5;
    padding: 10px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    padding: 18px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 
        0 8px 25px rgba(218, 165, 32, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(218, 165, 32, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #FFD700 100%);
}

.submit-button:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* FAQ Expandible Styles */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: rgba(218, 165, 32, 0.6);
    box-shadow: 0 6px 25px rgba(218, 165, 32, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-weight: 600;
}

.faq-question h4 {
    color: #f5f5f5;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-toggle {
    color: #DAA520;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.4s ease;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.1);
    text-align: center;
}

.faq-item.active .faq-toggle {
    background: #DAA520;
    color: #001122;
    border-color: #DAA520;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    padding: 0 25px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px 25px;
    opacity: 1;
}

.faq-answer p {
    color: rgba(245, 245, 245, 0.8);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Estilos para página de guías */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.guide-card {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 165, 32, 0.6);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
}

.guide-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.guide-card h3 {
    color: #daa520;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.guide-card p {
    color: #ccc;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.6;
}

.guide-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-details li {
    color: #aaa;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.guide-details li:before {
    content: "✓";
    color: #daa520;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.guide-details li:last-child {
    border-bottom: none;
}

.contact-support {
    margin: 80px 0 50px;
}

.support-banner {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(0, 0, 0, 0.4));
    border: 2px solid rgba(218, 165, 32, 0.4);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.support-banner h3 {
    color: #daa520;
    font-size: 28px;
    margin-bottom: 15px;
}

.support-banner p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 30px;
}

.support-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
}

.support-btn.primary {
    background: linear-gradient(45deg, #daa520, #b8860b);
    color: #000;
}

.support-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4);
}

.support-btn.secondary {
    border: 2px solid #daa520;
    color: #daa520;
    background: transparent;
}

.support-btn.secondary:hover {
    background: #daa520;
    color: #000;
}

/* ========================================
   MOBILE VIEWPORT FIX FOR VPS DEPLOYMENT
   ======================================== */

/* Ensure proper mobile detection across all browsers and servers */
@media screen and (max-width: 480px) {
    body {
        min-width: 320px !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .container {
        padding: 0 10px !important;
        max-width: 100% !important;
    }
}

/* ========================================
   IMPROVED MOBILE RESPONSIVE DESIGN
   ======================================== */

/* Enhanced Mobile Styles for Better Phone Experience */
@media screen and (max-width: 767px) {
    /* Force mobile layout - important for VPS compatibility */
    * {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Base mobile adjustments */
    html {
        font-size: 14px !important; /* Reduce base font size for mobile */
        width: 100%;
    }
    
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Container improvements */
    .container {
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Header mobile improvements */
    .header {
        padding: 10px 0 !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .nav {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        align-items: center !important;
    }
    
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    /* Hero section mobile */
    .hero {
        padding: 40px 0 !important;
        min-height: auto !important;
        width: 100% !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .title-main {
        font-size: 1.8rem;
    }
    
    .title-highlight {
        font-size: 1.6rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat {
        min-width: 80px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Form improvements for mobile */
    .form-container {
        padding: 20px 15px !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .form-header p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .trial-benefits {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .benefit {
        font-size: 0.8rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 12px 15px;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 15px 20px;
        width: 100%;
    }
    
    /* Video section mobile */
    .video-intro {
        padding: 40px 0;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .video-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .video-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 10px;
        margin: 20px 0;
    }
    
    .video-stat {
        font-size: 0.8rem;
    }
    
    /* Features section mobile */
    .features {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Exchanges section mobile */
    .exchanges-section {
        padding: 40px 0;
    }
    
    .exchanges-section h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .exchanges-section p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .exchanges-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .exchange-item {
        padding: 15px 10px;
    }
    
    .exchange-item span {
        font-size: 0.75rem;
    }
    
    .exchange-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
    }
    
    .exchange-stats .stat {
        text-align: center;
        min-width: auto;
    }
    
    .exchange-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .exchange-stats .stat-label {
        font-size: 0.7rem;
    }
    
    /* Testimonials mobile */
    .social-proof {
        padding: 40px 0;
    }
    
    .social-proof h2 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .testimonial {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .testimonial-author strong {
        font-size: 0.95rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    /* Trust indicators mobile */
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .trust-item {
        text-align: center;
        max-width: 200px;
    }
    
    .trust-rating {
        margin-bottom: 5px;
    }
    
    .rating-number {
        font-size: 1rem;
    }
    
    .trust-source {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .trust-reviews {
        font-size: 0.7rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .footer-logo-text {
        font-size: 1.4rem;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Page content mobile adjustments */
    .page-content {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .page-header p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
}

/* Extra small mobile devices */
@media (max-width: 400px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .title-main {
        font-size: 1.6rem;
    }
    
    .title-highlight {
        font-size: 1.4rem;
    }
    
    .form-container {
        padding: 15px 10px;
    }
    
    .exchanges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .exchange-item {
        padding: 10px 5px;
    }
    
    .exchange-item span {
        font-size: 0.7rem;
    }
    
    /* ========================================
       SPECIFIC PAGE MOBILE OPTIMIZATIONS
       ======================================== */
    
    /* Pricing page mobile */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .plan-header h3 {
        font-size: 1.3rem;
    }
    
    .price {
        margin: 15px 0;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .plan-features {
        margin: 15px 0;
        padding: 0;
    }
    
    .plan-features li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 8px;
        padding: 0;
    }
    
    .plan-button {
        font-size: 0.95rem;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }
    
    .trial-notice {
        padding: 15px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .trial-notice h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .trial-notice p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Platform page mobile - Fix icons */
    .platform-features .feature-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    /* Company page mobile - Timeline optimizations */
    .timeline-container {
        padding: 30px 10px;
    }
    
    .timeline {
        padding-left: 35px;
    }
    
    .timeline::before {
        left: 15px;
        width: 2px;
    }
    
    .timeline-item {
        padding: 15px 10px 15px 40px;
        margin-bottom: 30px;
    }
    
    .timeline-item::before {
        left: 11px;
        width: 10px;
        height: 10px;
    }
    
    .timeline-year {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .timeline-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .timeline-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .timeline-highlights {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .timeline-highlight {
        font-size: 0.8rem;
        padding: 10px 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .timeline-highlight strong {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .timeline-metrics {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .timeline-metric {
        min-width: 70px;
        text-align: center;
    }
    
    .timeline-metric-number {
        font-size: 1.2rem;
    }
    
    .timeline-metric-label {
        font-size: 0.7rem;
    }
    
    /* Support page mobile */
    .support-options {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .support-card {
        padding: 20px 15px;
        text-align: center;
    }
    
    .support-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .support-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .support-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .support-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    /* FAQ mobile improvements */
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Access page mobile */
    .login-container {
        max-width: 350px;
        margin: 0 auto;
        padding: 20px 15px;
    }
    
    .login-header h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .login-header p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .login-form .form-group {
        margin-bottom: 15px;
    }
    
    .login-form label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .login-form input {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 12px 15px;
    }
    
    .login-button {
        font-size: 1rem;
        padding: 12px 20px;
        width: 100%;
    }
    
    /* Guides page mobile */
    .guides-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .guide-card {
        padding: 20px 15px;
    }
    
    .guide-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .guide-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .guide-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .guide-details ul {
        margin: 0;
        padding-left: 20px;
    }
    
    .guide-details li {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 5px;
    }
    
    /* Legal pages mobile */
    .legal-content {
        padding: 0;
    }
    
    .legal-section {
        margin-bottom: 25px;
        padding: 20px 15px;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .legal-section p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .legal-section ul,
    .legal-section ol {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    
    .legal-section li {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .legal-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .legal-header h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .legal-header p {
        font-size: 0.8rem;
        color: rgba(245, 245, 245, 0.7);
    }
    
    /* CTA sections mobile */
    .cta-section {
        text-align: center;
        padding: 30px 15px;
        margin: 30px 0;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-section .cta-button {
        font-size: 1rem;
        padding: 15px 25px;
        width: auto;
        min-width: 200px;
    }
}
