
    html { scroll-behavior: smooth; }
    .hero-gradient {
      background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(21, 128, 61, 0.9) 100%);
    }
    .card-hover {
      transition: all 0.3s ease;
    }
    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    .step-connector::after {
      /* content: ''; */
      position: absolute;
      top: 50%;
      right: -50%;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #3b82f6, #22c55e);
      z-index: 0;
    }
    @media (max-width: 768px) {
      .step-connector::after {
        display: none;
      }
    }
    .fade-in {
      animation: fadeIn 0.6s ease-out;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .pulse-btn {
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
      50% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    }

    body { box-sizing: border-box; }