:root {
  --direct-navy: #0d2e6e;
  --electric-blue: #009eea;
  --bright-green: #6bd12f;
  --dark-bg: #02070d;
  --white: #ffffff;
  --soft-gray: #b7c3d1;
  --support-panel: rgba(4, 17, 31, 0.82);
  --support-panel-strong: rgba(5, 23, 42, 0.92);
  --support-border: rgba(0, 158, 234, 0.28);
  --support-border-strong: rgba(0, 158, 234, 0.48);
  --support-glow-blue: rgba(0, 158, 234, 0.28);
  --support-glow-green: rgba(107, 209, 47, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #02070d;
}

body.support-page {
  margin: 0;
  min-height: 100vh;
  background-color: #02070d;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 158, 234, 0.16), transparent 30rem),
    radial-gradient(circle at 16% 42%, rgba(107, 209, 47, 0.11), transparent 26rem),
    linear-gradient(180deg, #02070d 0%, #03101d 46%, #02070d 100%);
  background-color: #02070d;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

.support-page a {
  color: inherit;
  text-decoration: none;
}

.support-page img,
.support-page svg {
  display: block;
}

.support-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.support-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding-left: clamp(20px, 3vw, 56px);
  padding-right: clamp(20px, 3vw, 56px);
}

.support-main {
  position: relative;
  isolation: isolate;
}

.support-main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 158, 234, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 158, 234, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 70%, transparent);
}

.support-hero {
  position: relative;
  min-height: clamp(520px, 42vw, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 158, 234, 0.2);
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.96) 0%, rgba(2, 7, 13, 0.82) 34%, rgba(2, 7, 13, 0.18) 72%, rgba(2, 7, 13, 0.44) 100%),
    url("../assets/support/support-hero-banner.png") center / cover no-repeat;
}

.support-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 48%, rgba(0, 158, 234, 0.14), transparent 30rem),
    radial-gradient(circle at 84% 64%, rgba(107, 209, 47, 0.12), transparent 22rem),
    linear-gradient(180deg, transparent 66%, rgba(2, 7, 13, 0.88) 100%);
}

.support-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(64px, 9vw, 124px);
}

.support-hero-copy {
  max-width: 640px;
  animation: supportRise 520ms ease both;
}

.support-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(62px, 7vw, 132px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.44);
}

.support-hero h1 span {
  display: block;
}

.support-green,
.support-section-title span {
  color: var(--bright-green);
  text-shadow: 0 0 28px rgba(107, 209, 47, 0.34);
}

.support-hero-copy p {
  max-width: 560px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 600;
  line-height: 1.55;
}

.support-hero-search {
  width: min(100%, 680px);
  height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 158, 234, 0.42);
  border-radius: 6px;
  background: rgba(2, 7, 13, 0.84);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  animation: supportRise 520ms 120ms ease both;
}

.support-hero-search:focus-within {
  border-color: rgba(0, 158, 234, 0.9);
  box-shadow: 0 0 0 1px rgba(0, 158, 234, 0.25), 0 0 34px rgba(0, 158, 234, 0.2);
}

.support-hero-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  padding: 0 22px;
  font: 700 16px/1.2 Inter, Arial, sans-serif;
}

.support-hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.support-hero-search button {
  height: 100%;
  border: 0;
  border-left: 1px solid rgba(0, 158, 234, 0.22);
  background: rgba(5, 23, 42, 0.72);
  color: var(--white);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.support-hero-search button svg,
.support-info-icon svg,
.support-contact-row svg,
.support-cta-band svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-hero-search button:hover,
.support-hero-search button:focus-visible {
  color: var(--electric-blue);
  background: rgba(0, 158, 234, 0.1);
}

.support-card-band {
  position: relative;
  margin-top: clamp(26px, 3vw, 46px);
  padding-top: clamp(28px, 3vw, 46px);
  padding-bottom: clamp(28px, 3vw, 46px);
  border: 1px solid var(--support-border);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 158, 234, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(5, 23, 42, 0.86), rgba(3, 13, 24, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 80px rgba(0, 0, 0, 0.26);
}

.support-section-title {
  margin: 0 0 30px;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(26px, 2vw, 38px);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.support-section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.support-section-row .support-section-title {
  margin: 0;
  text-align: left;
}

.support-view-link,
.support-help-card a,
.support-topic-card a {
  color: var(--bright-green);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.support-view-link:hover,
.support-help-card a:hover,
.support-topic-card a:hover {
  color: #8dff48;
  text-shadow: 0 0 18px rgba(107, 209, 47, 0.35);
}

.support-help-grid,
.support-topic-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.2vw, 22px);
}

.support-help-card,
.support-topic-card,
.support-info-card,
.support-shield-card,
.support-cta-band,
.support-stats article {
  border: 1px solid var(--support-border);
  background:
    linear-gradient(180deg, rgba(6, 25, 45, 0.88), rgba(2, 10, 19, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 48px rgba(0, 0, 0, 0.22);
}

.support-help-card {
  min-height: 250px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 34px 22px 28px;
  border-radius: 8px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-help-card img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 18px rgba(0, 158, 234, 0.26));
}

.support-help-card h3,
.support-topic-card h3,
.support-info-card h2,
.support-shield-card h2,
.support-cta-band h2,
.support-cta-band h3,
.support-footer h2 {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.support-help-card h3,
.support-topic-card h3 {
  color: var(--white);
  font-size: 17px;
  line-height: 1.15;
}

.support-help-card p,
.support-topic-card p,
.support-info-card p,
.support-shield-card p,
.support-cta-band p,
.support-footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.support-help-card p {
  min-height: 46px;
  margin: 14px 0 18px;
  font-size: 14px;
}

.support-help-card:hover,
.support-topic-card:hover,
.support-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--support-border-strong);
  box-shadow: 0 0 30px rgba(0, 158, 234, 0.12), 0 24px 70px rgba(0, 0, 0, 0.32);
}

.support-help-card:hover img {
  filter: drop-shadow(0 0 24px rgba(107, 209, 47, 0.3));
}

.support-topic-card {
  overflow: hidden;
  min-height: 310px;
  padding: 16px 16px 22px;
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-topic-image {
  height: 148px;
  overflow: hidden;
  border: 1px solid rgba(0, 158, 234, 0.18);
  border-radius: 6px;
  background: rgba(2, 7, 13, 0.7);
}

.support-topic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease, filter 240ms ease;
}

.support-topic-card:nth-child(3) .support-topic-image img {
  object-fit: contain;
  padding: 22px;
}

.support-topic-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.1) brightness(1.05);
}

.support-topic-card h3 {
  margin-top: 20px;
}

.support-topic-card p {
  min-height: 46px;
  margin: 12px 0 18px;
  font-size: 14px;
}

.support-info-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 0.95fr) minmax(420px, 1.65fr);
  gap: clamp(18px, 1.6vw, 28px);
  margin-top: clamp(26px, 3vw, 46px);
}

.support-info-card,
.support-shield-card {
  min-height: 340px;
  padding: clamp(28px, 2.4vw, 42px);
  border-radius: 10px;
}

.support-info-icon {
  color: var(--electric-blue);
  margin-bottom: 22px;
  filter: drop-shadow(0 0 16px rgba(0, 158, 234, 0.36));
}

.support-info-card h2 {
  margin-bottom: 28px;
  font-size: 24px;
}

.support-info-card p {
  margin: 0 0 28px;
  display: grid;
  gap: 6px;
  font-size: 16px;
}

.support-info-card strong {
  color: var(--white);
}

.support-contact-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
}

.support-contact-row svg {
  color: var(--electric-blue);
}

.support-contact-row span {
  display: grid;
  gap: 4px;
}

.support-contact-row small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.support-shield-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.96) 0%, rgba(2, 7, 13, 0.82) 48%, rgba(2, 7, 13, 0.24) 100%),
    url("../assets/support/support-directshield.png") right center / cover no-repeat;
}

.support-shield-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.09) 48%, transparent 64%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
}

.support-shield-card:hover::after {
  transform: translateX(100%);
}

.support-shield-card > div {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.support-shield-card h2 {
  font-size: clamp(34px, 3.2vw, 58px);
  font-style: italic;
  line-height: 0.95;
}

.support-shield-card strong {
  display: block;
  margin-top: 8px;
  color: var(--bright-green);
  font-size: clamp(18px, 1.4vw, 24px);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.support-shield-card p {
  max-width: 440px;
  margin: 18px 0 18px;
}

.support-shield-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.support-shield-card li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.support-shield-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--bright-green);
  box-shadow: 0 0 16px rgba(107, 209, 47, 0.5);
}

.support-shield-card a,
.support-primary-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid rgba(107, 209, 47, 0.68);
  border-radius: 5px;
  color: #061109;
  background: linear-gradient(135deg, #75e235, #55cb1d);
  box-shadow: 0 0 24px rgba(107, 209, 47, 0.26);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.support-shield-card a:hover,
.support-primary-btn:hover,
.support-primary-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 0 34px rgba(107, 209, 47, 0.42);
}

.support-cta-band {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(180px, 1fr));
  gap: clamp(20px, 2vw, 36px);
  align-items: center;
  margin-top: clamp(26px, 3vw, 46px);
  padding: clamp(28px, 3vw, 44px);
  border-radius: 10px;
}

.support-cta-band h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.support-cta-band p {
  margin: 0 0 20px;
}

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

.support-cta-band article svg {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  color: var(--bright-green);
  filter: drop-shadow(0 0 18px rgba(107, 209, 47, 0.3));
}

.support-cta-band h3 {
  font-size: 17px;
}

.support-cta-band article p {
  margin: 6px 0 0;
  font-size: 14px;
}

.support-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(34px, 4vw, 70px);
  margin-bottom: clamp(34px, 4vw, 70px);
  text-align: center;
}

.support-stats article {
  padding: 22px;
  border-right-width: 0;
  background: rgba(4, 17, 31, 0.52);
}

.support-stats article:first-child {
  border-radius: 8px 0 0 8px;
}

.support-stats article:last-child {
  border-right-width: 1px;
  border-radius: 0 8px 8px 0;
}

.support-stats strong {
  display: block;
  color: var(--electric-blue);
  font-size: clamp(32px, 3vw, 54px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 22px rgba(0, 158, 234, 0.26);
}

.support-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.support-footer {
  border-top: 1px solid rgba(0, 158, 234, 0.22);
  background:
    radial-gradient(circle at 84% 0%, rgba(0, 158, 234, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(3, 13, 24, 0.98), rgba(1, 6, 11, 1));
}

.support-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(140px, 1fr));
  gap: clamp(28px, 3vw, 58px);
  padding-top: clamp(42px, 5vw, 74px);
  padding-bottom: clamp(32px, 4vw, 56px);
}

.support-footer-brand img {
  width: 164px;
  height: auto;
  margin-bottom: 20px;
}

.support-footer-brand p {
  max-width: 330px;
  margin: 0 0 22px;
}

.support-social-row {
  display: flex;
  gap: 10px;
}

.support-social-row a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-social-row a:hover,
.support-social-row a:focus-visible {
  color: var(--bright-green);
  border-color: rgba(107, 209, 47, 0.7);
  box-shadow: 0 0 18px rgba(107, 209, 47, 0.22);
}

.support-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.support-footer h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 15px;
}

.support-footer nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  transition: color 180ms ease;
}

.support-footer nav a:hover,
.support-footer nav a:focus-visible {
  color: var(--bright-green);
}

.support-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(0, 158, 234, 0.16);
}

.support-footer-bottom p,
.support-footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.support-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.support-reveal {
  animation: supportRise 540ms ease both;
}

@keyframes supportRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1320px) {
  .support-help-grid,
  .support-topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .support-shield-card {
    grid-column: 1 / -1;
    min-height: 390px;
  }
}

@media (max-width: 1024px) {
  .support-hero {
    min-height: 620px;
    background-position: 58% center;
  }

  .support-hero::after {
    background: linear-gradient(180deg, rgba(2, 7, 13, 0.36), rgba(2, 7, 13, 0.92));
  }

  .support-hero-copy {
    max-width: 560px;
  }

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

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

@media (max-width: 760px) {
  .support-hero {
    min-height: auto;
    background-position: 66% center;
  }

  .support-hero-inner {
    padding-top: 36px;
    padding-bottom: 280px;
  }

  .support-hero h1 {
    font-size: clamp(52px, 15vw, 82px);
  }

  .support-hero-copy p {
    font-size: 16px;
  }

  .support-hero-search {
    height: 58px;
    grid-template-columns: minmax(0, 1fr) 56px;
  }

  .support-card-band {
    border-radius: 8px;
  }

  .support-section-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-help-grid,
  .support-topic-grid,
  .support-info-grid,
  .support-cta-band,
  .support-stats {
    grid-template-columns: 1fr;
  }

  .support-help-card,
  .support-topic-card,
  .support-info-card,
  .support-shield-card {
    min-height: auto;
  }

  .support-topic-image {
    height: 210px;
  }

  .support-shield-card {
    min-height: 520px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(2, 7, 13, 0.25) 0%, rgba(2, 7, 13, 0.96) 58%),
      url("../assets/support/support-directshield.png") center top / cover no-repeat;
  }

  .support-cta-band article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .support-cta-band article svg {
    width: 40px;
    height: 40px;
  }

  .support-stats {
    gap: 12px;
  }

  .support-stats article,
  .support-stats article:first-child,
  .support-stats article:last-child {
    border-right-width: 1px;
    border-radius: 8px;
  }

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

  .support-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
