/* ============================================
   Q-Valtinvion Invest — Light Futuristic Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --bg-primary: #f8f9fc;
    --bg-white: #ffffff;
    --bg-glass: rgba(255,255,255,0.72);
    --bg-hero: linear-gradient(160deg, #f0f4ff 0%, #e8f0fe 30%, #f5f0ff 60%, #fef8f0 100%);
    --bg-section-alt: #f2f4f9;
    --bg-card: #ffffff;
    --bg-card-hover: #fafbff;
    --bg-dark-section: #0c1024;
    --bg-dark-card: #151a30;
    --text-primary: #0f1629;
    --text-secondary: #4a5068;
    --text-muted: #8890a4;
    --text-white: #ffffff;
    --accent-primary: #3b6cf5;
    --accent-primary-light: #eef2ff;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #3b6cf5, #8b5cf6);
    --accent-gradient-h: linear-gradient(135deg, #8b5cf6, #3b6cf5);
    --accent-gold: #f59e0b;
    --accent-gold-light: #fef3c7;
    --green: #10b981;
    --green-light: #d1fae5;
    --red: #ef4444;
    --border-light: rgba(0,0,0,0.06);
    --border-card: rgba(0,0,0,0.08);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.1);
    --shadow-glow: 0 8px 40px rgba(59,108,245,0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}
a { color: var(--accent-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-secondary); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ====== HEADER ====== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border-light);
    padding: 0;
    transition: var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
    font-family: var(--font-display);
    box-shadow: 0 4px 16px rgba(59,108,245,0.25);
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.3px;
}
.logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

/* Nav */
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}
.header-nav a:hover, .header-nav a.active {
    color: var(--accent-primary);
    background: var(--accent-primary-light);
}
.nav-cta {
    background: var(--accent-gradient) !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-glow);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-primary);
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ====== HERO SECTION ====== */
.hero {
    background: var(--bg-hero);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,108,245,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-primary-light);
    color: var(--accent-primary);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(59,108,245,0.12);
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.hero h1 .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; margin-bottom: 40px; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-gradient);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 48px rgba(59,108,245,0.25); color: white; }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--border-card);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-secondary:hover { border-color: var(--accent-primary); color: var(--accent-primary); transform: translateY(-2px); }

/* Social proof */
.social-proof { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar-stack img {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    margin-left: -10px;
    object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }
.proof-text { font-size: 14px; color: var(--text-secondary); }
.proof-text strong { color: var(--text-primary); }
.stars { color: var(--accent-gold); font-size: 14px; letter-spacing: 2px; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card-main {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    width: 380px;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-light);
}
.hero-card-main h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}
.form-group { margin-bottom: 14px; }
.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(59,108,245,0.1); }
.form-group input::placeholder { color: var(--text-muted); }
.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(59,108,245,0.25); }
.hero-card-float {
    position: absolute;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}
.hero-card-float.top-left { top: -20px; left: -40px; animation-delay: -1s; }
.hero-card-float.bottom-right { bottom: -10px; right: -40px; animation-delay: -3s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.float-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.float-value { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.float-value.green { color: var(--green); }
.float-icon { font-size: 28px; margin-bottom: 6px; }

/* ====== SECTIONS COMMON ====== */
section { padding: 90px 0; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    font-family: var(--font-display);
}
.section-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: var(--text-primary);
}
.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 48px;
}
.section-center { text-align: center; }
.section-center .section-desc { margin-left: auto; margin-right: auto; }

/* ====== STATS BAR ====== */
.stats-bar {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-light);
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* ====== CRYPTO TICKER ====== */
.crypto-ticker {
    background: var(--bg-section-alt);
    padding: 24px 0;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker 30s linear infinite;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
}
.ticker-item .symbol { color: var(--text-primary); }
.ticker-item .price { color: var(--text-secondary); }
.ticker-item .change { font-size: 13px; padding: 3px 8px; border-radius: var(--radius-sm); font-weight: 600; }
.ticker-item .change.up { background: var(--green-light); color: var(--green); }
.ticker-item .change.down { background: #fee2e2; color: var(--red); }

/* ====== FEATURES ====== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ====== CRYPTO SECTION ====== */
.crypto-section {
    background: var(--bg-dark-section);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.crypto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(59,108,245,0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(139,92,246,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.crypto-section .section-title { color: var(--text-white); }
.crypto-section .section-desc { color: rgba(255,255,255,0.6); }
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.crypto-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.crypto-card:hover { border-color: rgba(59,108,245,0.3); transform: translateY(-4px); }
.crypto-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.crypto-card-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255,255,255,0.06);
}
.crypto-card-name { color: var(--text-white); font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.crypto-card-symbol { color: rgba(255,255,255,0.4); font-size: 13px; }
.crypto-card-price { color: var(--text-white); font-family: var(--font-display); font-weight: 700; font-size: 24px; margin-bottom: 8px; }
.crypto-card-change { font-size: 14px; font-weight: 600; }
.crypto-card-change.up { color: #34d399; }
.crypto-card-change.down { color: #f87171; }
.crypto-card-chart { height: 50px; margin-top: 16px; opacity: 0.6; }

/* ====== TESTIMONIALS ====== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--accent-gold); font-size: 18px; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--accent-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent-primary);
    font-size: 18px;
}
.testimonial-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

/* ====== FAQ ====== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--accent-primary); }
.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}
.faq-chevron {
    transition: transform 0.3s ease;
    color: var(--text-muted);
    flex-shrink: 0;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--accent-primary); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 28px 22px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ====== CTA BANNER ====== */
.cta-section {
    padding: 100px 0;
}
.cta-banner {
    background: var(--accent-gradient);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--accent-primary);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); color: var(--accent-primary); }

/* ====== TEAM SECTION ====== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.team-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--accent-primary-light);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    color: var(--accent-primary);
}
.team-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 14px; color: var(--accent-primary); font-weight: 500; margin-bottom: 12px; }
.team-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ====== CONTACT ====== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); }
.contact-info-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-info-card p { font-size: 15px; color: var(--text-secondary); }
.contact-form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}
.contact-form-card textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-primary);
    resize: vertical;
    min-height: 120px;
    outline: none;
    transition: var(--transition);
}
.contact-form-card textarea:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(59,108,245,0.1); }

/* ====== PAGE CONTENT (legal, about, etc.) ====== */
.page-hero {
    background: var(--bg-hero);
    padding: 60px 0 50px;
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.page-hero p { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

.content-section { padding: 60px 0 80px; }
.content-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}
.content-card h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 14px;
    color: var(--text-primary);
}
.content-card h2:first-child { margin-top: 0; }
.content-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--text-primary);
}
.content-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}
.content-card ul {
    margin: 0 0 18px 20px;
    list-style: disc;
}
.content-card ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 6px;
}
.content-card strong { color: var(--text-primary); }
.last-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

/* ====== FOOTER ====== */
.site-footer {
    background: var(--bg-dark-section);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 300px; color: rgba(255,255,255,0.5); }
.footer-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    padding: 5px 0;
    transition: var(--transition);
    text-decoration: none;
}
.footer-col a:hover { color: white; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-disclaimer {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 24px;
}
.footer-disclaimer p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
    max-width: 900px;
}

/* ====== COOKIE BANNER ====== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.08);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 14px; color: var(--text-secondary); }
.cookie-banner a { color: var(--accent-primary); font-weight: 500; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
    padding: 10px 24px;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.cookie-decline {
    padding: 10px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

/* ====== ABOUT GRID ====== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.about-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.about-card .icon { font-size: 36px; margin-bottom: 16px; }
.about-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.about-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 44px; }
    .hero-grid { gap: 40px; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .features-grid, .crypto-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .mobile-toggle { display: flex; flex-direction: column; }
    .header-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
    }
    .header-nav.active { display: flex; }
    .hero { padding: 40px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .social-proof { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .hero-card-float { display: none; }
    .hero h1 { font-size: 36px; }
    .section-title { font-size: 30px; }
    .stats-bar { grid-template-columns: 1fr 1fr; padding: 28px; margin-top: -40px; }
    .features-grid, .crypto-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .content-card { padding: 28px; }
    .cta-banner { padding: 40px 28px; }
    .cta-banner h2 { font-size: 28px; }
    .cookie-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 30px; }
    .hero-card-main { width: 100%; }
    .stats-bar { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ====== ANIMATIONS ====== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
