/* --- Reset & Variables --- */
:root {
  --bg-megamenu: rgba(23, 30, 33, 0.9);
  --text-main: #ffffff;
  --text-muted: #cbd5e1;
  --accent-color: #83b7a5;
  --accent-hover:  #bee1d6;
  --border-color: rgba(255, 255, 255, 0.1);
  --header-height: 80px;
}

/* --- Fixed Transparent Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  /*background: linear-gradient(180deg, rgba(2, 6, 23, 0.8) 0%, rgba(2, 6, 23, 0) 100%);
  border-bottom: 1px solid var(--border-color);*/
  background-color: var(--bg-megamenu);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  backdrop-filter: blur(8px);
}
.nav-container a {
  
}
.nav-container {
  max-width: 1806px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- 1. Logo (Left) --- */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  z-index: 1001;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
}

/* --- 2. Navigation (Center - Desktop) --- */
.main-nav {
  height: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.0rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  height: 100%;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--text-main);
}

.chevron-icon {
  transition: transform 0.25s ease;
}

.has-megamenu:hover .chevron-icon,
.yes-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

/* --- Standard Submenu Dropdown --- */
.dropdown-submenu {
  position: absolute;
  top: var(--header-height);
  right: 0;
  min-width: 230px;
  background-color: var(--bg-megamenu);
  border: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease-in-out;
  pointer-events: none;
}

.yes-dropdown:hover .dropdown-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.0rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-color);
}

/* --- Mega Menu Dropdown --- */
.has-megamenu {
  position: static;
}

.megamenu {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right:0;
  margin:0 auto;
  width: 1000px;
  /*background-color: var(--bg-megamenu);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);*/
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease-in-out;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.has-megamenu:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.megamenu-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px;
  background-color: var(--bg-megamenu);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  border-radius: 0 0 10px 10px;
}

.models-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.model-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 450px;
  transition: transform 0.3s ease;
}

.model-name {
  color: var(--text-main);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.model-image-wrapper {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.model-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));
}

.model-item:hover .model-image-wrapper img {
  transform: scale(1.05);
}

.model-item:hover .model-name {
  color: var(--accent-color);
}

.model-links {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.model-action-link {
  border: 1px solid var(--brand-light);
  background-color: var(--transparent);
  color: var(--brand-light);
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 10px 20px 8px;
  line-height: 120%;
  text-decoration: none;
  transition: opacity 0.2s;
  display: flex;
  font-size: 1.0rem;
  font-weight: 500;
  transition: color 0.2s ease;
  border-radius: 5px;
}


.model-action-link:hover {
  color: var(--accent-color);
}

.link-divider {
  color: var(--border-color);
  font-size: 0.85rem;
}

/* --- 3. Header Actions (Right) --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1001;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section --- */
.home-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.45);
  z-index: 2;
}
/*
.hero-mhero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  margin-top: 40px;
}*/
.hero-mhero-content {
    z-index: 2;
    text-align: center;
    flex-flow: column;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
}
.hero-subtitle {
  color: var(--accent-color);
  font-size: 1.30rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-hero-primary {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-hero-primary:hover {
  background-color: var(--brand-teal-light);
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: background-color 0.2s ease;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* --- Responsive (Mobile & Tablet) --- */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: #171e21;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 24px;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link {
    width: 100%;
    padding: 18px 0;
    justify-content: space-between;
    font-size: 1.1rem;
  }

  /* Mobile Accordion Logic for Mega Menu & Dropdown */
  .megamenu,
  .dropdown-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    border: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    pointer-events: auto;
    backdrop-filter: none;
    padding: 0;
    width: 100%;
  }

  .has-megamenu.mobile-open .megamenu,
  .yes-dropdown.mobile-open .dropdown-submenu {
    max-height: 800px;
  }

  .has-megamenu.mobile-open .chevron-icon,
  .yes-dropdown.mobile-open .chevron-icon {
    transform: rotate(180deg);
  }

  .dropdown-item {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .megamenu-inner {
    padding: 10px 0 24px;
  }

  .models-grid {
    flex-direction: column;
    gap: 36px;
  }

  .model-item {
    width: 100%;
  }
  .model-image-wrapper {
    height: 200px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .btn-primary {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}
    :root {
      --conf-primary-dark: #0f172a;
      --conf-primary-light: #ffffff;
      --conf-accent-green: #7a805c;
      --conf-border-color: #94a3b8;
      --conf-bg-color: #f1f5f9;
      --conf-text-dark: #1e293b;
      --conf-card-bg: #f8fafc;
    }


    .wiz-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem 0 0 1rem;
      overflow-x: hidden;
      background:white;
    }

    /* CENTERED TABS */
    .model-tabs-stacked-wrapper {
      display: flex;
      justify-content: center;
      background: #cbd5e1;
      border: 1px solid var(--conf-border-color);
      border-bottom: none;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      overflow: hidden;
      width: 320px;
      margin-bottom: -1px;
      z-index: 10;
      position: relative;
    }

    .tab-btn {
      flex: 1;
      padding: 1rem;
      background: #cbd5e1;
      color: #475569;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 0.85rem;
      letter-spacing: 1px;
    }

    .tab-btn.active {
      background: var(--conf-primary-dark);
      color: var(--conf-primary-light);
      font-weight: 700;
    }

    /* FLUID CONTAINER ARCHITECTURE */
    .wizard-container.fluid-format {
      background: var(--conf-primary-light);
      border-top: 1px solid var(--conf-border-color);
      border-bottom: 1px solid var(--conf-border-color);
      padding: 2.5rem 0 1.5rem 0;
      width: 100%;
      max-width: 100%;
      min-height: 680px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      z-index: 5;
      position: relative;
      box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    }

    #configuratorForm {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    /* Step Progress Header Elements */
    .progress-bar {
      position: relative;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      margin-bottom: 2.5rem;
      max-width: 720px;
      width: calc(100% - 4rem);
      margin-left: auto;
      margin-right: auto;
    }

    .progress-bar::before,
    .progress {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      height: 4px;
      width: 100%;
      background-color: #cbd5e1;
      z-index: 1;
    }
    html[dir="rtl"] .progress-bar::before,
    html[dir="rtl"] .progress {
      right: 0;
    }

    .progress {
      background-color: var(--conf-accent-green);
      width: 0%;
      transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .progress-step {
      width: 36px;
      height: 36px;
      background-color: #e2e8f0;
      color: #475569;
      border: 2px solid #cbd5e1;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 700;
      font-size: 0.9rem;
      position: relative;
      z-index: 2;
      transition: all 0.4s ease;
    }

    .progress-step.active {
      background-color: var(--conf-accent-green);
      border-color: var(--conf-accent-green);
      color: var(--conf-primary-light);
    }

    .progress-step::after {
      content: attr(data-title);
      position: absolute;
      top: 42px;
      font-size: 0.8rem;
      color: #334155;
      font-weight: 600;
      white-space: nowrap;
    }

    /* CENTERED TRACK SLIDER CONTROLLER MECHANICS */
    .slider-window {
      width: 100%;
      overflow: hidden;
      flex-grow: 1;
      display: flex;
      align-items: center;
    }

    .slider-track {
      display: flex;
      width: 100%;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .form-step {
      width: 100%;
      max-width: 960px;
      margin: 0 auto;
      padding: 0 2rem;
      flex-shrink: 0;
      opacity: 0.2;
      transform: scale(0.75);
      transition: opacity 0.5s, transform 0.5s;
      height: auto;
    }

    .form-step.active {
      opacity: 1;
      transform: scale(1);
    }

    /* MAXIMIZED IMAGE CANVAS */
    .maximized-preview-box {
      width: 100%;
      height: 400px;
      background-color: #f8fafc;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      /*border: 1px solid var(--conf-border-color);
      box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);*/
    }

    .maximized-preview-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.3s ease;
    }
  @media (max-width: 600px) {
    .maximized-preview-box img {
      width: 100%;
      height: auto;
      object-fit: fill;
      transition: opacity 0.3s ease;
    }
  }
    /* STEP 3: CUSTOM ACCESSORY IMAGE CARDS */
    .accessories-container {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      padding: 1rem 0;
    }

    .accessory-item-card {
      width: 180px;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      user-select: none;
    }

    .accessory-image-box {
      position: relative;
      width: 100%;
      height: 140px;
      border: 1px solid #1e293b;
      background-color: #f1f5f9;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: all 0.2s ease;
    }

    .accessory-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .accessory-item-card.selected .accessory-image-box {
      border: 2px solid var(--conf-primary-dark);
      box-shadow: 0 0 0 2px var(--conf-primary-dark);
    }

    /* CHECKBOX BADGE */
    .checkbox-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 28px;
      height: 28px;
      background-color: #ffffff;
      border: 1px solid #334155;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    .accessory-item-card.selected .checkbox-badge {
      background-color: #ffffff;
      border-color: #000000;
    }

    .checkbox-badge svg {
      width: 18px;
      height: 18px;
      opacity: 0;
      stroke: #000000;
      stroke-width: 3;
      transition: opacity 0.15s ease;
    }

    .accessory-item-card.selected .checkbox-badge svg {
      opacity: 1;
    }

    .accessory-title-label {
      margin-top: 1rem;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--conf-text-dark);
      text-align: center;
      line-height: 1.35;
      max-width: 240px;
    }

    /* STEP 4 CARDS & INPUTS */
    .form-card-content {
      background: #f8fafc;
      border: 1px solid var(--conf-border-color);
      border-radius: 12px;
      padding: 2rem;
    }

    .configuration-summary-panel {
      background: #e2e8f0;
      border-radius: 8px;
      padding: 1.25rem 1.5rem;
      margin-bottom: 1.5rem;
      border: 1px solid #cbd5e1;
    }

    .configuration-summary-panel h4 {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #334155;
      margin-bottom: 0.75rem;
    }

    .summary-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      font-size: 0.95rem;
    }
    .summary-grid strong {
      color: var(--conf-primary-dark) !important;
    }

    .summary-grid span {
      color: var(--conf-accent-green);
      font-weight: 700;
      display: block;
      margin-top: 2px;
    }

    .input-grid-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    .input-group label {
      display: block;
      margin-bottom: 0.4rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--conf-text-dark);
    }

    .input-group input,
    .input-group select {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid var(--conf-border-color);
      border-radius: 6px;
      font-size: 0.95rem;
      outline: none;
      background: var(--conf-primary-light);
      color: var(--conf-primary-dark);
    }

    .input-group input:focus,
    .input-group select:focus {
      border-color: var(--conf-primary-dark);
      box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
    }

    /* 3-COLUMN UNIFIED FOOTER ROW */
    .unified-action-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      align-items: center;
      /*border-top: 1px solid var(--conf-border-color);*/
      /*padding: 1.5rem 2rem 0 2rem;*/
      padding: 0 2rem 0 2rem;
      /*margin-top: 2rem;*/
      width: 100%;
    }

    .footer-col {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .col-left {
      grid-row: 2;
      justify-content: flex-start;
    }

    .col-center {
      grid-row: 1;
    }

    .col-right {
      grid-row: 2;
      justify-content: flex-end;
    }

    .unified-action-row .btn {
      width: 100%;
      max-width: 140px;
      padding: 0.85rem 0.85rem;
    }

    .step-color-group {
      display: flex;
      gap: 1.5rem;
    }

    .color-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
    }

    .color-dot {
      width: 45px;
      height: 45px;
      border: 2px solid transparent;
      cursor: pointer;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.1);
      transition: transform 0.15s ease;
    }

    .color-dot:hover,
    .color-dot.active {
      transform: scale(1.15);
    }

    .color-dot.active {
      border-color: var(--conf-primary-dark);
    }

    .color-name-label {
      font-size: 0.75rem;
      color: #334155;
      font-weight: 600;
      white-space: nowrap;
    }

    .step-info-text {
      font-size: 0.85rem;
      color: #64748b;
      font-weight: 600;
    }

    /* Action Control Buttons */
    .btn {
      border-radius: 6px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      font-size: 0.95rem;
      transition: background-color 0.2s, opacity 0.2s;
    }

    .btn-next {
      background: var(--conf-primary-dark);
      color: var(--conf-primary-light);
    }

    .btn-prev {
      background: var(--conf-primary-dark);
      color: var(--conf-primary-light);
    }
    .btn:hover {
      background: var(--conf-accent-light);
      color: var(--conf-primary-dark);
      border:var(--conf-primary-dark) 1px solid;
    }
    .btn:active {
      background: var(--conf-accent-green);
      color: var(--conf-primary-dark);
      border:var(--conf-primary-dark) 1px solid;
    }
    .btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
      background: var(--conf-primary-light);
      color: var(--conf-primary-dark);
      border:var(--conf-primary-dark) 1px solid;
    }

    /* MOBILE: keep action controls directly below the active step content */
    @media (max-width: 639px) {
      .wiz-container {
        min-height: auto;
        justify-content: flex-start;
        padding: 1rem 0;
      }

      .wizard-container.fluid-format {
        min-height: auto;
        justify-content: flex-start;
        padding: 1.5rem 0 1rem 0;
      }

      #configuratorForm {
        flex-grow: 0;
        justify-content: flex-start;
        overflow: visible;
      }

      .slider-window {
        flex-grow: 0;
        align-items: flex-start;
        height: auto;
      }

      .slider-track {
        align-items: flex-start;
      }

      .accessories-container {
        gap: 1.25rem;
        padding: 0.5rem 0;
      }

      .accessory-item-card {
        width: min(280px, 46vw);
      }

      .accessory-image-box {
        height: min(140px, 30vw);
      }

      .unified-action-row {
        flex-shrink: 0;
        margin-top: 1rem;
        padding-top: 1rem;
      }
    }

    /* RESPONSIVE BREAKPOINT */
    @media (min-width: 640px) {
      .input-grid-wrapper {
        grid-template-columns: 1fr 1fr;
      }

      .unified-action-row {
        grid-template-columns: 1fr 2fr 1fr;
        gap: 0;
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
      }

      .col-left {
        grid-row: auto;
        justify-content: flex-start;
      }

      .col-center {
        grid-row: auto;
        justify-content: center;
      }

      .col-right {
        grid-row: auto;
        justify-content: flex-end;
      }

      .unified-action-row .btn {
        width: auto;
        max-width: none;
        padding: 0.85rem 2.25rem;
      }
    }
/* ==========================================================================
   MHERO English Homepage
   Scoped under .mh2- prefix to avoid collisions with legacy CSS.
   ========================================================================== */

:root {
    --mh2-black: #171e21;
    --mh2-black-2: #161e21;
    --mh2-border: #3b4954;
    --mh2-teal: #174d56;
    --mh2-teal-2: #376e74;
    --mh2-light: #bee1d6;
    --mh2-green: #8fb5a6;
    --mh2-grey: #eaeaeb;
    --mh2-white: #ffffff;
    --mh2-max: 1296px;
}

.mh2-page * {
    box-sizing: border-box;
}

.mh2-page {
    background: var(--mh2-black);
    color: var(--mh2-white);
    font-family: Figtree, sans-serif;
    overflow-x: hidden;
}

/* Header — transparent over hero, solid on scroll ----------------------- */
.mh2-page .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color .35s ease;
    cursor: auto;
}

.mh2-page .header.is-scrolled,
.mh2-page .header.has-nav-open,
.mh2-page .header.transparent.has-nav-open,
.mh2-page .header.transparent:has(.mh-dropdown.is-open) {
    background-color: var(--mh2-black-2) !important;
}

.mh2-page .header.has-nav-open .mh-dropdown__list,
.mh2-page .header.transparent:has(.mh-dropdown.is-open) .mh-dropdown__list {
    background-color: var(--mh2-black-2);
}

/* Nav dropdown — panel above hero; JS .is-open only (no :hover fight). */
.mh2-page .mh-dropdown__list {
    z-index: 1001;
    background-color: var(--mh2-black-2);
}

.mh2-page .mh-dropdown.is-open > .mh-dropdown__list,
.mh2-page .mh-dropdown.is-open .header-bottom.dark,
.mh2-page .header.transparent .mh-dropdown.is-open > .mh-dropdown__list,
.mh2-page .header.transparent .mh-dropdown.is-open .header-bottom.dark {
    background-color: var(--mh2-black-2) !important;
}

.mh2-page .mh-dropdown__list::before {
    top: -48px;
    height: 48px;
}

.mh2-page .mh-dropdown:hover > .mh-dropdown__list {
    display: none;
    opacity: 0;
}

.mh2-page .mh-dropdown:hover .mh-chevron {
    transform: none;
}

.mh2-page .mh-dropdown.is-open > .mh-dropdown__list {
    display: block;
    opacity: 1;
}

.mh2-page .mh-dropdown.is-open .mh-chevron {
    transform: rotate(180deg);
}

/* Normal system cursor in header + mobile nav (not custom hero cursor). */
.mh2-page .header,
.mh2-page .nav-mobile-wrap {
    cursor: auto;
}

.mh2-page .header *,
.mh2-page .nav-mobile-wrap * {
    cursor: inherit;
}

.mh2-page .header a,
.mh2-page .header button,
.mh2-page .header .mh-dropdown__toggle,
.mh2-page .header .burger,
.mh2-page .header .w-dropdown-toggle,
.mh2-page .header .nav-link,
.mh2-page .header .nav-grid-item,
.mh2-page .header .read-more-link,
.mh2-page .header .logo-wrap,
.mh2-page .header .button-quarternary,
.mh2-page .header .button-tertiary,
.mh2-page .header .language,
.mh2-page .nav-mobile-wrap a,
.mh2-page .nav-mobile-wrap .nav-dropdown-wrap,
.mh2-page .nav-mobile-wrap .close-menu,
.mh2-page .nav-mobile-wrap .close-lv2 {
    cursor: pointer;
}

.mh2-page .cursor.is-mh2-cursor-off,
.mh2-page:has(.header:hover) .cursor,
.mh2-page:has(.header .mh-dropdown.is-open) .cursor,
.mh2-page:has(.header:focus-within) .cursor,
.mh2-page:has(.nav-mobile-wrap:hover) .cursor {
    opacity: 0 !important;
}

.mh2-page img {
    max-width: 100%;
    display: block;
}

/* The homepage image reset is more specific than the shared header logo rules. */
.mh2-page .header .logo-mobile {
    display: none;
}

@media (max-width: 767px) {
    .mh2-page .header .logo-desktop {
        display: none;
    }

    .mh2-page .header .logo-mobile {
        display: block;
    }
}

/* Header images: keep natural widths so the nav row is not squeezed. */
.mh2-page .header img {
    max-width: none;
}

.mh2-shell {
    width: 100%;
    max-width: var(--mh2-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons ---------------------------------------------------------------- */
.mh2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 13px 16px 12px 16px;
    font-family: Figtree, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    border: 1px solid var(--mh2-white);
    color: var(--mh2-white);
    background: transparent;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.mh2-btn:hover {
    background: var(--mh2-white);
    color: var(--mh2-black);
}

.mh2-btn--green {
    background: var(--mh2-green);
    border-color: var(--mh2-green);
}

.mh2-btn--green:hover {
    background: #7ba593;
    border-color: #7ba593;
    color: var(--mh2-white);
}

.mh2-btn--light {
    border-color: var(--mh2-light);
    color: var(--mh2-light);
}

.mh2-btn--light:hover {
    background: var(--mh2-light);
    color: var(--mh2-black);
}

.mh2-btn--dark {
    border-color: var(--mh2-black);
    color: var(--mh2-black);
}

.mh2-btn--dark:hover {
    background: var(--mh2-black);
    color: var(--mh2-white);
}

/* ==========================================================================
   Hero (framed carousel component)
   ========================================================================== */
.mh2-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--mh2-black);
    /*margin-top: -98px;*/
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
}

.mh2-models {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
}

.mhero-framed-carousel--hero {
    width: 100%;
    height: 100%;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider.framed-slider.w-slider,
.mhero-framed-carousel--hero .mhero-framed-carousel__mask {
    height: 100% !important;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slide.framed-slider-slide.w-slide {
    aspect-ratio: unset;
    height: 100%;
    min-height: 100%;
}

.mhero-framed-carousel--hero .mh2-hero__slide-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__mask {
    background-color: var(--mh2-black);
}
.mh2-model .mhero-framed-carousel--hero .mhero-framed-carousel__mask {
    
}

/* Invisible L/R hit zones — full hero height (default padding-bottom trick only covers ~half height at 50% width). */
.mhero-framed-carousel--hero .mhero-framed-carousel__slider,
.mhero-framed-carousel--hero .mhero-framed-carousel__mask {
    cursor: none;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-left,
.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-right {
    top: 0;
    bottom: 0;
    height: 100% !important;
    padding-bottom: 0 !important;
    margin: 0;
    opacity: 0;
    color: transparent;
    font-size: 0;
    cursor: none;
    z-index: 3;
    pointer-events: none;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-left {
    left: 0;
    right: auto;
    width: 50%;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-right {
    left: auto;
    right: 0;
    width: 50%;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-left::before,
.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-right::before,
.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-left [class*="w-icon"],
.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-right [class*="w-icon"] {
    opacity: 0 !important;
    visibility: hidden;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__nav {
    position: absolute !important;
    right: 91px;
    bottom: 66px;
    z-index: 10;
    margin: 0 !important;
    pointer-events: auto;
    cursor: pointer;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .w-slider-dot {
    cursor: pointer;
    pointer-events: auto;
}

.mh2-hero__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mh2-hero__slide-inner picture {
    display: block;
    width: 100%;
    height: 100%;
}

.mh2-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(23, 30, 33, .75) 0%,
        rgba(23, 30, 33, .15) 45%,
        rgba(23, 30, 33, 0) 65%
    );
    pointer-events: none;
}

.mh2-hero__content {
    position: absolute;
    left: 72px;
    bottom: 74px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 643px;
    pointer-events: auto;
    cursor: default;
}

.mh2-hero__content a {
    cursor: pointer;
    pointer-events: auto;
}

.mh2-hero__title {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--mh2-white);
}

.mh2-hero__desc {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--mh2-white);
}

.mh2-hero__cta {
    width: 184px;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .w-slider-dot {
    cursor: pointer;
    transition: background-color .25s ease, transform .25s ease;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .w-slider-dot:hover {
    transform: scale(1.15);
}

/* Hero custom cursor — direction-aware (beats Webflow inline styles on homepage) */
.mh2-page .cursor.is-mh2-dir-left,
.mh2-page .cursor.is-mh2-dir-right {
    width: 100px !important;
    height: 100px !important;
    opacity: 1 !important;
}

.mh2-page .cursor.is-mh2-dir-left .slider-arrow-icon-left {
    opacity: 1 !important;
}

.mh2-page .cursor.is-mh2-dir-left .slider-arrow-icon-right {
    opacity: 0 !important;
}

.mh2-page .cursor.is-mh2-dir-right .slider-arrow-icon-right {
    opacity: 1 !important;
}

.mh2-page .cursor.is-mh2-dir-right .slider-arrow-icon-left {
    opacity: 0 !important;
}

.mh2-page .cursor.is-mh2-dir-hidden {
    opacity: 0 !important;
}

/* ==========================================================================
   Section primitives
   ========================================================================== */
.mh2-section {
    padding: 90px 0;
}

.mh2-section__title {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
}

/* Tabs ------------------------------------------------------------------- */
.mh2-tabs {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mh2-tab {
    min-width: 184px;
    padding: 9px 14px 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--mh2-white);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(23, 77, 86, .5);
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.mh2-tab.is-active {
    background: #d9d9d9;
    color: #1b1e20;
    border-bottom-color: var(--mh2-teal);
}

/* ==========================================================================
   Showcase — "The best of both worlds, delivered."
   ========================================================================== */
.mh2-showcase {
    background: var(--mh2-black);
    text-align: center;
}

.mh2-showcase__tabs {
    margin: 38px 0;
}

.mh2-showcase__stage {
    position: relative;
    max-width: 1008px;
    margin: 0 auto;
    aspect-ratio: 1008 / 567;
    overflow: hidden;
}

.mh2-showcase__media {
    display: block;
    width: 100%;
    height: 100%;
}

.mh2-showcase__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mh2-showcase__canvas {
    display: block;
    background: var(--mh2-black);
}

.mh2-showcase__poster {
    display: block;
}

.mh2-showcase__media.is-sequence-ready .mh2-showcase__poster {
    display: none;
}

.mh2-showcase__media.is-sequence-failed .mh2-showcase__canvas {
    display: none;
}

.mh2-showcase__media.is-sequence-failed .mh2-showcase__poster {
    display: block;
}

.mh2-showcase__spec {
    display: none;
}

.mh2-showcase__callout {
    --callout-left: 7%;
    --callout-top: 29%;
    --callout-h: 25%;
    --callout-dx: 18%;
    --callout-dy: 48%;
    --callout-diag: 50%;
    --callout-angle: 48deg;
    position: absolute;
    left: var(--callout-left);
    top: var(--callout-top);
    z-index: 3;
    width: 24%;
    min-width: 260px;
    text-align: left;
    color: var(--mh2-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
    pointer-events: none;
    transition: left .45s ease, top .45s ease;
}

.mh2-showcase__callout-label {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1.34;
    text-transform: uppercase;
    transition: opacity .25s ease, transform .25s ease;
}

.mh2-showcase__callout-value {
    font-size: 28px;
    font-weight: 300;
    margin-top: 7px;
    line-height: 1.5;
    transition: opacity .25s ease, transform .25s ease;
}

.mh2-showcase__callout.is-changing .mh2-showcase__callout-label,
.mh2-showcase__callout.is-changing .mh2-showcase__callout-value {
    opacity: .2;
    transform: translateY(4px);
}

.mh2-showcase__callout-line {
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    height: 1px;
    transition: transform .45s ease;
}

.mh2-showcase__callout.is-reversed {
    text-align: right;
}

.mh2-showcase__callout.is-reversed .mh2-showcase__callout-line {
    transform: scaleX(-1);
}

.mh2-showcase__callout-h,
.mh2-showcase__callout-d {
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    background: var(--mh2-white);
    transform-origin: left center;
    transition: width .45s ease, transform .45s ease;
}

.mh2-showcase__callout-h {
    width: var(--callout-h);
}

.mh2-showcase__callout-d {
    left: var(--callout-h);
    width: var(--callout-diag);
    transform: rotate(var(--callout-angle));
}

.mh2-showcase__callout-d::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translate(50%, -50%);
    border-radius: 999px;
    background: var(--mh2-white);
    box-shadow: 0 0 0 1px rgba(23, 30, 33, .18), 0 0 18px rgba(255, 255, 255, .3);
}

.mh2-showcase__callout-dot {
    display: none;
}

.mh2-showcase__spec-tabs {
    margin-top: 40px;
    gap: 33px;
}

.mh2-showcase__spec-tabs .mh2-tab {
    min-width: 0;
    border-bottom-color: rgba(55, 110, 116, .8);
}

/* ==========================================================================
   H.E.R.O. acronym — background image + 4-cell grid at bottom
   ========================================================================== */
.mh2-acronym {
    position: relative;
    background: var(--mh2-black);
    overflow: hidden;
}

.mh2-acronym__media {
    position: relative;
    overflow: hidden;
}

.mh2-acronym__picture {
    display: block;
    width: 105%;
    height: 85vh;
}

.mh2-acronym__bg {
    display: block;
    width: 100%;
    height: auto;
}

.mh2-acronym__overlay {
    display: none;
}

.mh2-acronym__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mh2-acronym__cell {
    background: var(--mh2-black-2);
    height: 210px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1.29px solid var(--mh2-teal-2);
}

.mh2-acronym__cell--last {
    border-right: none;
}

.mh2-acronym__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.mh2-acronym__word {
    display: flex;
    align-items: flex-end;
    white-space: nowrap;
}

.mh2-acronym__word b {
    font-size: 60px;
    font-weight: 800;
    line-height: 37px;
}

.mh2-acronym__word span {
    font-size: 35px;
    font-weight: 400;
    line-height: 37px;
}

.mh2-acronym__desc {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--mh2-white);
}

/* ==========================================================================
   Mutawa Alkazi
   ========================================================================== */
.mh2-mobility {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 804px;
    background: var(--mh2-grey);
}

.mh2-mobility__text {
    position: relative;
    padding: 100px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    color: var(--mh2-black);
    overflow: hidden;
}

.mh2-mobility__watermark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 581px;
    height: 707px;
    max-width: none;
    pointer-events: none;
}

.mh2-mobility__text h2 {
    position: relative;
    margin: 0;
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
}

.mh2-mobility__text p {
    position: relative;
    margin: 0;
    max-width: 607px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.mh2-mobility__text .mh2-btn {
    position: relative;
}

.mh2-mobility__media {
    position: relative;
    overflow: hidden;
}

.mh2-mobility__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mh2-mobility__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(
        180deg,
        rgba(22, 30, 33, .88) 0%,
        rgba(22, 30, 33, .54) 37%,
        rgba(22, 30, 33, .28) 66%,
        rgba(22, 30, 33, 0) 100%
    );
    pointer-events: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .mh2-hero__content {
        left: 40px;
        bottom: 56px;
        gap: 20px;
        max-width: 500px;
    }

    .mh2-hero__title {
        font-size: 32px;
    }

    .mh2-mobility {
        grid-template-columns: 1fr;
        height: auto;
    }

    .mh2-mobility__media {
        order: -1;
        min-height: 360px;
    }

    .mh2-mobility__text {
        padding: 21px 24px;
    }

    .mh2-mobility__text h2 {
        font-size: 40px;
    }

    .mh2-mobility__watermark {
        width: 100%;
        height: auto;
    }

    .mh2-acronym__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mh2-acronym__cell:nth-child(2) {
        border-right: none;
    }

    .mh2-acronym__cell {
        height: auto;
        min-height: 160px;
    }
}

@media (max-width: 767px) {
    .mh2-page .header {
        padding: 10px 19px;
    }

    .mh2-page .mh2-hero {
        margin-top: -64px;
        height: 100svh;
        min-height: 100svh;
        max-height: 100svh;
    }

    .mh2-page .logo-desktop {
        display: none;
    }

    .mh2-page .logo-mobile {
        display: block;
        height: 44px;
        width: auto;
    }

    .mh2-shell {
        padding: 0 19px;
    }

    .mh2-section__title {
        font-size: 32px;
        text-align: left;
    }

    .mhero-framed-carousel--hero .mh2-hero__slide-inner {
        overflow: hidden;
    }

    .mhero-framed-carousel--hero .mh2-hero__slide-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
    }

    .mhero-framed-carousel--hero .mh2-hero__slide-inner picture {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .mh2-page .cursor-wrap {
        display: none !important;
    }

    .mh2-page .mhero-framed-carousel--hero .mhero-framed-carousel__slider,
    .mh2-page .mhero-framed-carousel--hero .mhero-framed-carousel__mask,
    .mh2-page .mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-left,
    .mh2-page .mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-right {
        cursor: auto;
    }

    .mh2-hero__overlay {
        display: none;
    }

    .mh2-hero__content {
        left: 19px;
        right: 19px;
        bottom: 43px;
        gap: 22px;
        max-width: none;
        width: auto;
    }

    .mh2-hero__title {
        max-width: 270px;
        font-size: 32px;
        font-weight: 700;
        line-height: 38.4px;
        text-transform: none;
    }

    .mh2-hero__desc {
        font-size: 16px;
        font-weight: 500;
        line-height: 22.4px;
    }

    .mh2-hero__cta {
        width: 100%;
        height: 44px;
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 16px;
        line-height: 19.2px;
    }

    .mhero-framed-carousel--hero .mhero-framed-carousel__nav {
        right: 19px;
        bottom: 19px;
        gap: 12px;
    }

    .mhero-framed-carousel--hero .mhero-framed-carousel__slider .w-slider-dot {
        width: 12px !important;
        height: 12px !important;
        flex: 0 0 12px;
    }

    .mh2-mobility__text {
        gap: 21px;
    }

    .mh2-mobility__text h2 {
        font-size: 34px;
        font-weight: 500;
        line-height: 40.8px;
    }

    .mh2-mobility__text p {
        font-size: 16px;
        font-weight: 500;
        line-height: 22.4px;
    }

    .mh2-section {
        padding: 56px 0;
    }

    .mh2-tabs {
        gap: 8px;
    }

    .mh2-tab {
        flex: 1;
        min-width: 0;
    }

    .mh2-showcase__spec-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
    }

    .mh2-showcase__tabs {
        margin: 21px;
    }

    .mh2-showcase__stage {
        width: 100%;
        max-width: 351px;
        aspect-ratio: 1 / 1;
        margin-left: 0;
        margin-right: auto;
    }

    .mh2-showcase__callout {
        width: 58%;
        min-width: 190px;
        transform: scale(.72);
        transform-origin: left top;
    }

    .mh2-showcase__callout-label {
        font-size: 12px;
    }

    .mh2-showcase__callout-value {
        font-size: 22px;
    }

    .mh2-showcase__callout-line {
        top: 24px;
    }

    .mh2-showcase__spec-tabs .mh2-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .mh2-acronym__media {
        aspect-ratio: 390 / 575;
    }

    .mh2-acronym__picture {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .mh2-acronym__bg {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        object-fit: cover;
    }

    .mh2-acronym__overlay {
        display: block;
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(23, 30, 33, .61) 13.162%,
            rgba(23, 30, 33, 0) 37.778%
        );
        pointer-events: none;
    }

    .mh2-acronym__grid {
        grid-template-columns: 1fr;
        margin-top: -156px;
        z-index: 1;
    }

    .mh2-acronym__cell {
        height: 122px;
        min-height: 122px;
        padding: 16px 32px;
        border-right: none;
        border-bottom: 1.285px solid var(--mh2-teal-2);
        justify-content: flex-start;
        align-items: center;
    }

    .mh2-acronym__cell:nth-child(odd) {
        border-right: none;
    }

    .mh2-acronym__cell--last {
        border-bottom: none;
    }

    .mh2-acronym__inner {
        gap: 10px;
    }

    .mh2-acronym__word b {
        font-size: 50px;
        font-weight: 800;
        line-height: 37px;
    }

    .mh2-acronym__word span {
        font-size: 32px;
        line-height: 37px;
    }

    .mh2-acronym__desc {
        line-height: 28.788px;
    }
}
