.sa-hero {
  position: relative;
  background: #2b2b2b;
  background-image: url("/images/sa-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.sa-hero-video {
  display: none;
}

.sa-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 90px 20px 60px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Factory Footage section */
.sa-factory {
  background: #ffffff;
  padding: 60px 0 70px;
}

.sa-factory-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

.sa-factory-title {
  margin: 0 0 26px;
  font-size: clamp(18px, 2vw, 34px);
  font-weight: 700;
  color: #2b2b2b;
}

.sa-factory-card {
  width: min(720px, 92vw);
  margin: 0 auto;
  background: #7e7e7e;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.sa-factory-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #7e7e7e;
}

.sa-factory-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.sa-factory-play::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.92);
}

@media screen and (max-width: 750px) {
  .sa-hero {
    min-height: 52vh;
  }

  .sa-hero-overlay {
    padding: 72px 20px 44px;
  }

  .sa-factory {
    padding: 44px 0 54px;
  }
}

