/**
 * Marslia landing identity — matches rider/driver apps
 * Cyan #0E9BC8 · Navy #0A2A4A · White on dark · Tajawal
 */
:root {
  --ml-cyan: #0E9BC8;
  --ml-navy: #0A2A4A;
  --ml-gold: #0E9BC8;
  --ml-mist: #E8F6FA;
  --ml-soft: #D6EEF5;
  --ml-text: #1A2B3C;
  --ml-muted: #5B6B7C;
  --default-font: "Tajawal", system-ui, sans-serif;
  --heading-font: "Tajawal", system-ui, sans-serif;
  --nav-font: "Tajawal", system-ui, sans-serif;
  --background-color: #ffffff;
  --default-color: #1A2B3C;
  --heading-color: #0A2A4A;
  --accent-color: #0E9BC8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #ffffff;
  --nav-hover-color: #0E9BC8;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-hover-color: #0E9BC8;
}

.light-background { --background-color: #E8F6FA; --surface-color: #ffffff; }
.dark-background {
  --background-color: #0A2A4A;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0E3A5C;
  --contrast-color: #ffffff;
}

html { scroll-behavior: smooth; }
body.ml-body,
.ml-body {
  font-family: "Tajawal", system-ui, sans-serif;
  color: var(--ml-text);
  background: #fff;
  margin: 0;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: "Tajawal", system-ui, sans-serif; color: var(--ml-navy); }
h1, h2, h3, h4, h5, h6, p, li, label {
  text-align: start;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] p,
html[dir="rtl"] li,
html[dir="rtl"] .ml-head,
html[dir="rtl"] .ml-head.text-center,
html[dir="rtl"] .ml-head h2,
html[dir="rtl"] .ml-head p,
html[dir="rtl"] .ml-app-card h3,
html[dir="rtl"] .ml-app-card p,
html[dir="rtl"] .ml-step h3,
html[dir="rtl"] .ml-step p,
html[dir="rtl"] .ml-feature h3,
html[dir="rtl"] .ml-feature p,
html[dir="rtl"] .ml-contact-card h3,
html[dir="rtl"] .ml-contact-card p,
html[dir="rtl"] .inner-page h4,
html[dir="rtl"] .inner-page p {
  text-align: right !important;
}
html[dir="rtl"] .ml-stats,
html[dir="rtl"] .ml-stat,
html[dir="rtl"] .ml-stat b,
html[dir="rtl"] .ml-stat span {
  text-align: center !important;
}

/* Header */
.ml-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  background: rgba(10, 42, 74, 0.94);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(10, 42, 74, 0.18);
}
body.ml-home .ml-header {
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.ml-home .ml-header.is-solid {
  background: rgba(5, 13, 24, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.ml-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}
.ml-logo img { height: 42px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.ml-logo-framed img,
img.ml-logo-framed,
img.login-logo-img,
img.brand-logo {
  filter: none !important;
}
.ml-nav {
  display: flex;
  align-items: center;
}
.ml-nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.ml-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}
.ml-nav a:hover { background: rgba(14, 155, 200, 0.25); color: #fff; }
.ml-nav-login { background: var(--ml-cyan) !important; }
.ml-nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1002;
  padding: 0;
}

@media (max-width: 991.98px) {
  .ml-header { padding: 8px 0; }
  .ml-header .container {
    gap: 8px;
    min-width: 0;
  }
  .ml-logo {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 0.98rem;
    gap: 8px;
  }
  .ml-logo img { height: 32px; flex-shrink: 0; }
  .ml-logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .ml-nav-toggle { display: inline-flex; }
  .ml-nav ul {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    inset-inline-end: 0;
    inset-inline-start: auto;
    right: 0;
    left: auto;
    width: min(86vw, 320px);
    height: 100dvh !important;
    max-height: none;
    margin: 0;
    padding: 88px 18px 28px;
    background: #071627;
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    border-radius: 0;
    border: 0;
    border-inline-start: 1px solid rgba(255,255,255,0.1);
    box-shadow: -18px 0 50px rgba(0,0,0,0.35);
    overflow: auto;
    z-index: 1001;
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s ease, visibility 0.32s ease;
  }
  html[dir="rtl"] .ml-nav ul { transform: translateX(105%); }
  .ml-nav ul li { width: 100%; margin: 0; }
  .ml-nav ul a,
  .ml-header .ml-nav ul a {
    color: #fff !important;
    width: 100%;
    display: block;
    text-align: right;
    padding: 12px 16px;
    border-radius: 12px;
    background: transparent;
  }
  .ml-nav ul a:hover,
  .ml-header .ml-nav ul a:hover {
    background: rgba(14, 155, 200, 0.22);
    color: #fff !important;
  }
  .ml-nav-open .ml-nav ul,
  html[dir="rtl"] .ml-nav-open .ml-nav ul {
    display: flex;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  body.ml-nav-open { overflow: hidden; }
  body.ml-nav-open .ml-header,
  body.ml-home.ml-nav-open .ml-header {
    background: rgba(5, 13, 24, 0.94);
  }
  body.ml-nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
  }
}

.ml-main { padding-top: 0; margin-top: 0; }
body.ml-body { padding-top: 0 !important; margin: 0; }

/* Hero */
.ml-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(14,155,200,0.22) 0%, #E8F6FA 42%, #ffffff 100%);
  padding: 72px 0 48px;
  overflow: hidden;
}
.ml-hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,155,200,0.35), transparent 70%);
  top: -80px;
  inset-inline-start: -80px;
  pointer-events: none;
}
.ml-kicker {
  display: inline-block;
  background: var(--ml-soft);
  color: var(--ml-cyan);
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.ml-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--ml-navy);
}
.ml-hero h1 span { color: var(--ml-cyan); }
.ml-lead { font-size: 1.15rem; color: var(--ml-muted); margin: 16px 0 24px; }
.ml-hero-actions, .ml-pills, .ml-store { display: flex; flex-wrap: wrap; gap: 12px; }
.ml-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.ml-btn-primary {
  background: linear-gradient(135deg, #1ab0dc 0%, #0E9BC8 55%, #0A6E91 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(14,155,200,0.32);
}
.ml-btn-primary:hover { background: #0b86ae; color: #fff; }
.ml-btn-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.18);
  font-size: 0.85rem;
}
.ml-btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}
.ml-pills span {
  background: #fff;
  border: 1px solid var(--ml-soft);
  color: var(--ml-navy);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 18px;
}

/* Phone mockups */
.ml-phones { position: relative; min-height: 420px; display: flex; justify-content: center; }
.ml-phone {
  width: 230px;
  background: #0A2A4A;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 24px 50px rgba(10, 42, 74, 0.28);
  position: relative;
}
.ml-phone-notch {
  width: 86px; height: 10px; background: #071c31; border-radius: 0 0 10px 10px; margin: 0 auto 8px;
}
.ml-phone-screen { background: #fff; border-radius: 22px; overflow: hidden; min-height: 390px; }
.ml-phone-screen.driver { background: linear-gradient(180deg, #0E9BC8, #0A2A4A); color: #fff; }
.ml-phone-rider { z-index: 2; }
.ml-phone-driver { position: absolute; inset-inline-end: 8%; top: 48px; transform: scale(0.88); z-index: 1; }
.ml-appbar { padding: 16px 16px 8px; }
.ml-appbar strong { display: block; color: var(--ml-navy); }
.ml-phone-screen.driver .ml-appbar strong,
.ml-phone-screen.driver .ml-appbar small { color: #fff; }
.ml-map {
  height: 150px;
  margin: 8px 12px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #d6eef5, #f6fafd 40%, #cde7f0);
  position: relative;
}
.ml-route {
  position: absolute; inset: 40px 30px auto 30px; height: 4px;
  background: var(--ml-cyan); border-radius: 4px; transform: rotate(-18deg);
}
.ml-dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; border: 2px solid #fff; }
.ml-dot-pickup { background: #26A69A; top: 36px; inset-inline-start: 28px; }
.ml-dot-drop { background: var(--ml-cyan); bottom: 28px; inset-inline-end: 32px; }
.ml-sheet { padding: 12px; }
.ml-sheet-row { background: var(--ml-mist); border-radius: 12px; padding: 10px 12px; margin-bottom: 8px; font-weight: 700; color: var(--ml-navy); }
.ml-sheet-row.drop i { color: var(--ml-cyan); }
.ml-sheet-row i { color: #26A69A; margin-inline-end: 6px; font-size: 0.7rem; }
.ml-sheet button, .ml-job button {
  width: 100%; border: 0; background: var(--ml-cyan); color: #fff;
  font-weight: 800; border-radius: 12px; padding: 12px; font-family: inherit;
}
.ml-earn { padding: 20px 16px 8px; }
.ml-earn em { display: block; opacity: 0.85; font-style: normal; }
.ml-earn b { font-size: 1.8rem; }
.ml-job { margin: 16px; background: rgba(255,255,255,0.12); border-radius: 16px; padding: 14px; }
.ml-job span { display: block; margin-bottom: 10px; }

@media (max-width: 991px) {
  .ml-phone-driver { position: static; transform: none; margin-top: 16px; }
  .ml-phones { flex-direction: column; align-items: center; }
}

.ml-stats { background: transparent; color: #fff; padding: 8px 0 36px; margin: 0; position: relative; z-index: 2; }
.ml-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 16px 10px;
  backdrop-filter: blur(12px);
}
.ml-stat b { display: block; font-size: 1.6rem; color: #fff; }
.ml-stat span { opacity: 0.85; color: #fff; }

.ml-apps, .ml-how, .ml-features, .ml-faq, .ml-contact { padding: 72px 0; }
.ml-how, .ml-faq { background: var(--ml-mist); }
.ml-head { margin-bottom: 36px; }
.ml-head h2 { font-weight: 900; font-size: 2rem; }
.ml-app-card, .ml-step, .ml-feature, .ml-contact-card, .ml-q {
  background: #fff;
  border: 1px solid var(--ml-soft);
  border-radius: 22px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(10, 42, 74, 0.06);
}
.ml-app-card { display: flex; gap: 18px; }
.ml-app-icon {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  color: #fff; font-size: 1.6rem; flex: 0 0 64px;
}
.ml-app-icon.rider { background: var(--ml-cyan); }
.ml-app-icon.driver { background: var(--ml-navy); }
.ml-app-card ul { padding: 0 18px 0 0; color: var(--ml-muted); }
.store-button {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ml-navy); color: #fff; border-radius: 12px; padding: 10px 14px; text-decoration: none; font-weight: 700;
}
.store-button:hover { background: var(--ml-cyan); color: #fff; }
.ml-step span {
  width: 42px; height: 42px; border-radius: 50%; background: var(--ml-cyan); color: #fff;
  display: grid; place-items: center; font-weight: 900; margin-bottom: 12px;
}
.ml-feature i { font-size: 1.6rem; color: var(--ml-cyan); }
.ml-q summary { font-weight: 800; cursor: pointer; color: var(--ml-navy); }
.ml-q p { margin: 10px 0 0; color: var(--ml-muted); }
.ml-contact-card { text-align: center; }
.ml-contact-card i { font-size: 1.5rem; color: var(--ml-cyan); }

.ml-footer { background: var(--ml-navy); color: #fff; padding: 48px 0 20px; }
.ml-footer a, .ml-footer .ml-logo { color: #fff; text-decoration: none; }
.ml-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.ml-footer ul { list-style: none; padding: 0; margin: 0; }
.ml-footer li { margin-bottom: 8px; }
.ml-copy { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 28px; padding-top: 16px; color: #fff; }
.ml-copy p { margin: 0; line-height: 1.9; }
.ml-copy a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

#preloader { background: #0A2A4A; }
.scroll-top {
  background-color: #0E9BC8;
  border-radius: 12px;
  left: 16px !important;
  right: auto !important;
  bottom: 16px;
}
.scroll-top:hover { background-color: #0A2A4A; }

.inner-page { padding: 100px 0 64px; }
.inner-page h4 { color: var(--ml-navy); font-weight: 800; }

@media (max-width: 575px) {
  .ml-app-card { flex-direction: column; }
  .ml-hero { padding-top: 40px; }
  .ml-logo span { font-size: 0.95rem; }
  .ml-apps, .ml-how, .ml-features, .ml-faq, .ml-contact { padding: 48px 0; }
  .ml-head h2 { font-size: 1.55rem; }
}

/* Cinematic stage: header + slider + stats */
.ml-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(920px 480px at 18% 55%, rgba(14,155,200,0.22), transparent 58%),
    radial-gradient(720px 420px at 88% 12%, rgba(14,155,200,0.14), transparent 52%),
    linear-gradient(180deg, #06101c 0%, #071627 42%, #0A2A4A 100%);
}
.ml-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.ml-stage-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  inset-inline-start: 6%;
  bottom: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,155,200,0.22) 0%, rgba(14,155,200,0.05) 42%, transparent 70%);
  filter: blur(8px);
  animation: mlPulse 6.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes mlPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.12); opacity: 1; }
}

.ml-slider {
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
  z-index: 1;
}
.ml-hero-swiper {
  min-height: 0;
  overflow: visible;
  background: transparent;
}
.ml-slider .swiper-wrapper { height: auto !important; }
.ml-slider .swiper-slide { height: auto; overflow: visible; }
.ml-slide {
  position: relative;
  display: block;
  overflow: visible;
  color: #fff;
  min-height: 0;
  padding: 96px 0 12px;
  background: transparent;
}
.ml-slide-1,
.ml-slide-2,
.ml-slide-3 { background: transparent; }
.ml-slide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 1.15fr);
  gap: 28px 40px;
  align-items: center;
}
.ml-slide.no-image .ml-slide-grid { grid-template-columns: 1fr; }
.ml-slide-media,
.ml-slide-bg {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 100%;
  min-height: 0;
  height: min(68vh, 560px);
  aspect-ratio: auto;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ml-media-ring {
  position: absolute;
  width: min(92%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(14,155,200,0.28);
  box-shadow: 0 0 80px rgba(14,155,200,0.18), inset 0 0 60px rgba(14,155,200,0.08);
  animation: mlSpin 28s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes mlSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.ml-slide-media img {
  position: relative !important;
  inset: auto !important;
  width: auto !important;
  height: 100% !important;
  max-height: min(68vh, 560px) !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: bottom center;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,0.35));
}
.ml-slide-overlay { display: none; }
.ml-slide-content {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: none;
}
.ml-slide .ml-kicker { background: rgba(232,246,250,.14); color: #fff; border: 1px solid rgba(255,255,255,.16); }
.ml-slide h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  max-width: 14ch;
}
.ml-slide .ml-lead { color: rgba(255,255,255,.86); max-width: 42ch; font-size: 1.15rem; }
.ml-slide .ml-btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.ml-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 8% 8px;
  position: relative;
  z-index: 3;
}
.ml-slider .swiper-pagination {
  position: static;
  width: auto;
}
.ml-slider-arrows { display: flex; gap: 10px; }
.ml-slider .swiper-pagination-bullet { width: 10px; height: 10px; background: #fff; opacity: .35; }
.ml-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--ml-cyan); width: 28px; border-radius: 999px; }
.ml-slider .swiper-button-next,
.ml-slider .swiper-button-prev {
  position: static;
  margin: 0;
  color: #fff;
  width: 46px; height: 46px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}
.ml-slider .swiper-button-next:after,
.ml-slider .swiper-button-prev:after { font-size: 16px; font-weight: 900; }

/* Modern FAQ */
.ml-faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.ml-faq-item {
  background: #fff;
  border: 1px solid var(--ml-soft);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(10, 42, 74, 0.05);
}
.ml-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  font-weight: 800;
  color: var(--ml-navy);
}
.ml-faq-item summary::-webkit-details-marker { display: none; }
.ml-faq-num {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--ml-mist);
  color: var(--ml-cyan);
  display: grid; place-items: center;
  font-weight: 900;
}
.ml-faq-q { flex: 1; font-size: 1.05rem; }
.ml-faq-item summary i { color: var(--ml-cyan); transition: transform .25s ease; }
.ml-faq-item[open] { border-color: rgba(14,155,200,.35); box-shadow: 0 16px 32px rgba(14,155,200,.12); }
.ml-faq-item[open] .ml-faq-num { background: var(--ml-cyan); color: #fff; }
.ml-faq-item[open] summary i { transform: rotate(45deg); }
.ml-faq-a { padding: 0 20px 20px; padding-inline-start: 76px; color: var(--ml-muted); }
.ml-faq-a p { margin: 0; line-height: 1.8; }

.ml-app-shot {
  width: 92px; height: 92px; object-fit: cover; border-radius: 18px; flex: 0 0 92px;
}

img, svg, video { max-width: 100%; height: auto; }
.ml-slide-media img {
  width: auto !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: min(68vh, 560px) !important;
  object-fit: contain !important;
  object-position: bottom center;
  display: block;
  position: relative !important;
  inset: auto !important;
}

/* Kill leftover template yellow; keep white text on dark surfaces */
.footer .social-links a:hover,
.raintail h2,
.details .icon-box .cion,
.about {
  color: inherit;
}
.ml-header, .ml-footer, .ml-stats, .ml-slide, .dark-background {
  color: #fff;
}
.ml-header .ml-logo,
.ml-header .ml-nav > ul > li > a,
.ml-footer a,
.ml-footer h4,
.ml-stat b,
.ml-stat span,
.ml-slide h1,
.ml-slide .ml-lead {
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .ml-slide { padding: 76px 0 8px; }
  .ml-slide-grid { grid-template-columns: 1fr; gap: 18px; }
  .ml-slide-media {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }
  .ml-slide-media img {
    height: auto !important;
    width: auto !important;
    max-width: 86% !important;
    max-height: 48vh !important;
    object-fit: contain !important;
    object-position: center center;
    margin-inline: auto;
  }
  .ml-stage { overflow-x: hidden; overflow-y: hidden; }
  .ml-hero-actions { flex-direction: column; align-items: stretch; }
  .ml-hero-actions .ml-btn { justify-content: center; }
  .ml-slider-controls { padding: 4px 16px 10px; }
}

@media (max-width: 767.98px) {
  .ml-footer { padding: 36px 0 28px; }
  .ml-copy {
    padding-top: 14px;
    padding-bottom: 8px;
    padding-inline-end: 0;
  }
  .ml-footer .col-6 { margin-bottom: 8px; }
  .ml-faq-a { padding: 0 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .ml-media-ring, .ml-stage-glow { animation: none; }
}
