#mobile-home {
  display: none;
}

@media (max-width: 767.9px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body.mobile-home-open {
    overflow: hidden;
  }

  body:has(#mobile-home) #salong {
    display: none !important;
  }

  #mobile-home {
    display: block;
    min-height: 100vh;
    background: #f8f9fc;
    color: #62748e;
    font-size: 12px;
    line-height: 1.7;
  }

  .mobile-home,
  .mobile-home * {
    box-sizing: border-box;
  }

  .mobile-home a {
    color: inherit;
    text-decoration: none;
  }

  .mobile-home img {
    display: block;
    max-width: 100%;
  }

  .mh-header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 120;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: background-color .24s ease, color .24s ease, box-shadow .24s ease;
  }

  .mh-header.is-scrolled,
  .mobile-home-open .mh-header {
    background: rgba(255, 255, 255, .94);
    color: #0e172b;
    box-shadow: 0 14px 36px rgba(14, 23, 43, .1);
  }

  .mh-menu-btn,
  .mh-icon-btn,
  .mh-drawer-close {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .mh-menu-btn {
    width: 20px;
    height: 20px;
    padding: 0;
    display: grid;
    place-items: center;
  }

  .mh-menu-btn span,
  .mh-menu-btn::before,
  .mh-menu-btn::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .mh-menu-btn {
    gap: 4px;
  }

  .mh-logo {
    width: 99px;
    height: 30px;
    display: flex;
    align-items: center;
  }

  .mh-logo img {
    height: 30px;
    width: auto;
  }

  .mh-header-spacer {
    flex: 1;
  }

  .mh-icon-btn {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    padding: 0;
    font-size: 16px;
  }

  .mh-icon-btn svg {
    width: 16px;
    height: 16px;
  }

  .mh-drawer-mask {
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(14, 23, 43, .48);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
  }

  .mh-drawer {
    position: fixed;
    z-index: 131;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(82vw, 320px);
    background: #fff;
    box-shadow: 24px 0 60px rgba(14, 23, 43, .22);
    transform: translateX(-105%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
  }

  .mobile-home-open .mh-drawer-mask {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-home-open .mh-drawer {
    transform: translateX(0);
  }

  .mh-drawer-head {
    height: 74px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eff5ff;
  }

  .mh-drawer-head img {
    height: 34px;
    width: auto;
  }

  .mh-drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f8f9fc;
    color: #62748e;
    font-size: 20px;
  }

  .mh-drawer-nav {
    overflow: auto;
    padding: 12px;
  }

  .mh-drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 6px;
    color: #0e172b;
    font-size: 13px;
  }

  .mh-drawer-nav a:hover {
    background: #f8f9fc;
    color: #008efb;
  }

  .mh-drawer-children {
    margin: 0 0 6px 14px;
    border-left: 1px solid #eff5ff;
  }

  .mh-main {
    width: 100%;
  }

  .mh-section {
    position: relative;
    padding: 72px 20px;
  }

  .mh-section.is-tight {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .mh-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
  }

  .mh-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .mh-title {
    margin: 0;
    color: #0e172b;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
  }

  .mh-title .accent {
    color: #008efb;
  }

  .mh-subtitle {
    color: #9aa7b9;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  .mh-more {
    color: #9aa7b9;
    white-space: nowrap;
  }

  .mh-hero {
    height: 100svh;
    min-height: 720px;
    padding: 0;
    overflow: hidden;
    background: #050b18;
    color: #fff;
  }

  .mh-hero .mh-carousel,
  .mh-hero .mh-carousel-viewport,
  .mh-hero .mh-carousel-track,
  .mh-hero-slide {
    height: 100%;
  }

  .mh-hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 24px 80px;
    background:
      linear-gradient(rgba(3, 10, 28, .72), rgba(3, 10, 28, .72)),
      url("../../assets/images/home/01.webp") center / cover no-repeat;
  }

  .mh-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .mh-hero-kicker {
    font-size: 15px;
    line-height: 1.4;
    opacity: .9;
  }

  .mh-hero-title {
    margin: 0;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.03em;
  }

  .mh-hero-title span {
    display: block;
    color: #008efb;
  }

  .mh-hero-desc {
    margin: 0;
    max-width: 310px;
    color: rgba(255, 255, 255, .82);
  }

  .mh-hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
  }

  .mh-btn {
    min-width: 104px;
    height: 40px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid #008efb;
    background: #008efb;
    color: #fff;
    font-size: 13px;
  }

  .mh-btn.is-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .72);
  }

  .mh-carousel {
    position: relative;
  }

  .mh-carousel-viewport {
    overflow: hidden;
    width: 100%;
  }

  .mh-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--mh-gap, 12px);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
  }

  .mh-carousel-track > * {
    flex: 0 0 calc((100% - (var(--mh-visible, 1) - 1) * var(--mh-gap, 12px)) / var(--mh-visible, 1));
    min-width: 0;
  }

  .mh-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
  }

  .mh-hero .mh-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    margin: 0;
  }

  .mh-dots button {
    width: 16px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(154, 167, 185, .45);
  }

  .mh-hero .mh-dots button {
    background: rgba(255, 255, 255, .36);
  }

  .mh-dots button.active {
    width: 26px;
    background: #008efb;
  }

  .mh-card {
    overflow: hidden;
    border: 1px solid #eff5ff;
    border-radius: 6px;
    background: #fff;
    color: #62748e;
  }

  .mh-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 600 / 338;
    background: #eef4fb;
  }

  .mh-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mh-card-body {
    padding: 12px;
  }

  .mh-card-title {
    margin: 0 0 5px;
    color: #0e172b;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mh-card-meta,
  .mh-card-desc {
    color: #9aa7b9;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mh-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mh-list-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #eff5ff;
    background: #fff;
  }

  .mh-list-card .mh-card-img {
    border-radius: 4px;
    aspect-ratio: 1.25;
  }

  .mh-list-card .mh-card-body {
    padding: 0;
    min-width: 0;
  }

  .mh-service-card .mh-card-body,
  .mh-team-card .mh-card-body {
    padding: 9px;
  }

  .mh-service-card .mh-card-title,
  .mh-team-card .mh-card-title {
    font-size: 12px;
    line-height: 1.35;
  }

  .mh-service-card .mh-card-desc,
  .mh-service-card .mh-card-meta,
  .mh-team-card .mh-card-desc,
  .mh-team-card .mh-card-meta {
    display: none;
  }

  .mh-select-card {
    min-height: 158px;
    padding: 20px 12px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #eff5ff;
    text-align: center;
  }

  .mh-select-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 142, 251, .1);
    color: #008efb;
    font-size: 22px;
  }

  .mh-select-card h3 {
    margin: 0 0 8px;
    color: #0e172b;
    font-size: 14px;
  }

  .mh-select-card p {
    margin: 0;
    color: #9aa7b9;
    line-height: 1.55;
  }

  .mh-about {
    padding: 0;
    background: #080d18;
    color: #cbd5e1;
  }

  .mh-about-img {
    position: relative;
  }

  .mh-about-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }

  .mh-about-content {
    padding: 42px 20px 58px;
  }

  .mh-about .mh-title {
    color: #fff;
  }

  .mh-about p {
    margin: 18px 0 22px;
    text-align: justify;
    color: #cbd5e1;
  }

  .mh-progress {
    display: grid;
    gap: 10px;
  }

  .mh-progress-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    gap: 8px;
  }

  .mh-progress-bar {
    height: 12px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, .16);
  }

  .mh-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #008efb;
  }

  .mh-counter {
    background: #fff;
  }

  .mh-counter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mh-counter-item {
    min-height: 126px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #eff5ff;
    background: #f8f9fc;
  }

  .mh-counter-num {
    color: #008efb;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
  }

  .mh-counter-label {
    margin-top: 9px;
    color: #62748e;
  }

  .mh-testimonial-card {
    min-height: 300px;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #eff5ff;
    background: #fff;
  }

  .mh-testimonial-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
  }

  .mh-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
  }

  .mh-partner {
    height: 58px;
    display: grid;
    place-items: center;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #eff5ff;
    background: #fff;
  }

  .mh-partner img {
    max-height: 34px;
    width: auto;
    object-fit: contain;
  }

  .mh-slogan,
  .mh-join {
    padding: 62px 20px;
    background:
      linear-gradient(rgba(3, 10, 28, .78), rgba(3, 10, 28, .78)),
      url("../../assets/images/home/01.webp") center / cover no-repeat fixed;
    color: #fff;
    text-align: center;
  }

  .mh-slogan h2,
  .mh-join h2 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.25;
  }

  .mh-slogan p,
  .mh-join p {
    margin: 0 auto 24px;
    max-width: 310px;
    color: rgba(255,255,255,.78);
  }

  .mh-footer {
    padding: 34px 20px 42px;
    background: #fff;
    border-top: 1px solid #eff5ff;
    text-align: center;
    color: #9aa7b9;
  }

  .mh-footer img {
    height: 32px;
    width: auto;
    margin: 0 auto 14px;
  }
}
