/* ===================================
   CyberPro Website - Main Stylesheet
   Version: 1.0
   =================================== */

/* CSS Variables - Theme Colors */
:root {
    /* Primary Colors - Saudi Green Theme */
    --primary: #00A152;
    --primary-dark: #007d3f;
    --primary-light: #00c965;
    --primary-rgb: 0, 161, 82;

    /* Secondary Colors */
    --secondary: #f8fafc;
    --accent: #e2e8f0;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0a0a0a;

    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    /* Status Colors */
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --critical: #dc2626;
    --high: #f97316;
    --medium: #eab308;
    --low: #22c55e;

    /* Border Colors */
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(0, 161, 82, 0.3);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Z-Index */
    --z-dropdown: 100;
    --z-navbar: 1000;
    --z-modal: 2000;
    --z-tooltip: 3000;
    --z-cursor: 9999;
}

/* Dark Theme */
[data-theme="dark"] {
    --primary: #03ffc0;
    --primary-dark: #02e6ad;
    --primary-light: #33ffc9;
    --primary-rgb: 3, 255, 192;

    --secondary: #1a1a1a;
    --accent: #2a2a2a;

    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --bg-dark: #000000;

    --text-primary: #E0E0E0;
    --text-secondary: #B0B0B0;
    --text-light: #888888;

    --border: #2a2a2a;
    --border-light: #333333;

    --shadow-glow: 0 0 40px rgba(3, 255, 192, 0.2);
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.loader-inner {
    display: flex;
    gap: var(--space-sm);
}

.loader-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    animation: loaderBounce 1.4s ease-in-out infinite;
}

.loader-circle:nth-child(1) { animation-delay: 0s; }
.loader-circle:nth-child(2) { animation-delay: 0.2s; }
.loader-circle:nth-child(3) { animation-delay: 0.4s; }

@keyframes loaderBounce {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

/* Professional Hover Effects */
.feature-card,
.scanner-card,
.intel-card,
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after,
.scanner-card::after,
.intel-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--primary-rgb), 0.03),
        transparent
    );
    transition: left 0.5s ease;
}

.feature-card:hover::after,
.scanner-card:hover::after,
.intel-card:hover::after {
    left: 100%;
}

/* Button shine effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-navbar);
    padding: var(--space-md) 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(var(--bg-primary), 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: var(--space-sm) 0;
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo .logo-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

/* Logo images for theme switching */
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Light theme - show dark logo */
.logo-light-theme {
    display: none;
}

.logo-dark-theme {
    display: block;
}

/* Dark theme - show light logo */
[data-theme="dark"] .logo-light-theme {
    display: block;
}

[data-theme="dark"] .logo-dark-theme {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

.theme-toggle .ti-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .ti-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .ti-moon {
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.btn-ghost {
    color: var(--text-secondary);
    background: transparent;
}

.btn-ghost:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 var(--space-3xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(var(--primary-rgb), 0.15), transparent);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(var(--primary-rgb), 0.2);
    top: 10%;
    left: 10%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(var(--primary-rgb), 0.15);
    top: 60%;
    right: 10%;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(59, 130, 246, 0.15);
    bottom: 20%;
    left: 30%;
    animation: float 18s ease-in-out infinite;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: rgba(var(--primary-rgb), 0.1);
    top: 30%;
    right: 30%;
    animation: float 22s ease-in-out infinite reverse;
}

.shape-5 {
    width: 150px;
    height: 150px;
    background: rgba(236, 72, 153, 0.1);
    top: 70%;
    left: 60%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.btn-ghost:hover .play-icon {
    background: var(--primary);
    color: var(--bg-primary);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.spline-container {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
}

/* 3D Shield Animation */
.shield-3d {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatShield 6s ease-in-out infinite;
}

@keyframes floatShield {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    25% { transform: translateY(-15px) rotateY(5deg); }
    50% { transform: translateY(0) rotateY(0deg); }
    75% { transform: translateY(-10px) rotateY(-5deg); }
}

.shield-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.shield-icon {
    position: relative;
    width: 180px;
    height: 180px;
    z-index: 2;
}

.shield-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.3));
}

.shield-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawShield 2s ease forwards, pulseStroke 3s ease-in-out 2s infinite;
}

@keyframes drawShield {
    to { stroke-dashoffset: 0; }
}

@keyframes pulseStroke {
    0%, 100% { stroke-width: 3; }
    50% { stroke-width: 4; }
}

.check-mark {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.5s ease 1.5s forwards;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

/* Orbits */
.orbit {
    position: absolute;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 50%;
    animation: rotateOrbit 10s linear infinite;
}

.orbit-1 {
    width: 220px;
    height: 220px;
    animation-duration: 8s;
}

.orbit-2 {
    width: 280px;
    height: 280px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 340px;
    height: 340px;
    animation-duration: 16s;
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

/* Particle Field */
.particle-field {
    position: absolute;
    inset: -50px;
    pointer-events: none;
}

.particle-field span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFade 4s ease-in-out infinite;
}

.particle-field span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle-field span:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; }
.particle-field span:nth-child(3) { top: 70%; left: 15%; animation-delay: 1s; }
.particle-field span:nth-child(4) { top: 80%; left: 75%; animation-delay: 1.5s; }
.particle-field span:nth-child(5) { top: 40%; left: 5%; animation-delay: 2s; }
.particle-field span:nth-child(6) { top: 30%; left: 90%; animation-delay: 2.5s; }
.particle-field span:nth-child(7) { top: 90%; left: 40%; animation-delay: 3s; }
.particle-field span:nth-child(8) { top: 5%; left: 60%; animation-delay: 3.5s; }

@keyframes particleFade {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 0.8; transform: scale(1); }
}

.hero-dashboard {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 85%;
    z-index: 2;
}

.dashboard-mockup {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mockup-content {
    display: flex;
    height: 200px;
}

.mockup-sidebar {
    width: 50px;
    background: var(--bg-tertiary);
    border-right: 1px solid var(--border);
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sidebar-item {
    width: 100%;
    height: 32px;
    background: var(--border);
    border-radius: var(--radius-sm);
    opacity: 0.5;
}

.sidebar-item.active {
    background: var(--primary);
    opacity: 1;
}

.mockup-main {
    flex: 1;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.stat-cards {
    display: flex;
    gap: var(--space-sm);
}

.mini-card {
    flex: 1;
    padding: var(--space-sm);
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    text-align: center;
}

.mini-card .card-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
}

.mini-card .card-label {
    font-size: 0.625rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.mini-card.critical .card-value { color: var(--critical); }
.mini-card.high .card-value { color: var(--high); }
.mini-card.medium .card-value { color: var(--medium); }
.mini-card.low .card-value { color: var(--low); }

.chart-area {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    height: var(--height);
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Trusted Section */
.trusted-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-carousel {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: var(--space-3xl);
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    padding: var(--space-md) var(--space-xl);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.logo-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Section Headers */
.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Orbital Overview Section
   =================================== */
.orbital-overview {
    padding: var(--space-4xl) 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.orbital-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 750px;
    margin: var(--space-3xl) auto 0;
    padding: 0 var(--space-md);
}

/* Center Shield with Rings */
.orbital-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
}

.orbital-rings-svg {
    width: 100%;
    height: 100%;
}

/* SVG Ring Styles */
.orbital-ring {
    fill: none;
    stroke: var(--text-light);
    stroke-width: 1;
    opacity: 0.5;
}

[data-theme="dark"] .orbital-ring {
    stroke: var(--text-secondary);
    opacity: 0.3;
}

.center-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: var(--shadow-lg);
}

.center-shield i {
    font-size: 36px;
    color: var(--text-primary);
}

/* Orbital Nodes */
.orbital-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    z-index: 10;
}

/* Left side nodes - align right */
.orbital-node.node-5,
.orbital-node.node-6 {
    align-items: flex-end;
    text-align: right;
}

/* Right side nodes - align left */
.orbital-node.node-1,
.orbital-node.node-2 {
    align-items: flex-start;
    text-align: left;
}

/* Node Badge */
.node-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbital-node:hover .node-badge {
    transform: scale(1.1);
}

/* Badge Colors */
.badge-cyan { background: #00D4FF; box-shadow: 0 0 15px rgba(0, 212, 255, 0.4); }
.badge-teal { background: #14B8A6; box-shadow: 0 0 15px rgba(20, 184, 166, 0.4); }
.badge-green { background: #22C55E; box-shadow: 0 0 15px rgba(34, 197, 94, 0.4); }
.badge-yellow { background: #EAB308; box-shadow: 0 0 15px rgba(234, 179, 8, 0.4); }
.badge-orange { background: #F97316; box-shadow: 0 0 15px rgba(249, 115, 22, 0.4); }
.badge-coral { background: #F87171; box-shadow: 0 0 15px rgba(248, 113, 113, 0.4); }
.badge-pink { background: #EC4899; box-shadow: 0 0 15px rgba(236, 72, 153, 0.4); }

/* Text Colors */
.text-cyan { color: #00D4FF !important; }
.text-teal { color: #14B8A6 !important; }
.text-green { color: #22C55E !important; }
.text-yellow { color: #EAB308 !important; }
.text-orange { color: #F97316 !important; }
.text-coral { color: #F87171 !important; }
.text-pink { color: #EC4899 !important; }

/* Node Content */
.node-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.node-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Connector Line and Dot */
.node-connector {
    position: absolute;
    background: var(--text-light);
    opacity: 0.5;
    z-index: 1;
}

[data-theme="dark"] .node-connector {
    background: var(--text-secondary);
    opacity: 0.3;
}

.node-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 2;
}

/* Node Positions - Circular Layout */
/* Node 7 - Top Center */
.node-7 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.node-7 .node-connector {
    width: 2px;
    height: 100px;
    top: 100%;
    left: 50%;
    margin-left: -1px;
}
.node-7 .node-dot {
    background: #EC4899;
    width: 12px;
    height: 12px;
    bottom: -105px;
    left: 50%;
    margin-left: -6px;
}

/* Node 1 - Right Upper */
.node-1 {
    top: 120px;
    right: 20px;
}
.node-1 .node-connector {
    width: 100px;
    height: 2px;
    top: 24px;
    right: 100%;
    margin-right: 5px;
}
.node-1 .node-dot {
    background: #00D4FF;
    width: 12px;
    height: 12px;
    top: 19px;
    right: calc(100% + 100px);
}

/* Node 2 - Right Middle */
.node-2 {
    top: 300px;
    right: 20px;
}
.node-2 .node-connector {
    width: 120px;
    height: 2px;
    top: 24px;
    right: 100%;
    margin-right: 5px;
}
.node-2 .node-dot {
    background: #14B8A6;
    width: 12px;
    height: 12px;
    top: 19px;
    right: calc(100% + 120px);
}

/* Node 3 - Bottom Right */
.node-3 {
    bottom: 80px;
    right: 25%;
}
.node-3 .node-connector {
    width: 80px;
    height: 2px;
    top: 24px;
    right: 100%;
    margin-right: 5px;
    transform: rotate(-25deg);
    transform-origin: right center;
}
.node-3 .node-dot {
    background: #22C55E;
    width: 12px;
    height: 12px;
    top: 12px;
    right: calc(100% + 75px);
}

/* Node 4 - Bottom Left */
.node-4 {
    bottom: 80px;
    left: 25%;
}
.node-4 .node-connector {
    width: 80px;
    height: 2px;
    top: 24px;
    left: 100%;
    margin-left: 5px;
    transform: rotate(25deg);
    transform-origin: left center;
}
.node-4 .node-dot {
    background: #EAB308;
    width: 12px;
    height: 12px;
    top: 12px;
    left: calc(100% + 75px);
}

/* Node 5 - Left Middle */
.node-5 {
    top: 300px;
    left: 20px;
}
.node-5 .node-connector {
    width: 120px;
    height: 2px;
    top: 24px;
    left: 100%;
    margin-left: 5px;
}
.node-5 .node-dot {
    background: #F97316;
    width: 12px;
    height: 12px;
    top: 19px;
    left: calc(100% + 120px);
}

/* Node 6 - Left Upper */
.node-6 {
    top: 120px;
    left: 20px;
}
.node-6 .node-connector {
    width: 100px;
    height: 2px;
    top: 24px;
    left: 100%;
    margin-left: 5px;
}
.node-6 .node-dot {
    background: #F87171;
    width: 12px;
    height: 12px;
    top: 19px;
    left: calc(100% + 100px);
}

/* Responsive */
@media (max-width: 1024px) {
    .orbital-wrapper {
        height: 650px;
        max-width: 900px;
    }

    .orbital-center {
        width: 280px;
        height: 280px;
    }

    .orbital-node {
        max-width: 160px;
    }

    .node-badge {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .node-content h4 {
        font-size: 0.9rem;
    }

    .node-content p {
        font-size: 0.8rem;
    }

    .node-connector {
        display: none;
    }

    .node-dot {
        display: none;
    }

    /* Adjust positions for tablet */
    .node-7 { top: 10px; }
    .node-1 { top: 100px; right: 10px; }
    .node-2 { top: 260px; right: 10px; }
    .node-3 { bottom: 60px; right: 20%; }
    .node-4 { bottom: 60px; left: 20%; }
    .node-5 { top: 260px; left: 10px; }
    .node-6 { top: 100px; left: 10px; }
}

@media (max-width: 768px) {
    .orbital-wrapper {
        height: auto;
        padding: var(--space-xl) 0;
    }

    .orbital-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto var(--space-2xl);
        width: 200px;
        height: 200px;
    }

    .orbital-node {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        max-width: 100%;
        text-align: center !important;
        align-items: center !important;
        margin-bottom: var(--space-lg);
        padding: 0 var(--space-md);
    }

    .node-connector,
    .node-dot {
        display: none;
    }

    .node-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Features Section */
.features-section {
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.feature-list {
    margin-bottom: var(--space-lg);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: var(--space-xs) 0;
}

.feature-list li i {
    color: var(--primary);
    font-size: 1rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.feature-link i {
    transition: var(--transition);
}

.feature-link:hover i {
    transform: translateX(4px);
}

/* Platform Section */
.platform-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.platform-feature {
    display: flex;
    gap: var(--space-md);
}

.pf-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.pf-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.pf-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Platform Visual */
.platform-visual {
    position: relative;
}

.browser-mockup {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.browser-address {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.browser-address i {
    color: var(--primary);
}

.browser-content {
    display: flex;
    height: 400px;
}

.app-sidebar {
    width: 60px;
    background: var(--bg-tertiary);
    border-right: 1px solid var(--border);
    padding: var(--space-md) var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.nav-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-item.active {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.app-main {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-header h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.search-box {
    width: 200px;
    height: 32px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
}

.stat-row {
    display: flex;
    gap: var(--space-md);
}

.stat-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.stat-icon.critical { background: rgba(220, 38, 38, 0.2); }
.stat-icon.high { background: rgba(249, 115, 22, 0.2); }
.stat-icon.medium { background: rgba(234, 179, 8, 0.2); }
.stat-icon.low { background: rgba(34, 197, 94, 0.2); }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.chart-container {
    flex: 1;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    overflow: hidden;
}

.chart-header {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    font-weight: 500;
}

.chart-body {
    padding: var(--space-md);
    height: calc(100% - 40px);
}

.trend-chart {
    width: 100%;
    height: 100%;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 500;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.25rem;
}

.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.card-1 i { color: var(--primary); }

.card-2 {
    top: 40%;
    right: -30px;
    animation-delay: 1s;
}

.card-2 i { color: var(--warning); }

.card-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.card-3 i { color: var(--success); }

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Intelligence Section */
.intelligence-section {
    padding: var(--space-4xl) 0;
}

.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.intel-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition);
}

.intel-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--shadow-md);
}

.intel-card.main-card {
    grid-column: span 2;
}

.intel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.intel-header h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
}

.intel-header h3 i {
    color: var(--primary);
}

.badge {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.live {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.badge.warning {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.intel-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.vuln-stats {
    display: flex;
    gap: var(--space-xl);
}

.vuln-stat {
    display: flex;
    flex-direction: column;
}

.vs-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.vs-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.kev-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.kev-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-family: var(--font-display);
}

.severity {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

.severity.critical {
    background: rgba(220, 38, 38, 0.2);
    color: var(--critical);
}

.severity.high {
    background: rgba(249, 115, 22, 0.2);
    color: var(--high);
}

/* CVSS Visual */
.cvss-visual {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.cvss-ring {
    position: relative;
    width: 100px;
    height: 100px;
}

.cvss-ring svg {
    width: 100%;
    height: 100%;
}

.cvss-score {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--danger);
}

.cvss-breakdown {
    display: flex;
    gap: var(--space-md);
}

.cvss-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.metric-value {
    font-size: 0.875rem;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

/* Vendor Bars */
.vendor-bars {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.vendor-bar {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.vendor-name {
    width: 80px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.bar-track {
    flex: 1;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: var(--width);
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
}

.vendor-count {
    width: 50px;
    text-align: right;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Timeline Visual */
.timeline-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
}

.timeline-dot.discovered {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.timeline-dot.analyzed {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.timeline-dot.patched {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.timeline-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--primary), var(--border));
    border-radius: var(--radius-full);
}

.timeline-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Solutions Section */
.solutions-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.solutions-tabs {
    margin-top: var(--space-2xl);
}

.tabs-nav {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--space-md);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border-radius: var(--radius);
    transition: var(--transition);
}

.tab-btn i {
    font-size: 1.25rem;
}

.tab-btn:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.tab-btn.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.panel-text h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.panel-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.panel-features {
    margin-bottom: var(--space-xl);
}

.panel-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.95rem;
}

.panel-features li i {
    color: var(--primary);
}

.panel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.solution-graphic {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.solution-mockup {
    position: relative;
}

/* Solution Mockup Window */
.mockup-window {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.solution-mockup .mockup-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.solution-mockup .mockup-dots {
    display: flex;
    gap: 6px;
}

.solution-mockup .mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.solution-mockup .mockup-dots span:nth-child(1) { background: #ef4444; }
.solution-mockup .mockup-dots span:nth-child(2) { background: #f59e0b; }
.solution-mockup .mockup-dots span:nth-child(3) { background: #10b981; }

.solution-mockup .mockup-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.solution-mockup .mockup-body {
    padding: var(--space-xl);
    min-height: 400px;
}

/* Enterprise Visual */
.mini-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 50px;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    float: left;
    margin-right: var(--space-lg);
}

.mini-logo {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.mini-nav-item {
    width: 30px;
    height: 30px;
    background: var(--border);
    border-radius: var(--radius-sm);
    opacity: 0.5;
}

.mini-nav-item.active {
    background: var(--primary);
    opacity: 1;
}

.mini-content {
    overflow: hidden;
}

.mini-stats {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.mini-stat-card {
    flex: 1;
    height: 80px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    animation: shimmer 2s ease-in-out infinite;
}

.mini-stat-card.labeled {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    animation: none;
}

.mini-stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.mini-stat-card .stat-value.critical-text { color: var(--critical); }
.mini-stat-card .stat-value.high-text { color: var(--high); }
.mini-stat-card .stat-value.medium-text { color: var(--medium); }

.mini-stat-card .stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-stat-card:nth-child(2) { animation-delay: 0.3s; }
.mini-stat-card:nth-child(3) { animation-delay: 0.6s; }

.mini-chart {
    height: 180px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.mini-chart .chart-title {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-md);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mini-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--primary), transparent);
    opacity: 0.3;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* MSSP Client Grid Visual */
.client-grid-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.client-tile {
    padding: var(--space-xl);
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    animation: fadeInUp 0.5s ease forwards;
}

.client-tile:nth-child(2) { animation-delay: 0.1s; }
.client-tile:nth-child(3) { animation-delay: 0.2s; }
.client-tile:nth-child(4) { animation-delay: 0.3s; }

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.client-info {
    flex: 1;
    height: 16px;
    background: var(--border);
    border-radius: var(--radius-full);
}

.client-tile.labeled .client-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.client-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.client-status {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.client-status.active {
    color: var(--primary);
}

.client-status.critical {
    color: var(--critical);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Findings Visual (Pentest) */
.findings-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.finding-row {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    border-left: 5px solid var(--border);
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
}

.finding-row:nth-child(1) { animation-delay: 0.1s; }
.finding-row:nth-child(2) { animation-delay: 0.2s; }
.finding-row:nth-child(3) { animation-delay: 0.3s; }
.finding-row:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.finding-row.critical {
    border-left-color: var(--critical);
}

.finding-row.high {
    border-left-color: var(--high);
}

.finding-row.medium {
    border-left-color: var(--medium);
}

.finding-row.low {
    border-left-color: var(--low);
}

.finding-severity {
    font-size: 0.75rem;
    font-weight: 700;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    white-space: nowrap;
}

.finding-row.critical .finding-severity {
    background: rgba(220, 38, 38, 0.15);
    color: var(--critical);
}

.finding-row.high .finding-severity {
    background: rgba(249, 115, 22, 0.15);
    color: var(--high);
}

.finding-row.medium .finding-severity {
    background: rgba(234, 179, 8, 0.15);
    color: var(--medium);
}

.finding-row.low .finding-severity {
    background: rgba(34, 197, 94, 0.15);
    color: var(--low);
}

.finding-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.finding-title {
    height: 14px;
    background: var(--border);
    border-radius: var(--radius-full);
    width: 80%;
}

.finding-meta {
    height: 10px;
    background: var(--border);
    border-radius: var(--radius-full);
    width: 50%;
    opacity: 0.6;
}

.finding-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.finding-target {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-family: var(--font-mono, monospace);
    opacity: 0.8;
}

.finding-score {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 48px;
    text-align: center;
}

/* Compliance Visual */
.compliance-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-sm) 0;
}

.compliance-check {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.compliance-check.empty {
    background: var(--border);
    color: var(--text-light);
}

.compliance-item.progress .compliance-check {
    background: var(--warning);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.compliance-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.compliance-name {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-primary);
}

.compliance-bar {
    height: 12px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.compliance-bar.partial {
    background: linear-gradient(90deg, var(--warning) 60%, var(--border) 60%);
}

.compliance-bar.empty {
    background: var(--border);
}

.compliance-percent {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    min-width: 45px;
    text-align: right;
}

.compliance-percent.warning {
    color: var(--warning);
}

.compliance-percent.muted {
    color: var(--text-light);
}

/* Floating Cards */
.solution-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 10;
}

.solution-float i {
    font-size: 1.35rem;
    color: var(--primary);
}

.solution-float.float-1 {
    top: -10px;
    left: -20px;
    animation: floatCard 3s ease-in-out infinite;
}

.solution-float.float-2 {
    top: 40%;
    right: -30px;
    animation: floatCard 3s ease-in-out infinite 0.5s;
}

.solution-float.float-3 {
    bottom: 20px;
    left: 10px;
    animation: floatCard 3s ease-in-out infinite 1s;
}

/* Stats Section */
.stats-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-xl);
}

.stat-card .stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.stat-card .stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: inline;
}

.stat-card .stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.stat-card .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--space-sm);
}

/* Scanners Section */
.scanners-section {
    padding: var(--space-4xl) 0;
}

.scanners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.scanner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.scanner-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.scanner-logo {
    width: 64px;
    height: 64px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scanner-logo i {
    font-size: 2rem;
    color: var(--primary);
}

.scanner-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Pricing Section */
.pricing-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.save-badge {
    padding: 2px var(--space-sm);
    background: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: white;
    margin-left: var(--space-xs);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.card-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: var(--space-xs) var(--space-md);
    background: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.card-header {
    margin-bottom: var(--space-lg);
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.plan-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.card-price {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border);
}

.card-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

.card-price .amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-price .amount.custom {
    font-size: 2.5rem;
}

.card-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-features {
    margin-bottom: var(--space-xl);
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--primary);
}

.plan-features li.disabled {
    color: var(--text-light);
}

.plan-features li.disabled i {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-4xl) 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.stars {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.stars i {
    color: #f59e0b;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-text p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.cta-form form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: flex;
    gap: var(--space-md);
}

.form-row input,
.form-row select {
    flex: 1;
    padding: var(--space-md);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* Contact Section */
.contact-section {
    padding: var(--space-4xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.method-info a,
.method-info span {
    font-weight: 500;
}

.method-info a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

[data-theme="dark"] .footer {
    background: #000000;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

/* Footer always has dark background, so always show light logo */
.footer-logo .logo-img {
    height: 45px;
    width: auto;
}

.footer-logo .logo-light-theme {
    display: block;
}

.footer-logo .logo-dark-theme {
    display: none;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-certifications {
    display: flex;
    gap: var(--space-sm);
}

.cert-badge {
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.link-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.link-column ul li {
    margin-bottom: var(--space-sm);
}

.link-column a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.link-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
}

.video-container {
    width: 100%;
    height: 100%;
    background: black;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-content {
        grid-template-columns: 1fr;
    }

    .intelligence-grid {
        grid-template-columns: 1fr;
    }

    .panel-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scanners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        padding: var(--space-lg);
        flex-direction: column;
        gap: var(--space-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        position: relative;
        z-index: 10;
        overflow: visible;
    }

    .hero-content {
        padding: 0 var(--space-md);
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-text {
        position: relative;
        z-index: 5;
        padding: var(--space-md) 0;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: var(--space-lg);
    }

    /* Hero CTA - ensure visible and centered */
    .hero-cta {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        margin-bottom: var(--space-lg);
        position: relative;
        z-index: 6;
    }

    .hero-cta .btn {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto;
        min-width: 200px;
        justify-content: center;
    }

    /* Hero visual on mobile/tablet - fix positioning */
    .hero-visual {
        display: block !important;
        position: relative;
        height: auto;
        min-height: 280px;
        margin-top: var(--space-lg);
        margin-bottom: var(--space-2xl);
        z-index: 1;
        overflow: visible;
    }

    /* Fix spline container positioning for mobile */
    .spline-container {
        position: relative !important;
        inset: auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        height: 250px;
        padding-top: 0;
    }

    .shield-3d {
        position: relative;
        transform: scale(0.5);
        width: 280px;
        height: 280px;
    }

    .shield-glow {
        width: 140px;
        height: 140px;
    }

    .shield-icon {
        width: 140px;
        height: 140px;
    }

    /* Show orbits around shield */
    .orbit {
        display: block !important;
    }

    .orbit-1 {
        width: 180px;
        height: 180px;
    }

    .orbit-2 {
        width: 220px;
        height: 220px;
    }

    .orbit-3 {
        width: 260px;
        height: 260px;
    }

    /* Show dashboard mockup below shield */
    .hero-dashboard {
        display: block !important;
        position: relative;
        margin-top: var(--space-lg);
    }

    .dashboard-mockup {
        transform: scale(0.8);
        transform-origin: center top;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tabs-nav {
        flex-wrap: wrap;
        gap: var(--space-xs);
    }

    .tab-btn {
        flex: 1 1 calc(50% - var(--space-xs));
        justify-content: center;
        min-width: 120px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .scanners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===================================
   Success Modal
   =================================== */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.success-modal .modal-content {
    position: relative;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 450px;
    width: 90%;
    text-align: center;
    transform: scale(0.8) translateY(20px);
    transition: transform var(--transition);
    box-shadow: var(--shadow-xl);
}

.success-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon i {
    font-size: 40px;
    color: white;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(var(--primary-rgb), 0);
    }
}

.success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
}

.success-message {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.success-close {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

/* Spinner for loading state */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   Floating Chat Button
   =================================== */
.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-chat-btn i {
    font-size: 1.75rem;
    color: white;
    transition: transform 0.3s ease;
}

[data-theme="dark"] .floating-chat-btn i {
    color:#121212;
}

.floating-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(var(--primary-rgb), 0.5);
}

.floating-chat-btn:hover i {
    transform: rotate(15deg);
}

.floating-chat-btn:active {
    transform: scale(0.95);
}

.chat-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

[data-theme="dark"] .chat-tooltip {
    background: #222222;
    color: #f0f0f0;
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--bg-primary);
}

.floating-chat-btn:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse animation for attention */
.floating-chat-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===================================
   Contact Modal
   =================================== */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.contact-modal .modal-content {
    position: relative;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 680px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.contact-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.contact-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl) var(--space-sm);
    border-bottom: none;
}

.contact-modal .modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-modal .modal-title-wrapper i {
    font-size: 1.25rem;
    color: var(--primary);
}

.contact-modal .modal-title-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: var(--font-display);
}

.contact-modal .modal-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-modal .modal-close-btn i {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.contact-modal .modal-close-btn:hover {
    background: var(--primary);
}

.contact-modal .modal-close-btn:hover i {
    color: white;
}

.contact-modal .modal-body {
    padding: 0 var(--space-xl) var(--space-xl);
}

.contact-modal .modal-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Modal Contact Form - 2 Column Grid */
.modal-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.modal-contact-form .form-group {
    margin-bottom: 0;
}

/* Subject spans full width */
.modal-contact-form .form-group:nth-child(3) {
    grid-column: 1 / -1;
}

/* Message textarea spans full width */
.modal-contact-form .form-group:nth-child(4) {
    grid-column: 1 / -1;
}

.modal-contact-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.modal-contact-form input,
.modal-contact-form select,
.modal-contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-contact-form input::placeholder,
.modal-contact-form textarea::placeholder {
    color: var(--text-light);
}

.modal-contact-form input:focus,
.modal-contact-form select:focus,
.modal-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.modal-contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 36px;
}

.modal-contact-form textarea {
    resize: none;
    height: 80px;
}

.modal-contact-form .btn-block {
    width: 100%;
    grid-column: 1 / -1;
    padding: 12px 24px;
}

/* Responsive - Stack on mobile */
@media (max-width: 640px) {
    .floating-chat-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-chat-btn i {
        font-size: 1.5rem;
    }

    .chat-tooltip {
        display: none;
    }

    .contact-modal .modal-content {
        width: 95%;
        margin: 10px;
    }

    .contact-modal .modal-header {
        padding: var(--space-md) var(--space-md) var(--space-xs);
    }

    .contact-modal .modal-body {
        padding: 0 var(--space-md) var(--space-md);
    }

    .modal-contact-form {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .modal-contact-form .form-group:nth-child(4) {
        grid-column: 1;
    }
}

/* ===================================
   COMPREHENSIVE RESPONSIVE DESIGN
   All Screen Sizes: Mobile to Ultra-Wide
   =================================== */

/* =========== EXTRA SMALL DEVICES (< 360px) =========== */
@media (max-width: 359px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 12px;
    }

    .nav-container {
        padding: 0 12px;
    }

    .logo-img {
        height: 28px;
    }

    .hero {
        padding-top: 70px;
        padding-bottom: var(--space-md);
        position: relative;
        z-index: 10;
        overflow: visible;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-text {
        position: relative;
        z-index: 5;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: var(--space-md);
    }

    /* Hero CTA - ensure visible and centered */
    .hero-cta {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: var(--space-xs);
        margin-bottom: var(--space-md);
        position: relative;
        z-index: 6;
    }

    .hero-cta .btn {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto;
        min-width: 180px;
        justify-content: center;
        padding: 8px 16px;
    }

    /* Show hero visual - fix positioning */
    .hero-visual {
        display: block !important;
        position: relative;
        height: auto;
        min-height: 220px;
        margin-top: var(--space-md);
        margin-bottom: var(--space-xl);
        z-index: 1;
        overflow: visible;
    }

    /* Fix spline container positioning */
    .spline-container {
        position: relative !important;
        inset: auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        height: 160px;
        padding-top: 0;
    }

    .shield-3d {
        position: relative;
        transform: scale(0.45);
        width: 160px;
        height: 160px;
    }

    .shield-glow {
        width: 80px;
        height: 80px;
    }

    .shield-icon {
        width: 80px;
        height: 80px;
    }

    /* Show orbits around shield */
    .orbit {
        display: block !important;
    }

    .orbit-1 {
        width: 100px;
        height: 100px;
    }

    .orbit-2 {
        width: 130px;
        height: 130px;
    }

    .orbit-3 {
        width: 160px;
        height: 160px;
    }

    /* Show dashboard mockup */
    .hero-dashboard {
        display: block !important;
        position: relative;
        margin-top: var(--space-sm);
    }

    .dashboard-mockup {
        transform: scale(0.65);
        transform-origin: center top;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .section-description {
        font-size: 0.85rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 16px;
    }

    .feature-title {
        font-size: 1rem;
    }

    /* Intelligence grid fix */
    .intelligence-grid {
        grid-template-columns: 1fr;
    }

    .intel-card.main-card {
        grid-column: 1 !important;
    }

    .scanners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .scanner-card {
        padding: 12px;
    }

    .scanner-name {
        font-size: 0.65rem;
    }

    .tab-btn {
        padding: 8px 6px;
        font-size: 0.7rem;
    }

    .tab-btn i {
        font-size: 1rem;
    }

    /* Contact section fix */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* =========== SMALL MOBILE (360px - 479px) =========== */
@media (min-width: 360px) and (max-width: 479px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .nav-container {
        padding: 0 var(--space-md);
    }

    .logo-img {
        height: 32px;
    }

    /* Hero Section - Show visual on mobile */
    .hero {
        padding-top: 80px;
        padding-bottom: var(--space-lg);
        min-height: auto;
        position: relative;
        z-index: 10;
        overflow: visible;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-text {
        order: 1;
        position: relative;
        z-index: 5;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-title .title-line {
        display: block;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: var(--space-lg);
    }

    /* Hero CTA - ensure visible and centered */
    .hero-cta {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        margin-bottom: var(--space-lg);
        position: relative;
        z-index: 6;
    }

    .hero-cta .btn {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto;
        min-width: 200px;
        justify-content: center;
    }

    /* Show hero visual on mobile - fix positioning */
    .hero-visual {
        display: block !important;
        order: 2;
        position: relative;
        height: auto;
        min-height: 280px;
        margin-top: var(--space-lg);
        margin-bottom: var(--space-2xl);
        z-index: 1;
        overflow: visible;
    }

    /* Fix spline container positioning */
    .spline-container {
        position: relative !important;
        inset: auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        height: 200px;
        padding-top: 0;
    }

    .shield-3d {
        position: relative;
        transform: scale(0.5);
        width: 200px;
        height: 200px;
    }

    .shield-glow {
        width: 100px;
        height: 100px;
    }

    .shield-icon {
        width: 100px;
        height: 100px;
    }

    /* Show orbits around shield */
    .orbit {
        display: block !important;
    }

    .orbit-1 {
        width: 130px;
        height: 130px;
    }

    .orbit-2 {
        width: 165px;
        height: 165px;
    }

    .orbit-3 {
        width: 200px;
        height: 200px;
    }

    /* Show dashboard mockup */
    .hero-dashboard {
        display: block !important;
        position: relative;
        margin-top: var(--space-md);
    }

    .dashboard-mockup {
        transform: scale(0.75);
        transform-origin: center top;
    }

    .scroll-indicator {
        display: none;
    }

    .section-header {
        margin-bottom: var(--space-xl);
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .features-section,
    .platform-section,
    .intelligence-section,
    .solutions-section,
    .scanners-section,
    .cta-section,
    .contact-section {
        padding: var(--space-2xl) 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .feature-card {
        padding: var(--space-lg);
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    .feature-list li {
        font-size: 0.8rem;
    }

    .platform-content {
        grid-template-columns: 1fr;
    }

    .platform-feature {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .pf-icon {
        margin: 0 auto;
    }

    .platform-visual,
    .browser-mockup,
    .floating-card {
        display: none;
    }

    /* Intelligence Grid - Fix columns */
    .intelligence-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .intel-card {
        padding: var(--space-lg);
    }

    .intel-card.main-card {
        grid-column: 1 !important;
    }

    .intel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .intel-header h3 {
        font-size: 1rem;
    }

    .vuln-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }

    .vuln-stat {
        flex: 1 1 80px;
        text-align: center;
    }

    .vs-number {
        font-size: 1.25rem;
    }

    .cvss-visual {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .cvss-ring {
        width: 80px;
        height: 80px;
    }

    .cvss-breakdown {
        display: flex;
        gap: var(--space-md);
        justify-content: center;
    }

    .kev-list {
        gap: var(--space-sm);
    }

    .kev-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .vendor-bars {
        gap: var(--space-sm);
    }

    .vendor-bar {
        flex-wrap: wrap;
    }

    .tabs-nav {
        flex-wrap: wrap;
        gap: var(--space-xs);
        padding: var(--space-xs);
    }

    .tab-btn {
        flex: 1 1 calc(50% - 4px);
        padding: var(--space-sm);
        font-size: 0.75rem;
        flex-direction: column;
        gap: 4px;
        min-width: 0;
    }

    .tab-btn i {
        font-size: 1.25rem;
    }

    .panel-content {
        grid-template-columns: 1fr;
        padding: var(--space-lg);
    }

    .panel-visual {
        display: none;
    }

    .scanners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .scanner-card {
        padding: var(--space-md);
    }

    .scanner-logo {
        width: 40px;
        height: 40px;
    }

    .scanner-name {
        font-size: 0.7rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        padding: var(--space-lg);
        text-align: center;
    }

    .cta-text h2 {
        font-size: 1.25rem;
    }

    /* Contact Section - Fix layout and visibility */
    .contact-section {
        overflow: visible;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact-info {
        text-align: center;
    }

    .contact-info .section-tag,
    .contact-info .section-title,
    .contact-info p {
        text-align: center;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .method-icon {
        margin: 0 auto;
    }

    .method-info {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form-wrapper {
        width: 100%;
    }

    .contact-form {
        padding: var(--space-lg);
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-certifications {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .link-column h4,
    .link-column ul {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* =========== LARGE MOBILE / PHABLET (480px - 639px) =========== */
@media (min-width: 480px) and (max-width: 639px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: var(--space-sm);
    }

    .hero-cta .btn {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto;
    }

    /* Hero visual fix */
    .hero-visual {
        margin-bottom: var(--space-2xl);
    }

    /* Show orbits */
    .orbit {
        display: block !important;
    }

    .orbit-1 {
        width: 140px;
        height: 140px;
    }

    .orbit-2 {
        width: 175px;
        height: 175px;
    }

    .orbit-3 {
        width: 210px;
        height: 210px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .intelligence-grid {
        grid-template-columns: 1fr;
    }

    .scanners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tab-btn {
        flex: 1 1 calc(50% - 8px);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========== SMALL TABLET (640px - 767px) =========== */
@media (min-width: 640px) and (max-width: 767px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-cta {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
    }

    .hero-cta .btn {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Hero visual fix */
    .hero-visual {
        margin-bottom: var(--space-2xl);
    }

    /* Show orbits */
    .orbit {
        display: block !important;
    }

    .orbit-1 {
        width: 150px;
        height: 150px;
    }

    .orbit-2 {
        width: 190px;
        height: 190px;
    }

    .orbit-3 {
        width: 230px;
        height: 230px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intelligence-grid {
        grid-template-columns: 1fr;
    }

    .intel-card.main-card {
        grid-column: 1;
    }

    .scanners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tab-btn {
        flex: 1;
        flex-direction: row;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========== TABLET PORTRAIT (768px - 1023px) =========== */
@media (min-width: 768px) and (max-width: 1023px) {
    html {
        font-size: 16px;
    }

    .container {
        padding: 0 var(--space-xl);
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        padding: var(--space-lg);
        flex-direction: column;
        gap: var(--space-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        height: 350px;
        margin-top: var(--space-xl);
    }

    .section-title {
        font-size: 2rem;
    }

    .features-section,
    .platform-section,
    .intelligence-section,
    .solutions-section,
    .scanners-section,
    .cta-section,
    .contact-section {
        padding: var(--space-3xl) 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .platform-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .platform-visual {
        order: -1;
    }

    .intelligence-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intel-card.main-card {
        grid-column: span 2;
    }

    .tabs-nav {
        flex-wrap: nowrap;
    }

    .tab-btn {
        flex: 1;
    }

    .panel-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .scanners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========== SMALL LAPTOP (1024px - 1199px) =========== */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .nav-container {
        max-width: 1000px;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 400px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .platform-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .intelligence-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intel-card.main-card {
        grid-column: span 2;
    }

    .panel-content {
        grid-template-columns: 1fr 1fr;
    }

    .scanners-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1.5fr 2fr;
    }

    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========== LAPTOP / SMALL DESKTOP (1200px - 1399px) =========== */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }

    .nav-container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual {
        height: 450px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .intelligence-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .intel-card.main-card {
        grid-column: span 2;
    }

    .scanners-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* =========== DESKTOP (1400px - 1599px) =========== */
@media (min-width: 1400px) and (max-width: 1599px) {
    .container {
        max-width: 1320px;
    }

    .nav-container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 3.25rem;
    }

    .hero-visual {
        height: 500px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-section,
    .platform-section,
    .intelligence-section,
    .solutions-section,
    .scanners-section {
        padding: var(--space-4xl) 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }

    .intelligence-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .scanners-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--space-lg);
    }
}

/* =========== LARGE DESKTOP (1600px - 1919px) =========== */
@media (min-width: 1600px) and (max-width: 1919px) {
    .container {
        max-width: 1440px;
    }

    .nav-container {
        max-width: 1500px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.15rem;
        max-width: 600px;
    }

    .hero-visual {
        height: 550px;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .section-description {
        font-size: 1.1rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }

    .feature-card {
        padding: var(--space-xl);
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.35rem;
    }

    .intelligence-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }

    .scanners-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .scanner-card {
        padding: var(--space-lg);
    }
}

/* =========== ULTRA-WIDE / 4K (1920px+) =========== */
@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }

    .container {
        max-width: 1600px;
    }

    .nav-container {
        max-width: 1700px;
        padding: 0 var(--space-2xl);
    }

    .navbar {
        padding: var(--space-lg) 0;
    }

    .logo-img {
        height: 48px;
    }

    .nav-link {
        font-size: 1rem;
    }

    .nav-menu {
        gap: var(--space-2xl);
    }

    .hero {
        min-height: 100vh;
        padding-top: 120px;
    }

    .hero-content {
        gap: var(--space-3xl);
    }

    .hero-title {
        font-size: 4rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1.25rem;
        max-width: 650px;
    }

    .hero-visual {
        height: 600px;
    }

    .hero-cta .btn {
        padding: var(--space-md) var(--space-xl);
        font-size: 1.1rem;
    }

    .section-header {
        margin-bottom: var(--space-3xl);
    }

    .section-tag {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-description {
        font-size: 1.15rem;
        max-width: 800px;
    }

    .features-section,
    .platform-section,
    .intelligence-section,
    .solutions-section,
    .scanners-section,
    .cta-section,
    .contact-section {
        padding: 120px 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
    }

    .feature-card {
        padding: var(--space-2xl);
    }

    .feature-icon {
        width: 72px;
        height: 72px;
        margin-bottom: var(--space-xl);
    }

    .feature-icon i {
        font-size: 2.25rem;
    }

    .feature-title {
        font-size: 1.5rem;
        margin-bottom: var(--space-md);
    }

    .feature-description {
        font-size: 1rem;
    }

    .feature-list li {
        font-size: 0.95rem;
        padding: var(--space-sm) 0;
    }

    .platform-content {
        gap: var(--space-3xl);
    }

    .platform-feature {
        padding: var(--space-lg);
    }

    .pf-icon {
        width: 56px;
        height: 56px;
    }

    .pf-content h4 {
        font-size: 1.15rem;
    }

    .intelligence-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
    }

    .intel-card {
        padding: var(--space-xl);
    }

    .intel-header h3 {
        font-size: 1.25rem;
    }

    .vs-number {
        font-size: 2.5rem;
    }

    .tabs-nav {
        padding: var(--space-md);
        gap: var(--space-md);
    }

    .tab-btn {
        padding: var(--space-md) var(--space-xl);
        font-size: 1rem;
    }

    .panel-content {
        padding: var(--space-2xl);
        gap: var(--space-3xl);
    }

    .panel-text h3 {
        font-size: 1.75rem;
    }

    .panel-text p {
        font-size: 1.05rem;
    }

    .scanners-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--space-xl);
    }

    .scanner-card {
        padding: var(--space-xl);
    }

    .scanner-logo {
        width: 60px;
        height: 60px;
    }

    .scanner-logo i {
        font-size: 1.75rem;
    }

    .scanner-name {
        font-size: 0.9rem;
    }

    .cta-content {
        padding: var(--space-3xl);
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-text p {
        font-size: 1.1rem;
    }

    .contact-grid {
        gap: var(--space-3xl);
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: var(--space-2xl);
    }

    .footer {
        padding: var(--space-4xl) 0 var(--space-xl);
    }

    .footer-main {
        gap: var(--space-3xl);
    }

    .footer-brand p {
        font-size: 1rem;
        max-width: 400px;
    }

    .link-column h4 {
        font-size: 1.1rem;
    }

    .link-column a {
        font-size: 0.95rem;
    }

    .floating-chat-btn {
        width: 70px;
        height: 70px;
        bottom: 40px;
        right: 40px;
    }

    .floating-chat-btn i {
        font-size: 2rem;
    }
}

/* =========== SUPER ULTRA-WIDE (2560px+) =========== */
@media (min-width: 2560px) {
    html {
        font-size: 20px;
    }

    .container {
        max-width: 1800px;
    }

    .nav-container {
        max-width: 1900px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-description {
        font-size: 1.35rem;
        max-width: 700px;
    }

    .section-title {
        font-size: 3.25rem;
    }

    .features-grid {
        gap: var(--space-3xl);
    }

    .scanners-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* =========== LANDSCAPE ORIENTATION FIXES =========== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 var(--space-xl);
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .nav-menu.active {
        max-height: 60vh;
        overflow-y: auto;
    }

    .scroll-indicator {
        display: none;
    }
}

/* =========== TOUCH DEVICE OPTIMIZATIONS =========== */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .scanner-card:hover,
    .intel-card:hover,
    .btn:hover {
        transform: none;
    }

    .nav-link {
        padding: var(--space-sm) var(--space-xs);
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .tab-btn {
        min-height: 48px;
    }

    .social-link {
        min-width: 44px;
        min-height: 44px;
    }

    .btn {
        min-height: 44px;
    }
}

/* =========== HIGH DPI / RETINA DISPLAYS =========== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
    }

    .feature-icon,
    .scanner-logo,
    .pf-icon {
        image-rendering: crisp-edges;
    }
}

/* =========== REDUCED MOTION PREFERENCE =========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-bg,
    .floating-shapes,
    .orbit,
    .particle-field {
        animation: none;
    }
}

/* =========== AOS ANIMATION FIXES FOR MOBILE =========== */
/* Override horizontal animations on mobile to prevent visibility issues */
@media (max-width: 768px) {
    /* Convert fade-left and fade-right to fade-up on mobile */
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: translate3d(0, 50px, 0) !important;
    }

    [data-aos="fade-left"].aos-animate,
    [data-aos="fade-right"].aos-animate {
        transform: translate3d(0, 0, 0) !important;
    }

    /* Ensure contact section is always visible */
    .contact-section {
        overflow: visible !important;
    }

    .contact-info,
    .contact-form-wrapper {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    /* Reduce AOS animation distance on mobile */
    [data-aos] {
        transition-duration: 400ms !important;
    }

    [data-aos="fade-up"] {
        transform: translate3d(0, 30px, 0);
    }

    [data-aos="fade-up"].aos-animate {
        transform: translate3d(0, 0, 0);
    }

    /* Ensure all sections are visible even if AOS fails */
    .intel-card,
    .feature-card,
    .scanner-card,
    .section-header {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Fix AOS initial state issues */
[data-aos] {
    pointer-events: auto !important;
}

/* =========== PRINT STYLES =========== */
@media print {
    .navbar,
    .hero-bg,
    .hero-visual,
    .scroll-indicator,
    .floating-chat-btn,
    .cursor,
    .cursor-follower,
    #preloader,
    .video-modal,
    .contact-modal,
    .success-modal {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .hero {
        min-height: auto;
        padding: 20px 0;
    }

    .section-title {
        font-size: 18pt;
    }

    .features-grid,
    .intelligence-grid,
    .scanners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
}
