/* ==============================
  Support Page
============================== */

.support-page .contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 336px;
  padding: 0;
  display: grid;
  align-items: center;
  background: #ffffff url("images/support-hero-bg.webp") center center / cover no-repeat;
}

.support-page .contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(247, 251, 255, 0.66) 0%,
      rgba(247, 251, 255, 0.42) 46%,
      rgba(247, 251, 255, 0.08) 100%
    );
}

.support-page .contact-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: stretch;
}

.support-page .contact-hero-copy {
  position: relative;
  z-index: 1;
}

.support-page .contact-hero-kicker {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 16px;
  color: #ffffff;
  background: #0089e8;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.support-page .contact-hero h1 {
  margin-bottom: 22px;
  color: #001b3f;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.support-page .contact-hero-nowrap {
  white-space: nowrap;
}

.support-page .contact-hero-lead {
  width: min(620px, 100%);
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.95;
  font-weight: 800;
}

.support-page .contact-hero-visual {
  display: none;
}

.support-page .contact-method-section {
  padding: 90px 0 104px;
  background: #ffffff;
}

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.support-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
}

.support-card-image {
  min-height: 260px;
  background-color: #eef7ff;
}

.support-card-image-remote {
  background: url("images/support-remote-card.webp") center center / cover no-repeat;
}

.support-card-image-contact {
  background: url("images/support-contact-card.webp") center center / cover no-repeat;
}

.support-card-body {
  padding: 32px 34px 36px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.support-card-label {
  margin: 0 0 10px;
  color: #0089e8;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.support-card h3 {
  margin-bottom: 16px;
  color: #001b3f;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 900;
}

.support-card p {
  color: #475569;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

.support-card-link {
  width: fit-content;
  display: inline-flex;
  margin-top: auto;
  padding: 12px 24px;
  color: #ffffff;
  background: #0089e8;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
}

@media (max-width: 900px) {
  .support-page .contact-hero {
    min-height: 336px;
    padding: 0;
    background: #ffffff url("images/support-hero-bg.webp") center center / cover no-repeat;
  }

  .support-page .contact-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(247, 251, 255, 0.82) 0%,
        rgba(247, 251, 255, 0.58) 32%,
        rgba(247, 251, 255, 0.28) 64%,
        rgba(247, 251, 255, 0.10) 100%
      );
  }

  .support-page .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .support-page .contact-hero-visual {
    display: none;
  }

  .support-card-grid {
    grid-template-columns: 1fr;
  }
  .support-card-image {
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .support-page .contact-hero {
    min-height: 336px;
    padding: 0;
    background: #ffffff url("images/support-hero-bg.webp") center center / cover no-repeat;
  }

  .support-page .contact-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(247, 251, 255, 0.92) 0%,
        rgba(247, 251, 255, 0.84) 28%,
        rgba(247, 251, 255, 0.46) 52%,
        rgba(247, 251, 255, 0.16) 78%,
        rgba(247, 251, 255, 0.02) 100%
      );
  }

  .support-page .contact-hero h1 {
    font-size: 34px;
  }

  .support-page .contact-hero-lead {
    font-size: 14px;
  }

  .support-page .contact-method-section {
    padding: 72px 0 86px;
  }

  .support-card {
    border-radius: 18px;
  }

  .support-card-image {
    min-height: 210px;
  }

  .support-card-body {
    padding: 26px 22px 28px;
  }

  .support-card h3 {
    font-size: 21px;
  }

  .support-card-link {
    width: 100%;
    justify-content: center;
    padding: 13px 22px;
    font-size: 15px;
  }
}