@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600&display=swap");

.support-page {
  --support-navy: #0b3877;
  --support-navy-dark: #0a3876;
  --support-orange: #ff5a00;
  --support-text: #393939;
  --support-muted: #425466;
  --support-surface: rgba(232, 242, 253, 0.56);
  --support-border: #f3e4e4;
  --support-content-width: 1280px;
  font-family: Inter, Mulish, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--support-text);
}

/* Hero */
.support-hero {
  position: relative;
  overflow: hidden;
  background: var(--support-navy);
  color: #fff;
}

.support-hero__glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(66px);
  pointer-events: none;
}

.support-hero__glow--left {
  width: 183px;
  height: 182px;
  left: 38px;
  bottom: -40px;
  background: rgba(36, 233, 138, 0.28);
}

.support-hero__glow--right {
  width: 183px;
  height: 182px;
  right: 36px;
  bottom: -64px;
  background: rgba(36, 233, 138, 0.28);
}

.support-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--support-content-width);
  margin: 0 auto;
  padding: 48px 80px 40px;
}

.support-hero__intro {
  max-width: 607px;
  margin-bottom: 28px;
}

.support-hero__title {
  margin: 0 0 16px;
  font-family: Poppins, Mulish, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.125;
  color: #fff;
}

.support-hero__subtitle {
  margin: 0;
  max-width: 578px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.42;
  color: #fff;
}

.support-hero__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.support-hero-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 16px;
  align-items: start;
  gap: 14px 16px;
  min-height: 111px;
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.support-hero-card:hover,
.support-hero-card:focus {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.support-hero-card:visited {
  color: #fff;
  text-decoration: none;
}

.support-hero-card__icon-wrap {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: rgba(235, 243, 254, 0.2);
}

.support-hero-card__icon {
  width: 32px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

.support-hero-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 2px;
}

.support-hero-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.support-hero-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.support-hero-card__chevron {
  color: #425466;
  align-self: center;
  margin-top: 18px;
}

/* Page content */
.support-content {
  max-width: var(--support-content-width);
  margin: 0 auto;
  padding: 80px 80px 96px;
}

.support-eyebrow {
  margin: 0 0 16px;
  color: var(--support-navy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}

.support-section-title {
  margin: 0 0 16px;
  max-width: 529px;
  font-family: Poppins, Mulish, sans-serif;
  font-size: clamp(28px, 3vw, 36.5px);
  font-weight: 500;
  line-height: 1.48;
  color: var(--support-text);
}

.support-body-copy {
  margin: 0 0 24px;
  max-width: 430px;
  color: var(--support-muted);
  font-size: 16px;
  line-height: 1.72;
}

/* Best practices */
.support-practices {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 625px);
  gap: 30px;
  align-items: start;
  margin-bottom: 48px;
}

.support-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 460px;
}

.support-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--support-text);
  font-size: 14px;
  line-height: 1.86;
}

.support-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  background: var(--support-orange);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'%3E%3Cpath fill='black' d='M5.8 10.6 2.7 7.5l1.1-1.1 2 2 5.5-5.5 1.1 1.1z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.support-practices__media {
  margin: 0;
}

.support-practices__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 625 / 481;
}

/* Severity */
.support-severity {
  margin-bottom: 48px;
  padding: 24px 28px;
  border-radius: 20px;
  background: var(--support-surface);
}

.support-severity__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.support-severity__list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.support-severity__list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.86;
  color: var(--support-text);
}

.support-severity__icon {
  margin-top: 4px;
}

/* Channels */
.support-channels {
  margin-bottom: 48px;
}

.support-channels__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 0;
  padding: 24px 28px;
  border: 1px solid var(--support-border);
  border-radius: 20px;
}

.support-channels__column {
  padding: 0 24px;
}

.support-channels__column:first-child {
  padding-left: 0;
}

.support-channels__column:last-child {
  padding-right: 0;
}

.support-channels__divider {
  width: 1px;
  background: #cfcaca;
}

.support-channels__header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.support-channels__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #f5f5fe;
}

.support-channels__icon img {
  width: 20px;
  height: auto;
  object-fit: contain;
}

.support-channels__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--support-text);
}

.support-channels__desc,
.support-channels__phones {
  margin: 0;
  color: var(--support-muted);
  font-size: 14px;
  line-height: 1.57;
}

.support-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 16px 0 22px;
  border-radius: 33px;
  background: var(--support-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.28px;
  text-decoration: none;
  text-transform: capitalize;
}

.support-button:hover,
.support-button:focus {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.05);
}

.support-button__arrow {
  display: inline-flex;
}

/* SLO */
.support-slo {
  margin-bottom: 48px;
}

.support-slo__figure {
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid var(--support-border);
  border-radius: 20px;
}

.support-slo__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.support-footnote {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--support-muted);
  font-size: 14px;
  line-height: 1.57;
}

.support-footnote__icon {
  flex: 0 0 auto;
  margin-top: 3px;
}

/* Info blocks */
.support-info {
  margin-bottom: 40px;
}

.support-info--last {
  margin-bottom: 0;
}

.support-info__row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.support-info__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #f5f5fe;
}

.support-info__icon img {
  width: 20px;
  height: auto;
  object-fit: contain;
}

.support-info__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--support-text);
}

.support-info__desc {
  margin: 0;
  color: var(--support-muted);
  font-size: 14px;
  line-height: 1.57;
}

.support-dse-list {
  column-count: 2;
  column-gap: 48px;
  margin: 24px 0 20px 68px;
  padding: 0;
  list-style: none;
}

.support-dse-list li {
  position: relative;
  break-inside: avoid;
  margin-bottom: 8px;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.86;
  color: var(--support-text);
}

.support-dse-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 9px;
  background: var(--support-orange);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath fill='black' d='M1 4.5 4.5 8 11 1.5 9.8.3 4.5 5.6 2.2 3.3z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
}

.support-callout {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-left: 68px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--support-surface);
}

.support-callout p {
  margin: 0;
  color: var(--support-muted);
  font-size: 14px;
  line-height: 1.57;
}

.support-link {
  color: #1f73b7;
  font-weight: 400;
  text-decoration: none;
}

.support-link:hover,
.support-link:focus,
.support-link:visited {
  color: #1f73b7;
}

.support-link:hover,
.support-link:focus {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .support-hero__inner,
  .support-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .support-hero__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-practices {
    grid-template-columns: 1fr;
  }

  .support-practices__media {
    order: -1;
  }
}

@media (max-width: 900px) {
  .support-hero__cards {
    grid-template-columns: 1fr;
  }

  .support-channels__panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-channels__divider {
    display: none;
  }

  .support-channels__column {
    padding: 0;
  }

  .support-dse-list {
    column-count: 1;
    margin-left: 0;
  }

  .support-callout {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .support-hero__inner,
  .support-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .support-content {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .support-hero-card {
    grid-template-columns: 64px minmax(0, 1fr) 16px;
    gap: 12px;
    padding: 16px 14px;
  }

  .support-hero-card__icon-wrap {
    width: 64px;
    height: 64px;
  }

  .support-hero-card__chevron {
    margin-top: 14px;
  }
}
