        :root {
            /* Brand Colors from Logo */
            --primary: #2C5266;
            --primary-light: #3D6B82;
            --primary-dark: #1A3847;
            --accent: #4A9FBD;
            --accent-bright: #5BC4E8;
            
            /* Neutral Colors */
            --dark: #0F172A;
            --dark-secondary: #1E293B;
            --light: #F8FAFC;
            --white: #FFFFFF;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-900: #111827;
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #2C5266 0%, #4A9FBD 100%);
            --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            --gradient-accent: linear-gradient(135deg, #4A9FBD 0%, #5BC4E8 100%);
            
            /* Text */
            --text-dark: #0F172A;
            --text-muted: #64748B;
            --text-light: #94A3B8;
            
            /* Effects */
            --border-light: rgba(44, 82, 102, 0.15);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
            --shadow-primary: 0 8px 24px rgba(44, 82, 102, 0.25);
            
            /* Timing */
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* AI-Powered Animated Background */
        .ai-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 100vh;
            pointer-events: none;
            z-index: 0;
            opacity: 0.4;
        }

        .ai-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, rgba(91, 196, 232, 1) 0%, rgba(74, 159, 189, 0.8) 100%);
            border-radius: 50%;
            animation: float-particle var(--duration) infinite ease-in-out;
            box-shadow: 0 0 20px rgba(91, 196, 232, 0.9),
                        0 0 10px rgba(74, 159, 189, 0.6);
            opacity: 0.9;
        }

        @keyframes float-particle {
            0%, 100% {
                transform: translate(0, 0);
                opacity: 0.7;
            }
            25% {
                transform: translate(var(--x1), var(--y1));
                opacity: 1;
            }
            50% {
                transform: translate(var(--x2), var(--y2));
                opacity: 1;
            }
            75% {
                transform: translate(var(--x3), var(--y3));
                opacity: 0.9;
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(16px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
            transition: all var(--transition-base);
        }

        nav.scrolled {
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.99);
        }

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

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: transform var(--transition-base);
        }

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

        .logo-image {
            height: 45px;
            width: auto;
            transition: filter var(--transition-base);
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition-base);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            transition: width var(--transition-base);
            border-radius: 2px;
        }

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

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

        .nav-cta {
            background: var(--gradient-primary);
            color: var(--white) !important;
            padding: 0.75rem 1.75rem !important;
            border-radius: 8px;
            font-weight: 700;
            box-shadow: var(--shadow-primary);
            transition: all var(--transition-base);
        }

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

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(44, 82, 102, 0.35);
        }

        /* Hero Section */
        .hero {
            margin-top: 70px;
            min-height: calc(100vh - 70px);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--gradient-dark);
        }

        .hero-neural-net {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.12;
        }

        .hero-glow {
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            filter: blur(120px);
            animation: pulse-glow 10s ease-in-out infinite;
        }

        .hero-glow.glow-1 {
            top: -300px;
            left: -200px;
            background: var(--primary);
        }

        .hero-glow.glow-2 {
            bottom: -300px;
            right: -200px;
            background: var(--accent);
            animation-delay: 5s;
        }

        @keyframes pulse-glow {
            0%, 100% {
                opacity: 0.2;
                transform: scale(1);
            }
            50% {
                opacity: 0.35;
                transform: scale(1.15);
            }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem 2rem;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(74, 159, 189, 0.15);
            border: 1px solid rgba(74, 159, 189, 0.4);
            padding: 0.65rem 1.25rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--accent-bright);
            backdrop-filter: blur(10px);
            letter-spacing: 0.02em;
        }

        .hero-badge .dot {
            width: 10px;
            height: 10px;
            background: var(--accent-bright);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
            box-shadow: 0 0 10px var(--accent-bright);
        }

        @keyframes pulse-dot {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }

        .hero h1 {
            font-size: clamp(2.75rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.08;
            margin-bottom: 1.75rem;
            color: var(--white);
            letter-spacing: -0.045em;
        }

        .gradient-text {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .hero p.hero-description {
            font-size: 1.3rem;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 650px;
            font-weight: 400;
        }

        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .trust-icon {
            width: 24px;
            height: 24px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .cta-buttons {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1.1rem 2.5rem;
            font-size: 1.05rem;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all var(--transition-base);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
            font-family: 'Inter', sans-serif;
        }

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

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

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-primary);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(44, 82, 102, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--white);
            transform: translateY(-3px);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .platforms-showcase {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            animation: float-up 1s ease-out backwards;
            animation-delay: 0.5s;
        }

        @keyframes float-up {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .platform-badge {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
            transition: all var(--transition-base);
            cursor: default;
        }

        .platform-badge:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.35);
            transform: translateY(-5px);
        }

        .platform-badge-icon {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
        }

        .platform-badge-name {
            color: var(--white);
            font-size: 0.95rem;
            font-weight: 700;
        }

        /* Stats Section */
        .stats {
            background: var(--white);
            padding: 4.5rem 2rem;
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3.5rem;
        }

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

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-family: 'Inter', sans-serif;
            letter-spacing: -0.03em;
        }

        .stat-label {
            font-size: 1.05rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* Social Proof Section */
        .social-proof {
            background: var(--gray-50);
            padding: 3rem 2rem;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .social-proof-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .social-proof-label {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .certifications {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .cert-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.75rem;
            background: var(--white);
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-weight: 700;
            color: var(--primary);
            font-size: 0.95rem;
            transition: all var(--transition-base);
        }

        .cert-badge:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .cert-icon {
            font-size: 1.5rem;
        }

        /* Services Section */
        .services {
            padding: 7rem 2rem;
            background: var(--white);
            position: relative;
        }

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

        .section-label {
            display: inline-block;
            background: rgba(44, 82, 102, 0.1);
            color: var(--primary);
            padding: 0.65rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1.75rem;
        }

        .section-header h2 {
            font-size: clamp(2.25rem, 4vw, 4rem);
            font-weight: 900;
            margin-bottom: 1.25rem;
            letter-spacing: -0.035em;
            color: var(--text-dark);
        }

        .section-header p {
            font-size: 1.3rem;
            color: var(--text-muted);
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.25rem;
        }

        .service-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 24px;
            border: 2px solid var(--border-light);
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(44, 82, 102, 0.06) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 50%;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover::after {
            width: 500px;
            height: 500px;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(44, 82, 102, 0.3);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2.25rem;
            position: relative;
            z-index: 1;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-primary);
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg) scale(1.05);
        }

        .service-card h3 {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 1.25rem;
            color: var(--text-dark);
            position: relative;
            z-index: 1;
            letter-spacing: -0.02em;
        }

        .service-card p {
            color: var(--text-muted);
            line-height: 1.85;
            position: relative;
            z-index: 1;
            font-size: 1.05rem;
        }

        /* Platforms Section */
        .platforms {
            padding: 7rem 2rem;
            background: var(--gray-50);
            position: relative;
        }

        .platforms-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.25rem;
        }

        .platform-card {
            background: var(--white);
            padding: 3.5rem 2.5rem;
            border-radius: 24px;
            text-align: center;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .platform-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.45s ease;
        }

        .platform-card:hover::before {
            opacity: 0.06;
        }

        .platform-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }

        .platform-logo {
            font-size: 3.5rem;
            margin-bottom: 1.75rem;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        .platform-card:hover .platform-logo {
            transform: scale(1.15) rotateZ(8deg);
        }

        .platform-name {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-dark);
            position: relative;
            z-index: 1;
            letter-spacing: -0.01em;
        }

        .platform-desc {
            margin-top: 1rem;
            color: var(--text-muted);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        /* Why Choose Us Section */
        .why-us {
            padding: 7rem 2rem;
            background: var(--white);
        }

        .why-us-grid {
            max-width: 1200px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .why-us-item {
            text-align: center;
            padding: 2rem;
        }

        .why-us-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            box-shadow: var(--shadow-md);
        }

        .why-us-item h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .why-us-item p {
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-dark);
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-glow {
            position: absolute;
            width: 900px;
            height: 900px;
            border-radius: 50%;
            filter: blur(150px);
            animation: pulse-glow 12s ease-in-out infinite;
        }

        .cta-glow.glow-1 {
            top: -450px;
            left: 10%;
            background: var(--primary);
        }

        .cta-glow.glow-2 {
            bottom: -450px;
            right: 10%;
            background: var(--accent);
            animation-delay: 6s;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: clamp(2.25rem, 5vw, 4rem);
            font-weight: 900;
            color: var(--white);
            margin-bottom: 1.75rem;
            letter-spacing: -0.035em;
        }

        .cta-section p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3.5rem;
            line-height: 1.75;
            font-weight: 400;
        }

        /* Footer */
        footer {
            background: #000;
            color: var(--white);
            padding: 4.5rem 2rem 2.5rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 4rem;
            margin-bottom: 3.5rem;
        }

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

        .footer-logo {
            height: 50px;
            margin-bottom: 1.5rem;
            /* filter removed - new logo already has correct colors */
        }

        .footer-section h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1.75rem;
            color: var(--white);
        }

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

        .footer-section ul li {
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all var(--transition-base);
            display: inline-block;
            font-size: 0.95rem;
        }

        .footer-section a:hover {
            color: var(--accent-bright);
            transform: translateX(4px);
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: inherit;
            text-decoration: underline;
            transition: color var(--transition-base);
        }

        .footer-bottom a:hover {
            color: var(--accent-bright);
        }

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

        .hero-content > * {
            animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) backwards;
        }

        .hero-badge {
            animation-delay: 0.1s;
        }

        .hero h1 {
            animation-delay: 0.2s;
        }

        .hero p.hero-description {
            animation-delay: 0.3s;
        }

        .trust-indicators {
            animation-delay: 0.4s;
        }

        .cta-buttons {
            animation-delay: 0.5s;
        }

        /* Scroll Animations */
        .scroll-reveal {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Only hide if JS is loaded */
        .js-enabled .scroll-reveal {
            opacity: 0;
            transform: translateY(40px);
        }
        
        .js-enabled .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-visual {
                order: -1;
            }

            .platforms-showcase {
                max-width: 500px;
                margin: 0 auto;
            }
        }

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

            .hero {
                min-height: auto;
                padding: 3rem 0;
            }

            .hero-container {
                padding: 3rem 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

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

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

            .hero-glow {
                width: 500px;
                height: 500px;
            }

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

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

            .trust-indicators {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Loading Performance */
        img {
            loading: lazy;
        }

/* FIX: Z-index correction for visibility */
.ai-background {
    z-index: -1 !important;
}

section {
    position: relative;
    z-index: 1;
}

.stats,
.social-proof,
.services,
.platforms,
.why-us,
.cta-section {
    position: relative;
    z-index: 10;
    background: var(--white);
}

.services {
    background: var(--white) !important;
}

.platforms {
    background: var(--gray-50) !important;
}

.why-us {
    background: var(--white) !important;
}

.cta-section {
    background: var(--gradient-dark) !important;
}

.social-proof {
    background: var(--gray-50) !important;
}

/* Ensure content is visible */
.service-card,
.platform-card,
.why-us-item {
    position: relative;
    z-index: 2;
    background: var(--white) !important;
}

.stat-item {
    position: relative;
    z-index: 2;
}

/* Fix for text visibility */
.service-card h3,
.service-card p,
.platform-card h3,
.platform-card p,
.why-us-item h3,
.why-us-item p,
.section-header h2,
.section-header p {
    position: relative;
    z-index: 3;
}

/* ========================================
   PRIVACY POLICY PAGE STYLES
   ======================================== */

.privacy-policy-page {
    background: var(--white);
    min-height: 100vh;
    padding: 120px 2rem 4rem;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary);
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.privacy-updated {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

.privacy-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.privacy-section h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--gray-700);
}

.privacy-section ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.privacy-section ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.privacy-section ul ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    list-style-type: circle;
}

.privacy-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.privacy-section a:hover {
    color: var(--accent-bright);
    text-decoration: underline;
}

.privacy-section strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-info {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    font-size: 1.1rem;
    color: var(--primary);
}

.privacy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: var(--gray-50);
    transition: all 0.3s ease;
}

.back-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-policy-page {
        padding: 100px 1.5rem 3rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.25rem;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        font-size: 1rem;
    }
    
    .privacy-section ul {
        margin-left: 1.25rem;
    }
}
