/* HOMEPAGE - Complete CSS from static HTML */


        /* --- SOPHISTICATED B2B DESIGN SYSTEM --- */
        :root {
            /* Primary Colors */
            --primary-navy: #0A1628;
            --accent-blue: #2E5BFF;
            --accent-gold: #C59D5F;
            --accent-orange: #FF6B35;
            
            /* 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;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .phone-number {
            color: #0A1628;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .phone-number: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-orange {
            background: #FF6B35;
            color: #FFFFFF;
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
        }

        .btn-orange:hover {
            background: #e65a2b;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 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;
            text-align: center;
        }

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

        .hero h1 .highlight {
            color: #FF6B35;
        }

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

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

        /* Authority Bar */
        .authority-bar {
            background: #FFFFFF;
            padding: 40px 0;
            border-bottom: 1px solid #E5E3DF;
        }

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

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

        .partner-logo {
            font-weight: 600;
            color: #0A1628;
            font-size: 1rem;
            opacity: 0.7;
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .partner-logo:hover {
            opacity: 1;
        }

        /* 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;
        }

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

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .problem-content h2 {
            margin-bottom: 25px;
        }

        .problem-intro {
            font-size: 1.1rem;
            color: #8B8680;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .pain-point {
            background: #F8F7F5;
            padding: 30px;
            border-radius: 4px;
            border-left: 4px solid #ef4444;
            margin-bottom: 25px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pain-point:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .pain-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            display: block;
        }

        .pain-point h3 {
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: #0A1628;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 600;
        }

        .pain-point p {
            font-size: 1rem;
            margin: 0;
            line-height: 1.6;
        }

        .visual-box {
            background: #F8F7F5;
            border: 2px dashed #E5E3DF;
            height: 500px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
        }

        .visual-box-content {
            color: #8B8680;
        }

        .visual-box strong {
            display: block;
            font-size: 1.1rem;
            color: #0A1628;
            margin-bottom: 10px;
        }

        /* Services Section */
        .services-section {
            background: #F8F7F5;
            padding: 120px 0;
        }

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

        .service-card {
            background: #FFFFFF;
            padding: 50px;
            border-radius: 4px;
            border-top: 4px solid #2E5BFF;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-top-color: #FF6B35;
        }

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

        .service-card h3 {
            margin-bottom: 15px;
            color: #0A1628;
        }

        .service-card p {
            flex-grow: 1;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .service-link {
            color: #FF6B35;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .service-link:hover {
            gap: 12px;
            color: #2E5BFF;
        }

        /* CTA/Offer Section */
        .offer-section {
            background: linear-gradient(135deg, #0A1628 0%, #1a2942 100%);
            color: #FFFFFF;
            padding: 100px 0;
        }

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

        .offer-content h2 {
            color: #FFFFFF;
            margin-bottom: 25px;
        }

        .offer-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }

        .offer-value {
            font-size: 1rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.7);
        }

        .audit-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 50px;
            border-radius: 4px;
        }

        .audit-box h3 {
            color: #FFFFFF;
            margin-bottom: 30px;
            text-align: center;
        }

        .audit-checklist {
            margin-bottom: 30px;
        }

        .audit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .audit-item:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .audit-item input[type="checkbox"] {
            margin-right: 15px;
            margin-top: 3px;
            transform: scale(1.3);
            cursor: pointer;
        }

        .audit-item label {
            color: #FFFFFF;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            flex: 1;
        }

        /* 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;
            margin-bottom: 20px;
        }

        .footer-address {
            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: #FF6B35;
        }

        .footer-section a.featured {
            color: #FF6B35;
            font-weight: 600;
        }

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

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-bottom a:hover {
            color: #FFFFFF;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .problem-grid,
            .services-grid,
            .offer-grid,
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .nav-links {
                display: none;
            }

            .container {
                padding: 0 20px;
            }

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

        @media (max-width: 640px) {
            .nav-cta .phone-number {
                display: none;
            }

            .service-card,
            .pain-point,
            .audit-box {
                padding: 30px;
            }

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