/* E-commerce Overview CSS */


        /* --- SOPHISTICATED B2B AESTHETIC --- */
        :root {
            --primary-navy: #0A1628;
            --accent-blue: #2E5BFF;
            --accent-gold: #C59D5F;
            --warm-grey: #8B8680;
            --light-bg: #F8F7F5;
            --white: #FFFFFF;
            --border-subtle: #E5E3DF;
            --font-serif: 'DM Serif Display', serif;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #0A1628;
            line-height: 1.7;
            background: #FFFFFF;
            -webkit-font-smoothing: antialiased;
        }

        /* --- TYPOGRAPHY --- */
        h1, h2, h3 {
            font-family: 'DM Serif Display', Georgia, serif;
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* --- NAVIGATION --- */
        .nav-bar {
            background: #FFFFFF;
            border-bottom: 1px solid #E5E3DF;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 1.5rem;
            color: #0A1628;
            font-style: italic;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            color: #8B8680;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #2E5BFF;
        }

        /* --- HERO --- */
        .hero {
            background: linear-gradient(135deg, #0A1628 0%, #1a2942 100%);
            color: #FFFFFF;
            padding: 120px 0 140px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
        }

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

        .hero-eyebrow {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 20px;
            display: inline-block;
        }

        .hero h1 {
            color: #FFFFFF;
            margin-bottom: 30px;
            max-width: 900px;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero-stats {
            display: flex;
            gap: 60px;
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat {
            flex: 1;
        }

        .stat-number {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 2.5rem;
            color: var(--accent-gold);
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 16px 32px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .btn-primary {
            background: #2E5BFF;
            color: #FFFFFF;
            box-shadow: 0 4px 20px rgba(46, 91, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(46, 91, 255, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: #FFFFFF;
            border: 2px solid #FFFFFF;
        }

        .btn-outline:hover {
            background: #FFFFFF;
            color: #0A1628;
        }

        .btn-outline-dark {
            background: transparent;
            color: #0A1628;
            border: 2px solid #0A1628;
        }

        .btn-outline-dark:hover {
            background: #0A1628;
            color: #FFFFFF;
        }

        /* --- PLATFORM SECTION --- */
        .platform-section {
            padding: 120px 0;
            background: #FFFFFF;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .section-eyebrow {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #2E5BFF;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #8B8680;
            margin-top: 20px;
        }

        .platform-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .platform-card {
            background: #F8F7F5;
            padding: 50px;
            border-radius: 4px;
            border-left: 4px solid var(--accent-gold);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .platform-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(46, 91, 255, 0.05) 0%, transparent 70%);
            transform: translate(50%, -50%);
        }

        .platform-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-left-color: #2E5BFF;
        }

        .platform-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #2E5BFF;
            background: rgba(46, 91, 255, 0.1);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 20px;
        }

        .platform-card h3 {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .platform-description {
            color: #8B8680;
            margin-bottom: 30px;
            font-size: 1rem;
            line-height: 1.7;
        }

        .platform-divider {
            height: 1px;
            background: #E5E3DF;
            margin: 30px 0;
        }

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

        .platform-features li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: #0A1628;
            font-size: 0.95rem;
        }

        .platform-features li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #2E5BFF;
            font-weight: 700;
        }

        .platform-cta {
            margin-top: 30px;
        }

        /* --- INTEGRATION SECTION --- */
        .integration-section {
            background: #0A1628;
            color: #FFFFFF;
            padding: 120px 0;
            position: relative;
        }

        .integration-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

        .integration-section h2,
        .integration-section .section-eyebrow {
            color: #FFFFFF;
        }

        .integration-section .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .integration-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .integration-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .integration-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent-gold);
            transform: translateY(-4px);
        }

        .integration-icon {
            width: 60px;
            height: 60px;
            background: #2E5BFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }

        .integration-card h3 {
            color: #FFFFFF;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .integration-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* --- PROCESS SECTION --- */
        .process-section {
            padding: 120px 0;
            background: #F8F7F5;
        }

        .process-timeline {
            margin-top: 80px;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #E5E3DF;
            transform: translateX(-50%);
        }

        .process-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 80px;
            position: relative;
        }

        .process-step:nth-child(even) .step-content {
            order: 2;
        }

        .process-step:nth-child(even) .step-visual {
            order: 1;
        }

        .step-number {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: #FFFFFF;
            border: 3px solid #2E5BFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 1.5rem;
            color: #2E5BFF;
            z-index: 2;
        }

        .step-content {
            padding: 40px;
            background: #FFFFFF;
            border-radius: 4px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .step-content h3 {
            margin-bottom: 15px;
            color: #0A1628;
        }

        .step-content p {
            color: #8B8680;
            line-height: 1.7;
        }

        .step-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            opacity: 0.1;
        }

        /* --- TRUST SECTION --- */
        .trust-section {
            background: #FFFFFF;
            padding: 80px 0;
            border-top: 1px solid #E5E3DF;
            border-bottom: 1px solid #E5E3DF;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            text-align: center;
        }

        .trust-item {
            padding: 20px;
        }

        .trust-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            opacity: 0.3;
        }

        .trust-label {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #8B8680;
        }

        /* --- CTA SECTION --- */
        .cta-section {
            background: linear-gradient(135deg, #2E5BFF 0%, #1a45d9 100%);
            color: #FFFFFF;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: movePattern 20s linear infinite;
        }

        @keyframes movePattern {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

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

        .cta-section h2 {
            color: #FFFFFF;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

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

        /* --- FOOTER --- */
        footer {
            background: #0A1628;
            color: rgba(255, 255, 255, 0.6);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 1.5rem;
            color: #FFFFFF;
            margin-bottom: 15px;
        }

        .footer-tagline {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-section h4 {
            color: #FFFFFF;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

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

        .footer-section li {
            margin-bottom: 12px;
        }

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

        .footer-section a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            font-size: 0.85rem;
            padding-top: 30px;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 968px) {
            .platform-grid {
                grid-template-columns: 1fr;
            }

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

            .process-timeline::before {
                display: none;
            }

            .process-step {
                grid-template-columns: 1fr;
            }

            .step-number {
                position: relative;
                left: 0;
                transform: none;
                margin-bottom: 20px;
            }

            .process-step:nth-child(even) .step-content,
            .process-step:nth-child(even) .step-visual {
                order: initial;
            }

            .step-visual {
                display: none;
            }

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

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

            .nav-links {
                display: none; /* Mobile menu would go here */
            }

            .hero-stats {
                flex-direction: column;
                gap: 30px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 20px;
            }

            .platform-card {
                padding: 30px;
            }

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