/* Gold Forex Trading - Public Site Styles */

:root {
    --brand-gold: #D4AF37;
    --brand-gold-light: #F3E5AB;
    --brand-dark: #0B1120;
    --brand-navy: #1E293B;
    --text-main: #334155;
    --text-light: #94a3b8;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: #f8fafc;
    overflow-x: hidden;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(to right, #D4AF37, #b48e18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #000;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 2px solid var(--brand-gold);
    color: var(--brand-gold);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 8px;
    transition: all 0.2s;
    background: transparent;
}

.btn-outline:hover {
    background: var(--brand-gold);
    color: #000;
}

/* Cards */
.plan-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--brand-gold);
}

.plan-header {
    background: var(--brand-dark);
    color: white;
    padding: 20px;
    position: relative;
}

.plan-highlight {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: var(--brand-gold);
}

/* Features List */
.check-list li {
    display: flex;
    align-items: start;
    margin-bottom: 12px;
}

.check-list li i {
    color: var(--brand-gold);
    margin-right: 10px;
    margin-top: 4px;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(11, 17, 32, 0.9), rgba(11, 17, 32, 0.8)), url('https://images.unsplash.com/photo-1611974765270-ca1258634369?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.glass-nav {
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}