/* ===== Support Center hub — Figma 30:12500 ===== */

.page-support {
  background: #fff;
}

/* Hero */
.sup-hero {
  position: relative;
  height: min(618px, calc(100vh - 80px));
  margin-top: 80px;
  overflow: hidden;
  color: #fff;
}

.sup-hero__bg {
  position: absolute;
  inset: 0;
}

.sup-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s ease-out forwards;
}

.sup-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0) 69.531%
  );
}

.sup-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
}

.sup-hero__content .p-breadcrumb {
  position: absolute;
  top: 151px;
  left: 20px;
  right: 20px;
  margin-bottom: 0;
}

.sup-hero__content .p-breadcrumb a.is-current,
.sup-hero__content .p-breadcrumb .is-current {
  color: #fff;
}

.sup-hero__main {
  margin-top: 218px;
  max-width: 768px;
}

.sup-hero__eyebrow {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 20px;
  color: #fff;
  margin: 0 0 16px;
}

.sup-hero__title {
  font-family: var(--font-inter);
  font-size: 56px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: -1.12px;
  color: #fff;
  margin: 0;
}

.sup-hero__desc {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  max-width: 768px;
  margin: 0 0 40px;
  padding-top: 8px;
}

.sup-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  line-height: 16px;
  text-transform: uppercase;
  border-radius: 2px;
}

/* Support Cards */
.sup-cards {
  padding: 68px 0 80px;
  background: #fff;
}

.sup-cards__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 88px;
  max-width: 1300px;
}

.sup-card {
  flex: 1 1 0;
  width: 100%;
  max-width: 395px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
}

.sup-card__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 24px;
}

.sup-card__title {
  font-family: var(--font-inter);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #333;
  margin: 0 0 12px;
}

.sup-card__desc {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  color: #4b5563;
  max-width: 320px;
  margin: 0 0 24px;
  flex: 1;
}

.sup-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #333;
  border: 1px solid #333;
  border-radius: 4px;
  background: #fff;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.sup-card__btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .sup-cards__grid {
    gap: 40px;
  }

  .sup-hero__title {
    font-size: 48px;
    line-height: 58px;
  }
}

@media (max-width: 992px) {
  .sup-cards__grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .sup-card {
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .sup-hero {
    height: auto;
    min-height: 480px;
  }

  .sup-hero__content .p-breadcrumb {
    top: 40px;
  }

  .sup-hero__main {
    margin-top: 100px;
    padding-bottom: 64px;
  }

  .sup-hero__title {
    font-size: 36px;
    line-height: 44px;
  }

  .sup-hero__desc {
    font-size: 16px;
    line-height: 26px;
  }

  .sup-cards {
    padding: 48px 0 80px;
  }
}
