        :root {
            /* ========================================
               STRIKT MINIMALES FARBSCHEMA
               NUR Navy + Gold + Graustufen
               ======================================== */

            /* PRIMÄRFARBE: TIEFES NAVY BLAU */
            --color-primary: #0F2847;
            --color-primary-light: #1A3A5C;
            --color-primary-dark: #0A1C33;

            /* AKZENTFARBE: DEZENTES GOLD - NUR für CTAs! */
            --color-accent: #C9A227;
            --color-accent-light: #D4B84A;
            --color-accent-dark: #A68B1F;

            /* GRAUSTUFEN */
            --color-white: #FFFFFF;
            --color-gray-50: #F8FAFC;
            --color-gray-100: #F1F5F9;
            --color-gray-200: #E2E8F0;
            --color-gray-300: #CBD5E1;
            --color-gray-400: #94A3B8;
            --color-gray-500: #64748B;
            --color-gray-600: #475569;
            --color-gray-700: #334155;
            --color-gray-800: #1E293B;
            --color-gray-900: #0F172A;

            /* HINTERGRÜNDE - 2 Nuancen heller */
            --bg-dark: #162038;
            --bg-darker: #121A2E;
            --bg-card: rgba(22, 50, 85, 0.4);
            --bg-card-border: rgba(255, 255, 255, 0.10);

            /* STATUS - NUR für Dashboard-Daten */
            --status-success: #10B981;
            --status-warning: #F59E0B;
            --status-danger: #EF4444;

            /* Legacy Aliases */
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --bg-primary: #162038;
            --bg-secondary: #1A2540;
            --bg-tertiary: #223A5C;
            --border-color: rgba(255, 255, 255, 0.08);
            --accent-green: #C9A227;
            --accent-cyan: #C9A227;
            --gradient-accent: #C9A227;

            /* TYPOGRAPHY */
            --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;

            /* TRANSITIONS */
            --transition-fast: 0.15s ease;
            --transition-base: 0.2s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        html, body {
            max-width: 100vw;
            width: 100%;
        }

        body {
            font-family: var(--font-display);
            background:
                /* Gold Schimmer - oberer Bereich */
                radial-gradient(ellipse 80% 50% at 20% 10%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
                /* Gold Schimmer - mittlerer Bereich rechts */
                radial-gradient(ellipse 60% 40% at 85% 40%, rgba(201, 162, 39, 0.06) 0%, transparent 45%),
                /* Gold Schimmer - unterer Bereich links */
                radial-gradient(ellipse 70% 45% at 15% 75%, rgba(201, 162, 39, 0.07) 0%, transparent 50%),
                /* Gold Schimmer - Zentrum dezent */
                radial-gradient(ellipse 50% 35% at 50% 50%, rgba(201, 162, 39, 0.04) 0%, transparent 40%),
                /* Basis-Hintergrund */
                #162038;
            background-attachment: fixed;
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Selection Color */
        ::selection {
            background: var(--gold-500);
            color: var(--neutral-900);
        }

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

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--neutral-700);
            border-radius: var(--radius-full);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--neutral-600);
        }

        /* Focus States */
        :focus-visible {
            outline: 2px solid var(--gold-500);
            outline-offset: 2px;
        }

        /* Link Base */
        a {
            color: var(--primary-400);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--gold-400);
        }

        /* ============================================
           ICON SYSTEM - PROFESSIONAL SVG ICONS
           ============================================ */

        .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .icon svg {
            width: 100%;
            height: 100%;
            stroke-width: 1.5;
        }

        /* Icon Sizes */
        .icon-xs { width: 14px; height: 14px; }
        .icon-sm { width: 18px; height: 18px; }
        .icon-md { width: 24px; height: 24px; }
        .icon-lg { width: 32px; height: 32px; }
        .icon-xl { width: 48px; height: 48px; }

        /* Icon Colors */
        .icon-primary svg { stroke: var(--primary-400); }
        .icon-gold svg { stroke: var(--gold-400); }
        .icon-success svg { stroke: var(--success-400); }
        .icon-danger svg { stroke: var(--danger-400); }
        .icon-white svg { stroke: white; }
        .icon-muted svg { stroke: var(--neutral-500); }

        /* Icon Containers */
        .icon-box {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-lg);
        }

        .icon-box-sm { width: 40px; height: 40px; }
        .icon-box-md { width: 52px; height: 52px; }
        .icon-box-lg { width: 64px; height: 64px; }

        /* Icon Box Variants */
        .icon-box-primary {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(30, 64, 175, 0.1));
        }

        .icon-box-gold {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
        }

        .icon-box-success {
            background: rgba(201, 162, 39, 0.15);
        }

        .icon-box-danger {
            background: rgba(212, 165, 55, 0.15);
        }

        .icon-box-cyan {
            background: rgba(201, 162, 39, 0.15);
        }

        /* Animated Grid Background */
        /* Subtle Grid Background - Navy Only */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(26, 45, 80, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(26, 45, 80, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(22, 32, 56, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all var(--transition-base);
        }

        nav.scrolled {
            padding: 12px 4rem;
            background: rgba(22, 32, 56, 0.85);
            box-shadow: var(--shadow-lg);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-decoration: none;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.3));
        }

        .logo-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--bg-primary);
        }

        img.logo-icon {
            display: block;
        }

        .logo span {
            background: var(--color-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        /* Hide mobile CTA on desktop */
        .mobile-cta,
        .mobile-cta-divider {
            display: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s ease;
            position: relative;
        }

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

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.75rem 1.75rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
        }

        /* BUTTONS - NUR 2 VARIANTEN, DEZENT */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            background: var(--color-accent);
            color: var(--color-primary-dark);
            font-size: 0.9375rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary:hover {
            background: var(--color-accent-light);
            transform: translateY(-1px);
            color: var(--color-primary-dark);
        }

        .btn-ghost,
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            background: transparent;
            color: var(--color-white);
            font-size: 0.9375rem;
            font-weight: 600;
            border: 1px solid var(--color-gray-700);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-ghost:hover,
        .btn-secondary:hover {
            border-color: var(--color-gray-500);
            background: rgba(255, 255, 255, 0.03);
            color: var(--color-white);
        }

        .btn-large {
            padding: 1rem 2.5rem;
            font-size: 1rem;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 12px;
            border-radius: 8px;
            transition: background 0.2s ease;
            z-index: 1001;
        }

        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu Overlay & Container */
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 9998;
        }

        .mobile-overlay.active {
            display: block;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-darker);
            z-index: 9999;
            padding: 24px;
            overflow-y: auto;
            flex-direction: column;
        }

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

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .mobile-link {
            display: block;
            padding: 20px 0;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-white);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .mobile-link:hover {
            color: var(--color-accent);
        }

        .mobile-menu-cta {
            margin-top: auto;
            padding-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-menu-cta .btn-primary,
        .mobile-menu-cta .btn-secondary {
            width: 100%;
            justify-content: center;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 8rem 4rem 4rem;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--accent-green-dim);
            border: 1px solid rgba(0, 217, 165, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--accent-green);
            margin-bottom: 1.5rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.2); }
            50% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
            animation: blink 1.5s ease-in-out infinite;
        }

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

        .hero h1 {
            font-size: clamp(2.2rem, 5vw + 1rem, 4rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
        }

        .hero h1 .highlight {
            background: var(--color-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 520px;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .stat {
            display: flex;
            flex-direction: column;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            font-family: var(--font-mono);
            background: var(--color-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        /* Dashboard Preview */
        .dashboard-preview {
            position: relative;
            perspective: 1000px;
        }

        .dashboard-frame {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: var(--shadow-glow);
            transform: rotateY(-5deg) rotateX(2deg);
            transition: transform 0.5s ease;
        }

        .dashboard-frame:hover {
            transform: rotateY(0deg) rotateX(0deg);
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .dashboard-title {
            font-size: 0.9rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dashboard-title svg {
            width: 18px;
            height: 18px;
            stroke: var(--accent-green);
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            color: var(--accent-green);
            font-family: var(--font-mono);
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
            animation: blink 1s ease-in-out infinite;
        }

        /* Risk Cards */
        .risk-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .risk-card {
            background: var(--bg-secondary);
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }

        .risk-card-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .risk-card-value {
            font-size: 1.5rem;
            font-weight: 700;
            font-family: var(--font-mono);
        }

        .risk-card-value.green { color: var(--accent-green); }
        .risk-card-value.red { color: var(--accent-red); }
        .risk-card-value.blue { color: var(--accent-blue); }

        .risk-card-change {
            font-size: 0.7rem;
            margin-top: 0.25rem;
            font-family: var(--font-mono);
        }

        .risk-card-change.positive { color: var(--accent-green); }
        .risk-card-change.negative { color: var(--accent-red); }

        /* Alert List */
        .alert-list {
            background: var(--bg-secondary);
            border-radius: 10px;
            padding: 1rem;
            border: 1px solid var(--border-color);
        }

        .alert-header {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
            display: flex;
            justify-content: space-between;
        }

        .alert-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.6rem 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.8rem;
        }

        .alert-item:last-child {
            border-bottom: none;
        }

        .alert-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .alert-icon.warning {
            background: var(--accent-red-dim);
            color: var(--accent-red);
        }

        .alert-icon.success {
            background: var(--accent-green-dim);
            color: var(--accent-green);
        }

        .alert-content {
            flex: 1;
            min-width: 0;
        }

        .alert-title {
            font-weight: 500;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .alert-meta {
            font-size: 0.7rem;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }

        /* Features Section */
        .section {
            padding: 6rem 4rem;
            position: relative;
            z-index: 1;
            scroll-margin-top: 100px;
            background: linear-gradient(180deg, rgba(22, 32, 56, 0.3) 0%, rgba(26, 45, 80, 0.2) 50%, rgba(22, 32, 56, 0.3) 100%);
        }

        /* Scroll-margin for all anchor sections */
        [id] {
            scroll-margin-top: 100px;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(30, 64, 175, 0.15);
            border: 1px solid rgba(30, 64, 175, 0.3);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary-300);
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

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

        .section-title .highlight-gold {
            background: var(--color-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title .highlight-danger {
            color: var(--danger-400);
        }

        .section-title .highlight-success {
            color: var(--success-400);
        }

        /* Section Divider */
        .section-divider {
            width: 60px;
            height: 3px;
            background: var(--color-accent);
            border-radius: var(--radius-full);
            margin: 0 auto 24px;
        }

        /* Feature Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--gradient-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--color-accent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

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

        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-icon svg {
            stroke: var(--color-accent);
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .feature-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Metrics Section */
        .metrics-section {
            background: transparent;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .metric-item {
            padding: 2rem;
        }

        .metric-value {
            font-size: 3.5rem;
            font-weight: 700;
            font-family: var(--font-mono);
            background: var(--color-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

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

        /* ============================================
           RISK COMMAND CENTER SECTION
           ============================================ */

        .command-center-section {
            padding: 120px 4rem;
            background: linear-gradient(180deg, rgba(22, 32, 56, 0.4) 0%, rgba(18, 26, 46, 0.5) 50%, rgba(22, 32, 56, 0.4) 100%);
            position: relative;
            overflow: hidden;
        }

        .command-center-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(26, 45, 80, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .command-center-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .command-center-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .command-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: var(--color-accent);
            margin-bottom: 24px;
            animation: badge-glow 3s ease-in-out infinite;
        }

        @keyframes badge-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.15); }
            50% { box-shadow: 0 0 30px rgba(201, 162, 39, 0.25); }
        }

        .command-badge svg {
            width: 18px;
            height: 18px;
            stroke: var(--color-accent);
            animation: sparkle 2s ease-in-out infinite;
        }

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

        .command-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1.15;
        }

        .command-title .gradient-text {
            background: var(--color-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .command-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Self-Healing Feature */
        .self-healing-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .healing-visual {
            position: relative;
        }

        .healing-card {
            background: rgba(26, 45, 80, 0.4);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 24px;
            padding: 32px;
            position: relative;
            overflow: hidden;
        }

        .healing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-light));
            animation: healing-progress 3s ease-in-out infinite;
        }

        @keyframes healing-progress {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .healing-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .healing-icon-wrapper {
            width: 56px;
            height: 56px;
            background: rgba(201, 162, 39, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse-icon 2s ease-in-out infinite;
        }

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

        .healing-icon-wrapper svg {
            width: 28px;
            height: 28px;
            stroke: var(--color-accent);
        }

        .healing-status {
            flex: 1;
        }

        .healing-status-title {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
        }

        .healing-status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: rgba(201, 162, 39, 0.2);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: var(--color-accent);
        }

        .healing-status-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--color-accent);
            border-radius: 50%;
            animation: blink 1.5s ease-in-out infinite;
        }

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

        .healing-steps {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .healing-step {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .healing-step:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .healing-step-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .healing-step-icon.complete {
            background: rgba(201, 162, 39, 0.2);
        }

        .healing-step-icon.complete svg {
            stroke: var(--color-accent);
        }

        .healing-step-icon.active {
            background: rgba(201, 162, 39, 0.2);
            animation: step-pulse 1.5s ease-in-out infinite;
        }

        @keyframes step-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
            50% { box-shadow: 0 0 0 8px rgba(201, 162, 39, 0); }
        }

        .healing-step-icon.active svg {
            stroke: var(--color-accent);
            animation: spin 2s linear infinite;
        }

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

        .healing-step-icon svg {
            width: 16px;
            height: 16px;
        }

        .healing-step-text {
            flex: 1;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .healing-step-text.complete {
            color: var(--color-accent);
        }

        .healing-step-text.active {
            color: var(--color-accent-light);
            font-weight: 500;
        }

        .healing-content {
            padding-left: 20px;
        }

        .healing-content-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-accent);
            margin-bottom: 20px;
        }

        .healing-content h3 {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .healing-content p {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .healing-features-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .healing-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .healing-feature-icon {
            width: 24px;
            height: 24px;
            background: rgba(201, 162, 39, 0.2);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .healing-feature-icon svg {
            width: 14px;
            height: 14px;
            stroke: var(--color-accent);
        }

        .healing-feature-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .healing-feature-text strong {
            color: white;
            font-weight: 600;
        }

        /* ============================================
           PLAYGROUND SECTION
           ============================================ */

        .playground-section {
            padding: 120px 4rem;
            background: linear-gradient(180deg, rgba(22, 32, 56, 0.4) 0%, rgba(18, 26, 46, 0.5) 100%);
            position: relative;
            overflow: hidden;
        }

        .playground-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
        }

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

        .playground-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .playground-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: var(--color-accent);
            margin-bottom: 24px;
        }

        .playground-badge svg {
            width: 18px;
            height: 18px;
            stroke: var(--color-accent);
        }

        .playground-title {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1.15;
        }

        .playground-title .highlight {
            color: var(--color-accent);
        }

        .playground-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Dual Feature Cards */
        .playground-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .playground-card {
            background: rgba(26, 45, 80, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .playground-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--color-accent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .playground-card:hover {
            transform: translateY(-8px);
            border-color: rgba(201, 162, 39, 0.3);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

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

        .playground-card-icon {
            width: 72px;
            height: 72px;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
        }

        .playground-card-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--color-accent);
        }

        .playground-card-badge {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.25);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .playground-card h3 {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .playground-card-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .playground-features {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 32px;
        }

        .playground-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .playground-feature svg {
            width: 18px;
            height: 18px;
            stroke: var(--color-accent);
            flex-shrink: 0;
        }

        .playground-card-preview {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 20px;
            font-family: var(--font-mono);
            font-size: 13px;
            overflow: hidden;
        }

        .preview-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .preview-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .preview-dot.red { background: #FF5F56; }
        .preview-dot.yellow { background: #FFBD2E; }
        .preview-dot.green { background: #27CA40; }

        .preview-title {
            margin-left: 12px;
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .preview-content {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .preview-content .cmd {
            color: var(--color-accent);
        }

        .preview-content .success {
            color: #34D399;
        }

        .preview-content .comment {
            color: #64748B;
        }

        /* GUI Preview specific */
        .gui-preview-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .gui-preview-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 8px;
            padding: 12px;
            text-align: center;
            transition: all 0.2s ease;
        }

        .gui-preview-item:hover {
            background: rgba(201, 162, 39, 0.1);
            border-color: rgba(201, 162, 39, 0.3);
        }

        .gui-preview-icon {
            width: 32px;
            height: 32px;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
        }

        .gui-preview-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--color-accent);
        }

        .gui-preview-label {
            font-size: 11px;
            color: var(--text-secondary);
            font-family: var(--font-display);
        }

        /* Responsive for Command Center & Playground */
        @media (max-width: 1024px) {
            .self-healing-showcase {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .healing-content {
                padding-left: 0;
                order: -1;
            }

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

            .command-center-section,
            .playground-section {
                padding: 80px 2rem;
            }
        }

        @media (max-width: 768px) {
            .command-center-section,
            .playground-section {
                padding: 60px 1.5rem;
            }

            .healing-card {
                padding: 24px;
            }

            .playground-card {
                padding: 28px;
            }

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

        /* Integration Logos */
        .integrations {
            padding: 5rem 2rem;
            border-bottom: 1px solid var(--border-color);
            background: linear-gradient(180deg, rgba(22,32,56,0.5) 0%, rgba(22,32,56,0.8) 100%);
        }

        .integrations-badge {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .integrations-badge span {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.2rem;
            background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.15));
            border: 1px solid rgba(59,130,246,0.3);
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-primary-light);
        }

        .integrations-badge svg {
            width: 18px;
            height: 18px;
        }

        .integrations-header {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }

        .integrations-subheader {
            text-align: center;
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .logos-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem 1rem;
            background: rgba(26, 45, 80, 0.5);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            transition: all 0.3s ease;
            cursor: default;
        }

        .logo-item:hover {
            background: rgba(26, 45, 80, 0.8);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .logo-item .logo-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.1));
            border-radius: 12px;
            padding: 10px;
        }

        .logo-item .logo-icon svg {
            width: 28px;
            height: 28px;
            stroke: #60A5FA;
        }

        .logo-item .logo-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            text-align: center;
        }

        .logo-item .logo-type {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: none;
            transform: scale(1.05);
            z-index: 1;
        }

        .pricing-card.featured:hover {
            transform: scale(1.07);
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-accent);
            color: var(--neutral-900);
            padding: 6px 20px;
            border-radius: var(--radius-full);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .pricing-card.featured .pricing-name {
            background: var(--color-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-tier {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .pricing-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pricing-amount {
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }

        .pricing-currency {
            font-size: 1.5rem;
            color: var(--text-secondary);
        }

        .pricing-value {
            font-size: 3.5rem;
            font-weight: 700;
            font-family: var(--font-mono);
        }

        .pricing-value .dot {
            margin: 0 -0.15em;
        }

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

        .pricing-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .pricing-features li::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            background: rgba(16, 185, 129, 0.2);
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
            background-size: 12px;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .pricing-card.featured .pricing-features li::before {
            background: rgba(212, 175, 55, 0.2);
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
            background-size: 12px;
            background-position: center;
            background-repeat: no-repeat;
        }

        .pricing-card.featured .pricing-amount .pricing-value {
            background: var(--color-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-card .btn {
            width: 100%;
            justify-content: center;
            margin-top: auto;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            background: var(--gradient-card);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 5rem;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }

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

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

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

        /* Contact Form */
        .contact-form {
            max-width: 500px;
            margin: 2rem auto 0;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-input {
            width: 100%;
            padding: 1rem 1.25rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-primary);
            font-family: var(--font-display);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-green);
            box-shadow: 0 0 0 3px var(--accent-green-dim);
        }

        .form-input::placeholder {
            color: var(--text-muted);
        }

        /* ============================================
           MOBILE STICKY CTA
           ============================================ */

        .mobile-sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px 20px;
            background: rgba(22, 32, 56, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            z-index: 999;
            transform: translateY(100%);
            transition: transform var(--transition-base);
        }

        .mobile-sticky-cta.visible {
            transform: translateY(0);
        }

        .mobile-sticky-cta-inner {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto;
        }

        .mobile-sticky-cta .btn-primary {
            flex: 1;
            padding: 14px 20px;
            text-align: center;
            justify-content: center;
        }

        .mobile-sticky-cta .btn-secondary {
            padding: 14px 20px;
            background: transparent;
            border: 1px solid var(--neutral-700);
            color: white;
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-md);
        }

        /* Footer */
        footer {
            padding: 4rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand .logo {
            margin-bottom: 1rem;
        }

        .footer-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-col h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--text-primary);
        }

        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-legal {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-badges {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .footer-badge {
            background: var(--bg-tertiary);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.75rem;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-stats {
                justify-content: center;
            }

            .dashboard-preview {
                max-width: 600px;
                margin: 0 auto;
            }

            .dashboard-frame {
                transform: none;
            }

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

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }

            .pricing-card.featured {
                transform: none;
            }

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

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

        @media (max-width: 768px) {
            /* ============================================
               MOBILE: CRITICAL OVERFLOW FIXES
               ============================================ */

            /* Prevent any horizontal overflow */
            *, *::before, *::after {
                max-width: 100vw;
            }

            section, .section, main, article, div {
                max-width: 100%;
            }

            /* Mobile scroll margin */
            [id] {
                scroll-margin-top: 80px;
            }

            /* Hero Dashboard verstecken */
            .dashboard-preview,
            .hero-visual,
            .dashboard-frame {
                display: none !important;
            }

            /* Nur 2 Problem-Cards zeigen */
            .problem-card:nth-child(n+3) {
                display: none !important;
            }

            /* Nur 2 Solution-Cards zeigen */
            .solution-card:nth-child(n+3) {
                display: none !important;
            }

            /* Provider Grid verstecken (not chain-step-providers) */
            .providers-grid {
                display: none !important;
            }

            /* Chain step providers - show on mobile but smaller */
            .chain-step-providers {
                display: flex !important;
                gap: 4px;
                margin-top: 8px;
            }

            .provider-tag {
                font-size: 10px;
                padding: 3px 8px;
            }

            /* Features auf 1 Spalte */
            .features-grid {
                grid-template-columns: 1fr !important;
            }

            /* ALLE Pricing Cards sichtbar - Enterprise zuerst */
            .pricing-card {
                display: flex !important;
                flex-direction: column;
                transform: none !important;
                width: 100% !important;
                max-width: 100% !important;
                padding: 1.5rem !important;
            }
            .pricing-card.featured,
            .pricing-card.popular {
                order: -1;
                transform: none !important;
            }
            .pricing-card.featured:hover {
                transform: none !important;
            }
            .pricing-grid {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
                width: 100% !important;
                max-width: 100% !important;
                padding: 0 1rem !important;
            }
            .pricing-value {
                font-size: 2.5rem !important;
            }

            /* Mobile Sticky CTA */
            .mobile-sticky-cta {
                display: block;
            }

            body {
                padding-bottom: 80px;
            }

            nav {
                padding: 0.75rem 1rem !important;
                z-index: 1001;
                width: 100% !important;
                max-width: 100vw !important;
                left: 0 !important;
                right: 0 !important;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--bg-primary);
                flex-direction: column;
                padding: 1.5rem;
                gap: 0.5rem;
                z-index: 999;
                overflow-y: auto;
                border-top: 1px solid var(--border-color);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                list-style: none;
            }

            .nav-links a {
                display: block;
                padding: 1rem 1.25rem;
                font-size: 1rem;
                font-weight: 500;
                border-radius: 10px;
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.08);
                transition: all 0.2s ease;
                text-align: center;
                color: var(--text-primary);
            }

            .nav-links a:hover,
            .nav-links a:active {
                background: rgba(59, 130, 246, 0.1);
                border-color: rgba(59, 130, 246, 0.3);
            }

            .nav-links a::after {
                display: none;
            }

            .nav-links .nav-button-primary {
                background: var(--color-accent);
                border: none;
                color: white;
            }

            /* Mobile CTA section */
            .mobile-cta-divider {
                display: block;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
                margin: 1rem 0;
                list-style: none;
            }

            .mobile-cta {
                display: block;
                list-style: none;
            }

            .mobile-cta a.mobile-signin {
                background: transparent;
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .mobile-cta a.mobile-demo {
                background: var(--color-accent);
                border: none;
                color: white;
                font-weight: 600;
            }

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

            .nav-cta {
                display: none;
            }

            .hero {
                padding: 5rem 1rem 2.5rem;
            }

            .hero-content {
                padding: 0;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.2rem;
                text-align: center;
            }

            .hero-subtitle {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
                font-size: 1rem;
            }

            .hero-badge {
                margin: 0 auto 1rem;
            }

            .hero-cta {
                justify-content: center;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
            }

            .dashboard-preview {
                max-width: 100%;
                margin: 0 auto;
                padding: 0;
            }

            .dashboard-frame {
                margin: 0 auto;
            }

            .risk-cards {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 4rem 1.5rem;
            }

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

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

            .metrics-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .metric-value {
                font-size: 2.5rem;
            }

            .cta-section {
                padding: 3rem 1.5rem;
            }

            .cta-title {
                font-size: 1.75rem;
            }

            /* Form inputs - iOS zoom prevention */
            .form-input {
                font-size: 16px;
                padding: 0.875rem 1rem;
            }

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

            .footer-brand {
                max-width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
            }

            .logos-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .logo-item {
                padding: 1.25rem 0.75rem;
            }

            .logo-item .logo-icon {
                width: 40px;
                height: 40px;
                padding: 8px;
            }

            .logo-item .logo-icon svg {
                width: 24px;
                height: 24px;
            }

            .logo-item .logo-name {
                font-size: 0.85rem;
            }

            .integrations-header {
                font-size: 1.25rem;
            }

            /* Additional overflow prevention */
            .hero,
            .section,
            .cta-section,
            .pricing-section,
            .features-section,
            .footer {
                width: 100% !important;
                max-width: 100vw !important;
                overflow-x: hidden !important;
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }

            /* Logo and navigation on same line */
            .logo {
                flex-shrink: 0;
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }

            .logo-icon {
                height: 32px !important;
                width: auto !important;
            }

            .logo span {
                font-size: 1rem !important;
            }

            /* Ensure hamburger is visible */
            .mobile-menu-toggle {
                display: flex !important;
                flex-shrink: 0;
                margin-left: auto;
            }

            /* All grids single column on mobile */
            .comparison-grid,
            .ecosystem-grid,
            .why-grid {
                grid-template-columns: 1fr !important;
                gap: 1rem !important;
                padding: 0 !important;
            }

            /* Container width fixes */
            .container,
            .section-content,
            .hero-content {
                width: 100% !important;
                max-width: 100% !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           NAVIGATION GLOW EFFECTS
           ============================================ */

        /* Glowing Nav Button Base */
        .nav-button {
            position: relative;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
        }

        .nav-button::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 9px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(0, 217, 165, 0.3), rgba(0, 245, 255, 0.3));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .nav-button:hover::before {
            opacity: 1;
        }

        .nav-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 0 20px rgba(0, 217, 165, 0.3), 0 0 40px rgba(0, 245, 255, 0.15);
        }

        /* Primary CTA Button - "Why SharpShield" - Blue-Violet-Pink Gradient */
        .nav-button-primary {
            background: var(--color-accent);
            border: none;
            color: white;
            font-weight: 600;
            animation: subtle-pulse 3s ease-in-out infinite;
        }

        .nav-button-primary::before {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(139, 92, 246, 0.6), rgba(236, 72, 153, 0.6));
            opacity: 0.7;
        }

        .nav-button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(59, 130, 246, 0.5), 0 0 50px rgba(139, 92, 246, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
            animation: none;
        }

        @keyframes subtle-pulse {
            0%, 100% {
                box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
            }
            50% {
                box-shadow: 0 0 25px rgba(59, 130, 246, 0.5), 0 0 50px rgba(139, 92, 246, 0.3);
            }
        }

        /* ============================================
           WHY SHARPSHIELD SECTION
           ============================================ */

        .why-section {
            padding: 120px 4rem;
            background: linear-gradient(180deg, rgba(22, 32, 56, 0.4) 0%, rgba(18, 26, 46, 0.5) 50%, rgba(22, 32, 56, 0.4) 100%);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .why-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        .why-section::after {
            content: '';
            position: absolute;
            top: 20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
            pointer-events: none;
        }

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

        .why-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .why-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(59, 130, 246, 0.15);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
            color: #60A5FA;
            margin-bottom: 24px;
        }

        .why-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .why-title span {
            background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .why-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Problem Cards */
        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 80px;
        }

        .problem-card {
            background: rgba(26, 45, 80, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .problem-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .problem-icon {
            width: 48px;
            height: 48px;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .problem-icon svg {
            stroke: var(--color-accent);
        }

        .problem-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 12px;
        }

        .problem-text {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .problem-stat {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 14px;
            color: var(--color-accent);
            font-weight: 600;
        }

        /* Solution Section */
        .solution-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .solution-title {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .solution-title span {
            background: var(--color-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Solution Cards - Vertical Layout */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-bottom: 80px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .solution-card {
            background: rgba(26, 45, 80, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--color-accent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .solution-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .solution-number {
            position: absolute;
            top: 24px;
            right: 24px;
            font-size: 72px;
            font-weight: 800;
            color: rgba(201, 162, 39, 0.15);
            line-height: 1;
            font-family: var(--font-mono);
        }

        .solution-icon {
            width: 64px;
            height: 64px;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 28px;
        }

        .solution-icon svg {
            stroke: var(--color-accent);
        }

        .solution-card-title {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .solution-description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
        }

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

        .solution-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
        }

        .solution-features li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: rgba(201, 162, 39, 0.15);
            color: var(--color-accent);
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
        }

        /* ROI Section */
        .roi-section {
            background: rgba(26, 45, 80, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 60px;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .roi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 900px) {
            .roi-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .roi-content h3 {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .roi-content p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 18px;
            margin-bottom: 32px;
        }

        .roi-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .roi-stat {
            text-align: center;
            padding: 24px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        .roi-stat-value {
            font-size: 42px;
            font-weight: 800;
            background: var(--color-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            font-family: var(--font-mono);
        }

        .roi-stat-label {
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Testimonial Quote */
        .roi-quote {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 20px;
            padding: 40px;
            position: relative;
        }

        .roi-quote::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: rgba(201, 162, 39, 0.3);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .roi-quote-text {
            font-size: 20px;
            color: white;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 24px;
            padding-left: 40px;
        }

        .roi-quote-author {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-left: 40px;
        }

        .roi-quote-avatar {
            width: 48px;
            height: 48px;
            background: var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-primary);
            font-weight: 600;
        }

        .roi-quote-info strong {
            display: block;
            color: white;
            margin-bottom: 4px;
        }

        .roi-quote-info span {
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Final CTA */
        .why-cta {
            text-align: center;
            padding: 60px;
            background: rgba(26, 45, 80, 0.4);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .why-cta h3 {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .why-cta p {
            color: var(--text-secondary);
            font-size: 18px;
            margin-bottom: 32px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-glow-primary {
            padding: 16px 32px;
            background: var(--color-accent);
            color: var(--color-primary-dark);
            font-weight: 600;
            font-size: 16px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-glow-primary:hover {
            transform: translateY(-2px);
            background: var(--color-accent-light);
        }

        .btn-glow-secondary {
            padding: 16px 32px;
            background: transparent;
            color: white;
            font-weight: 600;
            font-size: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-glow-secondary:hover {
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.03);
        }

        @media (max-width: 768px) {
            .why-section {
                padding: 60px 1rem;
            }
            .why-header {
                margin-bottom: 40px;
            }
            .why-title {
                font-size: clamp(28px, 6vw, 36px);
            }
            .why-subtitle {
                font-size: 16px;
            }
            .problems-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-bottom: 50px;
            }
            .problem-card {
                padding: 24px;
            }
            .solution-header {
                margin-bottom: 40px;
            }
            .solution-title {
                font-size: clamp(22px, 5vw, 32px);
            }
            .solutions-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 50px;
            }
            .solution-card {
                padding: 28px;
            }
            .solution-number {
                font-size: 48px;
                top: 16px;
                right: 16px;
            }
            .solution-icon {
                width: 52px;
                height: 52px;
            }
            .solution-card-title {
                font-size: 20px;
            }
            .solution-features li {
                font-size: 14px;
            }
            .roi-section {
                padding: 32px 20px;
                margin-bottom: 50px;
            }
            .roi-content h3 {
                font-size: 24px;
            }
            .roi-content p {
                font-size: 15px;
            }
            .roi-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .roi-stat {
                padding: 16px;
            }
            .roi-stat-value {
                font-size: 28px;
            }
            .roi-stat-label {
                font-size: 12px;
            }
            .roi-quote {
                padding: 24px;
            }
            .roi-quote::before {
                font-size: 50px;
                top: 10px;
                left: 16px;
            }
            .roi-quote-text {
                font-size: 16px;
                padding-left: 24px;
            }
            .roi-quote-author {
                padding-left: 24px;
            }
            .why-cta {
                padding: 32px 20px;
            }
            .why-cta h3 {
                font-size: 24px;
            }
            .why-cta p {
                font-size: 15px;
            }
            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            .cta-buttons .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
                text-align: center;
            }
            .btn-glow-primary,
            .btn-glow-secondary {
                width: 100%;
                justify-content: center;
                padding: 14px 24px;
            }
        }

        @media (max-width: 480px) {
            .why-section {
                padding: 50px 1rem;
            }
            .roi-stats {
                grid-template-columns: 1fr;
            }
            .solution-card {
                padding: 24px;
            }
            .roi-section {
                padding: 24px 16px;
            }
            .logos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
            .logo-item {
                padding: 1rem 0.5rem;
            }
            .logo-item .logo-icon {
                width: 36px;
                height: 36px;
            }
            .logo-item .logo-name {
                font-size: 0.8rem;
            }
            .logo-item .logo-type {
                font-size: 0.65rem;
            }
            .integrations-header {
                font-size: 1.1rem;
            }
            .integrations-subheader {
                font-size: 0.9rem;
            }
        }

        /* =====================================================
           MOBILE NAVIGATION OVERRIDES - MUST BE AT END OF CSS
           These overrides ensure mobile menu is always visible
           ===================================================== */
        @media (max-width: 768px) {
            /* CRITICAL: Force nav-links container visibility when active */
            .nav-links.active {
                display: flex !important;
                visibility: visible !important;
                opacity: 1 !important;
                pointer-events: auto !important;
                position: fixed !important;
                top: 60px !important;
                left: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                z-index: 9999 !important;
                background: #162038 !important;
                flex-direction: column !important;
                padding: 1.5rem !important;
                gap: 0.75rem !important;
                overflow-y: auto !important;
                border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            }

            /* Force all li elements to be visible */
            .nav-links.active li {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                list-style: none !important;
            }

            /* Override nav-button styles for mobile menu */
            .nav-links.active .nav-button,
            .nav-links.active a {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                width: 100% !important;
                padding: 1rem 1.5rem !important;
                font-size: 1.1rem !important;
                font-weight: 500 !important;
                border-radius: 12px !important;
                background: rgba(26, 45, 80, 0.9) !important;
                border: 1px solid rgba(255, 255, 255, 0.15) !important;
                color: #ffffff !important;
                text-align: center !important;
                text-decoration: none !important;
                box-shadow: none !important;
                transform: none !important;
                position: relative !important;
            }

            .nav-links.active .nav-button::before,
            .nav-links.active a::before,
            .nav-links.active .nav-button::after,
            .nav-links.active a::after {
                display: none !important;
                content: none !important;
            }

            .nav-links.active .nav-button:hover,
            .nav-links.active .nav-button:active,
            .nav-links.active a:hover,
            .nav-links.active a:active {
                background: rgba(201, 162, 39, 0.2) !important;
                border-color: rgba(201, 162, 39, 0.3) !important;
                transform: none !important;
                box-shadow: none !important;
            }

            /* Primary button styling */
            .nav-links.active .nav-button-primary {
                background: var(--color-accent) !important;
                border: none !important;
                color: #ffffff !important;
                font-weight: 600 !important;
            }

            /* Mobile CTA divider */
            .nav-links.active .mobile-cta-divider {
                display: block !important;
                height: 1px !important;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
                margin: 0.75rem 0 !important;
                padding: 0 !important;
                border: none !important;
            }

            /* Mobile CTA buttons */
            .nav-links.active .mobile-cta {
                display: block !important;
            }

            .nav-links.active .mobile-signin {
                background: transparent !important;
                border: 1px solid rgba(255, 255, 255, 0.3) !important;
            }

            .nav-links.active .mobile-demo {
                background: var(--color-accent) !important;
                border: none !important;
                font-weight: 600 !important;
            }

            /* Ensure hamburger toggle is always on top and visible */
            .mobile-menu-toggle {
                display: flex !important;
                z-index: 10001 !important;
                position: relative !important;
            }
        }

        /* ============================================
           ECOSYSTEM SECTION
           ============================================ */

        .ecosystem-section {
            position: relative;
            overflow: hidden;
        }

        /* Dynamic Background Zones */
        .eco-zone {
            position: relative;
            padding: 80px 0;
        }

        .eco-zone-header {
            background: linear-gradient(180deg, rgba(22, 32, 56, 0.4) 0%, rgba(26, 45, 80, 0.3) 100%);
        }

        .eco-zone-chain {
            background: linear-gradient(180deg, rgba(26, 45, 80, 0.3) 0%, rgba(26, 45, 80, 0.4) 100%);
        }

        .eco-zone-providers {
            background: linear-gradient(180deg, rgba(26, 45, 80, 0.4) 0%, rgba(26, 45, 80, 0.3) 100%);
        }

        .eco-zone-gap {
            background: linear-gradient(180deg, rgba(26, 45, 80, 0.3) 0%, rgba(26, 45, 80, 0.4) 100%);
        }

        .eco-zone-solution {
            background: linear-gradient(180deg, rgba(26, 45, 80, 0.4) 0%, rgba(26, 45, 80, 0.3) 100%);
        }

        .eco-zone-integration {
            background: linear-gradient(180deg, rgba(26, 45, 80, 0.3) 0%, rgba(22, 32, 56, 0.4) 100%);
        }

        /* Animated Grid Background */
        .eco-zone::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        /* Subtle Orbs for depth */
        .eco-zone-header::after,
        .eco-zone-chain::after,
        .eco-zone-gap::after,
        .eco-zone-solution::after {
            display: none;
        }

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

        .ecosystem-header {
            text-align: center;
            padding-bottom: 40px;
        }

        .ecosystem-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: #60a5fa;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ecosystem-badge svg {
            width: 16px;
            height: 16px;
        }

        .ecosystem-title {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .ecosystem-title .highlight {
            color: var(--color-accent);
        }

        .ecosystem-title .highlight-green {
            color: var(--color-accent);
        }

        .ecosystem-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Value Chain Container */
        .value-chain-wrapper {
            background: rgba(26, 45, 80, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 48px 32px;
            position: relative;
            overflow: hidden;
        }

        .value-chain-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--color-accent);
        }

        .value-chain-title {
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 32px;
        }

        .value-chain {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 0;
            flex-wrap: nowrap;
        }

        .chain-step {
            flex: 1;
            min-width: 220px;
            max-width: 280px;
            position: relative;
            padding: 32px 24px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .chain-step:first-child {
            border-radius: 20px 0 0 20px;
        }

        .chain-step:last-child {
            border-radius: 0 20px 20px 0;
        }

        .chain-step:hover {
            background: rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .chain-step:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            z-index: 2;
        }

        .chain-step:not(:last-child)::before {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid rgba(255, 255, 255, 0.4);
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
            z-index: 3;
        }

        .chain-step:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .chain-step.sharpshield-step {
            background: rgba(26, 45, 80, 0.5);
            border: 2px solid var(--color-accent);
            transform: scale(1.05);
            z-index: 1;
        }

        .chain-step.sharpshield-step:hover {
            transform: scale(1.08);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .chain-step-number {
            position: absolute;
            top: -12px;
            left: 24px;
            background: rgba(26, 45, 80, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 100px;
        }

        .chain-step.sharpshield-step .chain-step-number {
            background: var(--color-accent);
            color: var(--color-primary-dark);
        }

        .chain-step-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(201, 162, 39, 0.1);
            border-radius: 12px;
        }

        .chain-step-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-accent);
        }

        .chain-step.sharpshield-step .chain-step-icon {
            background: rgba(201, 162, 39, 0.2);
        }

        .chain-step.sharpshield-step .chain-step-icon svg {
            stroke: var(--color-accent);
        }

        .chain-step-title {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .chain-step-question {
            font-size: 14px;
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 12px;
        }

        .chain-step.sharpshield-step .chain-step-question {
            color: var(--color-accent);
        }

        .chain-step-providers {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
        }

        .provider-tag {
            font-size: 11px;
            padding: 4px 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            color: rgba(255, 255, 255, 0.6);
        }

        .chain-step.sharpshield-step .provider-tag {
            background: rgba(201, 162, 39, 0.15);
            border-color: rgba(201, 162, 39, 0.3);
            color: var(--color-accent);
            font-weight: 600;
        }

        .comparison-section {
            margin-bottom: 80px;
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .comparison-header h3 {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }

        .comparison-header p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 18px;
        }

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

        .comparison-card {
            background: rgba(26, 45, 80, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .comparison-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--color-accent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .comparison-card:hover {
            transform: translateY(-4px);
            border-color: rgba(201, 162, 39, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

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

        .comparison-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .comparison-card-logo {
            width: 48px;
            height: 48px;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .comparison-card-logo svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-accent);
        }

        .comparison-card-info h4 {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
        }

        .comparison-card-info span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .comparison-card-content p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .comparison-card-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .feature-tag-eco {
            font-size: 12px;
            padding: 6px 12px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.25);
            border-radius: 100px;
            color: var(--color-accent);
        }

        .missing-piece {
            background: rgba(26, 45, 80, 0.25);
            border: 1px solid rgba(212, 165, 55, 0.2);
            border-radius: 24px;
            padding: 60px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .missing-piece::before {
            display: none;
        }

        .missing-piece-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .missing-piece-content h3 {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .missing-piece-content h3 span {
            color: #D4A537;
        }

        .missing-piece-content > p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 32px;
        }

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

        .gap-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .gap-icon {
            width: 32px;
            height: 32px;
            background: rgba(212, 165, 55, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .gap-icon svg {
            width: 16px;
            height: 16px;
            stroke: #D4A537;
        }

        .gap-text strong {
            display: block;
            color: #E5B84A;
            font-size: 15px;
            margin-bottom: 4px;
        }

        .gap-text span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        .equation-visual {
            background: rgba(26, 45, 80, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
        }

        .equation-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 24px;
        }

        .equation {
            font-size: 20px;
            color: white;
            margin-bottom: 32px;
            font-family: 'SF Mono', 'Fira Code', monospace;
        }

        .equation .profit {
            color: white;
            font-weight: 700;
        }

        .equation .revenue {
            color: white;
        }

        .equation .loss {
            color: #D4A537;
        }

        .equation-breakdown {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .equation-part {
            text-align: center;
        }

        .equation-part-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 8px;
        }

        .equation-part-providers {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .equation-part-providers span {
            font-size: 13px;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            color: rgba(255, 255, 255, 0.7);
        }

        .equation-part.loss-part .equation-part-providers span {
            background: rgba(212, 165, 55, 0.15);
            color: var(--color-accent);
            font-weight: 600;
        }

        .eco-solution-section {
            background: rgba(26, 45, 80, 0.4);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 24px;
            padding: 60px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .eco-solution-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--color-accent);
        }

        .eco-solution-section::after {
            display: none;
        }

        .eco-solution-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .eco-solution-header h3 {
            font-size: 36px;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
        }

        .eco-solution-header h3 span {
            color: var(--color-accent);
        }

        .eco-solution-header p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }

        .eco-solution-features {
            display: grid;
            grid-template-columns: repeat(3, minmax(250px, 350px));
            gap: 24px;
            margin-bottom: 48px;
            justify-content: center;
        }

        .eco-solution-feature {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: all 0.3s ease;
        }

        .eco-solution-feature:hover {
            background: rgba(0, 0, 0, 0.4);
            transform: translateX(8px);
        }

        .eco-solution-feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .eco-solution-feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-accent);
        }

        .eco-solution-feature-text h4 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 6px;
        }

        .eco-solution-feature-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }

        .ecosystem-quote {
            text-align: center;
            padding: 48px;
            background: rgba(26, 45, 80, 0.3);
            border-radius: 20px;
            position: relative;
        }

        .ecosystem-quote::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 120px;
            color: rgba(201, 162, 39, 0.15);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .ecosystem-quote p {
            font-size: 24px;
            font-weight: 600;
            color: white;
            line-height: 1.5;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .ecosystem-quote p span {
            color: var(--color-accent);
        }

        .eco-integration-section {
            text-align: center;
        }

        .eco-integration-header {
            margin-bottom: 40px;
        }

        .eco-integration-header h3 {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }

        .eco-integration-header p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 16px;
        }

        .eco-integration-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
            padding: 40px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            margin-bottom: 40px;
        }

        .eco-integration-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            padding: 28px 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        .eco-integration-logo:hover {
            opacity: 1;
            border-color: rgba(59, 130, 246, 0.3);
            background: rgba(59, 130, 246, 0.05);
            transform: translateY(-4px);
        }

        .eco-integration-logo-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
            border-radius: 14px;
        }

        .eco-integration-logo-icon svg {
            width: 28px;
            height: 28px;
            stroke: #60a5fa;
        }

        .eco-integration-logo-name {
            font-size: 16px;
            font-weight: 600;
            color: white;
        }

        .eco-integration-logo-type {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        .ecosystem-cta {
            text-align: center;
            padding: 48px;
            background: rgba(26, 45, 80, 0.4);
            border-radius: 20px;
            border: 1px solid rgba(201, 162, 39, 0.25);
        }

        .ecosystem-cta h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--color-accent);
            margin-bottom: 16px;
        }

        .ecosystem-cta p {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 24px;
        }

        .ecosystem-cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-ecosystem-primary {
            padding: 16px 32px;
            background: var(--color-accent);
            color: var(--color-primary-dark);
            font-weight: 600;
            font-size: 16px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-ecosystem-primary:hover {
            transform: translateY(-2px);
            background: var(--color-accent-light);
        }

        .btn-ecosystem-primary svg {
            width: 18px;
            height: 18px;
        }

        .btn-ecosystem-secondary {
            padding: 16px 32px;
            background: transparent;
            color: white;
            font-weight: 600;
            font-size: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-ecosystem-secondary:hover {
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.03);
        }

        @media (max-width: 900px) {
            .missing-piece-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 1024px) {
            .eco-solution-features {
                grid-template-columns: repeat(2, minmax(220px, 320px));
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            /* Ecosystem Zones */
            .eco-zone {
                padding: 48px 0;
            }
            .ecosystem-container {
                padding: 0 16px;
            }
            .ecosystem-header {
                padding-bottom: 24px;
            }
            .ecosystem-badge {
                padding: 8px 16px;
                font-size: 11px;
            }
            .ecosystem-title {
                font-size: 26px;
                line-height: 1.2;
            }
            .ecosystem-subtitle {
                font-size: 15px;
                line-height: 1.6;
            }
            /* Value Chain Wrapper Mobile */
            .value-chain-wrapper {
                padding: 24px 16px;
                border-radius: 20px;
            }
            .value-chain-title {
                font-size: 12px;
                margin-bottom: 20px;
            }
            .value-chain {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            .chain-step {
                max-width: 100%;
                width: 100%;
                border-radius: 16px !important;
                padding: 20px 16px;
            }
            .chain-step:not(:last-child)::after,
            .chain-step:not(:last-child)::before {
                display: none;
            }
            .chain-step.sharpshield-step {
                transform: scale(1);
            }
            .chain-step-number {
                top: -10px;
                left: 16px;
                font-size: 10px;
                padding: 3px 10px;
            }
            .chain-step-icon {
                width: 36px;
                height: 36px;
            }
            .chain-step-icon svg {
                width: 18px;
                height: 18px;
            }
            .chain-step-title {
                font-size: 15px;
            }
            .chain-step-question {
                font-size: 12px;
            }
            .comparison-section {
                margin-bottom: 0;
            }
            .comparison-header {
                margin-bottom: 24px;
            }
            .comparison-header h3 {
                font-size: 22px;
            }
            .comparison-header p {
                font-size: 14px;
            }
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .comparison-card {
                padding: 20px;
            }
            .comparison-card-logo {
                width: 36px;
                height: 36px;
            }
            .comparison-card-logo svg {
                width: 18px;
                height: 18px;
            }
            .comparison-card-info h4 {
                font-size: 15px;
            }
            .comparison-card-content p {
                font-size: 13px;
            }
            .missing-piece {
                padding: 20px;
                margin-bottom: 0;
            }
            .missing-piece-content h3 {
                font-size: 20px;
            }
            .missing-piece-content > p {
                font-size: 14px;
                margin-bottom: 20px;
            }
            .gap-list li {
                padding: 10px 0;
            }
            .gap-icon {
                width: 26px;
                height: 26px;
            }
            .gap-text strong {
                font-size: 13px;
            }
            .gap-text span {
                font-size: 12px;
            }
            .equation-visual {
                padding: 20px 14px;
                margin-top: 24px;
            }
            .equation-title {
                font-size: 11px;
                margin-bottom: 14px;
            }
            .equation {
                font-size: 13px;
                margin-bottom: 20px;
                line-height: 1.6;
            }
            .equation-breakdown {
                flex-direction: column;
                gap: 20px;
            }
            .equation-part-label {
                font-size: 10px;
            }
            .equation-part-providers span {
                font-size: 11px;
                padding: 3px 8px;
            }
            .eco-solution-section {
                padding: 20px;
                margin-bottom: 0;
            }
            .eco-solution-header {
                margin-bottom: 24px;
            }
            .eco-solution-header h3 {
                font-size: 22px;
            }
            .eco-solution-header p {
                font-size: 14px;
            }
            .eco-solution-features {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-bottom: 24px;
            }
            .eco-solution-feature {
                padding: 16px;
            }
            .eco-solution-feature:hover {
                transform: none;
            }
            .eco-solution-feature-icon {
                width: 36px;
                height: 36px;
            }
            .eco-solution-feature-icon svg {
                width: 18px;
                height: 18px;
            }
            .eco-solution-feature-text h4 {
                font-size: 14px;
            }
            .eco-solution-feature-text p {
                font-size: 13px;
            }
            .ecosystem-quote {
                padding: 32px 20px;
            }
            .ecosystem-quote::before {
                font-size: 80px;
                top: 10px;
            }
            .ecosystem-quote p {
                font-size: 16px;
                line-height: 1.6;
            }
            .eco-integration-header {
                margin-bottom: 24px;
            }
            .eco-integration-header h3 {
                font-size: 22px;
            }
            .eco-integration-header p {
                font-size: 14px;
            }
            .eco-integration-logos {
                gap: 12px;
                padding: 20px 16px;
                margin-bottom: 24px;
            }
            .eco-integration-logo {
                padding: 24px 20px;
                flex: 1 1 calc(50% - 6px);
                min-width: 140px;
                opacity: 0.85;
            }
            .eco-integration-logo:hover {
                transform: none;
            }
            .eco-integration-logo-icon {
                width: 52px;
                height: 52px;
            }
            .eco-integration-logo-icon svg {
                width: 26px;
                height: 26px;
            }
            .eco-integration-logo-name {
                font-size: 17px;
                font-weight: 700;
            }
            .eco-integration-logo-type {
                font-size: 13px;
                color: rgba(255, 255, 255, 0.6);
            }
            .ecosystem-cta {
                padding: 24px 20px;
            }
            .ecosystem-cta h4 {
                font-size: 20px;
            }
            .ecosystem-cta p {
                font-size: 14px;
            }
            .ecosystem-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn-ecosystem-primary,
            .btn-ecosystem-secondary {
                width: 100%;
                max-width: 280px;
                justify-content: center;
                padding: 14px 24px;
                font-size: 15px;
            }
            /* Footer Mobile */
            footer {
                padding: 2.5rem 1.5rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                text-align: center;
            }
            .footer-brand {
                max-width: 100%;
                margin: 0 auto;
            }
            .footer-col {
                text-align: center;
            }
            .footer-col h4 {
                margin-bottom: 1rem;
            }
            .footer-links {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem 1.5rem;
            }
            .footer-links li {
                margin-bottom: 0;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
                margin-top: 2.5rem;
            }
            .footer-badges {
                justify-content: center;
                gap: 0.5rem;
            }
            .footer-badge {
                font-size: 0.7rem;
                padding: 0.4rem 0.75rem;
            }
            .footer-links a {
                padding: 0.5rem 0;
                display: inline-block;
                min-height: 44px;
                line-height: 24px;
            }
        }

        @media (max-width: 480px) {
            .ecosystem-section {
                padding: 48px 0;
            }
            .ecosystem-title {
                font-size: 24px;
            }
            .ecosystem-subtitle {
                font-size: 15px;
            }
            .chain-step {
                padding: 20px 16px;
            }
            .comparison-card {
                padding: 20px;
            }
            .missing-piece {
                padding: 20px;
            }
            .missing-piece-content h3 {
                font-size: 20px;
            }
            .eco-solution-section {
                padding: 20px;
            }
            .eco-solution-header h3 {
                font-size: 20px;
            }
            .eco-integration-logos {
                flex-direction: column;
                gap: 10px;
            }
            .eco-integration-logo {
                width: 100%;
                padding: 20px 24px;
            }
            .eco-integration-logo-icon {
                width: 48px;
                height: 48px;
            }
            .eco-integration-logo-icon svg {
                width: 24px;
                height: 24px;
            }
            .eco-integration-logo-name {
                font-size: 16px;
                font-weight: 700;
            }
            .eco-integration-logo-type {
                font-size: 12px;
            }
            .ecosystem-quote p {
                font-size: 15px;
            }
        }

        /* =====================================================
           FINAL MOBILE OVERRIDE - CRITICAL FIX
           This must be at the very end of CSS
           ===================================================== */
        @media (max-width: 768px) {
            /* Force nav to stay within viewport */
            nav {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                width: 100vw !important;
                max-width: 100vw !important;
                padding: 0.75rem 1rem !important;
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
                box-sizing: border-box !important;
            }

            /* Hamburger always visible on right */
            .mobile-menu-toggle {
                display: flex !important;
                order: 2;
                flex-shrink: 0 !important;
            }

            /* Hide desktop nav-cta on mobile */
            .nav-cta {
                display: none !important;
            }

            /* Pricing fixes */
            .pricing-section,
            #pricing {
                width: 100% !important;
                max-width: 100vw !important;
                overflow: hidden !important;
                padding: 3rem 0 !important;
            }

            .pricing-grid {
                display: flex !important;
                flex-direction: column !important;
                gap: 1rem !important;
                width: calc(100% - 2rem) !important;
                max-width: calc(100vw - 2rem) !important;
                margin: 0 auto !important;
                padding: 0 !important;
            }

            .pricing-card {
                width: 100% !important;
                max-width: 100% !important;
                transform: none !important;
                margin: 0 !important;
            }

            .pricing-card.featured {
                transform: none !important;
            }

            /* Prevent any element from causing overflow */
            img, svg, video, iframe, embed, object {
                max-width: 100% !important;
            }

            /* Logo specific - maintain aspect ratio */
            .logo {
                display: flex !important;
                align-items: center !important;
                gap: 0.5rem !important;
            }

            .logo .logo-icon {
                height: 32px !important;
                width: auto !important;
                max-width: none !important;
            }

            .logo span {
                font-size: 1rem !important;
                white-space: nowrap !important;
            }
        }

        /* Cookie Consent Banner */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.98);
            /* backdrop-filter removed for WebView compatibility */
            border-top: 1px solid var(--border-color);
            padding: 1.5rem 2rem;
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .cookie-consent.show {
            transform: translateY(0);
        }
        .cookie-consent-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .cookie-consent-text {
            flex: 1;
            min-width: 300px;
        }
        .cookie-consent-text h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 0.5rem;
        }
        .cookie-consent-text p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }
        .cookie-consent-text a {
            color: var(--color-accent);
            text-decoration: none;
        }
        .cookie-consent-text a:hover {
            text-decoration: underline;
        }
        .cookie-consent-buttons {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .cookie-btn {
            padding: 0.625rem 1.25rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
        }
        .cookie-btn-settings {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
        }
        .cookie-btn-settings:hover {
            background: var(--bg-tertiary);
            color: var(--text-color);
        }
        .cookie-btn-reject {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
        }
        .cookie-btn-reject:hover {
            background: rgba(239, 68, 68, 0.1);
            border-color: rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }
        .cookie-btn-accept {
            background: var(--color-accent);
            color: var(--color-primary-dark);
        }
        .cookie-btn-accept:hover {
            background: var(--color-accent-light);
        }

        /* Cookie Settings Modal */
        .cookie-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            /* backdrop-filter removed for WebView compatibility */
            z-index: 10001;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .cookie-modal-overlay.show {
            display: flex;
        }
        .cookie-modal {
            background: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            max-width: 500px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
        }
        .cookie-modal-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .cookie-modal-header h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-color);
            margin: 0;
        }
        .cookie-modal-body {
            padding: 1.5rem;
        }
        .cookie-category {
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .cookie-category:last-child {
            border-bottom: none;
        }
        .cookie-category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        .cookie-category-name {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--text-color);
        }
        .cookie-toggle {
            position: relative;
            width: 44px;
            height: 24px;
        }
        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .cookie-toggle-slider {
            position: absolute;
            cursor: pointer;
            inset: 0;
            background: var(--bg-tertiary);
            border-radius: 24px;
            transition: 0.3s;
        }
        .cookie-toggle-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background: white;
            border-radius: 50%;
            transition: 0.3s;
        }
        .cookie-toggle input:checked + .cookie-toggle-slider {
            background: var(--color-accent);
        }
        .cookie-toggle input:checked + .cookie-toggle-slider:before {
            transform: translateX(20px);
        }
        .cookie-toggle input:disabled + .cookie-toggle-slider {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .cookie-category-desc {
            font-size: 0.8125rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .cookie-modal-footer {
            padding: 1.5rem;
            border-top: 1px solid var(--border-color);
            display: flex;
            gap: 0.75rem;
            justify-content: flex-end;
        }

        @media (max-width: 768px) {
            .cookie-consent {
                padding: 1rem 1.25rem;
            }
            .cookie-consent-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            .cookie-consent-text {
                min-width: 100%;
            }
            .cookie-consent-buttons {
                width: 100%;
                justify-content: center;
            }
            .cookie-btn {
                flex: 1;
                min-width: 120px;
                padding: 12px 16px;
            }
        }
