/* ==========================================
   Binance 9th Anniversary - Brazilian Landing Page
   Premium & Festive Design
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Binance Gold Theme */
    --gold-primary: #F0B90B;
    --gold-light: #FCD535;
    --gold-dark: #C79A00;
    --gold-gradient: linear-gradient(135deg, #F0B90B 0%, #FCD535 50%, #F0B90B 100%);
    
    /* Accent Colors */
    --red-primary: #F0B90B;
    --red-light: #FCD535;
    --red-dark: #C79A00;
    
    /* Dark Gold Theme - Binance Classic */
    --dark-bg: #0E0E0E;
    --dark-secondary: #1A1410;
    --dark-card: #252015;
    --dark-border: #3D3520;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B7BDC6;
    --text-muted: #848E9C;
    
    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Sora', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 30px rgba(240, 185, 11, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

/* ==========================================
   Header
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 14, 17, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold-primary);
}

.logo i {
    font-size: 1.8rem;
}

.logo strong {
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav a:hover {
    color: var(--gold-primary);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    background: 
        radial-gradient(circle at 50% 0%, rgba(240, 185, 11, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 50%, rgba(240, 185, 11, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0E0E0E 0%, #1A1410 100%);
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Firework Animation */
.firework {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: firework 2s ease-out infinite;
}

.firework:nth-child(1) {
    top: 20%;
    left: 15%;
    background: var(--red-primary);
    animation-delay: 0s;
}

.firework:nth-child(2) {
    top: 30%;
    right: 20%;
    background: var(--red-primary);
    animation-delay: 0.5s;
}

.firework:nth-child(3) {
    top: 15%;
    right: 35%;
    background: var(--gold-light);
    animation-delay: 1s;
}

@keyframes firework {
    0% {
        transform: scale(0);
        opacity: 1;
        box-shadow: 
            0 0 0 0 var(--red-primary),
            40px -20px 0 0 var(--red-primary),
            -40px -20px 0 0 var(--red-primary),
            20px -40px 0 0 var(--red-primary),
            -20px -40px 0 0 var(--red-primary),
            40px 20px 0 0 var(--red-primary),
            -40px 20px 0 0 var(--red-primary);
    }
    50% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 
            0 0 0 0 transparent,
            80px -40px 0 0 var(--red-primary),
            -80px -40px 0 0 var(--red-primary),
            40px -80px 0 0 var(--red-primary),
            -40px -80px 0 0 var(--red-primary),
            80px 40px 0 0 var(--red-primary),
            -80px 40px 0 0 var(--red-primary);
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 
            0 0 0 0 transparent,
            120px -60px 0 -3px transparent,
            -120px -60px 0 -3px transparent,
            60px -120px 0 -3px transparent,
            -60px -120px 0 -3px transparent,
            120px 60px 0 -3px transparent,
            -120px 60px 0 -3px transparent;
    }
}

/* Floating Coins */
.coin {
    position: absolute;
    font-size: 3rem;
    color: var(--red-primary);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.coin-1 {
    top: 25%;
    left: 8%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
    color: #627EEA;
}

.coin-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.2), rgba(240, 185, 11, 0.1));
    border: 1px solid rgba(240, 185, 11, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--red-primary);
    margin-bottom: 30px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(240, 185, 11, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(240, 185, 11, 0.4);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .anniversary {
    display: block;
    font-size: 1.3em;
    background: linear-gradient(135deg, var(--red-primary), var(--red-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-subtitle strong {
    color: var(--red-primary);
}

/* Airdrop Box */
.airdrop-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.15), rgba(255, 68, 68, 0.1));
    border: 2px solid var(--red-primary);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: 0 0 30px rgba(240, 185, 11, 0.3);
    animation: airdrop-glow 2s ease-in-out infinite;
}

@keyframes airdrop-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(240, 185, 11, 0.3), 0 0 60px rgba(240, 185, 11, 0.1);
        border-color: var(--red-primary);
    }
    50% {
        box-shadow: 0 0 40px rgba(240, 185, 11, 0.5), 0 0 80px rgba(240, 185, 11, 0.2);
        border-color: var(--red-light);
    }
}

.airdrop-box i {
    font-size: 3rem;
    color: var(--red-primary);
    animation: rocket-bounce 1s ease-in-out infinite;
}

@keyframes rocket-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.airdrop-text {
    flex: 1;
}

.airdrop-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--red-primary);
    margin-bottom: 8px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.airdrop-text p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.highlight-red {
    color: var(--red-primary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(240, 185, 11, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--red-primary);
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-note i {
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ==========================================
   CTA Button
   ========================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 36px;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(240, 185, 11, 0.5);
}

.cta-button.pulse {
    animation: button-pulse 2s ease-in-out infinite;
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 4px 30px rgba(240, 185, 11, 0.3);
    }
    50% {
        box-shadow: 0 4px 50px rgba(240, 185, 11, 0.6);
    }
}

.cta-button .btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--red-primary);
    color: var(--red-primary);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(240, 185, 11, 0.1);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* ==========================================
   Sections
   ========================================== */
.section {
    padding: var(--section-padding);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--red-primary);
    margin-bottom: 20px;
}

.section-badge.center {
    display: flex;
    width: fit-content;
    margin: 0 auto 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ==========================================
   Content Grid (Left-Right Layouts)
   ========================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.image-side {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: var(--dark-card);
    border: 2px dashed var(--dark-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.05) 0%, transparent 50%);
}

.placeholder-content {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--red-primary);
    opacity: 0.5;
}

.placeholder-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.placeholder-content small {
    font-size: 0.75rem;
    line-height: 1.4;
    display: block;
    max-width: 300px;
}

/* Image Box - For actual images */
.image-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--dark-border);
}

.image-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.image-box:hover img {
    transform: scale(1.03);
}

.text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-side .lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--red-primary);
    font-size: 1.2rem;
}

/* Benefit Cards */
.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(90deg, rgba(37, 32, 21, 0.7) 0%, rgba(26, 20, 16, 0.5) 100%);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(240, 185, 11, 0.25);
    transition: all var(--transition-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.benefit-card:hover {
    border-color: var(--gold-primary);
    transform: translateX(10px);
    box-shadow: 0 4px 25px rgba(240, 185, 11, 0.4);
    background: linear-gradient(90deg, rgba(37, 32, 21, 0.9) 0%, rgba(26, 20, 16, 0.7) 100%);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.2), rgba(240, 185, 11, 0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.3rem;
    color: var(--red-primary);
}

.benefit-content h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   About Section
   ========================================== */
.about-section {
    background: 
        radial-gradient(circle at 0% 50%, rgba(240, 185, 11, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #1A1410 0%, #0E0E0E 100%);
}

/* ==========================================
   Benefits Section
   ========================================== */
.benefits-section {
    background: 
        radial-gradient(circle at 100% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0E0E0E 0%, #1A1410 100%);
}

/* ==========================================
   How It Works Section
   ========================================== */
.how-section {
    background: 
        radial-gradient(circle at 50% 50%, rgba(240, 185, 11, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, #1A1410 0%, #0E0E0E 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: linear-gradient(135deg, rgba(37, 32, 21, 0.9) 0%, rgba(26, 20, 16, 0.7) 100%);
    border: 2px solid rgba(240, 185, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.step-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(240, 185, 11, 0.4);
    background: linear-gradient(135deg, rgba(37, 32, 21, 1) 0%, rgba(26, 20, 16, 0.9) 100%);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--red-primary);
    opacity: 0.2;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.15), rgba(240, 185, 11, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: var(--red-primary);
}

.step-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.steps-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #1A1410 0%, #0E0E0E 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(37, 32, 21, 0.8) 0%, rgba(26, 20, 16, 0.6) 100%);
    border: 2px solid rgba(240, 185, 11, 0.25);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover {
    border-color: rgba(240, 185, 11, 0.5);
    box-shadow: 0 6px 30px rgba(240, 185, 11, 0.25);
    background: linear-gradient(135deg, rgba(37, 32, 21, 1) 0%, rgba(26, 20, 16, 0.8) 100%);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 1.3rem;
    color: var(--dark-bg);
}

.testimonial-info h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars {
    margin-top: 5px;
}

.stars i {
    color: var(--red-primary);
    font-size: 0.85rem;
}

.testimonial-card > p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    background: 
        radial-gradient(circle at 70% 70%, rgba(240, 185, 11, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0E0E0E 0%, #1A1410 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(37, 32, 21, 0.7) 0%, rgba(26, 20, 16, 0.5) 100%);
    border: 2px solid rgba(240, 185, 11, 0.25);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.faq-item:hover {
    border-color: rgba(240, 185, 11, 0.5);
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.2);
}

.faq-item.active {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(37, 32, 21, 1) 0%, rgba(26, 20, 16, 0.8) 100%);
    box-shadow: 0 4px 25px rgba(240, 185, 11, 0.4);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 500;
}

.faq-question i {
    color: var(--red-primary);
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px 50px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================
   Final CTA Section
   ========================================== */
.final-cta-section {
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(240, 185, 11, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, #2A2410 0%, #1A1410 100%);
    padding: 80px 0;
    border-top: 2px solid rgba(240, 185, 11, 0.3);
    border-bottom: 2px solid rgba(240, 185, 11, 0.3);
    box-shadow: 0 0 50px rgba(240, 185, 11, 0.1);
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.urgency-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.2) 0%, rgba(204, 0, 0, 0.1) 100%);
    border: 2px solid rgba(240, 185, 11, 0.5);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--red-light);
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.3);
}

.urgency-box i {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: 
        radial-gradient(circle at 50% 100%, rgba(240, 185, 11, 0.1) 0%, transparent 50%),
        #1A1410;
    padding: 40px 0 120px;
    border-top: 2px solid rgba(240, 185, 11, 0.3);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--red-primary);
    margin-bottom: 25px;
}

.footer-logo i {
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--red-primary);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   Fixed Bottom CTA
   ========================================== */
.fixed-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 20, 16, 0.98) 30%);
    padding: 20px;
    display: flex;
    justify-content: center;
}

.fixed-bottom-cta .cta-button {
    max-width: 500px;
    width: 100%;
    justify-content: center;
}

/* ==========================================
   Floating Notifications
   ========================================== */
#notification-container {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notification {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-out 4.5s forwards;
    box-shadow: var(--shadow-soft);
    max-width: 350px;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--red-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon i {
    color: var(--dark-bg);
    font-size: 1rem;
}

.notification-content {
    flex: 1;
}

.notification-content strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.notification-content span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.notification-content .amount {
    color: var(--red-primary);
    font-weight: 600;
}

/* ==========================================
   Modals
   ========================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-medium);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-content h2 {
    padding: 25px 30px;
    border-bottom: 1px solid var(--dark-border);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-content h2 i {
    color: var(--red-primary);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--dark-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

.modal-body h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin: 25px 0 15px;
    color: var(--red-primary);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.modal-body ul {
    color: var(--text-secondary);
    padding-left: 25px;
    margin-bottom: 15px;
}

.modal-body li {
    margin-bottom: 8px;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .image-side {
        order: -1;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        padding: 16px 24px;
        font-size: 0.9rem;
    }
    
    .cta-button.large {
        padding: 18px 28px;
        font-size: 0.95rem;
    }
    
    #notification-container {
        left: 10px;
        right: 10px;
        bottom: 90px;
    }
    
    .notification {
        max-width: 100%;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .text-side h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .fixed-bottom-cta .cta-button {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .fixed-bottom-cta .cta-button i:last-child {
        display: none;
    }
}

/* ==========================================
   Scrollbar Styling
   ========================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-primary);
}
