
        /* Modern B2B style - clean, professional, trustworthy */
        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            line-height: 1.5;
            color: #1e2f4e;
            margin: 0;
            padding: 0;
            background-color: #f9fbfd;
        }
        .article-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 2.5rem 2.8rem;
            border-radius: 24px;
            box-shadow: 0 12px 30px rgba(0, 20, 30, 0.06);
            border: 1px solid #eaeff4;
        }
        h2 {
            font-size: 2.1rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: #0b1c2f;
            margin-top: 0;
            margin-bottom: 0.75rem;
            border-left: 6px solid #2b6c94;
            padding-left: 1.4rem;
        }
        .highlight-date {
            background: #eef3f7;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #2b4f6e;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        p {
            font-size: 1.06rem;
            color: #2a405c;
            margin-bottom: 1.4rem;
        }
        .stat-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin: 2rem 0 1.8rem;
        }
        .stat-card {
            flex: 1 1 180px;
            background: #f6f9fc;
            border-radius: 28px;
            padding: 1.5rem 1.2rem;
            border: 1px solid #dde6ed;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
            transition: transform 0.1s ease;
        }
        .stat-card:hover {
            border-color: #9fb8cf;
            background: #f1f7fd;
        }
        .stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            font-weight: 600;
            color: #4d6587;
            margin-bottom: 0.4rem;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #124263;
            line-height: 1;
            margin-bottom: 0.2rem;
        }
        .stat-desc {
            font-size: 0.92rem;
            color: #546e86;
        }
        .two-column {
            display: flex;
            gap: 2rem;
            margin: 2.5rem 0 2rem;
        }
        .column {
            flex: 1;
            background: #ffffff;
            border-radius: 28px;
            padding: 1.8rem 1.8rem 2rem;
            border: 1px solid #dee9f2;
            box-shadow: 0 6px 14px rgba(0, 30, 50, 0.04);
        }
        .column h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 0;
            margin-bottom: 1.2rem;
            color: #153e5a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .column h3 span {
            background: #dce9f2;
            border-radius: 50px;
            padding: 0.2rem 0.7rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: #1e5375;
        }
        .list-bullet {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
        }
        .list-bullet li {
            padding-left: 1.6rem;
            position: relative;
            margin-bottom: 0.9rem;
            font-size: 1.02rem;
            color: #2c4569;
        }
        .list-bullet li::before {
            content: "▹";
            position: absolute;
            left: 0;
            color: #2e7ca0;
            font-weight: 600;
        }
        .insight-box {
            background: #eaf2f9;
            border-radius: 22px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0 1.5rem;
            border-left: 5px solid #2a6c94;
        }
        .insight-box p {
            margin-bottom: 0.8rem;
        }
        .insight-box strong {
            color: #0a3147;
        }
        .flex-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 2px dashed #cbd6e2;
        }
        .pill {
            background: #1f496b;
            color: white;
            padding: 0.4rem 1.3rem;
            border-radius: 60px;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s;
            display: inline-block;
        }
        .pill:hover {
            background: #103753;
        }
        .pill-light {
            background: #e1ecf5;
            color: #17466b;
            font-weight: 500;
        }
        @media (max-width: 700px) {
            .article-container { padding: 1.8rem; }
            h2 { font-size: 1.8rem; }
            .two-column { flex-direction: column; }
            .stat-card { flex: 1 1 100%; }
        }
        /* subtle extras */
        .micro-text {
            font-size: 0.85rem;
            color: #6b85a2;
        }
        .quote-note {
            font-style: italic;
            background: #f3f8fc;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            color: #1d4863;
        }
    