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

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
            background: #FEFDF8;
            color: #1E262F;
        }

        .header {
            background: rgba(254, 253, 248, 0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #F0EDE5;
            position: sticky;
            top: 0;
            z-index: 50;
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #1E3A5F;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #4A5A6E;
            transition: 0.2s;
        }

        .nav-links a.active, .nav-links a:hover {
            color: #E86A4F;
        }

        .hero {
            max-width: 1300px;
            margin: 3rem auto 5rem;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-left .badge {
            background: #F3F1EA;
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #E86A4F;
            margin-bottom: 1.5rem;
        }

        .hero-left h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #1E3A5F;
            margin-bottom: 1.2rem;
        }

        .hero-left p {
            font-size: 1.1rem;
            color: #5A6E7F;
            margin-bottom: 2rem;
            max-width: 90%;
        }

        .btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #E86A4F;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
        }

        .btn-primary:hover {
            background: #D45A3E;
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 1px solid #D4DCDD;
            background: transparent;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-weight: 500;
            color: #4A5A6E;
            text-decoration: none;
        }

        .hero-right {
            background: #F8F5EE;
            border-radius: 2.5rem;
            padding: 2rem;
            text-align: center;
        }

        .stat-circles {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .stat-circle {
            background: white;
            border-radius: 1.2rem;
            padding: 1rem 1.2rem;
            width: 100px;
            box-shadow: 0 6px 14px rgba(0,0,0,0.03);
        }

        .trust-row {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
            font-size: 0.8rem;
            color: #7E8C9E;
        }

        .insight-grid {
            max-width: 1300px;
            margin: 5rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .insight-card {
            background: white;
            border-radius: 1.8rem;
            padding: 2rem;
            border: 1px solid #EFECE5;
            transition: 0.2s;
        }

        .insight-card:hover {
            border-color: #E86A4F40;
            box-shadow: 0 12px 24px -12px rgba(0,0,0,0.06);
        }

        .insight-icon {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .company-bar {
            max-width: 1100px;
            margin: 4rem auto;
            padding: 2rem;
            text-align: center;
            background: #FEFDF8;
            border-top: 1px solid #EFECE5;
            border-bottom: 1px solid #EFECE5;
        }

        .company-logos {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 1rem 0;
            color: #A5B2C0;
            font-weight: 500;
        }

        .cta-last {
            background: #1E3A5F;
            margin: 3rem auto;
            max-width: 1100px;
            border-radius: 2rem;
            padding: 3rem;
            text-align: center;
            color: white;
        }

        .footer {
            background: #FEFDF8;
            border-top: 1px solid #EFECE5;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 3rem 2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-col a {
            display: block;
            color: #6B7A8A;
            text-decoration: none;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .copyright {
            text-align: center;
            padding: 1.5rem;
            font-size: 0.8rem;
            color: #8D9AAA;
            border-top: 1px solid #EFECE5;
        }

        @media (max-width: 900px) {
            .hero { grid-template-columns: 1fr; }
            .insight-grid { grid-template-columns: 1fr; }
            .hero-left h1 { font-size: 2.5rem; }
        }
