.support-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 120px 0 160px;
  box-sizing: border-box;
}

.support-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 620px;
  text-align: center;
}

.support-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 24px;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.76;
  color: #fff;
  text-transform: uppercase;
}

.support-subtitle {
  margin: 0 0 48px;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.76;
  color: #fff;
}

.support-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
}

.support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8.5px;
  width: 252px;
  min-height: 160px;
  padding: 25px;
  box-sizing: border-box;
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  background: rgba(22, 22, 25, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.support-card:hover {
  border-color: rgba(87, 13, 121, 0.45);
  background: rgba(22, 22, 25, 0.82);
}

.support-card-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  object-fit: contain;
}

.support-card-label {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
}

@media (max-width: 640px) {
  .support-main {
    min-height: auto;
    padding: 80px 0 120px;
  }

  .support-title {
    font-size: 24px;
  }

  .support-subtitle {
    font-size: 14px;
    margin-bottom: 36px;
  }

  .support-cards {
    gap: 16px;
  }

  .support-card {
    width: min(252px, 100%);
  }
}
