/* SentinelOne-Inspired Dark Theme Design */

/* Updated Color Scheme - Dark like SentinelOne */
:root {
    /* Dark Theme Colors */
    --primary-dark: #0d1117;
    --secondary-dark: #161b22;
    --accent-teal: #1C2668;
    --accent-purple: #1C2668;
    --text-primary: #ffffff;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;

    /* Syntrisec Brand Colors (for accents) */
    --brand-navy: #1C2668;
    --brand-green: #1C2668;

    /* Grays */
    --gray-50: #f6f8fa;
    --gray-100: #f1f3f4;
    --gray-200: #d0d7de;
    --gray-300: #afb8c1;
    --gray-400: #8b949e;
    --gray-500: #6e7681;
    --gray-600: #57606a;
    --gray-700: #424a53;
    --gray-800: #32383f;
    --gray-900: #24292f;

    /* Spacing (keeping existing) */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-5xl: 6rem;

    /* Typography - Bold like SentinelOne */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Shadows for Dark Theme */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 0 1px rgba(0, 212, 170, 0.1), 0 4px 16px rgba(0, 212, 170, 0.12);
}

/* Global White Theme Base */
body {
    background: #ffffff;
    color: #1a1a1a;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Top Notification Bar */
.notification-bar {
    background: var(--accent-teal);
    color: #ffffff;
    padding: 8px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.notification-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.notification-text {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

.notification-cta {
    background: #ffffff;
    color: var(--accent-teal);
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.notification-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}


/* White Navigation - SentinelOne Style */
.main-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.nav-brand {
    flex-shrink: 0;
}

.logo-main {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    filter: none;
    background: transparent;
}

.logo-main:hover {
    transform: translateY(5px) scale(1.02);
    filter: none;
}

/* SentinelOne-Style Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    flex-grow: 1;
    justify-content: center;
    align-self: center;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
    padding: var(--space-md) 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* CTA Buttons - SentinelOne Style */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    align-self: center;
}

.nav-cta-secondary {
    color: #000000;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    padding: var(--space-md) var(--space-lg);
    border-radius: 9999px;
    transition: all 0.3s ease;
    border: 1px solid #d1d5db;
}

.nav-cta-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(28, 38, 104, 0.6), 0 0 60px rgba(28, 38, 104, 0.3), 0 0 100px rgba(28, 38, 104, 0.15), 0 8px 25px rgba(28, 38, 104, 0.25);
}

.nav-cta-primary {
    background: #7CCC63;
    color: #000000;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    padding: var(--space-md) var(--space-xl);
    border-radius: 9999px;
    transition: all 0.3s ease;
    border: none;
}

.nav-cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 40px rgba(124, 204, 99, 0.6), 0 0 80px rgba(124, 204, 99, 0.4), 0 8px 25px rgba(124, 204, 99, 0.3);
    background: #6BB850;
    color: #000000;
}

/* Hero Section - Split Screen Layout */
.hero-split-screen {
    position: relative;
    min-height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

/* Left Side - Blended Text Box (1/3) */
.hero-text-side {
    position: absolute;
    left: 0;
    top: 0;
    width: 33.333%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.85) 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl);
    z-index: 2;
}

.hero-content-split {
    max-width: 500px;
    width: 100%;
}

.hero-headline-split {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.hero-highlight-split {
    color: var(--accent-teal);
}

.hero-subheadline-split {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-3xl);
    font-weight: var(--font-weight-medium);
}

.hero-cta-group-split {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.btn-primary-hero-split {
    background: var(--accent-purple);
    color: #ffffff;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: 9999px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    border: 2px solid var(--accent-purple);
    text-align: center;
}

.btn-primary-hero-split:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
    color: #ffffff;
}

.btn-secondary-hero-split {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: 9999px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.btn-secondary-hero-split:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    color: #000000;
}

/* Full Screen Video Background */
.hero-video-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-split-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-split-screen {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text-side,
    .hero-video-side {
        flex: none;
    }

    .hero-text-side {
        min-height: 70vh;
    }

    .hero-video-side {
        min-height: 50vh;
    }

    .hero-headline-split {
        font-size: 2.5rem;
    }

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

/* Legacy Hero Section - Full Video Background */
.hero-video-bg {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

/* Video Background Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Video Overlay for Text Contrast */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.0) 0%,
        rgba(255, 255, 255, 0.0) 50%,
        rgba(255, 255, 255, 0.0) 100%
    );
    z-index: 2;
}

/* Hero Section - SentinelOne Style (Legacy) */
.hero-sentinelone {
    background: #ffffff;
    padding: var(--space-5xl) 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}



/* Video Background Hero Container */
.hero-video-bg .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 3;
    text-align: center;
}

/* Content Overlay Styling */
.hero-content-overlay {
    max-width: 800px;
    margin: 0 auto;
    z-index: 3;
}

.hero-headline-overlay {
    font-size: 4.5rem;
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-highlight-overlay {
    color: #000000;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-subheadline-overlay {
    font-size: 1.375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-3xl);
    font-weight: var(--font-weight-medium);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-cta-group-overlay {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-hero-overlay {
    background: var(--accent-purple);
    color: #ffffff;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: 9999px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    border: 2px solid var(--accent-purple);
}

.btn-primary-hero-overlay:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
    color: #ffffff;
}

.btn-secondary-hero-overlay {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: 9999px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero-overlay:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.hero-stats-overlay {
    display: flex;
    gap: var(--space-3xl);
    justify-content: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-stat-overlay {
    text-align: center;
}

.hero-stat-number-overlay {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    color: var(--accent-teal);
    line-height: 1;
    margin-bottom: var(--space-sm);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-stat-label-overlay {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Demo Status Overlay */
.demo-status-overlay {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(79, 209, 199, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(79, 209, 199, 0.3);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.status-dot-overlay {
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--accent-teal);
}

/* Legacy Hero Container */
.hero-sentinelone .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5xl);
    align-items: center;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-headline {
    font-size: 4rem;
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.hero-highlight {
    color: var(--accent-teal);
}

.hero-subheadline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.4;
    font-weight: var(--font-weight-normal);
}

.hero-cta-group {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.btn-primary-hero {
    background: #ffffff;
    color: var(--accent-purple);
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 9999px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-purple);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.4), 0 0 80px rgba(99, 102, 241, 0.3), 0 12px 40px rgba(99, 102, 241, 0.2);
    background: var(--accent-purple);
    color: #ffffff;
}

.btn-secondary-hero {
    background: #ffffff;
    color: var(--accent-teal);
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 9999px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--accent-teal);
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(28, 38, 104, 0.6), 0 0 60px rgba(28, 38, 104, 0.3), 0 0 100px rgba(28, 38, 104, 0.15), 0 12px 40px rgba(28, 38, 104, 0.25);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--accent-teal);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual - Dashboard/Platform Demo */
.hero-visual {
    position: relative;
    z-index: 2;
}

.dashboard-image-container, .dashboard-video-container {
    position: relative;
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.dashboard-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.dashboard-hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    object-fit: cover;
}

.dashboard-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.platform-header {
    background: #ffffff;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.platform-title {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
}

.platform-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--accent-teal);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.platform-content {
    padding: var(--space-xl);
}

.threat-dashboard {
    margin-bottom: var(--space-xl);
}

.threat-alert {
    background: #ffffff;
    border: 1px solid #ffffff;
    border-left: 4px solid var(--accent-teal);
    border-radius: 9999px;
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
}

.threat-alert:hover {
    transform: translateX(4px);
    border-left-color: var(--accent-teal);
    box-shadow: var(--shadow-glow);
}

.threat-alert.critical {
    border-left-color: #ff4757;
}

.threat-title {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-xs);
}

.threat-meta {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
}

.threat-action {
    color: var(--accent-teal);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: var(--space-5xl) 0;
    position: relative;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
}

.features-header h2 {
    color: #1a1a1a;
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.features-subtitle {
    color: #6b7280;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
}

/* Feature Sections with Alternating Backgrounds */
.feature-section-light {
    background: #ffffff;
    padding: var(--space-5xl) 0;
    position: relative;
}

.feature-section-dark {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: var(--space-5xl) 0;
    position: relative;
}

.feature-layout {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    max-width: 1400px;
    margin: 0 auto;
}

.feature-layout-reverse {
    flex-direction: row-reverse;
}

.feature-image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-lg);
}

.feature-layout .feature-image-section:first-child {
    padding-left: 0;
}

.feature-layout-reverse .feature-image-section:first-child {
    padding-right: 0;
}

.feature-image-full {
    width: 100%;
    max-width: 450px;
    height: 350px;
    object-fit: contain;
    border-radius: 12px;
}


.feature-content-section {
    flex: 1;
    padding: var(--space-2xl);
    max-width: 600px;
}

.feature-section-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--space-xl);
    line-height: 1.2;
}

.feature-section-description {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.feature-section-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-section-benefits li {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.feature-section-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: var(--font-weight-bold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-layout,
    .feature-layout-reverse {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2xl);
    }

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

    .feature-image-full {
        max-width: 320px;
        height: 280px;
    }
}

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-teal);
}

.feature-image {
    margin-bottom: var(--space-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, #3dd5c8 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: var(--space-lg);
}

.feature-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-photo {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Healthcare Challenge Cards */
.challenge-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.challenge-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-teal);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.challenge-card:hover::before {
    left: 100%;
}

.challenge-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    margin: 0 auto var(--space-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.challenge-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-teal), #3dd5c8);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.challenge-card:hover .challenge-icon {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    color: var(--accent-teal);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.challenge-card:hover .challenge-icon::after {
    opacity: 0.1;
}

.challenge-title {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
    transition: all 0.3s ease;
    position: relative;
}

.challenge-card:hover .challenge-title {
    color: var(--accent-teal);
    transform: translateY(-2px);
}

.challenge-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Section Light */
.section-light {
    background: #ffffff;
    padding: var(--space-5xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
}

.section-header h2 {
    color: #1a1a1a;
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.feature-title {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.feature-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

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

.feature-benefits li {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: var(--font-weight-bold);
}

/* Dark Section Styles - Legacy */
.section-dark {
    background: #f8fafc;
    color: #1a1a1a;
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}



.section-darker {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-primary);
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}



.section-header-dark h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.section-subtitle-dark {
    color: #d1d5db;
    font-size: 1.25rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.5;
}

/* Problem Cards - Dark Theme */
.problem-grid-dark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card-dark {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.problem-card-dark:hover {
    transform: translateY(-12px);
    border-color: var(--accent-teal);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(28, 38, 104, 0.1);
}

.problem-stat-dark {
    font-size: 4rem;
    font-weight: var(--font-weight-black);
    color: var(--accent-teal);
    margin-bottom: var(--space-lg);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(28, 38, 104, 0.1);
}

.problem-title-dark {
    color: #ffffff;
    font-size: 1.375rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.problem-desc-dark {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* Problem Impact Statement - SentinelOne Style */
.problem-impact {
    color: var(--accent-teal);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    margin-top: var(--space-md);
    font-style: italic;
}

/* Cost Callout Box - Bridge Element */
.cost-callout {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--accent-teal);
    color: #1a1a1a;
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    margin: var(--space-4xl) 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cost-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-teal);
}

.cost-callout h3 {
    color: #1a1a1a;
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-lg);
}

.cost-callout p {
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.cost-callout strong {
    color: var(--primary-dark);
    font-weight: var(--font-weight-bold);
}

/* Footer Dark */
.footer-dark {
    background: var(--primary-dark);
    border-top: 1px solid #ffffff;
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-content-dark {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-4xl);
}

.footer-brand-dark .logo-main {
    filter: brightness(0) invert(1);
    height: 80px;
    margin-bottom: var(--space-lg);
}

.footer-description-dark {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

.footer-links-dark {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
}

.footer-column-dark h4 {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column-dark a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-column-dark a:hover {
    color: var(--accent-teal);
}

.footer-bottom-dark {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-xl) 0;
    border-top: 1px solid #ffffff;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        text-align: center;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .problem-grid-dark {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hide dots 4-5 on desktop (only show 3 dots for desktop carousel) */
.carousel-dot-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* Navigation - Mobile layout */
    .nav-container {
        padding: 0 var(--space-lg);
        position: relative;
        display: flex;
        align-items: center;
    }

    /* Show hamburger menu button on mobile - far left */
    .mobile-menu-toggle {
        display: block;
        order: 0;
        margin-right: var(--space-lg);
    }

    .nav-brand {
        order: 1;
        flex: 1;
    }

    /* Keep Get Started button visible on mobile */
    .nav-actions {
        order: 2;
        margin-left: auto;
    }

    .nav-cta-secondary {
        display: none;
    }

    .nav-cta-primary {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Hide desktop menu by default */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: var(--space-sm) var(--space-lg);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 1000;
        max-height: 60vh;
        overflow-y: auto;
    }

    /* Show menu when active */
    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu .nav-link {
        display: block;
        padding: var(--space-sm) 0;
        width: 100%;
        font-size: 0.95rem;
    }


    /* Notification bar - Better mobile text */
    .notification-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .notification-cta {
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
    }

    /* Hero sections */
    .hero-headline {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .hero-headline-split {
        font-size: 2rem !important;
    }

    .hero-subheadline-split {
        font-size: 1rem !important;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-cta-group-split {
        flex-direction: column;
        align-items: stretch;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .btn-primary-hero,
    .btn-primary-hero-split,
    .btn-secondary-hero {
        width: 100%;
        text-align: center;
        padding: var(--space-md) var(--space-lg) !important;
        font-size: 1rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-stats {
        justify-content: center;
        flex-direction: column;
        gap: var(--space-lg);
    }

    /* All grid layouts - force single column */
    [style*="grid-template-columns: repeat(3, 1fr)"],
    [style*="grid-template-columns: repeat(4, 1fr)"],
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Flex layouts that should wrap on mobile */
    [style*="display: flex"][style*="gap"] {
        flex-wrap: wrap !important;
    }

    /* Bottom checkmarks section */
    section [style*="display: flex"][style*="justify-content: center"] span {
        flex: 1 1 auto !important;
        min-width: 100px !important;
        text-align: center !important;
    }

    /* Section spacing - general mobile padding first */
    .section-light,
    .section-dark,
    .section-darker {
        padding: var(--space-3xl) 0 !important;
    }

    /* Section spacing - add top padding to avoid navbar overlap */
    .section-light:first-of-type,
    .section-dark:first-of-type,
    .section-darker:first-of-type {
        padding-top: calc(80px + var(--space-3xl)) !important;
    }

    /* Sections after hero on homepage - extra padding for navbar */
    .hero-split-screen + .section-light {
        padding-top: calc(80px + var(--space-3xl)) !important;
    }

    /* Hero sections need extra space */
    .hero-split-screen {
        margin-top: 60px !important;
    }

    .section-header h2,
    .section-header-dark h2 {
        font-size: 2rem !important;
    }

    .section-subtitle,
    .section-subtitle-dark {
        font-size: 1rem !important;
    }

    /* Challenge/feature cards */
    .challenge-card,
    .differentiator-card {
        padding: var(--space-lg) !important;
    }

    .challenge-title,
    .feature-section-title {
        font-size: 1.25rem !important;
    }

    /* Feature layouts - stack vertically */
    .feature-layout,
    .feature-layout-reverse {
        grid-template-columns: 1fr !important;
        gap: var(--space-2xl) !important;
    }

    .feature-section-description {
        font-size: 1rem !important;
    }

    /* Forms - better mobile layout */
    form [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    form input,
    form select,
    form textarea {
        font-size: 1rem !important;
    }

    form button[type="submit"] {
        font-size: 1rem !important;
        padding: var(--space-md) !important;
    }

    /* Privacy policy content */
    .privacy-content h1 {
        font-size: 2rem !important;
    }

    .privacy-content h2 {
        font-size: 1.5rem !important;
    }

    .privacy-content h3 {
        font-size: 1.125rem !important;
    }

    /* Footer */
    .footer-content-dark {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-links-dark {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-dark {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    /* Footer privacy link - ensure light gray is visible */
    div[style*="background: var(--background-dark)"] a[href="/privacy"] {
        color: #9ca3af !important;
        text-decoration: underline !important;
    }

    /* Container padding */
    .container {
        padding: 0 var(--space-lg) !important;
    }

    /* CTA section headings - prevent overflow */
    section[style*="text-align: center"] h2 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    section[style*="text-align: center"] p {
        font-size: 0.95rem !important;
        padding: 0 !important;
    }

    /* Demo form benefits - hide separators on mobile */
    .demo-benefits .benefit-separator {
        display: none !important;
    }

    .demo-benefits {
        flex-direction: column !important;
        gap: var(--space-xs) !important;
    }

    /* Platform page - agent sections reordering for mobile */
    .agent-section-reverse {
        display: flex !important;
        flex-direction: column !important;
    }

    .agent-section-reverse .agent-text {
        order: 1 !important;
    }

    .agent-section-reverse .agent-image {
        order: 2 !important;
    }

    /* Platform page - Built for Healthcare Security Teams carousel on mobile */
    #roleCarousel {
        padding: 0 !important;
    }

    .carousel-card {
        min-width: 85% !important;
        flex: 0 0 85% !important;
        padding: 0 var(--space-sm) !important;
    }

    /* Ensure consistent image sizing in carousel cards */
    .carousel-card div[style*="height: 300px"] {
        height: 250px !important;
    }

    .carousel-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    /* Remove padding from carousel container on mobile */
    div[style*="padding: 0 80px"] {
        padding: 0 var(--space-md) !important;
    }

    /* Prevent horizontal overflow on all elements */
    * {
        max-width: 100%;
    }

    body {
        overflow-x: hidden;
    }

    .container {
        overflow-x: hidden;
    }

    /* Platform page - use case grid */
    .use-case-grid {
        grid-template-columns: 1fr !important;
    }

    /* Partners page - category cards */
    .partner-categories {
        grid-template-columns: 1fr !important;
    }

    /* Fix partner page cards causing horizontal scroll */
    .partner-value-card,
    .partner-category-card {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Partner page - convert grids to horizontal carousels on mobile */
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: var(--space-lg) !important;
        padding-bottom: var(--space-md) !important;
        grid-template-columns: none !important;
    }

    [style*="grid-template-columns: repeat(4, 1fr)"] .partner-category-card {
        flex: 0 0 85% !important;
        scroll-snap-align: center !important;
        min-width: 280px !important;
    }

    /* Fix any grid or flex containers */
    [style*="display: grid"],
    [style*="display: flex"] {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Fix images and SVGs */
    img, svg, video {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Carousel controls - better touch targets */
    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    /* Show all 5 dots on mobile */
    .carousel-dot-mobile {
        display: block !important;
    }

    /* Partnership Programs - convert 2-column to single column */
    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: var(--space-xl) !important;
    }

    /* Partnership type cards - optimize for mobile */
    .partnership-type-card {
        padding: var(--space-xl) !important;
    }

    .partnership-type-card h3 {
        font-size: 1.5rem !important;
    }

    .partnership-type-card p {
        font-size: 1rem !important;
    }

    .partnership-type-card ul {
        font-size: 0.9375rem !important;
    }

    .partnership-type-card li {
        padding-left: var(--space-lg) !important;
        word-wrap: break-word !important;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .notification-content {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .notification-text {
        font-size: 0.7rem;
    }

    .hero-headline,
    .hero-headline-split {
        font-size: 1.75rem !important;
    }

    .section-header h2,
    .section-header-dark h2 {
        font-size: 1.75rem !important;
    }

    /* Make very small text readable */
    body {
        font-size: 0.9375rem;
    }

    /* Footer links single column on very small screens */
    .footer-links-dark {
        grid-template-columns: 1fr;
    }
}