/* =========================================
   AuraFX - Premium Trading Platform Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Blue & White Theme */
    --bg-dark: #F8FAFC;         /* Main background - Off-white */
    --bg-surface: #FFFFFF;      /* Surface background - Pure white */
    
    --text-primary: #0F172A;    /* Main text - Dark blue/grey */
    --text-secondary: #475569;  /* Secondary text - Medium slate */
    --text-muted: #718096;
    
    /* Vibrant Accents */
    --accent-blue: #2563EB;     /* Primary blue */
    --accent-cyan: #0284C7;     /* Secondary blue */
    --accent-purple: #3B82F6;   /* Tertiary blue */
    
    /* Trading Colors */
    --trade-up: #10B981;        /* Green for up */
    --trade-down: #EF4444;      /* Red for down */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #0284C7 100%);
    --gradient-glow: linear-gradient(135deg, rgba(37,99,235,0.5) 0%, rgba(6,182,212,0.5) 100%);
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Animation & Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Layout */
    --container-width: 1280px;
    --nav-height: 80px;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   Typography & Utilities
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-padding {
    padding: 100px 0;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-glow {
    box-shadow: 0 4px 20px -5px rgba(6, 182, 212, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 8px 30px -5px rgba(6, 182, 212, 0.6);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(37, 99, 235, 0.05);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* =========================================
   Section 8: Account Creation Guide (Timeline)
   ========================================= */
.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(37, 99, 235, 0.1);
    z-index: 0;
}

.timeline-step {
    flex: 1;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: #FFFFFF;
    box-shadow: 0 0 0 8px var(--bg-dark), 0 4px 10px rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.gap-1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    height: 70px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo i {
    font-size: 1.8rem;
    color: var(--accent-cyan);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--text-primary);
}

/* =========================================
   Mobile Menu
   ========================================= */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    z-index: 990;
    padding-top: 5rem;
    transform: translateY(-100%);
    transition: transform var(--transition-normal);
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(37, 99, 235, 0.05);
    padding-bottom: 1rem;
}

.mobile-nav-link:hover {
    color: var(--text-primary);
    padding-left: 10px;
}

.mobile-actions {
    margin-top: 2rem;
}

/* =========================================
   Utilities & Common Components
   ========================================= */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.text-up {
    color: var(--trade-up);
}

.text-down {
    color: var(--trade-down);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(6, 182, 212, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

.glass-card {
    background: #FFFFFF;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

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

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.4;
}

.hero-glow.bg-blue {
    top: -10%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
}

.hero-glow.bg-purple {
    bottom: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: var(--accent-purple);
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    height: 40px;
    width: 1px;
    background: rgba(37, 99, 235, 0.1);
}

/* Hero Visual / Coin Animation */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coin-animation-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-1 { width: 200px; height: 200px; animation: spin-slow 20s linear infinite; }
.orbit-2 { width: 300px; height: 300px; animation: spin-slow 30s linear infinite reverse; }
.orbit-3 { width: 400px; height: 400px; animation: spin-slow 40s linear infinite; }

.center-globe {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-blue);
    position: relative;
    z-index: 5;
    background: #FFFFFF;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.2);
}

.floating-asset {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
    z-index: 10;
}

/* 
   To make them revolve, we place them on the edge of their respective `.orbit` div 
   which is spinning. We explicitly apply counter rotation animations to keep them upright.
*/

/* Inner Orbit (Orbit 1) -> width 200px (radius 100), center is 100, asset is 50 -> left/top center is 75px */
.orbit-1 .asset-btc { top: -25px; left: 75px; color: #F59E0B; animation: counter-spin-slow 20s linear infinite; }
.orbit-1 .asset-eth { bottom: -25px; left: 75px; color: #627EEA; animation: counter-spin-slow 20s linear infinite; }
.orbit-1 .asset-eur { left: -25px; top: 75px; color: #3B82F6; animation: counter-spin-slow 20s linear infinite; }
.orbit-1 .asset-jpy { right: -25px; top: 75px; color: #EF4444; animation: counter-spin-slow 20s linear infinite; }

/* Middle Orbit (Orbit 2) -> width 300px (radius 150), center is 150, asset is 50 -> left/top center is 125px */
/* This orbit spins backwards (counter-clockwise) so assets must spin slowly FORWARDS (clockwise) to stay steady */
.orbit-2 .asset-gold { top: -25px; left: 125px; color: #FFD700; animation: spin-slow 30s linear infinite; }
.orbit-2 .asset-usd { bottom: -25px; left: 125px; color: var(--trade-up); animation: spin-slow 30s linear infinite; }
.orbit-2 .asset-aapl { left: -25px; top: 125px; color: #0F172A; animation: spin-slow 30s linear infinite; }
.orbit-2 .asset-tsla { right: -25px; top: 125px; color: #E31937; animation: spin-slow 30s linear infinite; }

/* Outer Orbit (Orbit 3) -> width 400px (radius 200), center is 200, asset is 50 -> left/top center is 175px */
.orbit-3 .asset-trend { top: -25px; left: 175px; color: var(--accent-cyan); animation: counter-spin-slow 40s linear infinite; }
.orbit-3 .asset-amzn { bottom: -25px; left: 175px; color: #FF9900; animation: counter-spin-slow 40s linear infinite; }
.orbit-3 .asset-msft { left: -25px; top: 175px; color: #00A4EF; animation: counter-spin-slow 40s linear infinite; }
.orbit-3 .asset-gbp { right: -25px; top: 175px; color: #8B5CF6; animation: counter-spin-slow 40s linear infinite; }

.company-ticker {
    font-size: 0.8rem;
    font-weight: 800;
}

@keyframes spin-slow {
    100% { transform: rotate(360deg); }
}

@keyframes counter-spin-slow {
    100% { transform: rotate(-360deg); }
}

.btn-hover-animate:hover i {
    transform: translateX(5px);
}

/* =========================================
   Why Choose Us (Grid Infographic)
   ========================================= */
.why-choose-us {
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    padding: 2.5rem 2rem;
    text-align: left;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.5, 0, 0, 1), box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.why-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card.is-visible:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.why-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Base Reveal Animation Classes (Framer Motion emulation) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Section 4: Market Summary Widget
   ========================================= */
.market-summary-section {
    width: 100%;
    background: #FFFFFF;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 20;
}

.market-ticker-container {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.market-ticker-track {
    display: flex;
    gap: 3rem;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.ticker-pair {
    color: var(--text-primary);
}

.ticker-price {
    color: var(--text-secondary);
}

.ticker-change {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Assumes track content is duplicated */
}

/* =========================================
   Section 5: Smart Trading Platforms
   ========================================= */
.platforms {
    position: relative;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.platform-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
    background: #FFFFFF;
}

.platform-image-placeholder {
    height: 200px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--accent-blue);
    position: relative;
}

.platform-image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.platform-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.platform-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.platform-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.platform-content .btn {
    align-self: flex-start;
}


/* =========================================
   Section 6: Trading Instruments (Reusable Grid)
   ========================================= */
.section-header {
    margin-bottom: 4rem;
}

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

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.market-card {
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: block; 
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-normal);
}

.market-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
    background: #FFFFFF;
}

.market-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.bg-blue-light { background: rgba(37, 99, 235, 0.1); color: var(--accent-blue); }
.bg-purple-light { background: rgba(139, 92, 246, 0.1); color: var(--accent-purple); }
.bg-green-light { background: rgba(16, 185, 129, 0.1); color: var(--trade-up); }
.bg-orange-light { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }

.market-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.market-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.market-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.95rem;
}

.market-card:hover .market-link i {
    transform: translateX(5px);
}

/* =========================================
   Section 7: Partnership Program
   ========================================= */
.partnership {
    background: var(--bg-surface);
}

.partnership-cards {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.partner-card {
    padding: 2.5rem;
    position: relative;
    border-left: 4px solid transparent;
    transition: var(--transition-normal);
}

.partner-card:nth-child(1) { border-left-color: var(--trade-up); }
.partner-card:nth-child(2) { border-left-color: #F59E0B; }

.partner-card:hover {
    transform: translateX(10px);
}

.partner-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partner-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partner-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.partner-benefits i {
    font-size: 1.1rem;
}
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(37, 99, 235, 0.05);
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a:hover {
    color: var(--text-primary);
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.disclaimer {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* =========================================
   Media Queries
   ========================================= */
@media (max-width: 992px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .container-features {
        grid-template-columns: 1fr;
    }

    .info-lines {
        display: none;
    }

    .timeline-container {
        flex-direction: column;
        gap: 3rem;
    }

    .timeline-container::before {
        top: 0;
        bottom: 0;
        left: 50px;
        width: 2px;
        height: 100%;
        right: auto;
    }

    .timeline-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .timeline-icon {
        margin-bottom: 0;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .coin-animation-container {
        transform: scale(0.7);
    }
    
    .infographic-container {
        height: 500px;
        flex-direction: column;
        gap: 2rem;
    }
    
    .info-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 80%;
    }

    .info-center {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
