body { background: #F7F9FC; }                                                                                                                      
                                                                          
  .eyebrow {                             
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1E3A8A;
  }

  .check-item { display: flex; align-items: flex-start; gap: 10px; }
  .check-item i { flex-shrink: 0; margin-top: 2px; }

  .hero-b2b {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-b2b::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
  }
  .hero-b2b::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-b2b-glow {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,58,138,0.3) 0%, transparent 65%);
    pointer-events: none;
  }

  .stat-box {
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 0 12px;
  }
    @media (min-width: 640px) {                                                                                                                      
    .stat-box { padding: 0 32px; }                                                                                                                   
  }                                                                                                                                                  
  .stat-box:first-child { padding-left: 0; }                                                                                                         
  .stat-box:last-child { border-right: none; }


  .finance-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background 0.2s;
  }
  .finance-card:hover { background: rgba(255,255,255,0.07); }
  
  