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

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

        .header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #ECEFF5;
            position: sticky;
            top: 0;
            z-index: 50;
        }

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

        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(110deg, #1F2B4E, #2666C9);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }

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

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

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

        .hero-modern {
            max-width: 1360px;
            margin: 2rem auto 5rem;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

        .hero-left {
            flex: 1.3;
        }

        .hero-eyebrow {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #2666C9;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .hero-left h1 {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            background: linear-gradient(125deg, #14223D, #2C6EAF);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 1.2rem;
        }

        .hero-desc {
            font-size: 1.2rem;
            color: #4C5A74;
            max-width: 85%;
            margin-bottom: 2rem;
        }

        .btn-group {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .btn-accent {
            background: #2666C9;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
            box-shadow: 0 8px 18px rgba(38,102,201,0.2);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid #CBD2E1;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 500;
            color: #2D3A5E;
            text-decoration: none;
        }

        .trust-badge {
            display: flex;
            gap: 1.8rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .trust-badge span {
            font-weight: 700;
            color: #1F2B4E;
        }

        .hero-right {
            flex: 1;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="100%" height="100%" fill="%23F0F4FE" rx="32"/><circle cx="120" cy="100" r="28" fill="%23E0EAFF"/><circle cx="280" cy="180" r="40" fill="%23D9E6FA"/><rect x="50" y="200" width="300" height="60" rx="16" fill="white" stroke="%23CBD5E1"/></svg>');
            background-size: cover;
            background-color: #F0F4FE;
            border-radius: 48px;
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1rem;
            background-blend-mode: overlay;
        }

        .floating-card {
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(6px);
            border-radius: 32px;
            padding: 1.2rem 1.8rem;
            width: 80%;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
            text-align: center;
        }

        .pill-list {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .pill {
            background: white;
            border-radius: 60px;
            padding: 0.3rem 1rem;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid #DCE3F0;
        }

        .zone {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .zone-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .zone-header h2 {
            font-size: 2.3rem;
            font-weight: 700;
        }

        .grid-stagger {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .stagger-card {
            background: white;
            border-radius: 32px;
            padding: 2rem;
            border: 1px solid #EBF0F8;
            transition: all 0.2s;
        }

        .stagger-card .icon {
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }

        .full-width-showcase {
            background: #1F2B4E;
            color: white;
            border-radius: 48px;
            margin: 4rem 2rem;
            padding: 3rem 2rem;
            text-align: center;
        }

        .full-width-showcase h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .btn-white {
            background: white;
            color: #1F2B4E;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
        }

        .footer {
            background: #F9F9FE;
            border-top: 1px solid #E9EDF4;
            margin-top: 3rem;
        }

        .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: #5C6885;
            text-decoration: none;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .copyright {
            text-align: center;
            padding: 1.5rem;
            font-size: 0.8rem;
            color: #6C7A95;
        }

        @media (max-width: 780px) {
            .hero-left h1 { font-size: 2.5rem; }
            .hero-desc { max-width: 100%; }
            .nav-links { gap: 1rem; }
        }
