/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #F7931A;
    --primary-orange: #FF8C00;
    --success-green: #00D4AA;
    --danger-red: #FF4757;
    --dark-bg: #0A0E17;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-glass: rgba(255, 255, 255, 0.1);
    --shadow-primary: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(247, 147, 26, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.bitcoin-spin {
    font-size: 4rem;
    color: var(--primary-gold);
    animation: spin 2s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   HEADER - Clean & Balanced
   ======================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo {
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.logo i {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    color: #fff;
}

.logo-accent {
    color: var(--primary-gold) !important;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.4rem 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.wallet-balance {
    background: rgba(247, 147, 26, 0.08);
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(247, 147, 26, 0.25);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    white-space: nowrap;
}

.wallet-balance i {
    color: var(--primary-gold);
    font-size: 0.85rem;
}

.btn-login {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    color: #000;
    padding: 0.6rem 1.3rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.25);
    white-space: nowrap;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.45);
}

/* ========================================
   HERO SECTION - Compact & Balanced
   ======================================== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 110px 2rem 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 14, 23, 0.8) 0%,
        rgba(26, 35, 126, 0.6) 50%,
        rgba(10, 14, 23, 0.9) 100%);
    z-index: 1;
}

.hero-bg::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23F7931A" stop-opacity="0.1"/><stop offset="100%" stop-color="%23F7931A" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"><animate attributeName="r" values="100;150;100" dur="3s" repeatCount="indefinite"/></circle><circle cx="800" cy="300" r="80" fill="url(%23a)"><animate attributeName="r" values="80;120;80" dur="4s" repeatCount="indefinite"/></circle></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 280px;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.badge {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    color: #000;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-gold), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 550px;
    line-height: 1.6;
    margin: 0;
}

.hero-subtitle strong {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Rate Widget - Compact */
.rate-widget-main {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    max-width: 480px;
}

.rate-widget-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(247, 147, 26, 0.3);
}

.rate-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rate-header i {
    font-size: 1rem;
}

.rate-price {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.15rem;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.rate-change {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rate-change i {
    font-size: 0.75rem;
}

.positive { color: var(--success-green); }
.negative { color: var(--danger-red); }

.rate-sparkline {
    margin-top: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    height: 36px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.85rem !important;
    border-radius: 22px !important;
}

/* Hero Stats - Right Side */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.stat-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--border-glass);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(-5px);
    border-color: rgba(247, 147, 26, 0.3);
}

.stat-number {
    font-size: 1.65rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.15rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   COMPACT TICKER BAR (TradingView Style)
   ======================================== */
.ticker-bar {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.ticker-bar::before,
.ticker-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.ticker-bar::before {
    left: 0;
    background: linear-gradient(90deg, #000 0%, transparent 100%);
}

.ticker-bar::after {
    right: 0;
    background: linear-gradient(-90deg, #000 0%, transparent 100%);
}

.ticker-wrapper {
    overflow: hidden;
    width: 100%;
}

.ticker-track {
    display: flex;
    align-items: center;
    animation: ticker-scroll 60s linear infinite;
    width: max-content;
    padding: 12px 0;
}

.ticker-bar:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    flex-shrink: 0;
}

.ticker-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.ticker-icon svg {
    width: 100%;
    height: 100%;
}

.ticker-icon i {
    font-size: 0.9rem;
}

/* Icon color variants */
.ticker-icon.nasdaq {
    background: #ffffff;
    color: #000000;
}

.ticker-icon.btc {
    background: #F7931A;
    color: #fff;
}

.ticker-icon.eth {
    background: #627EEA;
    color: #fff;
}

.ticker-icon.sp {
    background: #E11D48;
    color: #fff;
    font-size: 0.6rem;
}

.ticker-icon.gold {
    background: #FFD700;
    color: #000;
}

.ticker-icon.oil {
    background: #1F2937;
    color: #10B981;
    border: 1px solid #10B981;
}

.ticker-icon.dow {
    background: #2563EB;
    color: #fff;
    font-size: 0.6rem;
}

.ticker-icon.gbp {
    background: #DC2626;
    color: #fff;
    font-size: 0.85rem;
}

.ticker-icon.eur {
    background: transparent;
    padding: 0;
}

.ticker-name {
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.ticker-value {
    color: #ffffff;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.ticker-change {
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    font-size: 0.85rem;
}

.ticker-change.up {
    color: #22c55e;
}

.ticker-change.down {
    color: #ef4444;
}

.ticker-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ticker-item {
        padding: 0 16px;
        gap: 8px;
        font-size: 0.8rem;
    }
    
    .ticker-icon {
        width: 20px;
        height: 20px;
        font-size: 0.55rem;
    }
    
    .ticker-icon i {
        font-size: 0.75rem;
    }
    
    .ticker-change {
        font-size: 0.75rem;
    }
    
    .ticker-track {
        animation-duration: 45s;
        padding: 10px 0;
    }
    
    .ticker-bar::before,
    .ticker-bar::after {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .ticker-item {
        padding: 0 12px;
        gap: 6px;
        font-size: 0.75rem;
    }
    
    .ticker-icon {
        width: 18px;
        height: 18px;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-gold);
}

.feature-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-stats {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-stats span:first-child {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--success-green);
}

/* Plans Section */
.plans-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(26, 35, 126, 0.3) 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
}

.bronze::before { background: linear-gradient(90deg, #CD7F32, #D4AF37); }
.silver::before { background: linear-gradient(90deg, #C0C0C0, #E5E4E2); }
.gold::before { background: linear-gradient(90deg, #FFD700, #FFA500); }
.platinum::before { background: linear-gradient(90deg, #E5E4E2, #BFC1C2); }

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.featured {
    transform: scale(1.05);
    border-color: var(--primary-gold) !important;
    box-shadow: var(--shadow-glow);
}

.popular {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange)) !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(247, 147, 26, 0.5); }
    50% { box-shadow: 0 0 40px rgba(247, 147, 26, 0.8); }
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.plan-pricing {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
}

.period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-glass);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--success-green);
    width: 20px;
}

.btn-plan {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    color: #000;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Reviews */
.reviews-section {
    padding: 100px 0;
}

.reviews-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2.5rem;
    min-width: 400px;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
}

.review-header h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stars {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.review-card p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    text-align: center;
    border-radius: 40px;
    margin: 4rem 2rem;
    transform: translateY(40px);
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    color: rgba(0,0,0,0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-xl {
    padding: 1.2rem 3rem !important;
    font-size: 1.1rem !important;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(247, 147, 26, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-gold);
    padding: 0.9rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid var(--border-glass);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .logo {
    font-size: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .coin-item {
        min-width: 240px;
        padding: 0.75rem 1.5rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-slider {
        flex-direction: column;
    }
    
    .review-card {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 100px 1rem 2rem;
        text-align: center;
    }
    
    .rate-widget-main {
        padding: 1.5rem;
    }
    
    .rate-price {
        font-size: 2.5rem;
    }
}