/* ===== GESTREAMING LANDING PAGE STYLES ===== */

:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #a855f7;
    --accent: #22d3ee;
    --bg-dark: #030712;
    --bg-card: #0f172a;
    --bg-card-hover: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: #1e293b;
    --border-hover: #334155;
    --success: #22c55e;
    --warning: #eab308;
    --gradient-primary: linear-gradient(135deg, #6366f1, #a855f7);
    --gradient-hero: linear-gradient(135deg, #6366f1 0%, #8b5cf6 30%, #a855f7 60%, #22d3ee 100%);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 40px rgba(99,102,241,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text { background: var(--gradient-hero); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== NAVBAR ===== */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(3, 7, 18, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
#navbar.scrolled {
    padding: 10px 0;
    background: rgba(3, 7, 18, 0.95);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 18px; letter-spacing: 1px; color: var(--text-primary);
}
.logo-icon { width: 36px; height: 36px; }
.logo-icon svg { width: 100%; height: 100%; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--gradient-primary); transition: var(--transition); border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.btn-nav-login {
    padding: 8px 20px; border-radius: var(--radius-xs); font-size: 14px; font-weight: 600;
    color: var(--text-secondary); transition: var(--transition);
    border: 1px solid var(--border);
}
.btn-nav-login:hover { color: var(--text-primary); border-color: var(--border-hover); background: rgba(255,255,255,0.03); }
.btn-nav-trial {
    padding: 8px 20px; border-radius: var(--radius-xs); font-size: 14px; font-weight: 600;
    background: var(--gradient-primary); color: white; transition: var(--transition);
    box-shadow: 0 2px 12px rgba(99,102,241,0.3);
}
.btn-nav-trial:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(99,102,241,0.4); }
.nav-mobile-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-mobile-toggle span { width: 22px; height: 2px; background: var(--text-primary); transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
#hero {
    min-height: 100vh; position: relative; display: flex; align-items: center;
    padding: 120px 24px 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(100px);
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 600px; height: 600px; top: -10%; right: -5%; background: rgba(99,102,241,0.15); animation-duration: 10s; }
.hero-orb-2 { width: 500px; height: 500px; bottom: -10%; left: -10%; background: rgba(168,85,247,0.12); animation-duration: 12s; animation-delay: -2s; }
.hero-orb-3 { width: 400px; height: 400px; top: 40%; left: 30%; background: rgba(34,211,238,0.08); animation-duration: 8s; animation-delay: -4s; }
.hero-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(99,102,241,0.08) 1px, transparent 0);
    background-size: 40px 40px;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.97); }
}
.hero-content {
    position: relative; z-index: 1; max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media(min-width: 1024px) {
    #hero { padding: 0 24px; }
    .hero-content { grid-template-columns: 1fr 1fr; align-items: center; }
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 999px;
    background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
    font-size: 13px; font-weight: 500; color: #4ade80;
    width: fit-content;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; margin-top: 20px; }
.hero-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 540px; margin-top: 20px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px;
    background: var(--gradient-primary); color: white; transition: var(--transition);
    box-shadow: 0 4px 20px rgba(99,102,241,0.35); border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(99,102,241,0.45); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px;
    background: transparent; color: var(--text-primary); transition: var(--transition);
    border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary-light); background: rgba(99,102,241,0.05); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.hero-stats { display: flex; align-items: center; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-size: 32px; font-weight: 900; color: var(--text-primary); }
.stat-suffix { font-size: 18px; font-weight: 700; color: var(--primary-light); }
.stat-label { display: block; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Dashboard Mockup */
.hero-visual { position: relative; z-index: 1; }
.dashboard-mockup {
    background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-card), var(--shadow-glow);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}
.dashboard-mockup:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.mockup-topbar {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    background: rgba(15,23,42,0.8); border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:nth-child(3) { background: #22c55e; }
.mockup-url { font-size: 11px; color: var(--text-muted); background: rgba(255,255,255,0.05); padding: 4px 12px; border-radius: 6px; flex: 1; text-align: center; }
.mockup-body { display: flex; min-height: 280px; }
.mockup-sidebar { width: 50px; background: rgba(15,23,42,0.5); padding: 12px 8px; display: flex; flex-direction: column; gap: 8px; border-right: 1px solid var(--border); }
.mockup-nav-item { height: 28px; border-radius: 6px; background: rgba(255,255,255,0.04); }
.mockup-nav-item.active { background: rgba(99,102,241,0.2); border: 1px solid rgba(99,102,241,0.3); }
.mockup-content { flex: 1; padding: 16px; }
.mockup-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.mockup-card { padding: 12px; border-radius: var(--radius-xs); border: 1px solid var(--border); text-align: center; }
.mc-icon { font-size: 18px; margin-bottom: 4px; }
.mc-val { font-size: 14px; font-weight: 800; color: var(--text-primary); }
.mc-label { font-size: 9px; color: var(--text-muted); text-transform: uppercase; }
.card-blue { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.2); }
.card-green { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.2); }
.card-purple { background: rgba(168,85,247,0.08); border-color: rgba(168,85,247,0.2); }
.card-amber { background: rgba(234,179,8,0.08); border-color: rgba(234,179,8,0.2); }
.mockup-chart { background: rgba(255,255,255,0.02); border-radius: var(--radius-xs); padding: 16px; border: 1px solid var(--border); }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; }
.bar {
    flex: 1; border-radius: 4px 4px 0 0;
    background: var(--gradient-primary); opacity: 0.7; transition: opacity 0.3s;
    animation: barGrow 1.5s ease-out forwards;
}
.bar:hover { opacity: 1; }
@keyframes barGrow { from { height: 0 !important; } }

/* ===== SECTIONS COMMON ===== */
section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--primary-light); margin-bottom: 16px;
    background: rgba(99,102,241,0.08); padding: 6px 16px; border-radius: 999px; border: 1px solid rgba(99,102,241,0.15);
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ===== FEATURES ===== */
#features { background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15,23,42,0.5) 50%, var(--bg-dark) 100%); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px; transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-primary); opacity: 0; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-hover); box-shadow: var(--shadow-glow); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }
.icon-blue { background: rgba(59,130,246,0.1); color: #60a5fa; }
.icon-green { background: rgba(34,197,94,0.1); color: #4ade80; }
.icon-emerald { background: rgba(16,185,129,0.1); color: #34d399; }
.icon-violet { background: rgba(139,92,246,0.1); color: #a78bfa; }
.icon-amber { background: rgba(234,179,8,0.1); color: #fbbf24; }
.icon-rose { background: rgba(244,63,94,0.1); color: #fb7185; }
.icon-cyan { background: rgba(34,211,238,0.1); color: #22d3ee; }
.icon-indigo { background: rgba(99,102,241,0.1); color: #818cf8; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===== SECURITY ===== */
#security { background: var(--bg-dark); }
.security-wrapper { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media(min-width: 768px) { .security-wrapper { grid-template-columns: 1.3fr 1fr; } }
.security-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin: 16px 0; }
.security-content > p { color: var(--text-secondary); margin-bottom: 32px; font-size: 16px; }
.security-features { display: flex; flex-direction: column; gap: 24px; }
.sec-feature { display: flex; gap: 16px; align-items: flex-start; }
.sec-icon { font-size: 28px; min-width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(99,102,241,0.08); border-radius: 12px; }
.sec-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.sec-feature p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.security-visual { display: flex; align-items: center; justify-content: center; }
.shield-container { position: relative; width: 280px; height: 280px; display: flex; align-items: center; justify-content: center; }
.shield-ring {
    position: absolute; border-radius: 50%; border: 1px solid;
    animation: shieldPulse 4s ease-in-out infinite;
}
.ring-1 { width: 280px; height: 280px; border-color: rgba(99,102,241,0.1); animation-delay: 0s; }
.ring-2 { width: 220px; height: 220px; border-color: rgba(99,102,241,0.15); animation-delay: -1.3s; }
.ring-3 { width: 160px; height: 160px; border-color: rgba(99,102,241,0.2); animation-delay: -2.6s; }
@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}
.shield-icon { z-index: 1; }
.shield-icon svg { width: 64px; height: 64px; color: var(--primary-light); }

/* ===== AUDIENCE ===== */
#audience { background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15,23,42,0.3) 100%); }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.audience-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px; text-align: center; transition: var(--transition);
}
.audience-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,0.3); box-shadow: var(--shadow-glow); }
.audience-emoji { font-size: 48px; margin-bottom: 16px; }
.audience-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.audience-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===== SCALABILITY ===== */
#scalability { background: var(--bg-dark); }
.scale-wrapper { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media(min-width: 768px) { .scale-wrapper { grid-template-columns: 1fr 1fr; } }
.scale-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin: 16px 0; }
.scale-content > p { color: var(--text-secondary); margin-bottom: 32px; }
.scale-steps { display: flex; flex-direction: column; gap: 24px; }
.scale-step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
    min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: var(--gradient-primary); border-radius: 12px; font-weight: 800; font-size: 16px; color: white;
}
.scale-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.scale-step p { font-size: 13px; color: var(--text-secondary); }
.scale-visual { display: flex; align-items: flex-end; justify-content: center; }
.scale-chart { display: flex; align-items: flex-end; gap: 24px; height: 250px; }
.scale-bar {
    width: 80px; border-radius: 12px 12px 0 0; display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 12px; position: relative; animation: scaleGrow 1.5s ease-out forwards;
}
.scale-bar span { font-size: 11px; font-weight: 700; color: white; text-align: center; writing-mode: vertical-lr; transform: rotate(180deg); }
.sb-1 { height: 100px; background: linear-gradient(180deg, #60a5fa, #3b82f6); }
.sb-2 { height: 170px; background: linear-gradient(180deg, #a78bfa, #7c3aed); }
.sb-3 { height: 240px; background: linear-gradient(180deg, #c084fc, #9333ea); box-shadow: 0 0 30px rgba(147,51,234,0.3); }
@keyframes scaleGrow { from { height: 0; } }

/* ===== PRICING ===== */
#pricing { background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(99,102,241,0.03) 50%, var(--bg-dark) 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-loading { grid-column: 1 / -1; text-align: center; padding: 60px; color: var(--text-muted); }
.loader {
    width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--primary);
    border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Toggle Switch Styles */
.billing-toggle-wrapper {
    display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 32px;
}
.billing-label { font-size: 15px; font-weight: 600; transition: color 0.3s; }
.billing-label.active { color: white; }
.billing-label.inactive { color: var(--text-muted); }
.savings-badge {
    display: inline-block; background: rgba(16, 185, 129, 0.15); color: #34d399;
    font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 99px; margin-left: 8px;
}
.theme-switch { position: relative; display: inline-block; width: 60px; height: 32px; }
.theme-switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--bg-card-hover); transition: .4s; border: 1px solid var(--border);
}
.slider:before {
    position: absolute; content: ""; height: 24px; width: 24px; left: 3px; bottom: 3px;
    background-color: white; transition: .4s; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.theme-switch input:checked + .slider { background: var(--gradient-primary); border-color: transparent; }
.theme-switch input:checked + .slider:before { transform: translateX(28px); }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

/* Plan Card Styles */
.plan-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px; position: relative; transition: var(--transition); overflow: hidden;
    display: flex; flex-direction: column;
}
.plan-card.popular {
    border-color: rgba(99,102,241,0.4);
    box-shadow: 0 0 40px rgba(99,102,241,0.1), inset 0 1px 0 rgba(99,102,241,0.2);
}
.plan-card:hover { transform: translateY(-4px); }
.popular-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--gradient-primary); color: white; font-size: 11px; font-weight: 700;
    padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px;
}
.plan-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.plan-price { margin-bottom: 24px; }
.plan-price .amount { font-size: 42px; font-weight: 900; }
.plan-price .currency { font-size: 18px; color: var(--text-muted); vertical-align: super; }
.plan-price .period { font-size: 14px; color: var(--text-muted); }
.plan-features { list-style: none; margin-bottom: 32px; flex: 1; }
.plan-features li {
    padding: 8px 0; font-size: 14px; color: var(--text-secondary);
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.plan-features li:last-child { border: none; }
.check { color: var(--success); font-weight: 700; }
.plan-cta { width: 100%; margin-top: auto; }

/* ===== BENEFITS ===== */
#benefits { background: var(--bg-dark); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.benefit-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px; transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.benefit-number { font-size: 36px; margin-bottom: 16px; }
.benefit-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===== FAQ ===== */
#faq { background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15,23,42,0.4) 100%); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--text-primary);
    background: none; border: none; cursor: pointer; text-align: left;
    transition: var(--transition); font-family: inherit;
}
.faq-question:hover { color: var(--primary-light); }
.faq-icon { font-size: 22px; color: var(--primary); transition: transform 0.3s; min-width: 24px; text-align: center; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ===== CONTACT ===== */
#contact { background: var(--bg-dark); }
.contact-wrapper { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media(min-width: 768px) { .contact-wrapper { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin: 16px 0; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
    display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: var(--radius-sm);
    background: var(--bg-card); border: 1px solid var(--border); transition: var(--transition);
}
.contact-method:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.cm-icon { font-size: 28px; min-width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(99,102,241,0.08); border-radius: 12px; }
.contact-method h4 { font-size: 14px; font-weight: 700; }
.contact-method p { font-size: 13px; color: var(--text-secondary); }
.cta-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 40px; text-align: center;
    background-image: radial-gradient(circle at 50% 0%, rgba(99,102,241,0.1) 0%, transparent 50%);
}
.cta-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.cta-card > p { color: var(--text-secondary); margin-bottom: 24px; }
.cta-sub { font-size: 12px; color: var(--text-muted); margin-top: 16px; }

/* ===== FOOTER ===== */
#footer { background: rgba(3,7,18,0.95); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 16px; max-width: 300px; line-height: 1.5; }
.footer-links-group h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.footer-links-group a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; transition: var(--transition); }
.footer-links-group a:hover { color: var(--primary-light); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media(max-width: 1023px) {
    .hero-visual { display: none; }
    .hero-content { text-align: center; }
    .hero-subtitle { margin: 20px auto 0; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-badge { margin: 0 auto; }
}
@media(max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-mobile-toggle { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(3,7,18,0.98); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border);
    }
    .nav-actions.open {
        display: flex; flex-direction: column; position: absolute; top: calc(100% + 200px); left: 0; right: 0;
        background: rgba(3,7,18,0.98); padding: 0 24px 24px; gap: 12px; border-bottom: 1px solid var(--border);
    }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .mockup-cards { grid-template-columns: repeat(2, 1fr); }
    section { padding: 60px 0; }
    .pricing-grid { grid-template-columns: 1fr; }
    .scale-chart { gap: 16px; }
    .scale-bar { width: 60px; }
}
@media(max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; }
    .stat-divider { display: none; }
}
