/* Specific styles for index page */
    .hero-index {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-top: 80px;
    }
    
    .gateway-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      max-width: 1000px;
      width: 100%;
      margin-top: 48px;
    }
    
    @media (max-width: 768px) {
      .gateway-grid { grid-template-columns: 1fr; }
    }
    
    .gateway-card {
      background: rgba(24, 28, 36, 0.6);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border-light);
      border-radius: 24px;
      padding: 48px 40px;
      text-align: center;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    
    .gateway-card:hover {
      border-color: var(--accent-orange);
      box-shadow: 0 10px 40px rgba(255, 87, 34, 0.15);
    }
    
    .gateway-card.brand-card:hover {
      border-color: var(--accent-gold);
      box-shadow: 0 10px 40px rgba(245, 197, 24, 0.15);
    }
    
    .icon-wrapper {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      margin-bottom: 24px;
      background: rgba(255,255,255,0.03);
    }
    
    .gateway-card:hover .icon-wrapper {
      background: var(--accent-orange-glow);
    }
    
    .gateway-card.brand-card:hover .icon-wrapper {
      background: var(--accent-gold-glow);
    }

    .stats-bar {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin-top: 80px;
      padding: 40px;
      border-top: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
      background: rgba(0,0,0,0.2);
      width: 100%;
    }
    
    .stat-item {
      text-align: center;
    }
    
    .stat-num {
      font-family: var(--font-heading);
      font-size: 48px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1;
      margin-bottom: 8px;
    }
    
    .stat-label {
      font-size: 14px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .gateway-card { padding: 32px 24px; }
      .stats-bar { flex-direction: column; gap: 24px; padding: 32px 24px; }
      .stat-num { font-size: 36px; }
    }