/* WEBSITE-INFRASTRUCTURE - Complete CSS from static HTML */


        /* --- SOPHISTICATED B2B DESIGN SYSTEM --- */
        :root {
            /* Primary Colors */
            --primary-navy: #0A1628;
            --accent-blue: #2E5BFF;
            --accent-gold: #C59D5F;
            --infra-teal: #14B8A6;
            
            /* Neutrals */
            --warm-grey: #8B8680;
            --light-bg: #F8F7F5;
            --white: #FFFFFF;
            --border-subtle: #E5E3DF;
            
            /* Status Colors */
            --success: #10b981;
            --danger: #ef4444;
            --warning: #f59e0b;
            
            /* Typography */
            --font-serif: 'DM Serif Display', Georgia, serif;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            
            /* Transitions */
            --transition-base: 0.3s 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: #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); }

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

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

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

        .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;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* 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-teal {
            background: #14b8a6;
            color: #FFFFFF;
            box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3);
        }

        .btn-teal:hover {
            background: #0f9988;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
        }

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

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

        /* Hero Section */
        .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: #14b8a6;
            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-note {
            font-size: 0.9rem;
            margin-top: 20px;
            opacity: 0.7;
        }

        /* Tech Stack Bar */
        .tech-stack {
            background: #F8F7F5;
            padding: 40px 0;
            border-bottom: 1px solid #E5E3DF;
        }

        .tech-label {
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #8B8680;
            margin-bottom: 25px;
        }

        .tech-logos {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .tech-logo {
            font-weight: 600;
            color: #0A1628;
            font-size: 1rem;
            opacity: 0.7;
        }

        /* Section Styling */
        .section {
            padding: 120px 0;
        }

        .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;
        }

        /* Comparison Section */
        .comparison-section {
            background: #FFFFFF;
            padding: 120px 0;
        }

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

        .comparison-card {
            padding: 50px;
            border-radius: 4px;
            position: relative;
        }

        .comparison-bad {
            background: #fef2f2;
            border-left: 4px solid #ef4444;
        }

        .comparison-good {
            background: #f0fdf4;
            border-left: 4px solid #10b981;
        }

        .comparison-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            display: block;
        }

        .comparison-card h3 {
            margin-bottom: 15px;
        }

        .comparison-card p {
            margin-bottom: 25px;
        }

        .comparison-list {
            list-style: none;
            padding: 0;
        }

        .comparison-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            font-size: 1rem;
        }

        .comparison-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: 700;
            font-size: 1.3rem;
        }

        .comparison-bad .comparison-list li::before {
            content: '⚠';
            color: #ef4444;
        }

        /* Story Section */
        .story-section {
            background: #0A1628;
            color: #FFFFFF;
            padding: 120px 0;
        }

        .story-content {
            max-width: 850px;
            margin: 0 auto;
        }

        .story-section h2 {
            color: #FFFFFF;
            margin-bottom: 30px;
        }

        .story-section p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .story-highlight {
            font-size: 1.3rem;
            font-weight: 600;
            color: #14b8a6;
            margin: 40px 0;
            font-family: 'DM Serif Display', Georgia, serif;
        }

        .quote-box {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #14b8a6;
            padding: 40px;
            margin: 50px 0;
            border-radius: 4px;
        }

        .quote-box p {
            font-size: 1.25rem;
            font-style: italic;
            color: #FFFFFF;
            margin: 0;
            line-height: 1.7;
        }

        /* Lead Magnet Section */
        .lead-section {
            background: #F8F7F5;
            padding: 100px 0;
        }

        .lead-flex {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .lead-content h2 {
            margin-bottom: 20px;
        }

        .lead-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .lead-list {
            list-style: none;
            padding: 0;
        }

        .lead-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            font-size: 1rem;
        }

        .lead-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: 700;
            font-size: 1.3rem;
        }

        .lead-form-box {
            background: #FFFFFF;
            padding: 50px;
            border-radius: 4px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .lead-form-box h3 {
            text-align: center;
            margin-bottom: 30px;
        }

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

        .form-group input {
            width: 100%;
            padding: 15px;
            border: 2px solid #E5E3DF;
            border-radius: 4px;
            font-size: 1rem;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-group input:focus {
            outline: none;
            border-color: #2E5BFF;
        }

        /* Pricing Section */
        .pricing-section {
            background: #FFFFFF;
            padding: 120px 0;
        }

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

        .pricing-card {
            background: #F8F7F5;
            padding: 50px;
            border-radius: 4px;
            border-left: 4px solid #2E5BFF;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, rgba(46, 91, 255, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
            border-left-color: #14b8a6;
        }

        .pricing-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #2E5BFF;
            margin-bottom: 15px;
            display: block;
        }

        .pricing-card.featured .pricing-label {
            color: #14b8a6;
        }

        .pricing-card h3 {
            margin-bottom: 20px;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'DM Serif Display', Georgia, serif;
            color: #0A1628;
            margin: 20px 0;
            line-height: 1;
        }

        .price-period {
            font-size: 1.1rem;
            color: #8B8680;
            font-weight: normal;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .pricing-description {
            margin: 20px 0 30px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        .pricing-features li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            font-size: 1rem;
            color: #0A1628;
            border-bottom: 1px solid #E5E3DF;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: 700;
            font-size: 1.3rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #14b8a6 0%, #0f9988 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;
        }

        /* 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 cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-section a:hover {
            color: #14b8a6;
        }

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

        /* Responsive */
        @media (max-width: 968px) {
            .comparison-grid,
            .lead-flex,
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .nav-links {
                display: none;
            }

            .container {
                padding: 0 20px;
            }
        }

        @media (max-width: 640px) {
            .pricing-card,
            .comparison-card,
            .lead-form-box {
                padding: 30px;
            }

            .tech-logos {
                font-size: 0.85rem;
                gap: 20px;
            }
        }
    