/* ============================================
   STREAMSHIELD LANDING PAGE - CYBERPUNK THEME
   Matching cyber_theme.css aesthetic
   ============================================ */

/* CSS Variables - Matching Dashboard */
:root {
    --bg-primary: #0A0A15;
    --bg-secondary: #0F0F1A;
    --bg-card: rgba(15, 15, 30, 0.8);
    --bg-card-hover: rgba(20, 20, 40, 0.9);

    --cyber-blue: #00F0FF;
    --cyber-purple: #8B5CF6;
    --cyber-green: #00FF88;
    --cyber-red: #FF3366;
    --cyber-orange: #FF9500;
    --cyber-yellow: #FFCC00;

    --text-primary: #E0E0FF;
    --text-secondary: #8888AA;
    --text-muted: #555577;

    --gradient-cyber: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    --gradient-success: linear-gradient(135deg, var(--cyber-green), var(--cyber-blue));
    --gradient-danger: linear-gradient(135deg, var(--cyber-red), var(--cyber-purple));

    --glow-blue: 0 0 20px rgba(0, 240, 255, 0.4);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.4);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.4);
    --glow-red: 0 0 20px rgba(255, 51, 102, 0.4);

    --font-display: 'Orbitron', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   AMBIENT BACKGROUND
   ============================================ */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orb-float 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--cyber-blue);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--cyber-purple);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--cyber-green);
    top: 50%;
    left: 30%;
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
    opacity: 0.3;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { top: -2px; }
    100% { top: 100%; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 21, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:not(.nav-btn):hover {
    color: var(--cyber-blue);
}

.nav-links a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-cyber);
    transition: width 0.3s;
}

.nav-links a:not(.nav-btn):hover::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 20px;
    background: var(--gradient-cyber);
    border-radius: 8px;
    color: #000;
    font-weight: 700;
    box-shadow: var(--glow-blue);
    transition: all 0.3s;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--cyber-blue);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyber-green);
    margin-bottom: 30px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.typing-text {
    min-width: 300px;
    text-align: left;
}

.cursor {
    color: var(--cyber-blue);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-top: 5px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--cyber-blue), transparent);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cta-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.cta-btn.primary {
    background: var(--gradient-cyber);
    color: #000;
    box-shadow: var(--glow-blue);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.6);
}

.cta-btn:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--cyber-blue);
    border-color: var(--cyber-blue);
}

.cta-btn.secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
}

.hero-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.platform-icons {
    display: flex;
    gap: 15px;
}

.platform-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.platform-icon:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--cyber-blue);
    transform: translateY(-3px);
}

.platform-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--cyber-blue);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    position: relative;
    padding: 100px 20px;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyber-purple);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    background: rgba(15, 15, 30, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-cyber);
    opacity: 0.5;
}

.feature-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.primary {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.feature-icon.primary svg {
    stroke: var(--cyber-blue);
}

.feature-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.feature-icon.purple svg {
    stroke: var(--cyber-purple);
}

.feature-icon.green {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.feature-icon.green svg {
    stroke: var(--cyber-green);
}

.feature-icon.red {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.feature-icon.red svg {
    stroke: var(--cyber-red);
}

.feature-icon.yellow {
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.feature-icon.yellow svg {
    stroke: var(--cyber-yellow);
}

.feature-icon.orange {
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.2);
}

.feature-icon.orange svg {
    stroke: var(--cyber-orange);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke-width: 2;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyber-blue);
    letter-spacing: 1px;
}

/* ============================================
   DEMO SECTION
   ============================================ */
.demo-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.demo-screen {
    background: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: var(--glow-blue);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-placeholder {
    text-align: center;
    color: var(--text-secondary);
}

.demo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--cyber-blue);
}

.demo-placeholder p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 240, 255, 0.4);
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.demo-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.demo-feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateX(10px);
}

.demo-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--cyber-blue);
    fill: none;
    stroke-width: 2;
}

.demo-feature-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.demo-feature-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: rgba(15, 15, 30, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: var(--glow-blue);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-cyber);
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    stroke: var(--cyber-green);
    fill: none;
    stroke-width: 3;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
    color: var(--cyber-blue);
    border: 2px solid var(--cyber-blue);
}

.pricing-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

.pricing-btn.primary {
    background: var(--gradient-cyber);
    color: #000;
    border: none;
    box-shadow: var(--glow-blue);
}

.pricing-btn.primary:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

/* Enterprise Tier Options Display */
.enterprise-tiers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
}

.enterprise-tier-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.enterprise-tier-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 92, 246, 0.3);
}

.enterprise-tier-option.featured {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.enterprise-tier-option .tier-name {
    font-weight: 600;
    color: var(--text-primary);
}

.enterprise-tier-option .tier-price {
    font-weight: 700;
    color: var(--cyber-purple);
}

.enterprise-tier-option .tier-users {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-btn.secondary {
    background: rgba(139, 92, 246, 0.2);
    color: var(--cyber-purple);
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.pricing-btn.secondary:hover {
    background: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.pricing-btn.ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download {
    background: var(--bg-card);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

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

.download-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.download-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.download-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s;
}

.download-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: var(--glow-blue);
    transform: translateY(-5px);
}

.download-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 16px;
    background: rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--cyber-blue);
}

.download-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-cyber);
    border-radius: 10px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--glow-blue);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

.download-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.download-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    color: var(--cyber-green);
    max-width: 700px;
    margin: 0 auto;
}

.download-note svg {
    width: 24px;
    height: 24px;
    stroke: var(--cyber-green);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    padding: 60px 20px 30px;
}

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

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: var(--cyber-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--cyber-blue);
    padding-left: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--cyber-blue);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--cyber-blue);
    fill: none;
    stroke-width: 2;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.version-badge {
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cyber-blue);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 240, 255, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .demo-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .pricing-grid,
    .download-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .download-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .typing-text {
        min-width: auto;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: rgba(15, 15, 30, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--cyber-blue);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: var(--glow-blue);
    transform: translateY(-5px);
}

.testimonial-card.featured {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: var(--glow-blue);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #FFD700;
    stroke: #FFA500;
    stroke-width: 1;
}

.testimonial-stars span {
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-cyber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: #000;
}

.author-info h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.testimonial-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.testimonial-stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ============================================
   MOBILE APP CARDS (Coming Soon)
   ============================================ */
.mobile-category {
    margin-bottom: 50px;
}

.mobile-category h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.mobile-category .download-grid {
    max-width: 700px;
    margin: 0 auto 30px;
    grid-template-columns: repeat(2, 1fr);
}

.mobile-card {
    position: relative;
    overflow: visible;
}

.linux-coming-soon {
    opacity: 0.7;
}

.linux-coming-soon-content {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.linux-coming-soon .coming-soon-badge {
    position: static;
    margin-bottom: 10px;
}

.coming-soon-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    padding: 8px 16px;
    background: var(--gradient-danger);
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    box-shadow: var(--glow-red);
    z-index: 10;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.download-icon.android {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.download-icon.android svg {
    fill: var(--cyber-green);
}

.download-icon.ios {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.download-icon.ios svg {
    fill: var(--text-primary);
}

.download-btn.disabled {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    cursor: not-allowed;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ============================================
   MOBILE PHONE MOCKUP
   ============================================ */
.mobile-phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
}

.mobile-phone::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple), var(--cyber-blue));
    border-radius: 40px;
    z-index: -1;
    animation: border-rotate 3s linear infinite;
}

@keyframes border-rotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.mobile-phone::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
    animation: phone-scan 2s linear infinite;
    z-index: 10;
}

@keyframes phone-scan {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0.3; }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-radius: 12px;
    z-index: 5;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: rgba(15, 15, 30, 0.3);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 240, 255, 0.2);
}

.faq-item.active {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: var(--glow-blue);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

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

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--cyber-blue);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 25px 22px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* ============================================
   ENHANCED RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-category .download-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .coming-soon-badge {
        top: -10px;
        right: 10px;
    }

    .testimonial-stat-value {
        font-size: 2rem;
    }

    .testimonials-stats {
        gap: 30px;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 18px 20px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }

    /* Fix nav menu on mobile */
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 21, 0.98);
        padding: 20px;
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    }

    .nav-links.mobile-open a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.mobile-open .nav-btn {
        margin-top: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: 15px;
        right: 20px;
    }

    .testimonials-stats {
        flex-direction: column;
        gap: 25px;
    }

    .testimonial-stat-value {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 15px;
    }

    .faq-question svg {
        width: 18px;
        height: 18px;
    }

    .download-card {
        padding: 30px 20px;
    }

    .download-icon {
        width: 60px;
        height: 60px;
    }

    .download-icon svg {
        width: 30px;
        height: 30px;
    }
}
