.auth-app-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }
  
  .auth-product-card {
    position: relative;
    min-height: 260px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.14);
    display: grid;
    align-content: space-between;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  }
  
  .auth-product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 18%, rgba(255,255,255,.18), transparent 24%);
    pointer-events: none;
  }
  
  .auth-product-card.is-leads {
    background: linear-gradient(135deg, rgba(18,42,92,.98), rgba(31,84,190,.78));
  }
  
  .auth-product-card.is-drive {
    background: linear-gradient(135deg, rgba(6,53,31,.98), rgba(31,133,66,.76));
  }
  
  .auth-product-card.is-tour {
    background: linear-gradient(135deg, rgba(44,22,86,.98), rgba(100,48,170,.78));
  }
  
  .auth-product-card.is-disabled {
    opacity: .86;
  }
  
  .auth-product-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 34px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.10);
  }
  
  .auth-product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.88);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.12);
  }
  
  .auth-product-card h3 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    letter-spacing: -.05em;
  }
  
  .auth-product-card h3 strong {
    color: #5f91ff;
  }
  
  .auth-product-card.is-drive h3 strong {
    color: #59e47b;
  }
  
  .auth-product-card.is-tour h3 strong {
    color: #a978ff;
  }
  
  .auth-product-card p {
    margin: 10px 0 0;
    color: #c7d2ee;
    font-size: 16px;
  }
  
  .auth-product-cta {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.10);
  }
  
  .auth-product-cta.is-soon {
    justify-content: center;
    color: rgba(255,255,255,.68);
  }
  
  @media(max-width: 1180px) {
    .auth-app-showcase {
      grid-template-columns: 1fr;
    }
  
    .auth-product-card {
      min-height: 230px;
    }
  }