/* Modern customer support page */
.support-hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 25%, rgba(32,165,255,.25), transparent 28%),
    linear-gradient(115deg, #02162f, #063562);
  border-bottom: 1px solid var(--blue);
}

.support-hero-inner {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 60px;
  align-items: center;
}

.support-hero h1 {
  max-width: 760px;
  margin: 10px 0 20px;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.support-hero-inner > div:first-child > p:last-of-type {
  max-width: 680px;
  margin: 0;
  color: #dce9f6;
  font-size: 16px;
  line-height: 1.7;
}

.support-hero-actions { margin-top: 28px; display: flex; align-items: center; gap: 24px; }
.support-phone-link { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 800; }
.support-phone-link .icon { width: 19px; height: 19px; }

.support-hero-graphic {
  width: min(230px, 100%);
  aspect-ratio: 1;
  margin-left: auto;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: #8bd3ff;
  background: rgba(8,119,249,.11);
  border: 1px solid rgba(115,202,255,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(8,119,249,.04), 0 0 0 64px rgba(8,119,249,.025);
}

.support-hero-graphic .icon { width: 84px; height: 84px; stroke-width: 1.25; }
.support-hero-graphic span { color: #dce9f6; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.support-resources { padding: 76px 0 68px; background: #f5f9fc; }
.support-heading { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.support-heading h2 { margin: 10px 0 14px; font-size: 34px; letter-spacing: -.025em; }
.support-heading > p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.support-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.support-card { padding: 32px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 30px rgba(4,31,61,.07); }
.support-card-featured { border-top: 4px solid var(--blue); padding-top: 29px; }
.support-card-icon { width: 54px; height: 54px; margin-bottom: 22px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg,var(--blue2),var(--blue)); border-radius: 50%; }
.support-card-icon .icon { width: 27px; height: 27px; }
.support-card-label { margin: 0 0 8px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.support-card h3 { margin: 0 0 13px; font-size: 21px; line-height: 1.2; }
.support-card > p:not(.support-card-label):not(.support-auth-note) { margin: 0 0 20px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.support-card .button { align-self: flex-start; margin-top: auto; }
.support-auth-note { margin: 0 0 21px; display: flex; align-items: flex-start; gap: 7px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.support-auth-note .icon { flex: 0 0 auto; width: 15px; height: 15px; color: var(--blue); }
.support-secondary-link { margin-top: 15px; align-self: flex-start; color: var(--blue); font-size: 11px; font-weight: 800; text-transform: uppercase; }

.support-access-note { max-width: 860px; margin: 32px auto 0; padding: 19px 24px; display: flex; align-items: center; gap: 16px; background: #eaf4ff; border: 1px solid #cde2f8; border-radius: 7px; }
.support-access-note > .icon { width: 25px; height: 25px; color: var(--blue); }
.support-access-note strong,.support-access-note span { display: block; }
.support-access-note strong { margin-bottom: 3px; font-size: 13px; }
.support-access-note span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.support-access-note a { color: var(--blue); font-weight: 800; }

.support-contact-section { padding: 78px 0 84px; background: #fff; }
.support-contact-layout { display: grid; grid-template-columns: minmax(250px,.72fr) minmax(0,1.55fr); gap: 46px; align-items: start; }
.support-contact-intro { padding: 28px 10px 0 0; }
.support-contact-intro h2 { margin: 10px 0 16px; font-size: 31px; letter-spacing: -.025em; }
.support-contact-intro > p:not(.eyebrow) { margin: 0 0 30px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.support-contact-method { padding: 18px 0; display: flex; align-items: flex-start; gap: 14px; border-top: 1px solid var(--line); }
.support-contact-method > .icon { width: 23px; height: 23px; color: var(--blue); }
.support-contact-method small,.support-contact-method span { display: block; color: var(--muted); font-size: 10px; }
.support-contact-method a { display: inline-block; margin: 4px 0; color: var(--ink); font-size: 16px; font-weight: 800; }
.support-form-card { padding: 40px; }
.support-form-grid { padding-top: 0; margin-top: 0; border-top: 0; }

@media (max-width: 950px) {
  .support-card-grid { grid-template-columns: 1fr; }
  .support-contact-layout { grid-template-columns: 1fr; }
  .support-contact-intro { padding: 0; }
}

@media (max-width: 700px) {
  .support-hero-inner { min-height: 360px; grid-template-columns: 1fr; }
  .support-hero-graphic { display: none; }
  .support-hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .support-resources,.support-contact-section { padding: 54px 0 62px; }
  .support-card { padding: 27px 23px; }
  .support-access-note { align-items: flex-start; }
  .support-form-card { padding: 28px 22px; }
}
