/* Frost Cosmic Design System - 42RobotsAI */

/* CSS Variables */
:root {
    /* Primary Colors (Blues) */
    --deep-blue: #0D1B2A;
    --rich-blue: #1B2A41;
    --brand-blue: #2E4F7E;

    /* Accent Colors (Cyan/Light Blue) */
    --vibrant-cyan: #00E5FF;
    --electric-cyan: #33EBFF;
    --glow-cyan: #66F0FF;

    /* Gradient Colors */
    --purple: #8B5CF6;
    --royal-blue: #3B82F6;

    /* Base Colors */
    --white: #FFFFFF;
    --light-grey: #E8E8E8;

    /* Glass Effects */
    --glass-fill: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-strong: rgba(255, 255, 255, 0.2);
    --cyan-glass-border: rgba(0, 229, 255, 0.15);
    --cyan-glass-border-strong: rgba(0, 229, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--deep-blue);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light Mode */
/* Global Header Styles */
h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    color: var(--vibrant-cyan);
}

body.light-mode {
    --deep-blue: #FFFFFF;
    --rich-blue: #F8F9FA;
    --brand-blue: #E9ECEF;
    --vibrant-cyan: #0098C7;
    --electric-cyan: #00B8E6;
    --glow-cyan: #00D4FF;
    --white: #0D1B2A;
    --light-grey: #1B2A41;
    --glass-fill: rgba(248, 249, 250, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-border-strong: rgba(0, 0, 0, 0.12);
    --cyan-glass-border: rgba(0, 152, 199, 0.2);
    --cyan-glass-border-strong: rgba(0, 152, 199, 0.4);
}

body.light-mode nav {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

body.light-mode nav.scrolled {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

body.light-mode .hero-pattern {
    opacity: 0.6;
    background:
        /* Hexagonal glow nodes - darker blues */
        radial-gradient(circle at 75% 25%, rgba(13, 27, 42, 0.8) 0%, transparent 1%),
        radial-gradient(circle at 85% 15%, rgba(27, 42, 65, 0.7) 0%, transparent 0.8%),
        radial-gradient(circle at 65% 35%, rgba(46, 79, 126, 0.6) 0%, transparent 0.6%),
        radial-gradient(circle at 80% 45%, rgba(13, 27, 42, 0.9) 0%, transparent 1.2%),
        radial-gradient(circle at 90% 30%, rgba(27, 42, 65, 0.8) 0%, transparent 1%),
        radial-gradient(circle at 70% 50%, rgba(46, 79, 126, 0.7) 0%, transparent 0.8%),
        radial-gradient(circle at 95% 40%, rgba(13, 27, 42, 1) 0%, transparent 1.5%),
        radial-gradient(circle at 60% 20%, rgba(27, 42, 65, 0.5) 0%, transparent 0.7%),
        radial-gradient(circle at 85% 55%, rgba(46, 79, 126, 0.8) 0%, transparent 1%),
        radial-gradient(circle at 75% 60%, rgba(13, 27, 42, 0.6) 0%, transparent 0.8%),

        /* Hexagonal structures with glowing edges - dark blue */
        radial-gradient(ellipse 300px 250px at 80% 35%, transparent 45%, rgba(13, 27, 42, 0.4) 48%, transparent 52%),
        radial-gradient(ellipse 200px 180px at 90% 25%, transparent 45%, rgba(27, 42, 65, 0.5) 48%, transparent 52%),
        radial-gradient(ellipse 250px 200px at 70% 45%, transparent 45%, rgba(46, 79, 126, 0.35) 48%, transparent 52%),

        /* Larger glowing hexagons on the right - darker blue */
        radial-gradient(ellipse 180px 160px at 92% 50%, transparent 40%, rgba(13, 27, 42, 0.6) 44%, rgba(13, 27, 42, 0.9) 48%, transparent 52%),
        radial-gradient(ellipse 150px 140px at 88% 65%, transparent 40%, rgba(27, 42, 65, 0.5) 44%, rgba(27, 42, 65, 0.7) 48%, transparent 52%),

        /* Connection lines simulation - darker blue */
        linear-gradient(45deg, transparent 48%, rgba(13, 27, 42, 0.15) 49%, rgba(13, 27, 42, 0.25) 50%, rgba(13, 27, 42, 0.15) 51%, transparent 52%),
        linear-gradient(135deg, transparent 48%, rgba(27, 42, 65, 0.2) 49%, rgba(27, 42, 65, 0.3) 50%, rgba(27, 42, 65, 0.2) 51%, transparent 52%),

        /* Background glow areas - dark blue tones */
        radial-gradient(circle at 85% 35%, rgba(13, 27, 42, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(27, 42, 65, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 90% 50%, rgba(46, 79, 126, 0.18) 0%, transparent 45%);

    background-size:
        100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%,
        100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%,
        100% 100%, 100% 100%, 100% 100%,
        100% 100%, 100% 100%,
        200% 200%, 200% 200%,
        100% 100%, 100% 100%, 100% 100%;
}

body.light-mode .hero-pattern::before {
    background-image: url('data:image/svg+xml,%3Csvg width="1200" height="800" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cfilter id="glow"%3E%3CfeGaussianBlur stdDeviation="2" result="coloredBlur"/%3E%3CfeMerge%3E%3CfeMergeNode in="coloredBlur"/%3E%3CfeMergeNode in="SourceGraphic"/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg stroke="%230D1B2A" stroke-width="1.5" fill="none" opacity="0.7" filter="url(%23glow)"%3E%3Cline x1="900" y1="200" x2="1000" y2="150"/%3E%3Cline x1="1000" y1="150" x2="1050" y2="250"/%3E%3Cline x1="900" y1="200" x2="850" y2="300"/%3E%3Cline x1="850" y1="300" x2="950" y2="350"/%3E%3Cline x1="950" y1="350" x2="1050" y2="250"/%3E%3Cline x1="1000" y1="150" x2="1100" y2="200"/%3E%3Cline x1="1050" y1="250" x2="1100" y2="350"/%3E%3Cline x1="950" y1="350" x2="900" y2="450"/%3E%3Cline x1="900" y1="450" x2="1000" y2="500"/%3E%3Cline x1="1000" y1="500" x2="1100" y2="450"/%3E%3Cline x1="1100" y1="450" x2="1100" y2="350"/%3E%3Ccircle cx="900" cy="200" r="6" fill="%230D1B2A" opacity="0.9"/%3E%3Ccircle cx="1000" cy="150" r="8" fill="%230D1B2A"/%3E%3Ccircle cx="1050" cy="250" r="7" fill="%230D1B2A" opacity="0.95"/%3E%3Ccircle cx="850" cy="300" r="5" fill="%231B2A41" opacity="0.8"/%3E%3Ccircle cx="950" cy="350" r="6" fill="%230D1B2A" opacity="0.9"/%3E%3Ccircle cx="1100" cy="200" r="7" fill="%230D1B2A"/%3E%3Ccircle cx="1100" cy="350" r="6" fill="%232E4F7E" opacity="0.85"/%3E%3Ccircle cx="900" cy="450" r="5" fill="%230D1B2A" opacity="0.8"/%3E%3Ccircle cx="1000" cy="500" r="7" fill="%230D1B2A" opacity="0.95"/%3E%3Ccircle cx="1100" cy="450" r="8" fill="%230D1B2A"/%3E%3Cpolygon points="950,250 1000,220 1050,250 1050,310 1000,340 950,310" stroke="%230D1B2A" stroke-width="2" fill="rgba(13,27,42,0.15)"/%3E%3Cpolygon points="1050,350 1100,320 1150,350 1150,410 1100,440 1050,410" stroke="%231B2A41" stroke-width="2" fill="rgba(27,42,65,0.2)"/%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.8;
}

body.light-mode .hero-background {
    background: #FFFFFF;
}

body.light-mode .hero-background::before {
    background: transparent;
}

body.light-mode .hero-background::after {
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.5) 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.5) 100%);
    opacity: 0.6;
}

body.light-mode .hero h1 {
    color: #0D1B2A;
}

body.light-mode .hero-description {
    color: #1B2A41;
}

body.light-mode .nav-cta {
    color: #0D1B2A;
}

body.light-mode .nav-cta:hover {
    color: white;
}

body.light-mode .logo svg text {
    fill: #0D1B2A;
}

body.light-mode .dropdown-menu {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

body.light-mode .dropdown-title {
    color: #0098C7;
}

body.light-mode .dropdown-divider {
    background: rgba(0, 0, 0, 0.1);
}

body.light-mode .theme-option,
body.light-mode .quick-link-btn {
    color: #1B2A41;
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .theme-option:hover,
body.light-mode .quick-link-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #0098C7;
}

body.light-mode .theme-option.active {
    background: rgba(0, 152, 199, 0.1);
    border-color: #0098C7;
    color: #0098C7;
}

body.light-mode .menu-icon-dropdown span {
    background: #0098C7;
}

body.light-mode .menu-icon-dropdown:hover span {
    background: #00B8E6;
}

body.light-mode .nav-links a {
    color: #0D1B2A;
}

body.light-mode .nav-links a:hover {
    color: #0098C7;
}

body.light-mode .secondary-cta {
    color: #0D1B2A;
}

body.light-mode .secondary-cta:hover {
    color: white;
}

/* Executive Theme - Black, White, Gold */
body[data-theme="executive"] {
    /* Gold Gradient Colors */
    --vibrant-cyan: #D4AF37;
    --electric-cyan: #F4D03F;
    --glow-cyan: #FFD700;
    --purple: #B8860B;
    --royal-blue: #DAA520;

    /* Executive Base Colors */
    --exec-gold-dark: #B8860B;
    --exec-gold: #D4AF37;
    --exec-gold-light: #F4D03F;
    --exec-gold-bright: #FFD700;
    --exec-black: #000000;
    --exec-dark-grey: #1A1A1A;
    --exec-white: #FFFFFF;

    /* Executive Backgrounds */
    --deep-blue: #000000;
    --rich-blue: #0A0A0A;
    --brand-blue: #1A1A1A;

    /* Executive Glass Effects */
    --glass-fill: rgba(0, 0, 0, 0.6);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-border-strong: rgba(212, 175, 55, 0.4);
    --cyan-glass-border: rgba(212, 175, 55, 0.3);
    --cyan-glass-border-strong: rgba(212, 175, 55, 0.5);
}

body[data-theme="executive"].light-mode {
    /* Light Mode Executive Colors */
    --vibrant-cyan: #D4AF37;
    --electric-cyan: #B8860B;
    --glow-cyan: #C9A961;
    --purple: #8B7355;
    --royal-blue: #A0826D;

    /* Executive Light Base */
    --deep-blue: #FFFFFF;
    --rich-blue: #F8F8F8;
    --brand-blue: #F0F0F0;
    --exec-black: #FFFFFF;
    --exec-white: #000000;

    /* Light Mode Glass */
    --glass-fill: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-border-strong: rgba(212, 175, 55, 0.3);
    --cyan-glass-border: rgba(212, 175, 55, 0.25);
    --cyan-glass-border-strong: rgba(212, 175, 55, 0.4);
}

/* Executive Theme - Remove All Border Radius */
body[data-theme="executive"] nav,
body[data-theme="executive"] .nav-cta,
body[data-theme="executive"] .dropdown-menu,
body[data-theme="executive"] .theme-toggle-btn,
body[data-theme="executive"] .toggle-circle,
body[data-theme="executive"] .theme-option,
body[data-theme="executive"] .quick-link-btn,
body[data-theme="executive"] .hero-badge,
body[data-theme="executive"] .primary-cta,
body[data-theme="executive"] .secondary-cta,
body[data-theme="executive"] .solutions-glass-card,
body[data-theme="executive"] .solutions-benefit-badge,
body[data-theme="executive"] .solutions-glass-card::before,
body[data-theme="executive"] .solutions-hover-details,
body[data-theme="executive"] .solutions-icon-glow {
    border-radius: 0 !important;
}

/* Executive Gold Shimmer Effect */
@keyframes executiveShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes executiveGoldGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(212, 175, 55, 0.4),
            0 0 40px rgba(212, 175, 55, 0.2),
            inset 0 0 20px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow:
            0 0 30px rgba(212, 175, 55, 0.6),
            0 0 60px rgba(212, 175, 55, 0.3),
            inset 0 0 30px rgba(212, 175, 55, 0.2);
    }
}

/* Executive Navigation Styles */
body[data-theme="executive"] nav {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-bottom: 2px solid var(--exec-gold);
}

body[data-theme="executive"] nav.scrolled {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    border-bottom: 2px solid var(--exec-gold-bright);
}

body[data-theme="executive"].light-mode nav {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%);
    border-bottom: 2px solid var(--exec-gold);
}

body[data-theme="executive"].light-mode nav.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.98) 100%);
}

/* Executive CTA Buttons */
body[data-theme="executive"] .nav-cta,
body[data-theme="executive"] .primary-cta {
    background: linear-gradient(90deg, #B8860B 0%, #D4AF37 50%, #F4D03F 100%);
    background-size: 200% 100%;
    color: #000000;
    font-weight: 700;
    border: 2px solid #D4AF37;
    position: relative;
    overflow: hidden;
}

body[data-theme="executive"] .nav-cta::before,
body[data-theme="executive"] .primary-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: none;
}

body[data-theme="executive"] .nav-cta:hover,
body[data-theme="executive"] .primary-cta:hover {
    animation: executiveShimmer 2s linear infinite, executiveGoldGlow 2s ease-in-out infinite;
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.6),
        0 8px 32px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

body[data-theme="executive"] .nav-cta:hover::before,
body[data-theme="executive"] .primary-cta:hover::before {
    animation: executiveShimmer 1.5s linear infinite;
}

body[data-theme="executive"] .secondary-cta {
    background: transparent;
    border: 2px solid var(--exec-gold);
    color: var(--exec-gold);
}

body[data-theme="executive"] .secondary-cta:hover {
    background: linear-gradient(90deg, #B8860B 0%, #D4AF37 50%, #F4D03F 100%);
    color: #000000;
    animation: executiveGoldGlow 2s ease-in-out infinite;
}

/* Executive Dropdown Menu */
body[data-theme="executive"] .dropdown-menu {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    border: 2px solid var(--exec-gold);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

body[data-theme="executive"].light-mode .dropdown-menu {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.98) 100%);
}

body[data-theme="executive"] .dropdown-title {
    color: var(--exec-gold-bright);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--exec-gold);
    padding-bottom: 0.5rem;
}

body[data-theme="executive"] .theme-option,
body[data-theme="executive"] .quick-link-btn {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--exec-gold);
    transition: all 0.3s ease;
}

body[data-theme="executive"] .theme-option:hover,
body[data-theme="executive"] .quick-link-btn:hover {
    background: linear-gradient(90deg, #B8860B 0%, #D4AF37 100%);
    color: #000000;
    border-color: var(--exec-gold-bright);
    animation: executiveGoldGlow 2s ease-in-out infinite;
    transform: translateX(8px);
}

body[data-theme="executive"] .theme-option.active {
    background: linear-gradient(90deg, #B8860B 0%, #D4AF37 100%);
    border: 2px solid var(--exec-gold-bright);
    color: #000000;
    font-weight: 700;
}

/* Executive Hero Section */
body[data-theme="executive"] .hero-background {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #000000 100%);
}

body[data-theme="executive"].light-mode .hero-background {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 50%, #FFFFFF 100%);
}

body[data-theme="executive"] .hero-pattern {
    background: none;
}

body[data-theme="executive"] .hero-pattern::before {
    background-image: url('data:image/svg+xml,%3Csvg width="1200" height="800" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3ClinearGradient id="goldGrad" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%23B8860B;stop-opacity:1" /%3E%3Cstop offset="50%25" style="stop-color:%23D4AF37;stop-opacity:1" /%3E%3Cstop offset="100%25" style="stop-color:%23F4D03F;stop-opacity:1" /%3E%3C/linearGradient%3E%3C/defs%3E%3Cg stroke="url(%23goldGrad)" stroke-width="2" fill="none" opacity="0.3"%3E%3Crect x="900" y="200" width="100" height="100" /%3E%3Crect x="1000" y="150" width="80" height="80" /%3E%3Crect x="850" y="300" width="120" height="120" /%3E%3Crect x="1050" y="350" width="90" height="90" /%3E%3Cline x1="950" y1="250" x2="1050" y2="190" /%3E%3Cline x1="1000" y1="300" x2="900" y2="350" /%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.4;
}

body[data-theme="executive"] .hero h1 {
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #F4D03F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-theme="executive"].light-mode .hero h1 {
    background: linear-gradient(135deg, #000000 0%, #B8860B 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-theme="executive"] .hero-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--exec-gold);
    color: var(--exec-gold-bright);
}

body[data-theme="executive"] .hero-badge:hover {
    animation: executiveGoldGlow 1.5s ease-in-out infinite;
}

/* Executive Solutions Section */
body[data-theme="executive"] .solutions-section {
    background: #000000;
}

body[data-theme="executive"].light-mode .solutions-section {
    background: #FFFFFF;
}

body[data-theme="executive"] .solutions-bg-element-1 {
    background: var(--exec-gold-dark);
}

body[data-theme="executive"] .solutions-bg-element-2 {
    background: var(--exec-gold);
}

body[data-theme="executive"] .solutions-bg-element-3 {
    background: var(--exec-gold-light);
}

body[data-theme="executive"] .solutions-headline {
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-theme="executive"].light-mode .solutions-headline {
    background: linear-gradient(135deg, #000000 0%, #B8860B 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-theme="executive"] .solutions-glass-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--exec-gold);
    backdrop-filter: blur(10px);
}

body[data-theme="executive"].light-mode .solutions-glass-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--exec-gold);
}

body[data-theme="executive"] .solutions-glass-card::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
}

body[data-theme="executive"] .solutions-glass-card:hover {
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid var(--exec-gold-bright);
    animation: executiveGoldGlow 2s ease-in-out infinite;
}

body[data-theme="executive"].light-mode .solutions-glass-card:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow:
        0 20px 40px rgba(212, 175, 55, 0.3),
        0 0 60px rgba(212, 175, 55, 0.2);
}

body[data-theme="executive"] .solutions-benefit-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--exec-gold);
    color: var(--exec-gold-bright);
}

body[data-theme="executive"] .solutions-cta-link {
    color: var(--exec-gold-bright);
}

body[data-theme="executive"] .solutions-cta-link::after {
    background: var(--exec-gold-bright);
}

body[data-theme="executive"] .solutions-metric-value {
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Executive Theme Toggle */
body[data-theme="executive"] .theme-toggle-btn {
    border: 2px solid var(--exec-gold);
}

body[data-theme="executive"] .toggle-circle {
    background: linear-gradient(90deg, #B8860B 0%, #D4AF37 50%, #F4D03F 100%);
}

body[data-theme="executive"] .theme-toggle-btn:hover {
    border-color: var(--exec-gold-bright);
    animation: executiveGoldGlow 2s ease-in-out infinite;
}

/* ==================== HEXAGONAL THEME ==================== */

/* Octagonal Shape Mixin - Using clip-path for octagons with elongated top/bottom */
body[data-theme="hexagonal"] .nav-cta,
body[data-theme="hexagonal"] .primary-cta,
body[data-theme="hexagonal"] .secondary-cta,
body[data-theme="hexagonal"] .theme-option,
body[data-theme="hexagonal"] .quick-link-btn,
body[data-theme="hexagonal"] .hero-badge,
body[data-theme="hexagonal"] .solutions-glass-card,
body[data-theme="hexagonal"] .solutions-benefit-badge,
body[data-theme="hexagonal"] .solutions-icon-container,
body[data-theme="hexagonal"] .theme-toggle-btn,
body[data-theme="hexagonal"] .dropdown-menu {
    clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
    border-radius: 0 !important;
}

/* Hexagonal Theme Colors - Using cyan/purple gradient */
body[data-theme="hexagonal"] {
    --hex-primary: #00E5FF;
    --hex-secondary: #8B5CF6;
    --hex-accent: #3B82F6;
    --hex-glow: rgba(0, 229, 255, 0.5);
}

/* Hexagonal Navigation */
body[data-theme="hexagonal"] nav {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(27, 42, 65, 0.95) 100%);
    border-bottom: 2px solid var(--hex-primary);
}

body[data-theme="hexagonal"] nav.scrolled {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.98) 0%, rgba(27, 42, 65, 0.98) 100%);
}

/* Hexagonal CTAs */
body[data-theme="hexagonal"] .nav-cta,
body[data-theme="hexagonal"] .primary-cta {
    background: linear-gradient(135deg, var(--hex-secondary) 0%, var(--hex-accent) 50%, var(--hex-primary) 100%);
    color: #FFFFFF;
    font-weight: 600;
    border: 2px solid var(--hex-primary);
    position: relative;
    overflow: hidden;
}

body[data-theme="hexagonal"] .nav-cta:hover,
body[data-theme="hexagonal"] .primary-cta:hover {
    box-shadow:
        0 0 30px var(--hex-glow),
        0 8px 32px rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

body[data-theme="hexagonal"] .secondary-cta {
    background: transparent;
    border: 2px solid var(--hex-primary);
    color: var(--hex-primary);
}

body[data-theme="hexagonal"] .secondary-cta:hover {
    background: linear-gradient(135deg, var(--hex-secondary) 0%, var(--hex-accent) 50%, var(--hex-primary) 100%);
    color: #FFFFFF;
    box-shadow: 0 0 30px var(--hex-glow);
}

/* Hexagonal Dropdown Menu */
body[data-theme="hexagonal"] .dropdown-menu {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.98) 0%, rgba(27, 42, 65, 0.98) 100%);
    border: 2px solid var(--hex-primary);
    box-shadow: 0 8px 32px var(--hex-glow);
}

body[data-theme="hexagonal"] .dropdown-title {
    color: var(--hex-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

body[data-theme="hexagonal"] .theme-option,
body[data-theme="hexagonal"] .quick-link-btn {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid var(--hex-primary);
    transition: all 0.3s ease;
}

body[data-theme="hexagonal"] .theme-option:hover,
body[data-theme="hexagonal"] .quick-link-btn:hover {
    background: linear-gradient(135deg, var(--hex-secondary) 0%, var(--hex-accent) 100%);
    color: #FFFFFF;
    border-color: var(--hex-primary);
    box-shadow: 0 0 20px var(--hex-glow);
}

body[data-theme="hexagonal"] .theme-option.active {
    background: linear-gradient(135deg, var(--hex-secondary) 0%, var(--hex-accent) 100%);
    border: 2px solid var(--hex-primary);
    color: #FFFFFF;
    font-weight: 600;
}

/* Hexagonal Hero Section */
body[data-theme="hexagonal"] .hero-badge {
    background: rgba(0, 229, 255, 0.1);
    border: 2px solid var(--hex-primary);
    color: var(--hex-primary);
}

body[data-theme="hexagonal"] .hero-badge:hover {
    box-shadow: 0 0 20px var(--hex-glow);
}

/* Hexagonal Solutions Cards */
body[data-theme="hexagonal"] .solutions-glass-card {
    background: rgba(13, 27, 42, 0.8);
    border: 2px solid var(--hex-primary);
    backdrop-filter: blur(10px);
}

body[data-theme="hexagonal"] .solutions-glass-card::before {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

body[data-theme="hexagonal"] .solutions-glass-card:hover {
    border: 2px solid var(--hex-primary);
    box-shadow: 0 0 40px var(--hex-glow);
    transform: translateY(-8px);
}

body[data-theme="hexagonal"] .solutions-benefit-badge {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--hex-primary);
    color: var(--hex-primary);
}

body[data-theme="hexagonal"] .solutions-icon-container {
    background: rgba(0, 229, 255, 0.05);
    border: 2px solid var(--hex-primary);
}

body[data-theme="hexagonal"] .solutions-icon-glow {
    background: radial-gradient(circle, var(--hex-glow) 0%, transparent 70%);
}

body[data-theme="hexagonal"] .solutions-cta-link {
    color: var(--hex-primary);
}

body[data-theme="hexagonal"] .solutions-cta-link::after {
    background: var(--hex-primary);
}

/* Hexagonal Theme Toggle */
body[data-theme="hexagonal"] .theme-toggle-btn {
    border: 2px solid var(--hex-primary);
}

body[data-theme="hexagonal"] .toggle-circle {
    background: linear-gradient(135deg, var(--hex-secondary) 0%, var(--hex-primary) 100%);
}

body[data-theme="hexagonal"] .theme-toggle-btn:hover {
    border-color: var(--hex-primary);
    box-shadow: 0 0 20px var(--hex-glow);
}

/* Hexagonal Background Pattern */
body[data-theme="hexagonal"] .hero-pattern {
    display: block !important;
    background:
        radial-gradient(circle at 75% 25%, rgba(0, 229, 255, 0.8) 0%, transparent 1%),
        radial-gradient(circle at 85% 15%, rgba(139, 92, 246, 0.6) 0%, transparent 0.8%),
        radial-gradient(circle at 65% 35%, rgba(59, 130, 246, 0.5) 0%, transparent 0.6%),
        radial-gradient(ellipse 300px 250px at 80% 35%, transparent 45%, rgba(0, 229, 255, 0.3) 48%, transparent 52%);
    opacity: 0.6;
}

body[data-theme="hexagonal"] .hero-pattern::before {
    display: block !important;
    background-image: url('data:image/svg+xml,%3Csvg width="1200" height="800" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cfilter id="hexGlow"%3E%3CfeGaussianBlur stdDeviation="2" result="coloredBlur"/%3E%3CfeMerge%3E%3CfeMergeNode in="coloredBlur"/%3E%3CfeMergeNode in="SourceGraphic"/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg stroke="%2300E5FF" stroke-width="2" fill="none" opacity="0.6" filter="url(%23hexGlow)"%3E%3Cpolygon points="900,200 950,175 1000,200 1000,250 950,275 900,250" /%3E%3Cpolygon points="1000,200 1050,175 1100,200 1100,250 1050,275 1000,250" /%3E%3Cpolygon points="850,300 900,275 950,300 950,350 900,375 850,350" /%3E%3Cpolygon points="950,300 1000,275 1050,300 1050,350 1000,375 950,350" /%3E%3Ccircle cx="900" cy="200" r="6" fill="%2300E5FF" opacity="0.9"/%3E%3Ccircle cx="1000" cy="200" r="8" fill="%238B5CF6" opacity="0.8"/%3E%3Ccircle cx="950" cy="300" r="7" fill="%233B82F6" opacity="0.9"/%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.7;
}

/* Light Mode Hexagonal Theme */
body[data-theme="hexagonal"].light-mode {
    --hex-primary: #0098C7;
    --hex-secondary: #7C3AED;
    --hex-accent: #2563EB;
    --hex-glow: rgba(0, 152, 199, 0.5);
}

body[data-theme="hexagonal"].light-mode nav {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-bottom: 2px solid var(--hex-primary);
}

body[data-theme="hexagonal"].light-mode .dropdown-menu {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
}

body[data-theme="hexagonal"].light-mode .solutions-glass-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--hex-primary);
}

/* ==================== CLASSIC (GLASSMORPHIC) THEME ==================== */

body[data-theme="classic"] {
    /* Classic Glass Colors - Cool Blues, Whites, Soft Grays */
    --classic-azure: #4A90E2;
    --classic-lilac: #9B7EBD;
    --classic-white: #FFFFFF;
    --classic-soft-gray: #E8EEF3;
    --classic-cool-blue: #5CA8E8;
    --classic-light-blue: #B3D9FF;
    --classic-glass-glow: rgba(74, 144, 226, 0.4);

    /* Override base colors */
    --vibrant-cyan: #4A90E2;
    --electric-cyan: #5CA8E8;
    --glow-cyan: #B3D9FF;
    --purple: #9B7EBD;
    --royal-blue: #4A90E2;
}

/* Classic Navigation */
body[data-theme="classic"] nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

body[data-theme="classic"] nav.scrolled {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

body[data-theme="classic"] .nav-links a {
    color: #2C3E50;
    font-weight: 500;
}

body[data-theme="classic"] .nav-links a:hover {
    color: var(--classic-azure);
}

body[data-theme="classic"] .nav-cta,
body[data-theme="classic"] .primary-cta {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: var(--classic-azure);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.2);
}

body[data-theme="classic"] .nav-cta:hover,
body[data-theme="classic"] .primary-cta:hover {
    background: var(--classic-azure);
    color: white;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4);
}

body[data-theme="classic"] .secondary-cta {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    color: var(--classic-azure);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

body[data-theme="classic"] .secondary-cta:hover {
    background: rgba(74, 144, 226, 0.2);
    border-color: var(--classic-azure);
}

/* Classic Dropdown */
body[data-theme="classic"] .dropdown-menu {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

body[data-theme="classic"] .dropdown-title {
    color: var(--classic-azure);
}

body[data-theme="classic"] .theme-option,
body[data-theme="classic"] .quick-link-btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #2C3E50;
}

body[data-theme="classic"] .theme-option:hover,
body[data-theme="classic"] .quick-link-btn:hover {
    background: rgba(74, 144, 226, 0.15);
    border-color: var(--classic-azure);
    color: var(--classic-azure);
}

body[data-theme="classic"] .theme-option.active {
    background: rgba(74, 144, 226, 0.2);
    border: 1px solid var(--classic-azure);
    color: var(--classic-azure);
}

body[data-theme="classic"] .theme-toggle-btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

body[data-theme="classic"] .toggle-circle {
    background: linear-gradient(135deg, var(--classic-azure) 0%, var(--classic-lilac) 100%);
}

/* Classic Hero */
body[data-theme="classic"] .hero-background {
    background: linear-gradient(135deg, #E8EEF3 0%, #B3D9FF 50%, #9DB7D9 100%);
}

body[data-theme="classic"] .hero-background::after {
    opacity: 0.4;
}

body[data-theme="classic"] .hero h1 {
    color: #2C3E50;
}

body[data-theme="classic"] .hero-description {
    color: #34495E;
}

body[data-theme="classic"] .hero-badge {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--classic-azure);
}

body[data-theme="classic"] .hero-pattern {
    display: none;
}

/* Classic Solutions Section */
body[data-theme="classic"] .solutions-section {
    background: linear-gradient(180deg, #E8EEF3 0%, #D9E8F7 100%);
}

body[data-theme="classic"] .solutions-bg-element-1,
body[data-theme="classic"] .solutions-bg-element-2,
body[data-theme="classic"] .solutions-bg-element-3 {
    opacity: 0.15;
}

body[data-theme="classic"] .solutions-headline {
    background: linear-gradient(135deg, #2C3E50 0%, var(--classic-azure) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-theme="classic"] .solutions-subheadline {
    color: #34495E;
}

body[data-theme="classic"] .solutions-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

body[data-theme="classic"] .solutions-glass-card::before {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(155, 126, 189, 0.1) 100%);
}

body[data-theme="classic"] .solutions-glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 48px rgba(74, 144, 226, 0.3);
    border-color: rgba(74, 144, 226, 0.4);
}

body[data-theme="classic"] .solutions-card-title {
    color: #2C3E50;
}

body[data-theme="classic"] .solutions-card-description {
    color: #34495E;
}

body[data-theme="classic"] .solutions-benefit-badge {
    background: rgba(74, 144, 226, 0.15);
    border: 1px solid rgba(74, 144, 226, 0.3);
    color: var(--classic-azure);
}

body[data-theme="classic"] .solutions-cta-link {
    color: var(--classic-azure);
}

body[data-theme="classic"] .solutions-stat {
    color: #2C3E50;
}

body[data-theme="classic"] .solutions-metric-value {
    color: var(--classic-azure);
}

body[data-theme="classic"] .solutions-trust-text,
body[data-theme="classic"] .solutions-metric-label {
    color: #5A6C7D;
}

/* ==================== FUTURISTIC THEME ==================== */

body[data-theme="futuristic"] {
    /* Light blue and purple neon colors matching logo */
    --futuristic-light-blue: #38C2F9;
    --futuristic-purple: #8B5CF6;
    --futuristic-electric-blue: #5CD0FB;
    --futuristic-violet: #A78BFA;
    --futuristic-dark-blue: #010D1A;
    --futuristic-dark-blue-lighter: #011026;
    --futuristic-dark-blue-darker: #000508;
    --futuristic-glow: rgba(56, 194, 249, 0.6);

    /* Override base colors */
    --vibrant-cyan: #38C2F9;
    --electric-cyan: #5CD0FB;
    --glow-cyan: #38C2F9;
    --purple: #8B5CF6;
    --royal-blue: #A78BFA;
    --deep-blue: #010D1A;
    --rich-blue: #011026;
    --brand-blue: #000508;
    --glass-fill: rgba(1, 13, 26, 0.6);
    --glass-border: rgba(56, 194, 249, 0.2);
    --glass-border-strong: rgba(56, 194, 249, 0.4);
}

/* Futuristic removes all border-radius */
body[data-theme="futuristic"] nav,
body[data-theme="futuristic"] .nav-cta,
body[data-theme="futuristic"] .dropdown-menu,
body[data-theme="futuristic"] .theme-toggle-btn,
body[data-theme="futuristic"] .toggle-circle,
body[data-theme="futuristic"] .theme-option,
body[data-theme="futuristic"] .quick-link-btn,
body[data-theme="futuristic"] .hero-badge,
body[data-theme="futuristic"] .primary-cta,
body[data-theme="futuristic"] .secondary-cta,
body[data-theme="futuristic"] .solutions-glass-card,
body[data-theme="futuristic"] .solutions-benefit-badge,
body[data-theme="futuristic"] .solutions-icon-container {
    border-radius: 0 !important;
}

/* Futuristic Navigation - Glassmorphic */
body[data-theme="futuristic"] nav {
    background: rgba(1, 13, 26, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid var(--futuristic-light-blue);
    box-shadow:
        0 0 20px var(--futuristic-glow),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(56, 194, 249, 0.1);
}

body[data-theme="futuristic"] nav.scrolled {
    background: rgba(1, 13, 26, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom-color: var(--futuristic-purple);
    box-shadow:
        0 0 30px rgba(139, 92, 246, 0.5),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(139, 92, 246, 0.2);
}

body[data-theme="futuristic"] .nav-links a {
    color: var(--futuristic-light-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

body[data-theme="futuristic"] .nav-links a:hover {
    color: var(--futuristic-purple);
    text-shadow: 0 0 10px var(--futuristic-purple);
}

/* Futuristic Primary CTA Animations */
@keyframes futuristicGlowPulse {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(139, 92, 246, 0.6),
            0 0 40px rgba(139, 92, 246, 0.4),
            0 0 60px rgba(56, 194, 249, 0.3),
            inset 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow:
            0 0 30px rgba(139, 92, 246, 0.8),
            0 0 60px rgba(139, 92, 246, 0.6),
            0 0 90px rgba(56, 194, 249, 0.5),
            inset 0 0 30px rgba(139, 92, 246, 0.5);
    }
}

@keyframes futuristicShimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

body[data-theme="futuristic"] .nav-cta {
    background: transparent;
    border: 2px solid var(--futuristic-purple);
    color: var(--futuristic-purple);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

body[data-theme="futuristic"] .primary-cta {
    background: var(--futuristic-purple);
    border: 2px solid var(--futuristic-purple);
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

body[data-theme="futuristic"] .nav-cta::before,
body[data-theme="futuristic"] .primary-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 55%,
        transparent 100%
    );
    transform: translateX(-100%) skewX(-15deg);
    transition: none;
}

body[data-theme="futuristic"] .nav-cta:hover,
body[data-theme="futuristic"] .primary-cta:hover {
    background: linear-gradient(135deg, var(--futuristic-purple) 0%, var(--futuristic-purple) 60%, var(--futuristic-light-blue) 100%);
    color: #FFFFFF;
    border-color: var(--futuristic-light-blue);
    animation: futuristicGlowPulse 2s ease-in-out infinite;
}

body[data-theme="futuristic"] .nav-cta:hover::before,
body[data-theme="futuristic"] .primary-cta:hover::before {
    animation: futuristicShimmer 2s ease-in-out infinite;
}

body[data-theme="futuristic"] .secondary-cta {
    background: transparent;
    border: 2px solid var(--futuristic-light-blue);
    color: var(--futuristic-light-blue);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

body[data-theme="futuristic"] .secondary-cta:hover {
    background: var(--futuristic-light-blue);
    color: var(--futuristic-dark-blue);
    box-shadow: 0 0 30px var(--futuristic-glow);
}

/* Futuristic Dropdown */
body[data-theme="futuristic"] .dropdown-menu {
    background: rgba(1, 13, 26, 0.95);
    backdrop-filter: none;
    border: 2px solid var(--futuristic-light-blue);
    box-shadow: 0 0 30px var(--futuristic-glow);
}

body[data-theme="futuristic"] .dropdown-title {
    color: var(--futuristic-light-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--futuristic-light-blue);
    padding-bottom: 0.5rem;
}

body[data-theme="futuristic"] .theme-option,
body[data-theme="futuristic"] .quick-link-btn {
    background: rgba(56, 194, 249, 0.05);
    border: 1px solid var(--futuristic-light-blue);
    color: var(--futuristic-light-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

body[data-theme="futuristic"] .theme-option:hover,
body[data-theme="futuristic"] .quick-link-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--futuristic-purple);
    color: var(--futuristic-purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

body[data-theme="futuristic"] .theme-option.active {
    background: rgba(56, 194, 249, 0.2);
    border: 2px solid var(--futuristic-light-blue);
    color: var(--futuristic-light-blue);
    box-shadow: 0 0 15px var(--futuristic-glow);
}

body[data-theme="futuristic"] .theme-toggle-btn {
    background: rgba(1, 13, 26, 0.8);
    border: 1px solid var(--futuristic-light-blue);
}

body[data-theme="futuristic"] .toggle-circle {
    background: linear-gradient(90deg, var(--futuristic-light-blue) 0%, var(--futuristic-purple) 100%);
    box-shadow: 0 0 10px var(--futuristic-glow);
}

/* Futuristic Hero */
body[data-theme="futuristic"] .hero-background {
    background: linear-gradient(135deg, #010D1A 0%, #011026 50%, #010D1A 100%);
}

body[data-theme="futuristic"] .hero-background::before {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(56, 194, 249, 0.03) 2px,
        rgba(56, 194, 249, 0.03) 4px
    );
}

body[data-theme="futuristic"] .hero-background::after {
    opacity: 0.3;
}

body[data-theme="futuristic"] .hero h1 {
    color: var(--futuristic-light-blue);
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--futuristic-glow);
}

body[data-theme="futuristic"] .hero-description {
    color: rgba(56, 194, 249, 0.8);
}

body[data-theme="futuristic"] .hero-badge {
    background: transparent;
    border: 2px solid var(--futuristic-light-blue);
    color: var(--futuristic-light-blue);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

body[data-theme="futuristic"] .hero-badge:hover {
    box-shadow: 0 0 20px var(--futuristic-glow);
}

body[data-theme="futuristic"] .hero-pattern {
    display: none;
}

/* Futuristic Solutions Section */
body[data-theme="futuristic"] .solutions-section {
    background: #010D1A;
}

body[data-theme="futuristic"] .solutions-bg-element-1 {
    background: var(--futuristic-light-blue);
    opacity: 0.15;
}

body[data-theme="futuristic"] .solutions-bg-element-2 {
    background: var(--futuristic-purple);
    opacity: 0.15;
}

body[data-theme="futuristic"] .solutions-bg-element-3 {
    background: var(--futuristic-violet);
    opacity: 0.15;
}

body[data-theme="futuristic"] .solutions-headline {
    color: var(--futuristic-light-blue);
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--futuristic-glow);
    background: none;
    -webkit-text-fill-color: var(--futuristic-light-blue);
}

body[data-theme="futuristic"] .solutions-subheadline {
    color: rgba(56, 194, 249, 0.8);
}

body[data-theme="futuristic"] .solutions-glass-card {
    background: rgba(1, 13, 26, 0.8);
    backdrop-filter: none;
    border: 2px solid var(--futuristic-light-blue);
    box-shadow: 0 0 20px rgba(56, 194, 249, 0.3);
}

body[data-theme="futuristic"] .solutions-glass-card::before {
    background: linear-gradient(135deg, rgba(56, 194, 249, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

body[data-theme="futuristic"] .solutions-glass-card:hover {
    background: rgba(1, 13, 26, 0.95);
    border-color: var(--futuristic-purple);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

body[data-theme="futuristic"] .solutions-card-title {
    color: var(--futuristic-light-blue);
    text-transform: uppercase;
}

body[data-theme="futuristic"] .solutions-card-description {
    color: rgba(56, 194, 249, 0.7);
}

body[data-theme="futuristic"] .solutions-benefit-badge {
    background: transparent;
    border: 1px solid var(--futuristic-light-blue);
    color: var(--futuristic-light-blue);
}

body[data-theme="futuristic"] .solutions-cta-link {
    color: var(--futuristic-purple);
    text-transform: uppercase;
    font-weight: 700;
}

body[data-theme="futuristic"] .solutions-stat {
    color: rgba(56, 194, 249, 0.9);
}

body[data-theme="futuristic"] .solutions-metric-value {
    color: var(--futuristic-light-blue);
    text-shadow: 0 0 15px var(--futuristic-glow);
}

body[data-theme="futuristic"] .solutions-trust-text,
body[data-theme="futuristic"] .solutions-metric-label {
    color: rgba(56, 194, 249, 0.6);
}

/* ==================== FROSTED COSMIC THEME ==================== */
/* This is the current default theme - keeping existing styles */

body[data-theme="frosted-cosmic"] {
    /* Current Frost Cosmic colors are already in :root */
}

/* The frosted-cosmic theme uses the default styles already defined */
/* No additional overrides needed as this is the base design */

/* ==================== MINIMALIST MONOCHROMATIC THEME ==================== */

body[data-theme="minimalist"] {
    /* Black, white, and one neutral gray */
    --minimalist-black: #000000;
    --minimalist-white: #FFFFFF;
    --minimalist-gray: #6B7280;
    --minimalist-light-gray: #E5E7EB;
    --minimalist-border: #D1D5DB;

    /* Override base colors */
    --vibrant-cyan: #000000;
    --electric-cyan: #000000;
    --glow-cyan: #000000;
    --purple: #6B7280;
    --royal-blue: #6B7280;
    --deep-blue: #FFFFFF;
    --rich-blue: #FAFAFA;
    --brand-blue: #F5F5F5;
    --white: #000000;
    --glass-fill: rgba(255, 255, 255, 1);
    --glass-border: #D1D5DB;
    --glass-border-strong: #000000;
}

/* Minimalist removes all border-radius */
body[data-theme="minimalist"] nav,
body[data-theme="minimalist"] .nav-cta,
body[data-theme="minimalist"] .dropdown-menu,
body[data-theme="minimalist"] .theme-toggle-btn,
body[data-theme="minimalist"] .toggle-circle,
body[data-theme="minimalist"] .theme-option,
body[data-theme="minimalist"] .quick-link-btn,
body[data-theme="minimalist"] .hero-badge,
body[data-theme="minimalist"] .primary-cta,
body[data-theme="minimalist"] .secondary-cta,
body[data-theme="minimalist"] .solutions-glass-card,
body[data-theme="minimalist"] .solutions-benefit-badge,
body[data-theme="minimalist"] .solutions-icon-container,
body[data-theme="minimalist"] .solutions-icon-glow {
    border-radius: 0 !important;
}

/* Minimalist removes blur effects */
body[data-theme="minimalist"] nav,
body[data-theme="minimalist"] .dropdown-menu,
body[data-theme="minimalist"] .nav-cta,
body[data-theme="minimalist"] .theme-toggle-btn,
body[data-theme="minimalist"] .hero-badge,
body[data-theme="minimalist"] .primary-cta,
body[data-theme="minimalist"] .secondary-cta,
body[data-theme="minimalist"] .solutions-glass-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Minimalist Navigation */
body[data-theme="minimalist"] nav {
    background: #FFFFFF;
    border-bottom: 1px solid var(--minimalist-border);
    box-shadow: none;
}

body[data-theme="minimalist"] nav.scrolled {
    background: #FFFFFF;
    border-bottom: 2px solid var(--minimalist-black);
    box-shadow: none;
}

body[data-theme="minimalist"] .nav-links a {
    color: var(--minimalist-black);
    font-weight: 600;
}

body[data-theme="minimalist"] .nav-links a:hover {
    color: var(--minimalist-gray);
}

body[data-theme="minimalist"] .nav-links a::after {
    background: var(--minimalist-black);
}

body[data-theme="minimalist"] .nav-cta,
body[data-theme="minimalist"] .primary-cta {
    background: var(--minimalist-black);
    color: var(--minimalist-white);
    border: 2px solid var(--minimalist-black);
    font-weight: 700;
}

body[data-theme="minimalist"] .nav-cta::before,
body[data-theme="minimalist"] .primary-cta::before {
    display: none;
}

body[data-theme="minimalist"] .nav-cta:hover,
body[data-theme="minimalist"] .primary-cta:hover {
    background: var(--minimalist-white);
    color: var(--minimalist-black);
    border-color: var(--minimalist-black);
    box-shadow: none;
    transform: none;
}

body[data-theme="minimalist"] .secondary-cta {
    background: var(--minimalist-white);
    border: 2px solid var(--minimalist-black);
    color: var(--minimalist-black);
    font-weight: 700;
}

body[data-theme="minimalist"] .secondary-cta::before {
    display: none;
}

body[data-theme="minimalist"] .secondary-cta:hover {
    background: var(--minimalist-black);
    color: var(--minimalist-white);
    box-shadow: none;
}

/* Minimalist Dropdown */
body[data-theme="minimalist"] .dropdown-menu {
    background: #FFFFFF;
    border: 2px solid var(--minimalist-black);
    box-shadow: none;
}

body[data-theme="minimalist"] .dropdown-title {
    color: var(--minimalist-black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

body[data-theme="minimalist"] .dropdown-divider {
    background: var(--minimalist-border);
}

body[data-theme="minimalist"] .theme-option,
body[data-theme="minimalist"] .quick-link-btn {
    background: var(--minimalist-white);
    border: 1px solid var(--minimalist-border);
    color: var(--minimalist-black);
    font-weight: 600;
}

body[data-theme="minimalist"] .theme-option:hover,
body[data-theme="minimalist"] .quick-link-btn:hover {
    background: var(--minimalist-light-gray);
    border-color: var(--minimalist-black);
    color: var(--minimalist-black);
    transform: none;
}

body[data-theme="minimalist"] .theme-option.active {
    background: var(--minimalist-black);
    border: 2px solid var(--minimalist-black);
    color: var(--minimalist-white);
}

body[data-theme="minimalist"] .theme-toggle-btn {
    background: var(--minimalist-white);
    border: 1px solid var(--minimalist-border);
}

body[data-theme="minimalist"] .toggle-circle {
    background: var(--minimalist-black);
    box-shadow: none;
}

body[data-theme="minimalist"] .theme-toggle-btn:hover {
    background: var(--minimalist-light-gray);
    border-color: var(--minimalist-black);
    transform: none;
}

body[data-theme="minimalist"] .theme-toggle-btn:hover .toggle-circle {
    box-shadow: none;
}

/* Minimalist Hero */
body[data-theme="minimalist"] .hero-background {
    background: #FFFFFF;
}

body[data-theme="minimalist"] .hero-background::before,
body[data-theme="minimalist"] .hero-background::after {
    display: none;
}

body[data-theme="minimalist"] .hero h1 {
    color: var(--minimalist-black);
    font-weight: 700;
}

body[data-theme="minimalist"] .hero-description {
    color: var(--minimalist-gray);
}

body[data-theme="minimalist"] .hero-badge {
    background: var(--minimalist-white);
    border: 1px solid var(--minimalist-black);
    color: var(--minimalist-black);
    font-weight: 700;
}

body[data-theme="minimalist"] .hero-badge::before {
    display: none;
}

body[data-theme="minimalist"] .hero-badge:hover {
    animation: none;
    box-shadow: none;
}

body[data-theme="minimalist"] .hero-pattern {
    display: none;
}

/* Minimalist Solutions Section */
body[data-theme="minimalist"] .solutions-section {
    background: #FAFAFA;
}

body[data-theme="minimalist"] .solutions-bg-element-1,
body[data-theme="minimalist"] .solutions-bg-element-2,
body[data-theme="minimalist"] .solutions-bg-element-3 {
    display: none;
}

body[data-theme="minimalist"] .solutions-noise-overlay {
    display: none;
}

body[data-theme="minimalist"] .solutions-headline {
    color: var(--minimalist-black);
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: var(--minimalist-black);
}

body[data-theme="minimalist"] .solutions-subheadline {
    color: var(--minimalist-gray);
}

body[data-theme="minimalist"] .solutions-glass-card {
    background: #FFFFFF;
    border: 1px solid var(--minimalist-border);
    box-shadow: none;
}

body[data-theme="minimalist"] .solutions-glass-card::before {
    display: none;
}

body[data-theme="minimalist"] .solutions-glass-card:hover {
    background: #FFFFFF;
    border: 2px solid var(--minimalist-black);
    box-shadow: none;
    transform: none;
    padding-bottom: 2.5rem;
}

body[data-theme="minimalist"] .solutions-card-title {
    color: var(--minimalist-black);
    font-weight: 700;
}

body[data-theme="minimalist"] .solutions-card-description {
    color: var(--minimalist-gray);
}

body[data-theme="minimalist"] .solutions-benefit-badge {
    background: var(--minimalist-white);
    border: 1px solid var(--minimalist-black);
    color: var(--minimalist-black);
    font-weight: 600;
}

body[data-theme="minimalist"] .solutions-checkmark {
    color: var(--minimalist-black);
}

body[data-theme="minimalist"] .solutions-icon-glow {
    display: none;
}

body[data-theme="minimalist"] .solutions-icon-container {
    background: transparent;
    border: none;
}

body[data-theme="minimalist"] .solutions-cta-link {
    color: var(--minimalist-black);
    font-weight: 700;
}

body[data-theme="minimalist"] .solutions-cta-link::after {
    background: var(--minimalist-black);
}

body[data-theme="minimalist"] .solutions-hover-details {
    background: var(--minimalist-light-gray);
}

body[data-theme="minimalist"] .solutions-stat {
    color: var(--minimalist-black);
}

body[data-theme="minimalist"] .solutions-metric-value {
    color: var(--minimalist-black);
    background: none;
    -webkit-text-fill-color: var(--minimalist-black);
    font-weight: 700;
}

body[data-theme="minimalist"] .solutions-trust-text,
body[data-theme="minimalist"] .solutions-metric-label {
    color: var(--minimalist-gray);
}

/* Navigation - Glass Effect */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.6) 0%, rgba(27, 42, 65, 0.5) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--cyan-glass-border-strong);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

nav.scrolled {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8) 0%, rgba(27, 42, 65, 0.7) 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 229, 255, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
    margin-left: 0;
}

.logo:hover {
    opacity: 0.85;
}

.logo svg {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--vibrant-cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8125rem;
    transition: color 0.3s;
    position: relative;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vibrant-cyan);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--purple);
}

.nav-links a:hover::after {
    width: 100%;
    background: var(--purple);
}

.nav-links a.active-link {
    color: var(--vibrant-cyan);
}

.nav-links a.active-link::after {
    width: 100%;
    background: var(--vibrant-cyan);
}

/* ==================== PRODUCTS DROPDOWN ==================== */

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.products-dropdown,
.solutions-dropdown,
.resources-dropdown {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 0;
    min-width: 280px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, top 0.2s ease;
    z-index: 1000;
}

/* Create an invisible hover buffer area between trigger and dropdown */
.products-dropdown::after,
.solutions-dropdown::after,
.resources-dropdown::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: -10%;
    right: -10%;
    height: 1.5rem;
    background: transparent;
}

.resources-dropdown {
    min-width: 200px;
}

.products-dropdown::before,
.solutions-dropdown::before,
.resources-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 229, 255, 0.2);
}

.nav-dropdown:hover .products-dropdown,
.nav-dropdown:hover .solutions-dropdown,
.nav-dropdown:hover .resources-dropdown,
.products-dropdown:hover,
.solutions-dropdown:hover,
.resources-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 1rem);
}

.dropdown-item,
.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    border-left: 2px solid transparent;
}

.dropdown-link {
    /* Simpler styling for text-only links */
    gap: 0;
    padding: 0.75rem 1rem;
}

.dropdown-item:hover,
.dropdown-link:hover {
    background: rgba(0, 229, 255, 0.1);
    border-left-color: var(--vibrant-cyan);
    transform: translateX(4px);
}

.dropdown-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

.dropdown-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Remove underline animation for dropdown trigger */
.dropdown-trigger::after {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-cta {
    background: var(--glass-fill);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    border: 1px solid var(--glass-border-strong);
    margin-right: 12px;
    position: relative;
    overflow: hidden;
}

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

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    background: var(--vibrant-cyan);
    color: var(--deep-blue);
    border-color: var(--vibrant-cyan);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.4), 0 0 40px rgba(0, 229, 255, 0.3);
}

/* Menu Icon */
.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 1rem;
}

.menu-icon span {
    width: 25px;
    height: 2px;
    background: var(--vibrant-cyan);
    border-radius: 0;
    transition: all 0.3s ease;
}

.menu-icon:hover span {
    background: var(--electric-cyan);
    box-shadow: 0 0 8px var(--vibrant-cyan);
}

.menu-icon-dropdown {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    margin-left: 0;
}

/* Menu Wrapper and Dropdown */
.menu-wrapper {
    position: relative;
    margin-left: 0;
}

.dropdown-menu {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.98) 0%, rgba(27, 42, 65, 0.98) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--cyan-glass-border-strong);
    border-radius: 0;
    padding: 1.5rem;
    padding-top: 3.5rem;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 229, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    margin-bottom: 1rem;
}

.dropdown-section:first-child {
    display: flex;
    flex-direction: column;
}

.dropdown-section:first-child .dropdown-title {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    margin-bottom: 0;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--electric-cyan);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 1rem 0;
}

/* Theme Toggle - Square Design Matching Menu Buttons */
.theme-toggle {
    padding: 0.5rem 0;
}

.theme-toggle-btn {
    position: relative;
    width: 100%;
    height: 56px;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    background: var(--glass-fill);
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
}

/* Sliding Rectangle */
.toggle-circle {
    position: absolute;
    top: 4px;
    bottom: 4px;
    width: calc(50% - 4px);
    border-radius: 0;
    background: var(--vibrant-cyan);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    right: 4px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 229, 255, 0.4);
}

.theme-toggle-btn.light-mode .toggle-circle {
    left: 4px;
    right: auto;
}

/* Icon Wrappers */
.toggle-icon-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 2;
    transition: all 0.3s ease;
}

.toggle-icon {
    transition: all 0.3s ease;
}

/* Dark mode icon colors (default) */
.toggle-sun .toggle-icon {
    color: var(--light-grey);
    opacity: 0.5;
}

.toggle-moon .toggle-icon {
    color: var(--white);
}

/* Light mode icon colors */
.theme-toggle-btn.light-mode .toggle-sun .toggle-icon {
    color: var(--deep-blue);
}

.theme-toggle-btn.light-mode .toggle-moon .toggle-icon {
    color: var(--light-grey);
    opacity: 0.5;
}

/* Hover effect - matching other menu buttons */
.theme-toggle-btn:hover {
    background: var(--glass-border);
    border-color: var(--cyan-glass-border);
    transform: translateX(4px);
}

.theme-toggle-btn:hover .toggle-circle {
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.6);
}

/* Active state */
.theme-toggle-btn:active {
    transform: translateX(2px);
}

/* Theme Options */
.theme-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--glass-fill);
    border: 1px solid var(--glass-border);
    border-radius: 0;
    color: var(--light-grey);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.theme-option:hover {
    background: var(--glass-border);
    border-color: var(--cyan-glass-border);
    transform: translateX(4px);
}

.theme-option.active {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--vibrant-cyan);
    color: var(--vibrant-cyan);
}

.theme-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.theme-option.active .theme-icon {
    stroke: var(--vibrant-cyan);
}

.theme-option:hover .theme-icon {
    stroke: var(--electric-cyan);
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-link-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--glass-fill);
    border: 1px solid var(--glass-border);
    border-radius: 0;
    color: var(--light-grey);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-link-btn:hover {
    background: var(--glass-border);
    border-color: var(--cyan-glass-border);
    color: var(--vibrant-cyan);
    transform: translateX(4px);
}

.quick-link-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--rich-blue) 50%, var(--brand-blue) 100%);
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('websitebackground.png') right center / cover no-repeat;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, rgba(0,0,0,1) 50%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, rgba(0,0,0,1) 50%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(13, 27, 42, 0.4) 0%,
        rgba(27, 42, 65, 0.3) 40%,
        rgba(46, 79, 126, 0.2) 70%,
        transparent 100%
    );
    z-index: 2;
}

.hero-pattern {
    display: none;
}

/* Additional network mesh overlay */
.hero-pattern::before {
    display: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 3rem;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    backdrop-filter: none;
    color: var(--vibrant-cyan);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 229, 255, 0.5);
    box-shadow: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge:hover {
    background: rgba(0, 229, 255, 0.35);
    backdrop-filter: blur(10px);
    animation: pulsate 1.5s ease-in-out infinite;
}

@keyframes pulsate {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(0, 229, 255, 0.6),
            0 0 40px rgba(0, 229, 255, 0.4),
            0 0 60px rgba(0, 229, 255, 0.2);
    }
    50% {
        box-shadow:
            0 0 30px rgba(0, 229, 255, 0.8),
            0 0 60px rgba(0, 229, 255, 0.6),
            0 0 90px rgba(0, 229, 255, 0.4);
    }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.primary-cta {
    background: var(--purple);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta:hover {
    background: linear-gradient(135deg, var(--purple) 0%, var(--royal-blue) 50%, var(--vibrant-cyan) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.3);
}

.secondary-cta {
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    background: var(--glass-border);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-strong);
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

.secondary-cta:hover::before {
    left: 100%;
}

.secondary-cta:hover {
    background: var(--vibrant-cyan);
    color: var(--deep-blue);
    border-color: var(--vibrant-cyan);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.4), 0 0 40px rgba(0, 229, 255, 0.3);
}

/* Scroll Down Spaceship Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    z-index: 10;
    animation: bounceDown 2s ease-in-out infinite;
}

.spaceship {
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
    animation: spaceshipGlow 1.5s ease-in-out infinite;
}

.thruster {
    animation: thrusterFlicker 0.3s ease-in-out infinite;
    transform-origin: 20px 24px;
}

.scroll-text {
    color: var(--vibrant-cyan);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
    opacity: 1;
}

.scroll-indicator:hover .spaceship {
    animation: spaceshipShoot 0.6s ease-in-out;
}

/* Animations */
@keyframes bounceDown {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes spaceshipGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.9)) drop-shadow(0 0 25px rgba(0, 229, 255, 0.5));
    }
}

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

@keyframes spaceshipShoot {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(5px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* ==================== HK3K PRODUCT SECTION - CINEMATIC VIDEO THEATER ==================== */

.hk3k-section {
    position: relative;
    background: linear-gradient(180deg, #0D1B2A 0%, #1B2A41 100%);
    padding: 0;
    overflow: hidden;
}

/* ==================== INTERACTIVE PROBLEM BANNER ==================== */

/* Banner Container */
.hk3k-problem-banner.interactive {
    position: relative;
    height: 300px;
    max-height: 300px;
    padding: 2rem;
    background: linear-gradient(90deg,
        rgba(249, 115, 22, 0.05) 0%,
        rgba(249, 115, 22, 0.12) 50%,
        rgba(249, 115, 22, 0.05) 100%
    );
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    overflow: hidden;
    transition: background 0.8s ease, border-color 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hk3k-problem-banner.interactive.solved {
    opacity: 0;
    height: 0;
    padding: 0;
    border-bottom: none;
}

/* Content Layout */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

/* ChatGPT Logo (hidden for targeting) */
.chatgpt-logo.targeted {
    animation: logoShake 0.1s ease-in-out infinite;
    opacity: 1 !important;
}

@keyframes logoShake {
    0%, 100% { transform: translate(-50%, -50%) translate(0, 0); }
    25% { transform: translate(-50%, -50%) translate(-3px, 3px); }
    50% { transform: translate(-50%, -50%) translate(3px, -3px); }
    75% { transform: translate(-50%, -50%) translate(-3px, -3px); }
}

.pixel-logo {
    width: 100%;
    height: 100%;
}

/* Problem Text Styles */
.problem-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    line-height: 1.7;
    max-width: 700px;
    margin: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.problem-stat {
    color: #F97316;
    font-weight: 600;
}

.problem-emphasis {
    color: #F97316;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter {
    font-weight: 700;
    color: #F97316;
    font-size: 1.3em;
}

/* Launch Button - Minimal */
.launch-button {
    position: relative;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(249, 115, 22, 0.5);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.launch-button:hover {
    border-color: rgba(249, 115, 22, 0.8);
    background: rgba(249, 115, 22, 0.1);
    color: rgba(255, 255, 255, 1);
}

.launch-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Spaceship Animation Layer */
.spaceship-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.spaceship-sprite {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0;
    transform-origin: center;
}

.thruster {
    animation: thrusterFlicker 0.1s infinite;
}

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

/* Laser Beam */
.laser-beam {
    position: absolute;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 1),
        rgba(0, 229, 255, 1),
        rgba(0, 229, 255, 0.5)
    );
    box-shadow:
        0 0 10px rgba(0, 229, 255, 1),
        0 0 20px rgba(0, 229, 255, 0.7);
    opacity: 0;
    filter: blur(1px);
}

/* Particle Container */
.particle-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 9;
}

/* Solution State Styling */
.victory-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: victoryPulse 1s ease-out;
}

@keyframes victoryPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.sparkle {
    font-size: 2rem;
    animation: sparkleRotate 2s linear infinite;
}

@keyframes sparkleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.solution-headline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
}

/* Benefit Badges */
.benefit-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mini-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 0;
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    animation: badgeSlideIn 0.5s ease-out backwards;
}

.mini-badge:nth-child(1) { animation-delay: 0.2s; }
.mini-badge:nth-child(2) { animation-delay: 0.3s; }
.mini-badge:nth-child(3) { animation-delay: 0.4s; }

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-icon {
    flex-shrink: 0;
}

/* Scroll Hint */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: rgba(0, 229, 255, 0.8);
    font-size: 0.875rem;
    animation: bounceDown 2s ease-in-out infinite;
}

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

.arrow-down {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hk3k-problem-banner.interactive {
        height: 250px;
        max-height: 250px;
        padding: 1.5rem;
    }

    .problem-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .launch-button {
        padding: 0.65rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Main Container */
.hk3k-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    position: relative;
    z-index: 1;
}

/* Split Layout */
.hk3k-split-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 5rem;
    align-items: end;
}

/* ==================== LEFT SIDE: VIDEO THEATER ==================== */

.hk3k-video-theater {
    position: relative;
}

.video-container {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container:hover {
    transform: scale(1.02);
}

/* Animated Gradient Border */
.video-glow-border {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #00E5FF, #8B5CF6);
    background-size: 300% 300%;
    opacity: 0.6;
    filter: blur(20px);
    z-index: -1;
    animation: borderFlow 4s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
}

.video-container:hover .video-glow-border {
    opacity: 1;
    filter: blur(30px);
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

/* Video Content */
.video-content {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.4) 60%, rgba(13, 27, 42, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-container:hover .video-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.5) 60%, rgba(13, 27, 42, 0.9) 100%);
}

/* Coming Soon Banner */
.coming-soon-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: linear-gradient(135deg, var(--purple) 0%, var(--royal-blue) 50%, var(--vibrant-cyan) 100%);
    padding: 1.5rem 4rem;
    border: 3px solid var(--vibrant-cyan);
    box-shadow:
        0 0 30px rgba(0, 229, 255, 0.6),
        0 0 60px rgba(139, 92, 246, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    z-index: 100;
    animation: comingSoonPulse 2s ease-in-out infinite;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.coming-soon-banner:hover {
    transform: translate(-50%, -50%) rotate(-15deg) scale(1.05);
}

.coming-soon-banner:active {
    transform: translate(-50%, -50%) rotate(-15deg) scale(0.95);
}

.coming-soon-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: white;
    text-shadow:
        0 0 10px rgba(0, 229, 255, 0.8),
        0 0 20px rgba(0, 229, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    white-space: nowrap;
}

@keyframes comingSoonPulse {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(0, 229, 255, 0.6),
            0 0 60px rgba(139, 92, 246, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 40px rgba(0, 229, 255, 0.8),
            0 0 80px rgba(139, 92, 246, 0.6),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

/* Pixel Fill Effect Container */
.pixel-fill-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 50;
}

.pixel {
    position: absolute;
    width: 8px;
    height: 8px;
    opacity: 0;
    pointer-events: none;
    image-rendering: pixelated;
}

/* Pixel animation variants */
@keyframes pixelFall1 {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(800px) rotate(360deg);
        opacity: 0.6;
    }
}

@keyframes pixelFall2 {
    0% {
        transform: translateY(-100%) translateX(-50px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(800px) translateX(50px) rotate(-360deg);
        opacity: 0.5;
    }
}

@keyframes pixelFall3 {
    0% {
        transform: translateY(-100%) translateX(50px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(800px) translateX(-50px) rotate(360deg);
        opacity: 0.4;
    }
}

/* Play Button - Frosted Glass */
.play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100px;
    height: 100px;
    background: rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: playButtonPulse 2s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(0, 229, 255, 0.6));
    filter: blur(10px);
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.video-container:hover .play-button {
    width: 120px;
    height: 120px;
    background: rgba(139, 92, 246, 0.5);
    transform: scale(1.05);
    animation: none;
}

.video-container:hover .play-button::before {
    opacity: 1;
}

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

.play-icon {
    transition: transform 0.3s ease;
}

.video-container:hover .play-icon {
    transform: translateX(3px);
}

.play-duration {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Caption */
.video-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-caption {
    opacity: 0.7;
}

/* Chapter Markers */
.chapter-markers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.chapter-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.chapter-item:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.2);
}

.chapter-item.active {
    opacity: 1;
    border-color: rgba(0, 229, 255, 0.6);
    background: rgba(0, 229, 255, 0.05);
}

.chapter-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00E5FF, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.chapter-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== RIGHT SIDE: STORY CONTENT ==================== */

.hk3k-story-content {
    padding: 2rem 0;
}

/* Badge */
.story-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Headline */
.story-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00E5FF 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Story Hook */
.story-hook {
    margin-bottom: 2rem;
}

.story-hook p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.hook-emphasis {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00E5FF;
    margin-top: 0.5rem;
}

/* Benefit List */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    color: #00E5FF;
    transform: translateX(5px);
}

.benefit-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

/* CTA Group */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.primary-cta-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--purple);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.primary-cta-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--royal-blue) 50%, var(--vibrant-cyan) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.primary-cta-new:hover::before {
    opacity: 1;
}

.primary-cta-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(139, 92, 246, 0.6);
}

.cta-text,
.cta-arrow {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.primary-cta-new:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-subtext {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 0 0.5rem;
}

.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #00E5FF;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.secondary-link:hover {
    color: #33EBFF;
    gap: 0.75rem;
}

.secondary-link svg {
    transition: transform 0.3s ease;
}

.secondary-link:hover svg {
    transform: translateY(3px);
}

/* ==================== TRANSITION BRIDGE ==================== */

.hk3k-transition {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.02) 100%);
}

.transition-arrow {
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.transition-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 600px;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
    .hk3k-split-layout {
        gap: 3rem;
    }

    .story-headline {
        font-size: 2rem;
    }
}

@media (max-width: 968px) {
    .hk3k-split-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hk3k-story-content {
        order: -1;
    }

    .story-headline {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hk3k-container {
        padding: 4rem 2rem;
    }

    .problem-text {
        font-size: 1rem;
    }

    .chapter-markers {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-headline {
        font-size: 1.875rem;
    }

    .video-caption {
        font-size: 0.875rem;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }
}

/* Solutions Section - Frost Cosmic Design */
.solutions-section {
    position: relative;
    min-height: 100vh;
    background: var(--deep-blue);
    overflow: hidden;
    padding: 120px 3rem 80px;
}

/* Animated background elements */
.solutions-bg-element {
    position: absolute;
    border-radius: 0;
    filter: blur(80px);
    opacity: 0.3;
    animation: solutionsFloat 20s ease-in-out infinite;
}

.solutions-bg-element-1 {
    width: 400px;
    height: 400px;
    background: var(--vibrant-cyan);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.solutions-bg-element-2 {
    width: 500px;
    height: 500px;
    background: var(--purple);
    top: 20%;
    right: -150px;
    animation-delay: 7s;
}

.solutions-bg-element-3 {
    width: 350px;
    height: 350px;
    background: var(--royal-blue);
    bottom: -100px;
    left: 30%;
    animation-delay: 14s;
}

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

/* Noise texture overlay */
.solutions-noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Section */
.solutions-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.solutions-headline {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--vibrant-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.solutions-subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
}

/* Cards Grid */
.solutions-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 60px;
    margin-bottom: 3rem;
}

/* Glass Card */
.solutions-glass-card {
    background: var(--glass-fill);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 0;
    border: 1px solid var(--glass-border-strong);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 1.5rem 1.5rem;
    padding-bottom: 1.5rem;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.solutions-glass-card:nth-child(1) {
    animation-delay: 0.1s;
}

.solutions-glass-card:nth-child(2) {
    animation-delay: 0.2s;
}

.solutions-glass-card:nth-child(3) {
    animation-delay: 0.3s;
}

.solutions-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0;
}

.solutions-glass-card:hover {
    background: var(--glass-border);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.5);
    border-color: var(--cyan-glass-border-strong);
    padding-bottom: 5rem;
    z-index: 10;
}

.solutions-glass-card:hover::before {
    opacity: 1;
}

/* Icon Container */
.solutions-icon-container {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-icon-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: radial-gradient(circle, var(--vibrant-cyan) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solutions-glass-card:hover .solutions-icon-glow {
    opacity: 0.4;
}

.solutions-icon {
    width: 56px;
    height: 56px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

/* Card Content */
.solutions-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    color: var(--white);
}

.solutions-card-description {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
}

/* Benefit Badge */
.solutions-benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--cyan-glass-border-strong);
    border-radius: 0;
    font-size: 0.875rem;
    color: var(--vibrant-cyan);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.solutions-checkmark {
    width: 16px;
    height: 16px;
    color: var(--vibrant-cyan);
}

/* CTA Link */
.solutions-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--vibrant-cyan);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: gap 0.3s ease;
}

.solutions-cta-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vibrant-cyan);
    transition: width 0.3s ease;
}

.solutions-cta-link:hover {
    gap: 0.75rem;
}

.solutions-cta-link:hover::after {
    width: calc(100% - 20px);
}

.solutions-arrow {
    transition: transform 0.3s ease;
}

.solutions-cta-link:hover .solutions-arrow {
    transform: translateX(4px);
}

/* Hover Details */
.solutions-hover-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 229, 255, 0.2) 0%, rgba(0, 229, 255, 0.1) 50%, transparent 100%);
    border-radius: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin-top: auto;
}

.solutions-glass-card:hover .solutions-hover-details {
    opacity: 1;
    transform: translateY(0);
}

.solutions-stat {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* Trust Section */
.solutions-trust-section {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.solutions-trust-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.solutions-metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.solutions-metric {
    text-align: center;
}

.solutions-metric-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--vibrant-cyan);
    margin-bottom: 0.5rem;
}

.solutions-metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Light mode styles for solutions section */
body.light-mode .solutions-section {
    background: var(--deep-blue);
}

body.light-mode .solutions-glass-card {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

body.light-mode .solutions-glass-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.12) 0%, transparent 100%);
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

body.light-mode .solutions-glass-card:hover {
    background: #FFFFFF;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

body.light-mode .solutions-glass-card:hover::after {
    opacity: 1;
}

body.light-mode .solutions-glass-card::before {
    background: transparent;
}

body.light-mode .solutions-headline {
    background: linear-gradient(135deg, #0D1B2A 0%, var(--vibrant-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .solutions-subheadline {
    color: rgba(13, 27, 42, 0.85);
}

body.light-mode .solutions-card-title {
    color: #0D1B2A;
}

body.light-mode .solutions-card-description {
    color: rgba(13, 27, 42, 0.75);
}

body.light-mode .solutions-stat {
    color: rgba(13, 27, 42, 0.9);
}

body.light-mode .solutions-trust-text {
    color: rgba(13, 27, 42, 0.6);
}

body.light-mode .solutions-metric-label {
    color: rgba(13, 27, 42, 0.7);
}

body.light-mode .solutions-hover-details {
    background: linear-gradient(to top, rgba(0, 152, 199, 0.15) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 100%);
}

/* Responsive */
@media (max-width: 1024px) {
    .solutions-section {
        padding: 100px 2rem 60px;
    }

    .solutions-headline {
        font-size: 2.5rem;
    }

    .solutions-subheadline {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 80px 1.5rem 60px;
    }

    .solutions-headline {
        font-size: 2rem;
    }

    .solutions-subheadline {
        font-size: 1rem;
    }

    .solutions-cards-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .solutions-glass-card {
        padding: 2rem 1.5rem;
        min-height: 400px;
    }

    .solutions-glass-card:hover {
        padding-bottom: 4.5rem;
        transform: translateY(-8px) scale(1.01);
    }

    .solutions-metrics {
        gap: 40px;
    }

    .solutions-metric-value {
        font-size: 1.75rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1.25rem 2rem;
    }

    .hero {
        padding: 0 2rem;
    }

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

    .hero-description {
        font-size: 1.125rem;
    }
}

/* Tablet/Medium Screen - Prevent header overlap */
@media (max-width: 1250px) {
    .nav-links {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
    }

    .menu-icon {
        display: flex;
    }

    /* Hide dropdown on tablet/mobile */
    .products-dropdown {
        display: none !important;
    }
}

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

    .nav-container {
        padding: 1rem 1.5rem;
        justify-content: space-between;
    }

    .logo img {
        height: 20px;
    }

    .menu-wrapper {
        margin-left: auto;
    }
}

/* Hide Contact Us button only at 450px and below */
@media (max-width: 450px) {
    .nav-cta {
        display: none !important;
    }

    .hero {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-cta, .secondary-cta {
        text-align: center;
    }

    .hero-pattern {
        width: 100%;
        right: -30%;
    }
}

/* Gradient Control Button - Badge acts as controller */
.gradient-control-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.gradient-control-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

.gradient-control-btn:active {
    transform: scale(0.98);
}

/* Gradient Text - Applied to h1 and description */
.gradient-text {
    transition: all 0.5s ease;
}

/* Gradient Pair 1: Cyan to Purple (Default - Frost Cosmic) */
body .hero h1.gradient-text[data-gradient="0"],
body .hero h1.gradient-text:not([data-gradient]),
body .hero-description.gradient-text[data-gradient="0"],
body .hero-description.gradient-text:not([data-gradient]) {
    background: linear-gradient(135deg, #00E5FF 0%, #8B5CF6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Gradient Pair 2: Royal Blue to Electric Cyan */
body .hero h1.gradient-text[data-gradient="1"],
body .hero-description.gradient-text[data-gradient="1"] {
    background: linear-gradient(135deg, #3B82F6 0%, #00E5FF 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Gradient Pair 3: Purple to Glow Cyan */
body .hero h1.gradient-text[data-gradient="2"],
body .hero-description.gradient-text[data-gradient="2"] {
    background: linear-gradient(135deg, #8B5CF6 0%, #66F0FF 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Remove text-shadow from h1 when using gradients */
body .hero h1.gradient-text {
    text-shadow: none !important;
}

/* ==================== BUSINESS SERVICES SECTION ==================== */

.business-services-section {
    position: relative;
    padding: 8rem 0 10rem 0;
    background: linear-gradient(180deg, var(--deep-blue) 0%, var(--rich-blue) 100%);
    overflow: hidden;
}

/* Transition Bridge */
.services-transition-bridge {
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.transition-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, var(--vibrant-cyan) 50%, transparent 100%);
    margin: 0 auto 2rem auto;
    position: relative;
    animation: lineGlow 2s ease-in-out infinite;
}

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

.transition-headline {
    font-size: 2rem;
    font-weight: 600;
    color: var(--vibrant-cyan);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.transition-subtext {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.scale-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.scale-from, .scale-to {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--vibrant-cyan);
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 0;
    backdrop-filter: blur(10px);
}

.scale-arrow {
    font-size: 2rem;
    color: var(--vibrant-cyan);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(8px); opacity: 1; }
}

/* Services Container */
.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

/* Service Card */
.service-card {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
    border-color: rgba(0, 229, 255, 0.3);
}

/* Card Glow Border */
.card-glow-border {
    position: absolute;
    inset: -3px;
    opacity: 0;
    z-index: -1;
    border-radius: 0;
    transition: all 0.4s ease;
}

/* Card Icon */
.card-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    width: 64px;
    height: 64px;
    transition: transform 0.4s ease;
}

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

.icon-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Card Content */
.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    min-height: 3.9rem;
    display: flex;
    align-items: flex-start;
}

.card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

/* Card Benefit List */
.card-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.benefit-check {
    flex-shrink: 0;
}

/* Card CTA */
.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 0;
    color: var(--vibrant-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-cta:hover {
    background: rgba(0, 229, 255, 0.2);
    border-color: var(--vibrant-cyan);
    transform: translateX(4px);
}

.card-cta .cta-arrow {
    transition: transform 0.3s ease;
}

.card-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* Card Hover Details */
.card-hover-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.service-card:hover .card-hover-details {
    opacity: 1;
    transform: translateY(0);
}

.hover-stat {
    font-size: 0.875rem;
    color: var(--vibrant-cyan);
    font-weight: 600;
    text-align: center;
}

/* Services CTA Section */
.services-cta-section {
    text-align: center;
    padding: 3rem 0;
}

.services-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--purple);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.services-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.services-primary-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.services-primary-cta:hover::before {
    left: 100%;
}

.services-primary-cta .cta-arrow-main {
    transition: transform 0.3s ease;
}

.services-primary-cta:hover .cta-arrow-main {
    transform: translateX(4px);
}

/* Background Elements */
.services-bg-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 968px) {
    .business-services-section {
        padding: 6rem 0 8rem 0;
    }

    .services-headline {
        font-size: 2.25rem;
    }

    .services-subheadline {
        font-size: 1.125rem;
    }

    .transition-headline {
        font-size: 1.5rem;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .business-services-section {
        padding: 4rem 0 6rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card:last-child {
        grid-column: span 1;
    }

    .services-headline {
        font-size: 2rem;
    }

    .services-subheadline {
        font-size: 1rem;
    }

    .transition-headline {
        font-size: 1.25rem;
    }

    .scale-visualization {
        flex-direction: column;
        gap: 1rem;
    }

    .scale-arrow {
        transform: rotate(90deg);
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .card-title {
        font-size: 1.25rem;
    }
}

/* ==================== ASTEROID FIELD ==================== */

.asteroid-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.asteroid {
    position: absolute;
    pointer-events: none;
    transition: transform 0.3s ease-out;
    filter: blur(0px);
}

.asteroid.behind-card {
    filter: blur(8px);
}

/* 32-bit pixel art style asteroids */
.asteroid svg {
    width: 100%;
    height: 100%;
}

/* Different asteroid sizes */
.asteroid.small {
    width: 60px;
    height: 60px;
}

.asteroid.medium {
    width: 90px;
    height: 90px;
}

.asteroid.large {
    width: 120px;
    height: 120px;
}

/* Slow rotation animation */
@keyframes asteroidRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.asteroid {
    animation: asteroidRotate 60s linear infinite;
}

.asteroid.fast {
    animation-duration: 40s;
}

.asteroid.slow {
    animation-duration: 80s;
}

/* ==================== NEO FOOTER ==================== */

.neo-footer {
    position: relative;
    background: linear-gradient(180deg, var(--deep-blue) 0%, #000814 100%);
    padding: 6rem 0 2rem 0;
    overflow: hidden;
}

/* Constellation Canvas Background */
.constellation-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Footer Container */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ===== TOP SECTION: CTA ===== */
.footer-cta-section {
    text-align: center;
    margin-bottom: 6rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}

.footer-rocket-icon {
    display: inline-block;
    margin-bottom: 2rem;
    animation: rocketFloat 3s ease-in-out infinite;
}

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

.footer-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer-subtext {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.footer-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--purple) 0%, var(--brand-blue) 50%, var(--vibrant-cyan) 100%);
    background-size: 200% 200%;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.footer-primary-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 55%,
        transparent 100%
    );
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.footer-primary-cta:hover {
    transform: scale(1.08);
    background-position: 100% 50%;
    box-shadow: 0 12px 48px rgba(0, 229, 255, 0.6);
    border-color: var(--vibrant-cyan);
}

.footer-primary-cta:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.footer-primary-cta .cta-arrow {
    transition: transform 0.3s ease;
}

.footer-primary-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* ===== MIDDLE SECTION: LINKS GRID ===== */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}

.footer-column-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vibrant-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--vibrant-cyan);
    transform: translateX(5px);
}

/* Newsletter */
.newsletter-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.terminal-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.terminal-input-wrapper:focus-within {
    border-color: var(--vibrant-cyan);
    background: rgba(0, 229, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.terminal-prompt {
    color: var(--vibrant-cyan);
    font-family: monospace;
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 1.125rem;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-family: monospace;
    font-size: 0.875rem;
    outline: none;
}

.terminal-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-submit {
    background: var(--vibrant-cyan);
    border: none;
    padding: 0.75rem 1.25rem;
    color: var(--deep-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: var(--electric-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
    transform: scale(1.05);
}

.newsletter-submit svg {
    display: block;
}

/* ===== BOTTOM SECTION: SOCIAL & LEGAL ===== */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-logo {
    opacity: 0.9;
    width: auto !important;
    height: 30px;
    max-width: 100%;
    object-fit: contain;
}

.footer-email {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--vibrant-cyan);
}

/* Social Links with Orbital Effect */
.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-orbital-link {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.orbital-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid transparent;
    border-radius: 0;
    transition: all 0.5s ease;
}

.social-orbital-link:hover .orbital-ring {
    border-color: var(--vibrant-cyan);
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.social-orbital-link:hover {
    color: var(--vibrant-cyan);
    transform: scale(1.15);
}

@keyframes orbitalSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Legal Links */
.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--vibrant-cyan);
}

.legal-separator {
    display: none;
}

/* Copyright */
.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .footer-headline {
        font-size: 2.25rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .neo-footer {
        padding: 4rem 0 2rem 0;
    }

    .footer-headline {
        font-size: 2rem;
    }

    .footer-cta-section {
        margin-bottom: 4rem;
        padding-bottom: 3rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-submit {
        width: 100%;
    }
}
