/* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 20px 0;
        }

        [data-theme="light"] .navbar {
            background: rgba(255, 255, 255, 0.85);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .navbar.scrolled {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding: 14px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        [data-theme="light"] .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .navbar-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .navbar-logo:hover {
            transform: translateY(-1px);
            opacity: 0.8;
        }

        .navbar-logo img {
            height: 65px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .navbar-menu {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .navbar-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar-link:hover {
            color: rgba(255, 255, 255, 1);
        }

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

        .navbar-link:hover::after {
            width: 100%;
        }
        
        [data-theme="light"] .navbar-link {
            color: rgba(26, 26, 46, 0.7);
        }
        
        [data-theme="light"] .navbar-link:hover {
            color: rgba(26, 26, 46, 1);
        }

        .navbar-cta {
            padding: 10px 20px;
            background: var(--accent-primary);
            border: 1px solid var(--accent-primary);
            color: #FFFFFF;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .navbar-cta:hover {
            background: var(--accent-secondary);
            border-color: var(--accent-secondary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(123, 44, 191, 0.4);
        }

        [data-theme="light"] .navbar-cta {
            color: #FFFFFF;
        }

        /* Theme Toggle Button */
        .theme-toggle {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: rotate(180deg);
        }
        
        [data-theme="light"] .theme-toggle {
            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: rgba(26, 26, 46, 0.8);
        }
        
        [data-theme="light"] .theme-toggle:hover {
            background: rgba(0, 0, 0, 0.08);
            border-color: rgba(0, 0, 0, 0.15);
        }

        .menu-toggle,
        .navbar-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: transparent;
            border: none;
        }

        .menu-toggle span,
        .navbar-toggle span {
            width: 24px;
            height: 2px;
            background: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }
        
        [data-theme="light"] .menu-toggle span,
        [data-theme="light"] .navbar-toggle span {
            background: rgba(26, 26, 46, 0.8);
        }

        /* Mobile Menu */
        @media (max-width: 768px) {
            .navbar-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 80px 24px 24px;
                gap: 24px;
                border-left: 1px solid rgba(255, 255, 255, 0.1);
                transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            }
            
            [data-theme="light"] .navbar-menu {
                background: rgba(255, 255, 255, 0.98);
                border-left: 1px solid rgba(0, 0, 0, 0.1);
            }

            .navbar-menu.open {
                right: 0;
            }

            .menu-toggle,
            .navbar-toggle {
                display: flex;
            }

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

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

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

            .navbar-link {
                font-size: 18px;
            }
        }

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

        /* Smooth theme transition for all elements */
        *, *::before, *::after {
            transition: background-color 0.3s ease, 
                        color 0.3s ease, 
                        border-color 0.3s ease,
                        box-shadow 0.3s ease;
        }

        /* Preserve button hover transitions */
        .btn-primary, .btn-secondary, .card, .navbar-link {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        :root {
            /* Dark Theme (Default) */
            --bg-primary: #0A0A0A;
            --bg-surface: #1A1A2E;
            --bg-elevated: #16213E;
            --accent-primary: #7B2CBF;
            --accent-secondary: #9D4EDD;
            --accent-glow: #C77DFF;
            --text-primary: #FFFFFF;
            --text-secondary: #B8B8D1;
            --text-tertiary: #7C7C9A;
            --border-default: #2E2E4E;
            
            /* Typography */
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            
            /* Spacing */
            --container-max-width: 1200px;
            --section-padding: 120px;
        }

        /* Light Theme */
        [data-theme="light"] {
            --bg-primary: #F8F9FA;
            --bg-surface: #FFFFFF;
            --bg-elevated: #F3F4F6;
            --accent-primary: #7B2CBF;
            --accent-secondary: #9D4EDD;
            --accent-glow: #C77DFF;
            --text-primary: #1A1A2E;
            --text-secondary: #4A4A6A;
            --text-tertiary: #7C7C9A;
            --border-default: #E5E7EB;
        }

        body {
            font-family: var(--font-family);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--bg-primary) 0%, #1A0F2E 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(123, 44, 191, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(157, 78, 221, 0.12) 0%, transparent 50%);
            animation: float-pattern 8s ease-in-out infinite;
        }

        @keyframes float-pattern {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-20px) translateX(10px); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        /* Kraken placement + sizing */
        .hero-kraken-bg {
            position: absolute !important;
            left: 0 !important;
            bottom: 0 !important;
            width: 85vw !important;
            max-width: 1200px !important;
            height: auto !important;
            transform: translate(-35%, 25%) !important;
            z-index: 1 !important;
            pointer-events: none;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transform-style: preserve-3d;
        }

        /* Dark theme - white kraken */
        .hero-kraken-white {
            opacity: 1;
        }
        
        .hero-kraken-black {
            display: none;
        }

        /* Light theme - black kraken */
        [data-theme="light"] .hero-kraken-white {
            display: none;
        }
        
        [data-theme="light"] .hero-kraken-black {
            display: block;
            opacity: 0.15;
        }

        /* Desktop: bigger and more off-screen */
        @media (min-width: 768px) {
            .hero-kraken-bg {
                width: 95vw !important;
                max-width: 1500px !important;
                transform: translate(-40%, 30%) !important;
            }
        }
        
        /* Large screens: cap the size */
        @media (min-width: 1440px) {
            .hero-kraken-bg {
                width: 1400px !important;
            }
        }

        .hero h1 {
            font-size: clamp(56px, 8vw, 96px);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 32px;
        }

        .hero p {
            font-size: clamp(18px, 2.2vw, 24px);
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .cta-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            color: #FFFFFF;
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 4px 16px rgba(123, 44, 191, 0.35),
                0 0 32px rgba(157, 78, 221, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 8px 24px rgba(123, 44, 191, 0.5),
                0 0 48px rgba(199, 125, 255, 0.3);
        }

        [data-theme="light"] .btn-primary {
            color: #FFFFFF;
        }

        .btn-secondary {
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 500;
            color: #FFFFFF;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            color: var(--accent-primary);
            border-color: var(--accent-primary);
        }

        [data-theme="light"] .btn-secondary {
            border: 2px solid #FFFFFF;
        }

        [data-theme="light"] .btn-secondary:hover {
            border-color: var(--accent-primary);
        }


        /* Section */
        .section {
            padding: var(--section-padding) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header h1,
        .section-header h2 {
            font-size: clamp(28px, 3.5vw, 38px);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: 19px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Grid */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        /* Card */
        .card {
            padding: 40px;
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            border-radius: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-primary);
            box-shadow: 
                0 0 0 1px var(--accent-primary),
                0 8px 32px rgba(123, 44, 191, 0.15);
        }

        /* Pricing Numbers */
        .price-number {
            color: #FFFFFF;
        }

        [data-theme="light"] .price-number {
            color: var(--accent-primary);
        }

        .card-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 24px;
            color: var(--accent-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(123, 44, 191, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(123, 44, 191, 0.2);
        }

        .card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .card p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
        }

        /* Use Cases */
        .use-case {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            margin-bottom: 80px;
        }

        .use-case:nth-child(even) {
            direction: rtl;
        }

        .use-case:nth-child(even) > * {
            direction: ltr;
        }

        .use-case-content h3 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .use-case-content p {
            color: var(--text-secondary);
            font-size: 18px;
            margin-bottom: 24px;
        }

        .use-case-result {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(123, 44, 191, 0.1);
            border: 1px solid var(--accent-primary);
            border-radius: 8px;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 16px;
        }

        [data-theme="light"] .use-case-result {
            color: var(--accent-primary);
        }

        .use-case-visual {
            background: var(--bg-surface);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        [data-theme="light"] .use-case-visual {
            background: #7c7c9a;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .use-case-visual img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 12px;
        }

        /* Timeline */
        .timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 48px;
            margin-top: 64px;
        }

        .timeline-step {
            text-align: center;
        }

        .timeline-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--accent-primary);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .timeline-step h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .timeline-step p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        /* Testimonials */
        .testimonial {
            padding: 40px;
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            border-radius: 16px;
        }

        .testimonial-quote {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--text-primary);
        }

        .testimonial-role {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* How It Works Cards */
        .how-it-works-card {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(30, 20, 50, 0.8) 100%);
            border: 1px solid rgba(157, 78, 221, 0.2);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .how-it-works-card:hover {
            transform: translateY(-8px);
            border-color: rgba(157, 78, 221, 0.5);
            box-shadow: 0 12px 40px rgba(123, 44, 191, 0.2);
        }

        .how-it-works-card-image {
            background: linear-gradient(135deg, rgba(123, 44, 191, 0.1) 0%, rgba(157, 78, 221, 0.05) 100%);
            border-radius: 12px;
            padding: 32px 24px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 280px;
        }

        /* Light Theme Overrides for How It Works Cards */
        [data-theme="light"] .how-it-works-card {
            background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(243, 244, 246, 1) 100%);
            border: 1px solid rgba(123, 44, 191, 0.15);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        [data-theme="light"] .how-it-works-card:hover {
            border-color: rgba(123, 44, 191, 0.4);
            box-shadow: 0 12px 40px rgba(123, 44, 191, 0.15);
        }

        [data-theme="light"] .how-it-works-card-image {
            background: linear-gradient(135deg, rgba(123, 44, 191, 0.08) 0%, rgba(157, 78, 221, 0.04) 100%);
        }

        /* Final CTA */
        .final-cta {
            padding: 120px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--bg-primary) 0%, #1A0F2E 100%);
        }

        .final-cta h2 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.015em;
        }

        .final-cta p {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .final-cta .cta-secondary {
            margin-top: 20px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .final-cta .cta-secondary a {
            color: var(--accent-primary);
            text-decoration: none;
        }

        .final-cta .cta-secondary a:hover {
            text-decoration: underline;
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto 32px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: var(--font-family);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        [data-theme="light"] .contact-form input::placeholder,
        [data-theme="light"] .contact-form textarea::placeholder {
            color: rgba(0, 0, 0, 0.4);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent-primary);
            background: rgba(255, 255, 255, 0.08);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form button {
            width: 100%;
            margin-top: 8px;
        }

        [data-theme="light"] .contact-form input,
        [data-theme="light"] .contact-form textarea {
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        [data-theme="light"] .contact-form input:focus,
        [data-theme="light"] .contact-form textarea:focus {
            background: rgba(0, 0, 0, 0.05);
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-primary);
            padding: var(--section-padding) 0;
        }


        .section-description {
            text-align: center;
            color: var(--text-secondary);
            font-size: 19px;
            margin-bottom: 64px;
        }

        .faq-grid {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            border-radius: 12px;
            padding: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent-primary);
            transform: translateY(-2px);
        }

        .faq-item[open] {
            border-color: var(--accent-primary);
            box-shadow: 0 4px 20px rgba(123, 44, 191, 0.1);
        }

        .faq-item summary {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 24px;
            color: var(--accent-primary);
            transition: transform 0.3s ease;
        }

        .faq-item[open] summary::after {
            content: '−';
        }

        .faq-item p {
            margin-top: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* Who We Are Section */
        .who-we-are-section {
            padding: 120px 0;
            background: var(--bg-surface);
        }

        .who-we-are-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .who-we-are-content h2 {
            font-size: clamp(42px, 5.5vw, 56px);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .who-we-are-intro {
            font-size: 22px;
            color: var(--text-primary);
            font-weight: 500;
            margin-bottom: 24px;
            line-height: 1.5;
        }

        .who-we-are-description {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 48px;
        }

        .who-we-are-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

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

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #7B2CBF 0%, #9D4EDD 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-label {
            font-size: 15px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .who-we-are-content {
            position: sticky;
            top: 120px;
        }

        .who-we-are-values {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .value-card {
            background: rgba(26, 26, 46, 0.4);
            border: 1px solid rgba(123, 44, 191, 0.2);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            border-color: rgba(123, 44, 191, 0.5);
            transform: translateX(8px);
            background: rgba(26, 26, 46, 0.6);
        }

        .value-icon {
            width: 48px;
            height: 48px;
            background: rgba(123, 44, 191, 0.1);
            border: 1px solid rgba(123, 44, 191, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-primary);
            margin-bottom: 20px;
        }

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

        .value-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .value-card p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /* Light theme adjustments */
        [data-theme="light"] .value-card {
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(123, 44, 191, 0.15);
        }

        [data-theme="light"] .value-card:hover {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(123, 44, 191, 0.3);
        }

        [data-theme="light"] .value-icon {
            filter: grayscale(100%) brightness(0.8);
        }

        @media (max-width: 968px) {
            .who-we-are-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .who-we-are-content {
                position: static;
            }

            .who-we-are-stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 640px) {
            .who-we-are-stats {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .stat-item {
                text-align: center;
            }
        }

        /* Services Section */
        .services-section {
            padding: 120px 0;
            background: var(--bg-primary);
        }

        .services-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .services-header h2 {
            font-size: clamp(42px, 5.5vw, 56px);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

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

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

        .service-card {
            position: relative;
            background: rgba(26, 26, 46, 0.4);
            border: 1px solid rgba(123, 44, 191, 0.15);
            border-radius: 16px;
            padding: 40px;
            transition: all 0.3s ease;
        }

        [data-theme="light"] .service-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(123, 44, 191, 0.1);
        }

        .service-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(123, 44, 191, 0.15);
        }

        .service-number {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-primary);
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .service-icon-badge {
            position: absolute;
            top: 32px;
            right: 32px;
            width: 48px;
            height: 48px;
            background: rgba(123, 44, 191, 0.1);
            border: 1px solid rgba(123, 44, 191, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-primary);
        }

        .service-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .service-card > p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 24px;
        }

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

        .service-features li {
            font-size: 14px;
            color: var(--text-secondary);
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
        }

        .service-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: var(--accent-primary);
            border-radius: 50%;
        }

        /* Our Approach Section */
        .approach-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--bg-primary) 0%, #1A0F2E 100%);
        }

        .approach-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .approach-header h2 {
            font-size: clamp(42px, 5.5vw, 56px);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .approach-subtitle {
            font-size: 19px;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 16px auto 0;
            line-height: 1.6;
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .approach-card {
            background: rgba(26, 26, 46, 0.4);
            border: 1px solid rgba(123, 44, 191, 0.15);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        [data-theme="light"] .approach-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(123, 44, 191, 0.1);
        }

        .approach-card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(123, 44, 191, 0.15);
        }

        .approach-number {
            display: inline-block;
            padding: 8px 20px;
            background: var(--accent-primary);
            color: #FFFFFF;
            font-size: 14px;
            font-weight: 700;
            border-radius: 20px;
            margin-bottom: 24px;
        }

        .approach-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-primary);
            margin-bottom: 12px;
        }

        .approach-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive for Services & Approach */
        @media (max-width: 1024px) {
            .approach-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .services-section,
            .approach-section {
                padding: 80px 0;
            }

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

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

            .service-icon-badge {
                top: 24px;
                right: 24px;
                width: 40px;
                height: 40px;
            }

            .service-icon-badge svg {
                width: 20px;
                height: 20px;
            }
        }

        /* Consultation Booking Section */
        .consultation-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--bg-primary) 0%, #1A0F2E 100%);
        }

        .consultation-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
            align-items: start;
        }

        .consultation-left {
            position: sticky;
            top: 120px;
        }

        .consultation-title {
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        [data-theme="light"] .gradient-text {
            background: linear-gradient(135deg, #6B1FA7 0%, #7B2CBF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .consultation-subtitle {
            font-size: 19px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .consultation-benefits {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .benefit-item {
            display: flex;
            align-items: start;
            gap: 16px;
        }

        .benefit-icon {
            width: 10px;
            height: 10px;
            background: var(--accent-primary);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 5px;
            box-shadow: 0 0 16px rgba(123, 44, 191, 0.5);
        }

        .benefit-item h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 2px;
            color: var(--text-primary);
        }

        .benefit-item p {
            font-size: 16px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        .consultation-form-container {
            background: rgba(26, 26, 46, 0.6);
            border: 1px solid rgba(123, 44, 191, 0.2);
            border-radius: 16px;
            padding: 28px;
            backdrop-filter: blur(20px);
        }

        [data-theme="light"] .consultation-form-container {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(123, 44, 191, 0.15);
        }

        .form-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .consultation-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .form-group label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .required {
            color: var(--accent-primary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 14px;
            background: rgba(10, 10, 10, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: var(--font-family);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        /* Custom Select Styling */
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            padding-right: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: var(--font-family);
            font-size: 14px;
            transition: all 0.3s ease;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            background: rgba(10, 10, 10, 0.5) url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237B2CBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
            background-size: auto, 12px;
        }

        .form-group select:hover {
            background-color: rgba(123, 44, 191, 0.05);
            border-color: rgba(123, 44, 191, 0.3);
        }

        .form-group select option {
            background: #1A1A2E;
            color: var(--text-primary);
            padding: 12px 16px;
            font-size: 15px;
        }

        [data-theme="light"] .form-group input,
        [data-theme="light"] .form-group textarea {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        [data-theme="light"] .form-group select {
            background: rgba(255, 255, 255, 0.8) url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237B2CBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
            background-size: auto, 12px;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        [data-theme="light"] .form-group select:hover {
            background-color: rgba(123, 44, 191, 0.03);
        }
        
        /* Select placeholder color */
        .form-group select:invalid {
            color: var(--text-tertiary);
        }

        [data-theme="light"] .form-group select option {
            background: #FFFFFF;
            color: var(--text-primary);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.1);
        }

        .form-group input::placeholder,
        .form-group select::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-tertiary);
            opacity: 0.6;
        }

        .form-group small {
            font-size: 11px;
            color: var(--text-tertiary);
            margin-top: -2px;
        }

        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0;
            background: transparent;
            border: none;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        [data-theme="light"] .radio-option {
            background: transparent;
            border: none;
        }

        .radio-option:hover {
            background: transparent;
        }

        .radio-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: var(--accent-primary);
            cursor: pointer;
            flex-shrink: 0;
        }

        .radio-option input[type="radio"]:checked + span {
            color: var(--text-primary);
            font-weight: 500;
        }

        .radio-option span {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        .consultation-submit-btn {
            width: 100%;
            padding: 13px 24px;
            background: var(--accent-primary);
            border: none;
            border-radius: 8px;
            color: #FFFFFF;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 16px rgba(123, 44, 191, 0.35);
            margin-top: 8px;
        }

        .consultation-submit-btn:hover {
            background: var(--accent-secondary);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(123, 44, 191, 0.5);
        }

        .consultation-submit-btn:active {
            transform: translateY(0);
        }

        .consultation-submit-btn .arrow {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .consultation-submit-btn:hover .arrow {
            transform: translateX(4px);
        }

        .form-status {
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            margin-top: 8px;
        }

        .form-footer {
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 8px;
        }

        .form-footer a {
            color: var(--accent-primary);
            text-decoration: none;
        }

        .form-footer a:hover {
            text-decoration: underline;
        }

        /* Responsive for Consultation Section */
        @media (max-width: 1024px) {
            .consultation-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .consultation-left {
                position: static;
            }

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

        @media (max-width: 768px) {
            .consultation-section {
                padding: 64px 0;
            }

            .consultation-form-container {
                padding: 24px 20px;
            }

            .form-title {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .consultation-title {
                font-size: 32px;
            }
        }

        /* Footer */
        .footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            padding: 64px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 2fr;
            gap: 64px;
            margin-bottom: 48px;
        }

        .footer-brand img {
            height: 80px;
            width: auto;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .footer-column h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-column a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 12px;
            transition: color 0.2s ease;
        }

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

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }

        .footer-bottom p {
            color: var(--text-tertiary);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            :root {
                --section-padding: 64px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .use-case {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .use-case:nth-child(even) {
                direction: ltr;
            }

            .timeline {
                gap: 32px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll animations */
        @media (prefers-reduced-motion: no-preference) {
            .fade-in {
                opacity: 0;
                transform: translateY(40px);
                animation: fadeInUp 0.8s ease forwards;
            }

            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .section > * {
                animation-delay: 0.1s;
            }
        }
