/* MOVA — Mobile styles (< 768px). */

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .mobile .pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: var(--surface-teal-soft);
    color: var(--primary-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .m-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px var(--mobile-gutter);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line-muted);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .m-header.is-open {
    box-shadow: 0 12px 32px rgba(15, 59, 54, 0.14);
  }
  .m-header__logo img {
    height: 28px;
    width: auto;
  }
  .m-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .m-header__getapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: var(--gradient-brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  }
  .m-header__getapp img {
    filter: brightness(0) invert(1);
  }
  .m-header__menu {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--surface-teal-strip);
    display: grid;
    place-items: center;
  }
  .m-header__menu img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%);
    opacity: 0.72;
  }
  .m-header__menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: var(--mobile-gutter);
    left: var(--mobile-gutter);
    padding: 16px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line-muted);
    box-shadow: var(--shadow-lg);
  }
  .m-header__menu-panel[hidden] {
    display: none;
  }
  .m-header__menu-label {
    color: var(--ink-muted);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 6px;
  }
  .m-header__menu-phone {
    display: inline-block;
    color: var(--primary-deep);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
  }
  .m-header__menu-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-full);
    background: var(--gradient-brand);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
  }

  .m-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 42px var(--mobile-gutter) 38px;
    color: #fff;
    background: var(--navy-deep);
  }
  .m-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
  }
  .m-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
  }
  .m-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(9, 43, 40, 0.58), rgba(9, 43, 40, 0.94));
  }
  .m-hero__orb {
    display: none;
  }
  .m-hero__banner {
    max-width: 68%;
    text-align: left;
    margin-bottom: 18px;
  }
  .m-hero__spark {
    display: inline-block;
    color: var(--primary-bright);
    font-size: 20px;
    margin-bottom: 12px;
  }
  .m-hero__title {
    font-size: 28px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 12px;
  }
  .m-hero__sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.5;
  }
  .m-hero__qr {
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-2xl);
    width: min(78vw, 290px);
    margin: 0 auto;
    padding: 16px 14px;
    text-align: center;
    box-shadow: var(--shadow-lg);
  }
  .m-hero__qr-title {
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .m-hero__qr-frame {
    padding: 8px;
    border-radius: var(--radius-lg);
    background: var(--surface-teal-strip);
    margin-bottom: 10px;
  }
  .m-hero__qr-frame img {
    width: 72%;
    margin: 0 auto;
  }
  .m-hero__qr-caption {
    color: var(--ink-muted);
    font-size: 10px;
    line-height: 1.5;
  }

  .m-advantage,
  .m-solutions,
  .m-download {
    padding: 48px var(--mobile-gutter);
    background: var(--surface);
  }
  .m-solutions {
    padding-top: 40px;
    padding-bottom: 24px;
  }
  .m-advantage__head,
  .m-services__head {
    text-align: center;
    margin-bottom: 32px;
  }
  .m-advantage__title,
  .m-services__head h2,
  .m-download__title {
    color: var(--ink);
    font-size: 26px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
    margin: 12px 0 10px;
  }
  .m-advantage__desc,
  .m-services__head p {
    color: var(--ink-muted);
    font-size: 13px;
    line-height: 1.6;
  }
  .m-advantage__cards {
    display: grid;
    gap: 14px;
  }
  .m-adv-card {
    padding: 24px 20px;
    text-align: center;
    background: var(--surface-faint);
    border: 1px solid var(--line-muted);
    border-radius: var(--radius-xl);
  }
  .m-adv-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--surface-teal-soft);
    display: grid;
    place-items: center;
  }
  .m-adv-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .m-adv-card h3 {
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .m-adv-card p {
    color: var(--ink-muted);
    font-size: 12px;
    line-height: 1.55;
  }

  .m-services {
    padding: 48px 0;
    background: linear-gradient(180deg, var(--surface-teal-strip) 0%, var(--surface-off) 100%);
    overflow: hidden;
  }
  .m-services__head {
    padding: 0 var(--mobile-gutter);
    margin-bottom: 24px;
  }
  .m-services__scroll {
    display: flex;
    gap: 14px;
    padding: 4px var(--mobile-gutter) 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .m-services__scroll::-webkit-scrollbar {
    display: none;
  }
  .m-service-card {
    position: relative;
    isolation: isolate;
    flex: 0 0 260px;
    min-height: 360px;
    border-radius: var(--radius-2xl);
    padding: 24px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #fff;
    box-shadow: var(--shadow-lg);
    scroll-snap-align: start;
  }
  .m-service-card__bg,
  .m-service-card__overlay {
    position: absolute;
    inset: 0;
  }
  .m-service-card__bg {
    z-index: -2;
    background-size: cover;
    background-position: center;
  }
  .m-service-card__overlay {
    z-index: -1;
    background: linear-gradient(160deg, rgba(9, 43, 40, 0.86), rgba(11, 125, 115, 0.5));
  }
  .m-service-card__tag {
    align-self: flex-start;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .m-service-card__desc {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 16px;
    text-shadow: var(--shadow-text);
  }
  .m-service-card__mockup {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
  }
  .phone-shell--service {
    margin-top: auto;
    align-self: center;
    width: 72%;
  }

  .m-solutions__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
  }
  .m-solutions__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .m-solutions__title {
    color: var(--ink);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 14px;
  }
  .m-solutions__desc,
  .m-solutions__slide-desc {
    color: var(--ink-muted);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .m-solutions__slide-panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .m-solutions__slide-title {
    color: var(--primary-deep);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .m-solutions__slide-desc {
    margin-bottom: 0;
  }
  .m-solutions__arrows {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .m-solutions__arrows button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line-faint);
    display: grid;
    place-items: center;
    color: var(--primary-deep);
    font-size: 20px;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
  }
  .m-solutions__arrows button span {
    line-height: 1;
  }
  .m-solutions__arrows button:disabled {
    color: var(--ink-faint);
    background: var(--surface-faint);
    border-color: var(--line-muted);
    box-shadow: none;
    cursor: default;
  }

  .m-join-driver {
    background: var(--gradient-deep);
    color: #fff;
    overflow: hidden;
    padding-bottom: 32px;
  }
  .m-join-driver__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }
  .m-join-driver__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .m-join-driver__body {
    padding: 24px var(--mobile-gutter) 0;
  }
  .m-join-driver__body h2 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 12px;
  }
  .m-join-driver__body p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .m-join-driver__cta {
    display: inline-flex;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--primary-deep);
    font-size: 13px;
    font-weight: 800;
  }

  .m-download__title {
    text-align: center;
    margin-bottom: 28px;
  }
  .m-download__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
  }
  .phone-shell--download {
    width: 55%;
    max-width: 200px;
  }
  .m-download__phone {
    width: 100%;
  }
  .m-download__phone img {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
  }
  .m-download__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }
  .m-download-card {
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--gradient-brand);
    color: #fff;
  }
  .m-download-card h4 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 4px;
  }
  .m-download-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    line-height: 1.45;
  }
  .m-download__badges {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .m-download__badges img {
    height: 40px;
    width: auto;
  }

  .m-footer {
    background: var(--surface-faint);
    border-top: 1px solid var(--line-muted);
  }
  .m-footer__top {
    padding: 36px var(--mobile-gutter) 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .m-footer__logo img {
    height: 36px;
    width: auto;
  }
  .m-footer__about,
  .m-footer__nav a {
    color: var(--ink-muted);
    font-size: 13px;
    line-height: 1.6;
  }
  .m-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .m-footer__copy {
    background: var(--gradient-deep);
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    font-size: 12px;
    line-height: 1.5;
  }
}
