/* ==========================================
   GOLDEN VIPER EA - Premium Landing Page
   ========================================== */

:root {
    /* Colors */
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --black: #0A0A0A;
    --black-light: #141414;
    --black-lighter: #1E1E1E;
    --green: #00C853;
    --green-dark: #00A843;
    --red: #FF1744;
    --orange: #FF9100;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-300: #B0B0B0;
    --gray-400: #808080;
    --gray-500: #606060;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    --dark-gradient: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gold { color: var(--gold); }
.green { color: var(--green); }
.orange { color: var(--orange); }

.section {
    padding: var(--section-padding);
}

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

.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-500);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

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

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

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

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-200);
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 24px;
    border-radius: 6px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-300);
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: left;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.stat-suffix {
    font-family: var(--font-mono);
    font-size: 24px;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 4px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-300);
}

.badge-icon {
    color: var(--green);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.chart-mockup {
    width: 100%;
    max-width: 500px;
    background: var(--black-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-pair {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
}

.chart-profit {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
}

.chart-line {
    height: 200px;
    background: linear-gradient(180deg, 
        rgba(0, 200, 83, 0.2) 0%, 
        rgba(0, 200, 83, 0) 100%
    );
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-line::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    transform: rotate(-5deg);
}

.trade-notification {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 20px;
    animation: slideIn 0.5s ease;
}

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

.notif-icon {
    font-size: 24px;
}

.notif-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

/* Ticker */
.ticker-wrapper {
    background: var(--black-light);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 16px 0;
    overflow: hidden;
}

.ticker {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
}

.ticker-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-200);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Performance Section */
.performance {
    background: var(--black-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--black-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.stat-card-value {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-card-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-card-period {
    font-size: 13px;
    color: var(--gray-400);
}

.myfxbook-widget {
    margin-bottom: 40px;
}

.widget-placeholder {
    background: var(--black-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
}

.equity-curve {
    margin-bottom: 20px;
}

.curve-svg {
    width: 100%;
    height: auto;
}

.curve-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 10px;
}

.widget-note {
    text-align: center;
    color: var(--gray-400);
    font-size: 14px;
}

.myfxbook-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 16px 32px;
    border-radius: 50px;
    margin: 0 auto;
    width: fit-content;
}

.myfxbook-badge img {
    height: 24px;
}

.myfxbook-badge span {
    font-weight: 600;
}

.verify-link {
    color: var(--gold);
    font-weight: 600;
}

/* How It Works */
.how-it-works {
    background: var(--black);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 32px;
    background: var(--black-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    transition: border-color 0.3s ease;
}

.step:hover {
    border-color: var(--gold);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: var(--gray-300);
}

.step-arrow {
    font-size: 32px;
    color: var(--gold);
    align-self: center;
}

/* Features */
.features {
    background: var(--black-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--black-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.6;
}

/* Trades */
.trades {
    background: var(--black);
}

.trades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trade-card {
    background: var(--black-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
}

.trade-card.win {
    border-color: rgba(0, 200, 83, 0.3);
}

.trade-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 200, 83, 0.1);
}

.trade-type {
    font-weight: 700;
    font-size: 14px;
}

.trade-type.buy { color: var(--green); }
.trade-type.sell { color: var(--red); }

.trade-pair {
    font-family: var(--font-mono);
    font-weight: 700;
}

.trade-details {
    padding: 20px;
}

.trade-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.trade-row span:first-child {
    color: var(--gray-400);
}

.trade-profit {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
    text-align: center;
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.trade-rr {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    padding-bottom: 16px;
}

/* Comparison */
.comparison {
    background: var(--black-light);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--black-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
}

.comparison-header {
    background: rgba(212, 175, 55, 0.1);
    font-weight: 700;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-row {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    font-weight: 600;
}

.comparison-us {
    color: var(--green);
}

.comparison-them {
    color: var(--gray-400);
}

.check { color: var(--green); margin-right: 8px; }
.cross { color: var(--red); margin-right: 8px; }

/* Pricing */
.pricing {
    background: var(--black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--black-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.popular {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.pricing-card.lifetime {
    border-color: var(--gold);
}

.popular-badge,
.lifetime-badge,
.trial-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--black);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.trial-badge {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.pricing-card.trial {
    border-color: var(--green);
}

.pricing-card.trial .price-amount {
    color: var(--green);
}

.pricing-card.trial .price-currency {
    color: var(--green);
}

.pricing-trial-note {
    font-size: 13px;
    color: var(--green);
    margin-top: 8px;
}

.btn-trial {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.btn-trial:hover {
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.4);
    transform: translateY(-2px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
}

.price-amount {
    font-family: var(--font-mono);
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
}

.price-period {
    font-size: 16px;
    color: var(--gray-400);
}

.pricing-save {
    background: rgba(0, 200, 83, 0.1);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    display: inline-block;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

.pricing-guarantee {
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px 40px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.guarantee-icon {
    font-size: 40px;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.guarantee-text span {
    font-size: 14px;
    color: var(--gray-300);
}

.payment-methods {
    color: var(--gray-400);
    font-size: 14px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

/* Account Dropdown */
.account-dropdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.dropdown-label {
    font-size: 16px;
    color: var(--gray-300);
    font-weight: 500;
}

.account-dropdown {
    position: relative;
    display: inline-block;
}

.account-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--black-lighter);
    border: 2px solid var(--gold);
    color: var(--white);
    padding: 14px 50px 14px 20px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    min-width: 280px;
    transition: all 0.3s ease;
}

.account-select:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.account-select:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.account-select option {
    background: var(--black-lighter);
    color: var(--white);
    padding: 12px;
}

.dropdown-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 12px;
    pointer-events: none;
}

/* Hide plural 's' for 1 account */
.account-plural {
    display: none;
}

.accounts-multi .account-plural {
    display: inline;
}

/* Price animation */
.price-amount {
    transition: all 0.3s ease;
}

.price-updating {
    opacity: 0;
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .account-dropdown-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .account-select {
        min-width: 100%;
        max-width: 300px;
    }
}

/* Testimonials */
.testimonials {
    background: var(--black-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--black-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-200);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
}

.author-info strong {
    display: block;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray-400);
}

/* FAQ */
.faq {
    background: var(--black);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 24px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray-300);
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: var(--gold-gradient);
    padding: 100px 20px;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.cta-title .gold {
    color: var(--black);
    text-decoration: underline;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 40px;
}

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

.final-cta .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cta-guarantee {
    margin-top: 24px;
    font-size: 14px;
    color: var(--black);
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-brand p {
    color: var(--gray-400);
    margin: 16px 0 24px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--gray-400);
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gold);
}

.footer-links a {
    display: block;
    color: var(--gray-400);
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    text-align: center;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--gray-500);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 14px;
    color: var(--gray-400);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-content a {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    padding: 16px;
    color: var(--white);
}

.mobile-menu-content .btn {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trades-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        font-size: 14px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================
   AUTH MODAL STYLES
   ========================================== */

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal-content {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 100px rgba(212, 175, 55, 0.1);
}

.auth-modal.active .auth-modal-content {
    transform: translateY(0);
}

.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.auth-modal-header h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.auth-subtitle {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--gray-300);
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: white;
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-500);
}

.auth-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.auth-btn .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.auth-links {
    text-align: center;
    margin-top: 15px;
}

.auth-links a {
    color: var(--gold);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-links a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.auth-links .divider {
    color: var(--gray-500);
    margin: 0 10px;
}

.auth-message {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 15px;
}

.auth-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.auth-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.auth-message.info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-success { border-color: rgba(34, 197, 94, 0.5); }
.toast-error { border-color: rgba(239, 68, 68, 0.5); }
.toast-info { border-color: rgba(59, 130, 246, 0.5); }

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.toast-success .toast-icon { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.toast-error .toast-icon { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.toast-info .toast-icon { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }

.toast-message {
    color: white;
    font-size: 14px;
}

/* Mobile Auth Modal */
@media (max-width: 480px) {
    .auth-modal-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .auth-modal-header h2 {
        font-size: 24px;
    }
}
