/* NAVBAR */
    .site-navbar {
      border-bottom: 1px solid rgba(15,23,42,0.04);
      background: #fff;
      padding: 18px 0;
      position: relative;
    }

    .site-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: #111827;
      text-decoration: none;
      font-size: 1.5rem;
    }

    .site-logo .circle {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 700;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    /* H2H Hero */
    .h2h-hero {
      padding: 10px 0;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }

    .h2h-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      font-weight: 600;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      font-size: 13px;
      margin-bottom: 1rem;
    }

    .h2h-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--accent);
      display: block;
      line-height: 1;
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.5rem;
    }

    /* Feature Cards */
    .h2h-feature-card {
      background: #fff;
      border-radius: var(--rounded);
      padding: 1rem;
      height: 100%;
      box-shadow: 0 4px 20px rgba(2,6,23,0.06);
      border: 1px solid rgba(15,23,42,0.05);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .h2h-feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .h2h-feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(2,6,23,0.12);
    }

    .h2h-feature-card:hover::before {
      transform: scaleX(1);
    }

    .h2h-feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: white;
      font-size: 1.5rem;
      box-shadow: 0 6px 18px rgba(30,90,168,0.18);
    }

    /* Benefits Section */
    .benefits-section {
      background: #ffffff;
    }

    .benefit-item {
      padding: 1rem;
      border-radius: var(--rounded);
      background: #fff;
      box-shadow: 0 4px 20px rgba(2,6,23,0.06);
      border: 1px solid rgba(15,23,42,0.05);
      margin-bottom: 1.5rem;
      transition: all 0.3s ease;
    }

    .benefit-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(2,6,23,0.12);
    }

    .benefit-badge {
      display: inline-block;
      background: rgba(30,90,168,0.1);
      color: var(--accent);
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 500;
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
    }

    /* Process Section */
    .process-section {
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }

    .process-step {
      text-align: center;
      padding: 2rem 1rem;
      position: relative;
    }

    .process-step::after {
      content: '';
      position: absolute;
      top: 60px;
      right: -30px;
      width: 60px;
      height: 2px;
      background: var(--accent);
      opacity: 0.3;
    }

    .process-step:last-child::after {
      display: none;
    }

    .step-number {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin: 0 auto 1rem;
      font-size: 1.2rem;
    }

    /* CTA Section */
    .h2h-cta-section {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: white;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: white;
      border: 0;
      border-radius: 12px;
      padding: 14px 28px;
      font-weight: 600;
      font-size: 1rem;
      box-shadow: 0 6px 18px rgba(30,90,168,0.18);
      transition: all 0.3s ease;
      text-decoration: none;
      margin: 0.5rem;
    }

    .cta-button:hover {
      background: var(--accent-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(30,90,168,0.25);
      color: white;
    }

    .cta-button.outline {
      background: transparent;
      border: 2px solid var(--accent);
      color: var(--accent);
    }

    .cta-button.outline:hover {
      background: var(--accent);
      color: white;
    }

    @media (max-width: 768px) {
      .h2h-stats {
        flex-wrap: wrap;
        justify-content: center;
      }
      
      .stat-item {
        flex: 0 0 45%;
        margin-bottom: 1rem;
      }

      .process-step::after {
        display: none;
      }
    }