/* MOVA — Desktop styles (>= 768px). */

@media (min-width: 768px) {
  body {
    font-size: 16px;
    --desktop-topstrip-offset: 49px;
  }

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

  .topstrip {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid var(--line-muted);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(15, 59, 54, 0.06);
  }
  .topstrip__inner,
  .header__inner,
  .advantage__inner,
  .services__inner,
  .solutions__inner,
  .download__inner,
  .footer__main {
    max-width: var(--desktop-max);
    margin: 0 auto;
    padding-left: var(--desktop-gutter);
    padding-right: var(--desktop-gutter);
  }
  .topstrip__inner {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topstrip__download,
  .topstrip__lang,
  .header__inner,
  .header__nav,
  .header__phone,
  .download__badges {
    display: flex;
    align-items: center;
  }
  .topstrip__download {
    gap: 14px;
  }
  .topstrip__hint,
  .topstrip__lang,
  .topstrip__lang-inactive {
    color: var(--ink-muted);
    font-size: 13px;
  }
  .topstrip__badge img {
    height: 28px;
    width: auto;
  }
  .topstrip__lang {
    gap: 10px;
  }
  .topstrip__lang-active {
    color: var(--ink);
    font-weight: 700;
  }

  .header {
    position: sticky;
    top: var(--desktop-topstrip-offset);
    z-index: 55;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line-muted);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .header__inner {
    padding-top: 18px;
    padding-bottom: 18px;
    justify-content: space-between;
    gap: 24px;
  }
  .header__logo img {
    height: 32px;
    width: auto;
  }
  .header__nav {
    gap: 40px;
  }
  .header__nav-link {
    position: relative;
    color: var(--ink-muted);
    font-size: 15px;
    font-weight: 700;
    padding: 6px 0;
  }
  .header__nav-link--active,
  .header__nav-link:hover {
    color: var(--ink);
  }
  .header__nav-link--active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 24px;
    height: 3px;
    transform: translateX(-50%);
    background: var(--primary);
    border-radius: var(--radius-full);
  }
  .header__phone {
    gap: 10px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: var(--gradient-brand);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
  }
  .header__phone img {
    filter: brightness(0) invert(1);
  }

  .hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 88px var(--desktop-gutter) 118px;
    color: #fff;
    background: var(--navy-deep);
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
  }
  .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(9, 43, 40, 0.92) 0%, rgba(9, 43, 40, 0.72) 45%, rgba(9, 43, 40, 0.2) 100%);
  }
  .hero__orb {
    display: none;
  }
  .hero__inner {
    max-width: var(--desktop-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: end;
  }
  .hero__banner {
    max-width: 660px;
  }
  .hero__spark {
    display: inline-block;
    color: var(--primary-bright);
    font-size: 24px;
    margin-bottom: 18px;
  }
  .hero__title {
    margin-bottom: 18px;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: var(--shadow-hero);
  }
  .hero__subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.5;
    text-shadow: var(--shadow-text);
  }
  .hero__qr {
    border-radius: var(--radius-2xl);
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg), var(--glow-teal);
  }
  .hero__qr-title {
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
  }
  .hero__qr-frame {
    padding: 12px;
    border-radius: var(--radius-lg);
    background: var(--surface-teal-strip);
    margin-bottom: 16px;
  }
  .hero__qr-frame img {
    width: 100%;
    border-radius: var(--radius-sm);
  }
  .hero__qr-caption {
    color: var(--ink-muted);
    font-size: 12px;
    line-height: 1.5;
  }

  .advantage,
  .solutions,
  .download {
    padding: 100px 0;
    background: var(--surface);
  }
  .advantage__head,
  .services__head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
  }
  .advantage__title,
  .services__title,
  .solutions__title,
  .download__title {
    color: var(--ink);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
  }
  .advantage__title,
  .services__title {
    margin: 16px 0 14px;
  }
  .advantage__desc,
  .services__desc,
  .solutions__desc {
    color: var(--ink-muted);
    font-size: 16px;
    line-height: 1.65;
  }
  .advantage__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .adv-card {
    padding: 40px 32px 36px;
    text-align: center;
    background: var(--surface-faint);
    border: 1px solid var(--line-muted);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
  }
  .adv-card__icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 22px;
    border-radius: var(--radius-full);
    background: var(--surface-teal-soft);
    display: grid;
    place-items: center;
  }
  .adv-card__icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
  }
  .adv-card__title {
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .adv-card__text {
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.6;
  }

  .services {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--surface-teal-strip) 0%, var(--surface-off) 100%);
  }
  .service-card {
    position: relative;
    isolation: isolate;
    min-height: 360px;
    margin-bottom: 28px;
    padding: 48px 56px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-lg);
  }
  .service-card:last-child {
    margin-bottom: 0;
  }
  .service-card__bg,
  .service-card__overlay {
    position: absolute;
    inset: 0;
  }
  .service-card__bg {
    z-index: -2;
    background-size: cover;
    background-position: center;
  }
  .service-card__overlay {
    z-index: -1;
    background: linear-gradient(120deg, rgba(9, 43, 40, 0.88), rgba(11, 125, 115, 0.48));
  }
  .service-card__body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: center;
    width: 100%;
  }
  .service-card[data-variant="customer"] .service-card__body {
    grid-template-columns: 1fr 280px;
  }
  .service-card[data-variant="customer"] .service-card__content {
    order: -1;
  }
  .service-card__mockup {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top center;
    border-radius: 28px;
  }
  .phone-shell--service {
    width: 100%;
    max-width: 280px;
  }
  .service-card__content {
    color: #fff;
  }
  .service-card__tag {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
  }
  .service-card__desc {
    max-width: 520px;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: var(--shadow-text);
  }

  .solutions__inner,
  .download__inner {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 72px;
    align-items: center;
  }
  .solutions__media {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .solutions__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .solutions__title {
    margin-bottom: 20px;
  }
  .solutions__desc {
    margin-bottom: 36px;
  }
  .solutions__slide {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--surface-teal-strip);
    border: 1px solid var(--surface-teal-mist);
  }
  .solutions__slide-panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .solutions__slide-title {
    color: var(--primary-deep);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
  }
  .solutions__slide-desc {
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
  }
  .solutions__arrows {
    display: flex;
    gap: 14px;
    margin-top: 16px;
  }
  .solutions__arrow {
    width: 48px;
    height: 48px;
    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;
  }
  .solutions__arrow--next {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
  }
  .solutions__arrow span {
    line-height: 1;
  }
  .solutions__arrow:disabled {
    background: var(--surface-faint);
    color: var(--ink-faint);
    border-color: var(--line-muted);
    box-shadow: none;
    cursor: default;
  }

  .join-driver {
    position: relative;
    overflow: hidden;
    background: var(--gradient-deep);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 420px;
  }
  .join-driver__media {
    height: 100%;
    overflow: hidden;
  }
  .join-driver__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .join-driver__decor {
    display: none;
  }
  .join-driver__body {
    padding: 80px 96px 80px 72px;
    max-width: 560px;
  }
  .join-driver__title {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 18px;
  }
  .join-driver__desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 32px;
  }
  .join-driver__cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--primary-deep);
    font-size: 15px;
    font-weight: 800;
  }

  .download__media {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .phone-shell--download {
    width: min(72%, 300px);
  }
  .download__phone {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top center;
    border-radius: 30px;
  }
  .download__screens {
    display: none;
  }
  .download__title {
    margin-bottom: 32px;
  }
  .download__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  .download-card {
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: var(--shadow-sm);
  }
  .download-card h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
  }
  .download-card p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.55;
  }
  .download__badges {
    gap: 14px;
  }
  .download__badges img {
    height: 48px;
    width: auto;
  }

  .footer {
    background: var(--surface-faint);
    border-top: 1px solid var(--line-muted);
  }
  .footer__main {
    padding-top: 64px;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: 1.25fr 0.7fr;
    gap: 56px;
  }
  .footer__logo img {
    height: 43px;
    width: auto;
    margin-bottom: 20px;
  }
  .footer__about {
    max-width: 360px;
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
  }
  .footer__nav {
    padding-top: 12px;
  }
  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .footer__nav a {
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
  }
  .footer__copy {
    background: var(--gradient-deep);
    color: #fff;
    text-align: center;
    padding: 18px 24px;
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .topstrip__inner,
  .header__inner,
  .advantage__inner,
  .services__inner,
  .solutions__inner,
  .download__inner,
  .footer__main {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero__title {
    font-size: 42px;
  }
  .solutions__inner,
  .download__inner,
  .service-card__body,
  .service-card[data-variant="customer"] .service-card__body {
    grid-template-columns: 1fr 1fr;
  }
  .join-driver__body {
    padding: 64px 40px;
  }
}
