.support-page {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,248,251,0.96)),
    var(--grid);
}

.support-hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.92), rgba(8, 11, 16, 0.74) 50%, rgba(8, 11, 16, 0.38)),
    url("../images/labeling_systems.jpg") center center / cover no-repeat;
  box-shadow: var(--shadow-2);
}

.support-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: var(--grad-red);
}

.support-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(2.5rem, 6vw, 4.75rem);
  color: #fff;
}

.support-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-1);
  box-shadow: 0 0 18px rgba(255, 42, 42, 0.62);
}

.support-hero h1 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.95;
}

.support-hero p {
  max-width: 680px;
  color: rgba(255,255,255,0.9);
  font-size: 1.06rem;
  line-height: 1.7;
}

.support-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.support-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 700;
}

.support-sections {
  display: grid;
  gap: 3rem;
}

.support-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(12,15,20,0.1);
  padding-bottom: 1rem;
}

.support-section-heading h2 {
  margin-bottom: 0.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.support-section-heading p {
  max-width: 760px;
  margin-bottom: 0;
}

.support-section-heading > span {
  flex: 0 0 auto;
  color: var(--text-3);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.support-resource-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(12,15,20,0.1);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(12,15,20,0.08);
}

.support-video-thumbnail {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  color: #fff;
  text-decoration: none;
}

.support-video-thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, opacity 180ms ease;
}

.support-video-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,11,16,0.08), rgba(8,11,16,0.32));
}

.support-video-thumbnail:hover img,
.support-video-thumbnail:focus img {
  opacity: 0.88;
  transform: scale(1.03);
}

.support-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red-1);
  box-shadow: 0 16px 34px rgba(12,15,20,0.28);
  transform: translate(-50%, -50%);
}

.support-video-play::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
}

.support-resource-content {
  display: flex;
  gap: 1rem;
  padding: 1.15rem;
}

.support-resource-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--red-1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.support-resource-body h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.support-resource-body {
  min-width: 0;
}

.support-resource-body p {
  margin-bottom: 0.9rem;
  line-height: 1.55;
}

.support-resource-body a {
  color: var(--red-2);
  font-weight: 800;
  text-decoration: none;
}

.support-resource-body a:hover,
.support-resource-body a:focus {
  color: var(--red-1);
  text-decoration: underline;
}

.support-empty {
  border: 1px solid rgba(12,15,20,0.1);
  border-radius: 8px;
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.support-detail-page {
  min-height: 72vh;
}

.support-back-link {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--red-2);
  font-weight: 800;
  text-decoration: none;
}

.support-back-link:hover,
.support-back-link:focus {
  color: var(--red-1);
  text-decoration: underline;
}

.support-detail {
  max-width: 1180px;
}

.support-detail-heading {
  max-width: 820px;
  margin-bottom: 1.25rem;
}

.support-detail-type {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  background: var(--red-1);
  padding: 0.35rem 0.7rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.support-detail-heading h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.support-detail-heading p {
  margin-bottom: 0;
  font-size: 1.06rem;
  line-height: 1.6;
}

.support-detail-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 24px 54px rgba(12,15,20,0.16);
}

.support-detail-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991.98px) {
  .support-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 575.98px) {
  .support-hero {
    min-height: 0;
  }

  .support-hero-content {
    padding: 2rem 1.25rem;
  }
}
