/*@font-face {*/
/*  font-family: "Mazda Type Viet";*/
/*  src: url("../font/mazdatypeviet-regular.woff") format("woff");*/
/*  font-weight: 400;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/

/*@font-face {*/
/*  font-family: "Mazda Type Viet";*/
/*  src: url("../font/mazdatypeviet-medium.woff") format("woff");*/
/*  font-weight: 500;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/

/*@font-face {*/
/*  font-family: "Mazda Type Viet";*/
/*  src: url("../font/mazdatypeviet-bold.woff") format("woff");*/
/*  font-weight: 700;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
@font-face {
  font-display: swap;
}
/* Layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Mazda Type Viet", sans-serif;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
  width: 100%;
  box-sizing: border-box;
}

/* Banner */
.banner {
  position: relative;
}

/* #region Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.header--scrolled {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.header.header--menu-active {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.header.header--menu-active .header__link,
.header.header--menu-active .header__search {
  color: var(--color-text-black);
}
.header.header--menu-active .header__link::after {
  background: var(--color-text-black);
}
.header.header--menu-active .header__logo-img--desktop {
  filter: brightness(0);
  width: 35px;
  height: 35px;
}
.header.header--scrolled .header__link {
  color: var(--color-text-black);
}
.header.header--scrolled .header__link::after {
  background: var(--color-text-black);
}
.header.header--scrolled .submenu .submenu__nav a {
  color: var(--color-text-black);
}
.header.header--scrolled .header__search {
  color: var(--color-text-black);
}
.header.header--scrolled .header__logo-img--desktop {
  filter: brightness(0);
  width: 35px;
  height: 35px;
}
@media (hover: hover) and (pointer: fine) {
  .header:hover {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .header:hover .header__link {
    color: var(--color-text-black);
  }
  .header:hover .header__link::after {
    background: var(--color-text-black);
  }
  .header:hover .header__search {
    color: var(--color-text-black);
  }
  .header:hover .header__logo-img--desktop {
    filter: brightness(0);
  }
  .header:hover .submenu .submenu__nav a {
    color: var(--color-text-black);
  }

}
.header,
.header__logo,
.header__link,
.header__search {
  cursor: pointer;
}
.header__bar {
  height: 80px;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  color: var(--color-text-white);
  position: relative;
}
.header__menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 1001;
  justify-self: start;
  grid-column: 1;
  color: var(--color-text-white);
  transition: color 0.3s ease;
}
.header__menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 18px;
}
.header__menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
}
.header__menu-toggle[aria-expanded="true"]
  .header__menu-icon
  span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__menu-toggle[aria-expanded="true"]
  .header__menu-icon
  span:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle[aria-expanded="true"]
  .header__menu-icon
  span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.header.header--scrolled .header__menu-toggle,
.header.header--menu-active .header__menu-toggle {
  color: var(--color-text-black);
}
.header__group {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.header__group--left {
  justify-self: start;
}
.header__group--right {
  justify-self: end;
  gap: var(--space-5);
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}
.header__logo-img {
  display: block;
  transition: filter 0.3s ease, width 0.3s ease, height 0.3s ease;
}
.header__logo-img--desktop {
  width: 70px;
  height: 65px;
}
.header__logo-text {
  display: none;
  font-size: 24px;
  font-weight: var(--fw-bold);
  letter-spacing: 4px;
  color: var(--color-text-white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.header.header--scrolled .header__logo-text {
  color: var(--color-text-black);
}
.header.header--menu-active .header__logo-text {
  color: var(--color-text-black);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__nav--right {
  display: flex;
  gap: 24px;
}
.header__link {
  color: var(--color-text-white);
  text-decoration: none;
  font-size: var(--fs-16);
  line-height: var(--lh-14-22);
  position: relative;
  font-weight: var(--fw-semibold);
  transition: color 0.3s ease;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-text-white);
  transition: width 0.25s ease;
}
.header__link:hover::after {
  width: 100%;
}
.header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--color-text-white);
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}
.header__search svg {
  width: 18px;
  height: 18px;
}
.header__search:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header__mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.header__mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.header__mobile-menu-inner {
  padding: var(--space-8) var(--space-4);
}
.header__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.header__mobile-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__mobile-link {
  color: var(--color-text-white);
  text-decoration: none;
  font-size: var(--fs-18);
  font-weight: var(--fw-semibold);
  padding: var(--space-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  width: 100%;
  background: none;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}
.header__mobile-link:hover {
  opacity: 0.7;
}
.header__mobile-link--toggle {
  cursor: pointer;
}
.header__mobile-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.header__mobile-toggle-icon::before,
.header__mobile-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__mobile-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.header__mobile-item--open .header__mobile-toggle-icon::after {
  opacity: 0;
}
.header__mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 var(--space-4) var(--space-4);
  display: none;
  flex-direction: column;
  gap: var(--space-3);

}

.header__mobile-submenu[data-open="true"] {
  display: flex;
}

.header__mobile-sublink {
  color: var(--color-text-white);
  text-decoration: none;
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.header__mobile-sublink:hover {
  opacity: 1;
}
.header__mobile-item--open .header__mobile-link {
  opacity: 1;
}
/* #endregion */

/* #region Banner */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 40px;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.7s ease, transform 1s ease;
}

.banner-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 5;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.banner-content {
  position: absolute;
  bottom: 24px;
  left: 50%;
  /*width: 1440px;*/
  transform: translateX(-50%);
  /*background: rgba(0, 20, 42, 1);*/
  padding: 35px 40px;
  color: #fff;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.banner__content-text {
  font-size: var(--fs-24);
  font-weight: var(--fw-medium);
  line-height: var(--lh-32-140);
  max-width: 700px;
}

.banner__content-button {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.banner__content-button a {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.banner__content-button a.is-show {
  opacity: 1;
  transform: translateY(0);
}

.button__btn-update {
  background: #fff;
  color: #001a2b;
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  line-height: var(--lh-16-26);
  padding: 11px 33px;
  text-align: center;
  border: none;
  transition: 0.3s;
  font-family: "Mazda Type Viet", sans-serif;
}
.button__btn-update:hover{
background: #999;
   cursor: pointer;
}
.button__btn-press-release{
 background: #fff;
  color: #001a2b;
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  line-height: var(--lh-16-26);
  padding: 11px 33px;
  text-align: center;
  border: none;
  transition: 0.3s;
  font-family: "Mazda Type Viet", sans-serif;
}
.button__btn-press-release:hover{
  background: #999;
   cursor: pointer;
}


/* Pagination bullets */
.banner-pagination {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.banner-pagination span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.banner-pagination .active {
  background: #fff;
}


/* #endregion */


/* #region Scroll Indicator */
.banner__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 90%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease;
  z-index: 5;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.banner__scroll-indicator[data-visible="false"] {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
  pointer-events: none;
}

.banner__scroll-indicator svg {
  width: 100%;
  height: 100%;
}

.banner__scroll-indicator svg path {
  animation: scrollSlideDown 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes scrollSlideDown {
  0% {
    transform: translateY(-8px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: translateY(-8px);
    opacity: 0;
  }
}

.banner__scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) scale(1.15);
  background: rgba(255, 255, 255, 0.2);
}

.banner__scroll-indicator:active {
  transform: translateX(-50%) scale(0.95);
}

.banner__scroll-indicator--clicked {
  animation: scrollIndicatorClick 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scrollIndicatorClick {
  0% {
    transform: translateX(-50%) scale(1);
    background: rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: translateX(-50%) scale(0.85);
    background: rgba(255, 255, 255, 0.3);
  }
  100% {
    transform: translateX(-50%) scale(1);
    background: rgba(255, 255, 255, 0.1);
  }
}
/* #endregion */

/* #region concept */
.concept {
  width: 100%;
  background-color: #fff;
  padding: 20px 0 0; 
}

.concept__wrapper {
  text-align: center;
}

.concept__content-wrapper {
  margin: 0 auto 20px;
  /*max-width: 900px;*/
}

.concept__content-title {
  font-size: 48px;
  font-weight: var(--fw-medium);
  margin-bottom: 10px;
  line-height: 120%;
  letter-spacing: 4px;
}

.concept__content-subtitle {
  font-size: 48px;
  line-height:120%;
  font-weight: var(--fw-regular);
  color: rgba(0, 20, 42, 1);
  text-transform: uppercase;
}

.concept__image-wrapper {
  width: 100%;
  overflow: hidden;
}

.concept__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* #endregion */

/* #region design */

/* BLOCK */
.design {
  /*background: rgba(0, 20, 42, 1);*/
  padding: 60px 0;
  color: var(--color-text-white);
}

.design__inner {
  display: grid;
  gap: 8px;
  width: 1300px;
}

.design__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/*.design__row--top { grid-template-columns: 1.4fr .8fr; }*/
.design__row--middle { grid-template-columns: .6fr 1.4fr; }
.design__row--bottom { grid-template-columns: 1.4fr .6fr; }

.design__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}


.design__image {
  overflow: hidden;
}
.design__image img {
  height: 351px; 
  width: 100%;
  object-fit: cover;
  display: block;
}
.design__gallery .design__image:nth-child(1) {
  width: 408px;
}
.design__gallery .design__image:nth-child(2) {
    width: 468px;
}

/* large image */
.design__image-large {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.design__image-large img {
  width: 840px;
  height: 472px;           
  object-fit: cover;
  display: block;
}

/* caption (nhỏ ở góc dưới ảnh) */
/* .design__caption {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  padding-right: 4px;
} */

/* text block */
.design__text {
  line-height: 1.68;
  font-size: 12px;
  color: #000;
  max-width: 292px;    
}

.design__col--narrow { justify-self: start; }
.design__col--wide { justify-self: stretch; }

.design__background img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.design__background{
position: relative;
  width: 100%;
  height: 100%;
  /*padding-bottom: 56.25%;*/
  overflow: hidden;
}
.design__background video{
    display: block;
    height: auto;
}
.design__bottom .design__text {
  max-width: 100%;
}
/* #endregion */

/* #region gallery */
.gallery {
  background-color: rgba(0, 20, 42, 1);
  padding: 60px 0;
  color: #fff;
}
.gallery__wrapper {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.gallery__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: var(--fs-32);
  font-weight: var(--fw-medium);
}

.gallery__slider {
  position: relative;
  max-width: 1500px;
  margin-bottom: 24px;
  
}

.gallery__image {
  width: 100%;
  height: 675px;
  max-width: 1200px;
  display: block;
  margin-right: 24px;
}

.gallery__caption {
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.8;
  max-width: 1200px;
  margin-left: 16px;
  margin-right: auto;
}

.gallery__nav {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.gallery__prev,
.gallery__next {
  width: 28px;
  height: 28px;
  background: #fff;
  color: #000;
  border-radius: 1px;
  box-shadow: 0 2px 4px #0004;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.gallery__pagination {
  display: flex;
  margin-top: 24px;
  gap: 4px;
  justify-content: space-between;
}

.gallery__pagination .swiper-pagination-bullet {
  width: 100%;
  height: 3px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin: 0 !important; 
} 

 .gallery__pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
/* #endregion */






/* #region launch */
.launch {
margin: 64px 0px 72px;
  text-align: center;
}

.launch__title {
margin-bottom: 40px;
  font-size: var(--fs-48);
  font-weight: var(--fw-medium);
  line-height: var(--lh-48-120);
}

.launch__video-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.launch__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
}


.launch__content {
  margin-top: 32px;
}
.launch__description{
    font-size: var(--fs-32);
    font-weight: var(--fw-medium);
    line-height: var(--lh-32-140);
    margin-bottom: 30px;
}

.launch__button {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(0, 20, 42, 1);
  color: #fff;
  text-transform: uppercase;
  font-size: var(--fs-18);
  font-weight: var(--fw-medium);
  line-height: var(--lh-16-26);

}
/* #endregion */

/* #region related */
.related {
  background: #001A33;
  padding: 56px 0 0px;
  text-align: center;
}

.related__title {
  color: #fff;
  font-size: var(--fs-32);
  font-weight: var(--fw-medium);
  line-height: var(--lh-32-140);
  margin-bottom: 50px;
  text-transform: uppercase;
}

.related__list {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.related__item {
  /*width: 720px;*/
  width: calc(100% / 3);
  color: #fff;
}

.related__image {
  width: 100%;
  display: block;
  height: 412px;
  object-fit: cover ;
  transition: transform 0.4s ease;
}

.related__image-wrapper {
  position: relative;
  overflow: hidden;
}

.related__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  text-align: left;
}

.related__year {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.related__name {
  font-size: 18px;
  text-transform: uppercase;
  margin: 5px 0 0 0;
}
.related__image-wrapper:hover .related__image {
  transform: scale(1.07); 
  cursor: pointer;
}

/* #endregion */

/* #region Footer */
.footer {
  background: #4a5662;
  color: var(--color-text-white);
}

.footer__inner {
  padding: 80px 100px 48px 100px;
}

.footer__layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 160px;
}
.footer__about {
  flex: 1.4;
  max-width: 368px;
}
.footer__links {
  flex: 1.6;
}
.footer__links-grid {
  display: flex;
  gap: var(--space-8);
}
.footer__links-grid .footer__col {
  flex: 0 0 240px;
  width: 240px;
}

.footer__heading {
  font-size: var(--fs-16);
  line-height: var(--lh-16-26);
  font-weight: var(--fw-bold);
  margin: 0 0 var(--space-3);
}

.footer__heading--spaced {
  margin-top: var(--space-6);
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list--text li {
  font-size: var(--fs-14);
  line-height: var(--lh-16-26);
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__list--text li img {
  width: 18px;
  height: 18px;
}

.footer__list--text .footer__bct img {
  width: 150px !important;
  height: 94px !important;
}

.footer__list--text li img[src*="phone-solid-full"],
.footer__list--text li img[src*="envelope-solid-full"] {
  filter: brightness(0) saturate(100%) invert(60%);
  opacity: 1;
}

.footer__social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
  align-items: center;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
}

.footer__social-link:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.footer__social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer__link {
  color: #e7ecf1;
  text-decoration: none;
  font-size: var(--fs-14);
  line-height: var(--lh-16-26);
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__brand--text {
  text-align: center;
  margin-top: 0;
  font-size: 28px;
  letter-spacing: 10px;
}

.footer__brand img {
  width: 120px;
  height: auto;
  display: none;
}

.footer__copyright {
  text-align: right;
  margin-top: 0;
  font-size: var(--fs-14);
  opacity: 0.9;
}

.footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-8);
  padding-top: 12px;
}

.footer__bottom .footer__copyright {
  position: absolute;
  right: 0;
}
/* #endregion */

/* #region Back To Top */
.backtotop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius-2);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  pointer-events: none;
  z-index: 1000;
}
.backtotop:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: translateY(0) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.backtotop:active {
  transform: translateY(0) scale(0.95);
}
.backtotop[data-visible="true"] {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.backtotop--clicked {
  animation: backToTopClick 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes backToTopClick {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: translateY(0) scale(0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
}
/* #endregion */

/* Responsive  */
@media (width: 1280px) {
  .mirai__swiper-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0px 24px;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-4);
  }

  /* #region Header */
  .header__menu-toggle {
    display: block;
    color: var(--color-text-white);
  }
  .header.header--scrolled .header__menu-toggle {
    color: var(--color-text-black);
  }
  .header__bar {
    grid-template-columns: auto 1fr auto;
    gap: var(--space-4);
    border-bottom: none;
  }
  .header__logo {
    grid-column: 2;
    justify-self: center;
  }
  .header__group--left .header__nav--left,
  .header__group--right .header__nav--right {
    display: none;
  }
  .header__group--right {
    justify-self: end;
  }
  .header__logo-img--desktop {
    display: none;
  }
  .header__logo-text {
    display: block;
    font-size: 22px;
  }
  .header__mobile-menu {
    display: block;
  }
 .submenu{
    display: none;
  }
  /* #endregion */

  /* #region Banner */
  
  .banner__nav {
    display: none;
  }
  .banner__pagination {
    bottom: var(--space-5);
  }
  
/* #endregion */
 /* #region Banner */
  .banner-content {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; 
  padding: 20px;
  color: #fff;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.banner__content-text {
  font-size: var(--fs-24);
  font-weight: var(--fw-medium);
  line-height: var(--lh-32-140);
  max-width: 700px;
}

.banner__content-button {
  display: flex;
  gap: 15px;
}


.button__btn-update {
  background: #fff;
  color: #001a2b;
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  line-height: var(--lh-16-26);
  padding: 11px 33px;
  border: none;
  transition: 0.3s;
  font-family: "Mazda Type Viet", sans-serif;
}


.button__btn-press-release{
 background: #fff;
  color: #001a2b;
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  line-height: var(--lh-16-26);
  padding: 11px 16px;
  border: none;
  transition: 0.3s;
  font-family: "Mazda Type Viet", sans-serif;
}



  .banner__content-inner {
    margin-top: 0;
  }
  .banner__title {
    font-size: 28px;
    line-height: 1.2;
  }


  .banner__scroll-indicator {
    bottom: 24px;
    width: 40px;
    height: 40px;
  }

  .banner__cta-button {
    padding: 10px 20px;
  }
  .banner__inner-text{
    font-size: var(--fs-32);
  }
/* #endregion */

/* #region concept */
.concept{
  padding: 40px 0px 0px;
}
.concept__content-wrapper{
  padding: 0px 16px;
  margin: 0 auto 24px;
}
.concept__content-title {
    font-size: var(--fs-32);
}
/* #endregion */

/* #region Design */
.design {
  /*background: rgba(0, 20, 42, 1);*/
  padding: 60px 0;
  color: var(--color-text-white);
}

.design__inner {
  width: 100%;
  display: grid;
  gap: 16px;
}

.design__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.design__gallery {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 16px;
}

.design__image img,
.design__image-large img {
  width: 788px;
  height: 414px;
  object-fit: cover;
}

.design__text {
  max-width: 100%;  
  font-size: 16px;
  line-height: 1.68;
}
.design__gallery .design__image:nth-child(1) {
  width: unset;
}
.design__gallery .design__image:nth-child(2) {
    width: unset;
}
/* #endregion */

/* #region gallery */
.gallery__slider {
  max-width: 100%;
  /*padding: 0 16px;*/
}

.gallery__wrapper {
  gap: 16px;
}
.gallery__title{
  font-size: var(--fs-32);
}
.gallery__image {
  width: 100%;
  max-width: 100%;
  height: 420px;             
  margin-right: 0;
}

.gallery__caption {
  max-width: 100%;
  margin: 16px 0 0;
  padding: 0 16px;
  font-size: 14px;
  text-align: left;
}

.gallery__pagination {
  justify-content: center;
  gap: 8px;
}

/* #endregion */

.launch__video-wrapper {
  height: 500px;
}

/* $region related */
.related__list {
  flex-direction: column;
  gap: 16px;
}

.related__item {
  width: 100%; 
}

.related__image {
  width: 100%;  
  height: 600px;
  object-fit: cover;  
}
/* #endregion */

  /* #region Footer */
  .footer__inner {
    padding: var(--space-8) var(--space-4);
  }
  .footer__layout {
    flex-direction: column;
    gap: var(--space-8);
  }

  .footer__brand--text {
    display: none;
  }

  .footer__brand img {
    display: block;
  }
  .footer__about {
    max-width: 100%;
  }
  .footer__links-grid {
    flex-wrap: wrap;
    gap: var(--space-6);
  }
  .footer__links-grid .footer__col {
    flex: 0 0 calc(50% - var(--space-3));
    width: calc(50% - var(--space-3));
  }
  .footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-4);
    position: relative;

    align-items: end;
  }
  .footer__brand {
    grid-column: 3;
    justify-self: end;
  }
  .footer__brand--text {
    text-align: center;
    font-size: 36px;
    letter-spacing: 12px;
    margin: 0;
    grid-column: 2;
    justify-self: center;
  }
  .footer__copyright {
    text-align: left;
    position: static;
    margin: 0;
    grid-column: 1;
    justify-self: start;
    left: 0;
  }
  .footer__links-grid .footer__col {
        flex: 1 1 100%;
        width: 100%;
    }
  /* #endregion */
}
/* Mobile (< 768px) */
@media (max-width: 767px) {
  .container {
    padding: 0 var(--space-4);
  }

  /* #region Header */
  .header__bar {
    height: 64px;
    padding: 0 var(--space-4);
    grid-template-columns: auto 1fr auto;
    border-bottom: none;
  }
  .header__menu-toggle {
    display: block;
    color: var(--color-text-white);
  }
  .header.header--scrolled .header__menu-toggle {
    color: var(--color-text-black);
  }
  .header__logo-img--desktop {
    display: none;
  }
  .header__logo-text {
    display: block;
    font-size: 20px;
  }
  .header__group--left .header__nav--left,
  .header__group--right .header__nav--right {
    display: none;
  }
  .header__logo {
    justify-self: center;
  }
  .header__group--left {
    justify-self: start;
  }
  .header__group--right {
    justify-self: end;
  }
  .header__mobile-menu {
    display: block;
    top: 64px;
  }
  .submenu{
    display: none;
  }
/* #endregion */

  /* #region Banner */
  .banner-content {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; 
  padding: 20px;
  color: #fff;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.banner__content-text {
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  line-height: var(--lh-32-140);
  max-width: 700px;
}

.banner__content-button {
  display: flex;
  gap: 15px;
}

.button__btn-update {
  background: #fff;
  color: #001a2b;
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  line-height: var(--lh-16-26);
  padding: 11px 33px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Mazda Type Viet", sans-serif;
}

.button__btn-press-release{
 background: #fff;
  color: #001a2b;
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  line-height: var(--lh-16-26);
  padding: 11px 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Mazda Type Viet", sans-serif;
}


  .banner__content-inner {
    margin-top: 0;
  }
  .banner__title {
    font-size: 28px;
    line-height: 1.2;
  }


  .banner__scroll-indicator {
    bottom: 24px;
    width: 40px;
    height: 40px;
  }

  .banner__cta-button {
    padding: 10px 20px;
  }
  .banner__inner-text{
    font-size: var(--fs-32);
  }
/* #endregion */

/* #region concept */
.concept{
  padding: 40px 0px 0px;
}
.concept__content-wrapper{
  padding: 0px 16px;
  margin: 0 auto 24px;
}
.concept__content-title {
    font-size: var(--fs-32);
}
.concept__content-subtitle{
    font-size: var(--fs-32);
}
/* #endregion */

/* #region Design */
.design {
  /*background: rgba(0, 20, 42, 1);*/
  padding: 60px 0;
  color: var(--color-text-white);
}

.design__inner {
  width: 100%;
  display: grid;
  gap: 16px;
}

.design__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.design__gallery {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 16px;
}

.design__image img,
.design__image-large img {
  width: 100%;       
  height: auto;
  object-fit: cover;
}

.design__text {
  max-width: 100%;  
  font-size: 16px;
  line-height: 1.68;
}
.design__gallery .design__image:nth-child(1) {
  width: unset;
}
.design__gallery .design__image:nth-child(2) {
    width: unset;
}
.design__background video {
    width: 100%;
    display: block;
    height: auto;
}
/* #endregion */

/* #region gallery */
.gallery__slider {
  max-width: 100%;
  /*padding: 0 16px;*/
}

.gallery__wrapper {
  gap: 16px;
}
.gallery__title {
  font-size: var(--fs-24);
}

.gallery__image {
  width: 340px;
  max-width: 100%;
  height: 230px;             
  margin-right: 0;
}

.gallery__caption {
  max-width: 100%;
  margin: 16px 0 0;
  padding: 0 16px;
  font-size: 14px;
  text-align: left;
}

.gallery__pagination {
  justify-content: center;
  gap: 8px;
}

/* #endregion */

.launch__video-wrapper {
  height: 300px;
}

/* $region related */
.related__list {
  flex-direction: column;
  gap: 16px;
}

.related__item {
  width: 100%; 
}

.related__image {
  width: 100%;
  height: auto;      
  object-fit: cover;  
}
/* #endregion */
.launch__title {
    margin-bottom: 40px;
    font-size: var(--fs-32);
    font-weight: var(--fw-medium);
    line-height: var(--lh-48-120);
}

/* #region Footer */
  .footer__inner {
    padding: var(--space-6) var(--space-4);
  }
  .footer__links-grid {
    flex-direction: column;
  }
  .footer__links-grid .footer__col {
    flex: 1 1 100%;
    width: 100%;
  }

  .footer__brand--text {
    display: none;
  }

  .footer__brand img {
    height: 54px;
    width: 66px;
    display: block;
  }

  .footer__copyright {
    font-size: var(--fs-12);
  }

  .footer__social {
    margin-top: var(--space-4);
    gap: var(--space-3);
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
  }
/* #endregion */

  /* Back To Top */
  .backtotop {
    right: var(--space-4);
    bottom: var(--space-4);
    width: 40px;
    height: 40px;
  }
}
