/* CSS Variables for Themes */
:root {
    --bg-primary: #000000;
    --bg-secondary: #080808;
    --bg-tertiary: #101010;
    --text-primary: #ffffff;
    --text-secondary: #f5f5f5;
    --text-muted: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.15);
    --card-bg: rgba(8, 8, 8, 0.98);
    --card-border: rgba(255, 255, 255, 0.2);
    --shadow-light: rgba(0, 0, 0, 0.8);
    --shadow-medium: rgba(0, 0, 0, 0.9);
    --shadow-heavy: rgba(0, 0, 0, 1);
    --accent-primary: #667eea;
    --accent-secondary: #764ba2;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #080808 100%);
    --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: rgba(102, 126, 234, 0.1);
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(102, 126, 234, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
}

/* Light theme overrides */
[data-theme="light"] {
    color-scheme: light;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
    color: var(--text-primary);
}

[data-theme="light"] p {
    color: var(--text-secondary);
}

[data-theme="light"] .module-card,
[data-theme="light"] .feature-card,
[data-theme="light"] .comparison-card,
[data-theme="light"] .about-card,
[data-theme="light"] .roadmap-card {
    background: white;
    border: 1px solid rgba(102, 126, 234, 0.1);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .module-card h5,
[data-theme="light"] .feature-card h5,
[data-theme="light"] .comparison-card h5 {
    color: var(--text-primary);
}

[data-theme="light"] .module-card p,
[data-theme="light"] .feature-card p,
[data-theme="light"] .comparison-card p {
    color: var(--text-secondary);
}

[data-theme="light"] .contact-item strong {
    color: var(--text-primary);
}

[data-theme="light"] .contact-item p {
    color: var(--text-secondary);
}

/* Dark theme footer */
[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #000000 0%, #050505 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .footer-brand .nav-brand {
    color: #ffffff;
}

[data-theme="dark"] .footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .footer-column h4 {
    color: #667eea;
}

[data-theme="dark"] .footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .footer-column ul li a:hover {
    color: #667eea;
}

[data-theme="dark"] .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Contact form styles removed - no longer needed */

/* Dark theme modals */
[data-theme="dark"] .modal-content {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

[data-theme="dark"] .modal-close {
    color: var(--text-secondary);
}

[data-theme="dark"] .modal-close:hover {
    color: var(--text-primary);
}

/* Light theme sections */
[data-theme="light"] .hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eef4ff 100%);
}

/* Light theme cyber effects */
[data-theme="light"] .hero::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
}

[data-theme="light"] .cyber-grid {
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    opacity: 0.3;
}

[data-theme="light"] .security-scanner {
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(102, 126, 234, 0.8) 50%,
        transparent 100%);
    box-shadow: none;
}

[data-theme="light"] .about {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

[data-theme="light"] .services {
    background: #ffffff;
}

[data-theme="light"] .contact {
    background: #ffffff;
}

[data-theme="light"] .future-product {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

[data-theme="light"] .soc-service {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

[data-theme="light"] .soc-service .section-header h2,
[data-theme="light"] .soc-service .section-header p {
    color: white;
}

/* Light theme highlight items */
[data-theme="light"] .highlight-item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
}

[data-theme="light"] .highlight-item span {
    color: #2d3748;
}

[data-theme="light"] .feature-item span {
    color: #2d3748;
}

/* Light theme feature cards */
[data-theme="light"] .feature-content h5 {
    color: #2d3748;
}

[data-theme="light"] .feature-content p {
    color: #4a5568;
}

/* Light theme future section */
[data-theme="light"] .future-title {
    color: #2d3748;
}

[data-theme="light"] .future-intro {
    color: #4a5568;
}

[data-theme="light"] .future-features-section h4 {
    color: #2d3748;
}

/* Dark theme specific elements */
[data-theme="dark"] .future-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

[data-theme="dark"] .cost-indicator {
    background: #1a1a1a;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .feature-grid .feature-card i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .roadmap-card .roadmap-status {
    background: #1a1a1a;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dark theme roadmap cards specific */
[data-theme="dark"] .roadmap-card.current {
    background: #121212;
    border: 3px solid #48bb78;
}

[data-theme="dark"] .roadmap-card.future {
    background: #121212;
    border: 3px solid #667eea;
}

/* Dark theme main-dashboard cards */
[data-theme="dark"] .main-dashboard {
    background: #121212;
    border: 2px solid #667eea;
}

[data-theme="dark"] .main-dashboard h4 {
    color: #667eea;
}

[data-theme="dark"] .main-dashboard .module-features span {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    border-left-color: #667eea;
}

/* Dark theme roadmap-evolution */
[data-theme="dark"] .roadmap-evolution {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

[data-theme="dark"] .roadmap-evolution h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .roadmap-evolution p {
    color: var(--text-secondary);
}

/* Dark theme soc-intro and soc-description */
[data-theme="dark"] .soc-description h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .soc-description p {
    color: var(--text-secondary);
}

[data-theme="dark"] .highlight-item {
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .highlight-item span {
    color: var(--text-primary);
}

[data-theme="dark"] .highlight-item i {
    color: #667eea;
}

/* Dark theme dashboard-modules */
[data-theme="dark"] .dashboard-modules h3 {
    color: var(--text-primary);
}

/* Dark theme soc-overview */
[data-theme="dark"] .soc-overview {
    background: #121212 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Additional dark theme fixes */
[data-theme="dark"] .roadmap-evolution {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* SOC Service section headers should remain white for both themes */

[data-theme="dark"] .nav-brand i {
    color: #667eea;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Smooth animations for all elements */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animations */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }

/* Enhanced 3D Card Effects */
.about-card, .module-card, .roadmap-card, .feature-card, .comparison-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #667eea 100%);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Enhanced Buttons with Microinteractions */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 2px solid #667eea;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Button icon animations */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .header {
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(30px);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-brand i {
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.nav-brand:hover i {
    transform: rotate(360deg) scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: auto;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

/* Theme Toggle */
/* Theme toggle in navigation */
.theme-toggle-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.theme-toggle-btn {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    margin: 0;
}

.theme-toggle-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1);
    border-color: transparent;
}

.theme-toggle-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle-btn:hover i {
    transform: rotate(20deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: #667eea;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: #667eea;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #050505 50%, #0a0a0a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Cyber Security Effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    animation: cyberPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes cyberPulse {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
    100% { opacity: 0.3; transform: scale(1); }
}

/* Network Grid Effect */
.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    opacity: 0.3;
}

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

/* Security Scanner Effect */
.security-scanner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(102, 126, 234, 0.8) 50%,
        transparent 100%);
    animation: securityScan 12s ease-in-out infinite;
    z-index: 1;
}

@keyframes securityScan {
    0% { left: -100%; top: 20%; }
    25% { left: 100%; top: 40%; }
    50% { left: -100%; top: 60%; }
    75% { left: 100%; top: 80%; }
    100% { left: -100%; top: 20%; }
}

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

.hero-title {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Security Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-animation {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    position: relative;
    font-size: 5rem;
    color: #667eea;
    z-index: 2;
}

.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    opacity: 0;
    animation: simplePulse 2.5s infinite ease-out;
}

.pulse-ring:nth-child(1) {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    width: 160px;
    height: 160px;
    margin: -80px 0 0 -80px;
    animation-delay: 0.6s;
}

.pulse-ring:nth-child(3) {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    animation-delay: 1.2s;
}

@keyframes simplePulse {
    0% {
        opacity: 0.8;
        transform: scale(0.3);
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Enhanced shield icon */
.shield-icon {
    animation: gentleFloat 3s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.shield-icon i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #080808 0%, #101010 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23667eea" fill-opacity="0.03"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.about-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.about-card:hover .card-icon::before {
    width: 100%;
    height: 100%;
}

.about-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.team-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.team-highlight h3 {
    color: white;
    margin-bottom: 1rem;
}

/* SOC as a Service Section */
.soc-service {
    padding: 80px 0;
    background: linear-gradient(135deg, #080808 0%, #121212 100%);
    color: white;
}

.soc-service .section-header h2,
.soc-service .section-header p {
    color: white;
}

.soc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.soc-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.soc-highlight h3 {
    color: white;
    margin-bottom: 1rem;
}

.soc-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.soc-benefits {
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.soc-comparison {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.soc-comparison h3 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-table {
    display: grid;
    gap: 0.5rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
}

.comparison-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.comparison-header .comparison-item {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.comparison-item.highlight {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cost-high, .time-high, .team-high {
    background: rgba(245, 101, 101, 0.3);
}

.cost-low, .time-low, .team-low, .update-auto, .availability-full {
    background: rgba(72, 187, 120, 0.3);
}

.update-manual, .availability-limited {
    background: rgba(237, 137, 54, 0.3);
}

/* Roadmap Cards Styles */
.roadmap-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

.roadmap-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.roadmap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.roadmap-card.current {
    border: 3px solid #48bb78;
    background: linear-gradient(135deg, #f0fff4 0%, #f7fafc 100%);
}

.roadmap-card.future {
    border: 3px solid #667eea;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.roadmap-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.roadmap-card.current .roadmap-icon {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.roadmap-card.future .roadmap-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.roadmap-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.roadmap-status.available {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.roadmap-status.coming {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    border: 2px solid #667eea;
}

.roadmap-card h3 {
    color: var(--text-primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.roadmap-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.roadmap-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.roadmap-card.current .feature-item i {
    color: #48bb78;
    font-size: 1.1rem;
}

.roadmap-card.future .feature-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.roadmap-cta-card {
    text-align: center;
}

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

.roadmap-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.roadmap-evolution {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.roadmap-evolution h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.roadmap-evolution p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* SOC Simple Benefits */
.soc-simple-benefits {
    margin: 3rem 0;
}

.soc-simple-benefits h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

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

.benefit-simple {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-simple:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Early Access Buttons */
.early-access-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section - SOC Focused */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23667eea" fill-opacity="0.04"><rect x="24" y="24" width="2" height="2" rx="1"/></g></svg>') repeat;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

/* SOC Main Service */
.soc-main-service {
    margin-bottom: 4rem;
}

.soc-overview {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.soc-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.soc-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.soc-description h3 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.soc-description p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.soc-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.highlight-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.highlight-item span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Dashboard Modules */
.dashboard-modules h3 {
    color: #2d3748;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.module-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.main-dashboard {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f3ff 100%);
}

.main-dashboard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.module-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.main-dashboard .module-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.1);
}

.module-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.main-dashboard h4 {
    color: #667eea;
    font-size: 1.4rem;
}

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

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

.module-features span {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid #667eea;
}

.main-dashboard .module-features span {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-left-color: #667eea;
}

/* SOC Metrics Section */
.soc-metrics {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.soc-metrics .section-header h3,
.soc-metrics .section-header p {
    color: white;
}

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

.metric-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.metric-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Enhanced Future Product Section */
.future-product {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #080808 100%);
    position: relative;
    overflow: hidden;
}

.future-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23667eea" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    z-index: 0;
}

.future-product .container {
    position: relative;
    z-index: 1;
}

/* Header Section */
.future-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.future-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.future-subtitle {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.future-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content Grid */
.future-content-grid {
    display: grid;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Features Section */
.future-features-section h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.feature-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content h5 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefits Comparison */
.benefits-comparison-section {
    margin-top: 3rem;
}

.benefits-comparison-section::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transform: translateX(-50%);
}

.benefits-comparison-section h4 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}



/* VS Divider */
.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    position: relative;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: vsRotate 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.vs-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: vsGlow 2s ease-in-out infinite alternate;
}

@keyframes vsRotate {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes vsGlow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.1; }
}

/* Enhanced Comparison Cards */
.comparison-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 24px 24px 0 0;
}

.comparison-card.internal::before {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
}

.comparison-card.service::before {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.comparison-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px var(--shadow-medium);
}

.comparison-card.internal {
    border-color: rgba(229, 62, 62, 0.2);
}

.comparison-card.service {
    border-color: rgba(56, 161, 105, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
    position: relative;
}

.card-header h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header h5::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.comparison-card.internal .card-header h5::before {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
}

.comparison-card.service .card-header h5::before {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.cost-indicator {
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid;
}

.cost-indicator.high {
    background: linear-gradient(135deg, #fed7d7 0%, #fbb6ce 100%);
    color: #e53e3e;
    border-color: rgba(229, 62, 62, 0.3);
}

.cost-indicator.low {
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
    color: #38a169;
    border-color: rgba(56, 161, 105, 0.3);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    position: relative;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li:hover {
    padding-left: 0.5rem;
    background: rgba(102, 126, 234, 0.03);
    border-radius: 8px;
}

.comparison-list li i {
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.comparison-card.internal .comparison-list i {
    color: white;
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.comparison-card.service .comparison-list i {
    color: white;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
}

/* Dark theme for comparison section */
[data-theme="dark"] .benefits-comparison-section h4 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .comparison-card {
    background: #121212;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .comparison-card.internal {
    border-color: rgba(229, 62, 62, 0.4);
}

[data-theme="dark"] .comparison-card.service {
    border-color: rgba(56, 161, 105, 0.4);
}

/* Call to Action Section */
.future-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.future-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.cta-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #080808 0%, #101010 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23667eea" fill-opacity="0.03"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info h3 {
    color: #2d3748;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-item strong {
    color: #2d3748;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: #4a5568;
}

/* Form Styles */
/* Contact form styles removed - form no longer exists */

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand p {
    color: #cbd5e0;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #cbd5e0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #4a5568;
}

.close:hover {
    color: #2d3748;
}

.modal h2 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.modal p {
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .theme-toggle-nav {
        margin-left: 0;
        margin-right: 1rem;
        order: -1;
    }
    
    .theme-toggle-btn {
        width: 35px;
        height: 35px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
        padding: 2rem 0;
        z-index: 1000;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        margin: 0 1rem;
        border-radius: 12px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .future-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .future-features {
        grid-template-columns: 1fr;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .soc-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    
    .comparison-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .soc-intro {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .soc-highlights {
        justify-content: center;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .modules-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .module-card {
        padding: 1.5rem;
    }
    
    .module-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .dashboard-modules h3 {
        font-size: 1.5rem;
    }
    
    .roadmap-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .roadmap-arrow {
        display: none;
    }
    
    .roadmap-card {
        padding: 2rem;
    }
    
    .roadmap-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .roadmap-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .roadmap-evolution {
        padding: 2rem;
    }
    
    .benefits-simple {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .benefit-simple {
        padding: 1.5rem;
    }
    
    .early-access-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .metric-item {
        padding: 1.5rem 1rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .soc-overview {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .soc-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .soc-description h3 {
        font-size: 1.5rem;
    }
    
    .soc-highlights {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .highlight-item {
        justify-content: center;
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .module-card {
        padding: 1.25rem;
    }
    
    .module-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .module-card h4 {
        font-size: 1.1rem;
    }
    
    .dashboard-modules h3 {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .roadmap-card {
        padding: 1.5rem;
    }
    
    .roadmap-card h3 {
        font-size: 1.3rem;
    }
    
    .roadmap-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .roadmap-status {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .feature-item {
        margin-bottom: 0.5rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .roadmap-evolution {
        padding: 1.5rem;
    }
    
    .roadmap-evolution h3 {
        font-size: 1.2rem;
    }
    
    .benefits-simple {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-simple {
        padding: 1.25rem;
    }
    
    .benefit-number {
        font-size: 2.5rem;
    }
    
    .benefit-label {
        font-size: 1.1rem;
    }
    
    .early-access-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    .soc-metrics {
        margin-top: 2rem;
        padding: 2rem 0;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-brand {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .nav-brand i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
