.ma-hero-page {
  height: 100vh;
  overflow: hidden;
}

.ma-hero-stage {
  position: relative;
  height: 100vh;
  width: 100%;
}

.ma-hero {
  position: relative;
  height: 100vh;
  width: 100%;
}

.ma-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ma-hero__media video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.ma-hero__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 16, 30, 0.9), rgba(22, 28, 46, 0.9));
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

.ma-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 65%, rgba(0,0,0,0.6) 100%);
}

.ma-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 24px 24px 12px;
  pointer-events: none;
}

.ma-hero__logo {
  width: 378px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.65)) drop-shadow(0 0 40px rgba(255,255,255,0.45)) drop-shadow(0 0 60px rgba(255,255,255,0.3));
  background: transparent;
  mix-blend-mode: multiply;
}

.ma-hero__text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 4px;
}

.ma-hero__headline {
  font-size: 24px;
  margin: 0;
  text-shadow: 0 0 26px rgba(255,255,255,0.9), 0 0 52px rgba(255,255,255,0.65), 0 2px 6px rgba(0,0,0,0.85);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ma-hero__subtext {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 22px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.55), 0 2px 6px rgba(0,0,0,0.85);
  font-weight: 600;
}

.ma-vehicle-types {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.ma-vehicle-types__title {
  margin: 0;
  font-size: 18px;
  color: var(--ma-text, #1a2232);
}

.ma-vehicle-types__grid {
  display: grid;
  gap: 12px;
}

.ma-vehicle-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(9, 30, 66, 0.12);
}

.ma-vehicle-card__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(9, 30, 66, 0.12);
  background: rgba(9, 30, 66, 0.04);
}

.ma-vehicle-card__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ma-text, #1a2232);
}

.ma-vehicle-card__desc {
  font-size: 13px;
  color: rgba(26, 34, 50, 0.7);
}

@media (min-width: 720px) {
  .ma-vehicle-types__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* ========================================
   RESPONSIVE WELCOME PAGE
   ======================================== */

/* Mobile - Portrait (up to 480px) */
@media (max-width: 480px) {
  .ma-hero__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 16px;
    box-sizing: border-box;
  }
  
  .ma-hero__logo {
    width: min(291px, 90vw);
    max-width: 100%;
    background: transparent;
    position: absolute;
    top: calc(50% - 288px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .ma-hero__text-group {
    position: absolute;
    left: 50%;
    bottom: 206px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: min(92vw, 520px);
  }
  
  .ma-hero__headline {
    font-size: 26px;
  }
  
  .ma-hero__subtext {
    font-size: 17px;
    white-space: normal;
  }
}

/* Mobile - Landscape & Small Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .ma-hero__overlay {
    padding: 16px 20px;
  }
  
  .ma-hero__logo {
    width: 280px;
  }
  
  .ma-hero__headline {
    font-size: 22px;
  }
  
  .ma-hero__subtext {
    font-size: 14px;
    white-space: normal;
    overflow-wrap: break-word;
  }
}

/* Tablets - iPad (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .ma-hero__overlay {
    padding: 20px 24px;
  }
  
  .ma-hero__logo {
    width: 336px;
  }
  
  .ma-hero__headline {
    font-size: 26px;
  }
  
  .ma-hero__subtext {
    font-size: 16px;
    white-space: normal;
    overflow-wrap: break-word;
  }
}

/* Desktop & Large Screens (1025px+) */
@media (min-width: 1025px) {
  .ma-hero__overlay {
    padding: 12px 24px 24px 12px;
  }
  
  .ma-hero__logo {
    width: 378px;
  }
  
  .ma-hero__headline {
    font-size: 28px;
  }
  
  .ma-hero__subtext {
    font-size: 16px;
    white-space: normal;
    overflow-wrap: break-word;
  }
}

/* ── Version Badge ── */
.ma-version-badge {
  text-align: center;
  padding: 16px 0 8px;
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.3px;
}
.ma-version-badge__label {
  font-weight: 600;
}
.ma-version-badge__value {
  font-weight: 700;
  color: #7b8794;
}
.ma-version-badge__build {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: #b0b8c4;
}
