
.mfs-surface,
.mfs-block {
  --mfs-max-width: 1200px;
  --mfs-primary-bg: #25d366;
  --mfs-primary-color: #ffffff;
  --mfs-primary-border: #25d366;
  --mfs-card-bg: #ffffff;
  --mfs-line: rgba(15, 23, 32, .08);
  --mfs-line-strong: rgba(15, 23, 32, .14);
  --mfs-muted: #5b6776;
  --mfs-soft: #f4fbf7;
  --mfs-soft-strong: #e8f8ee;
  --mfs-heading: #0f1720;
  --mfs-shadow: 0 16px 44px rgba(15, 23, 32, .07);
  --mfs-shadow-soft: 0 10px 24px rgba(15, 23, 32, .05);
  --mfs-radius-2xl: 28px;
  --mfs-radius-xl: 24px;
  --mfs-radius-lg: 18px;
  --mfs-radius-md: 14px;
  width: 100%;
}

.mfs-surface {
  position: relative;
  padding-bottom: 24px;
}

.mfs-block {
  padding: 18px 16px;
}

.mfs-inner {
  max-width: var(--mfs-max-width);
  margin: 0 auto;
}

.mfs-hero__content,
.mfs-account__box,
.mfs-contact__bar,
.mfs-user-welcome__box,
.mfs-page-intro__box,
.mfs-journey__card,
.mfs-route-card,
.mfs-trust__item,
.mfs-quick-action {
  background: var(--mfs-card-bg);
  border: 1px solid var(--mfs-line);
  border-radius: var(--mfs-radius-xl);
  box-shadow: var(--mfs-shadow-soft);
}

.mfs-hero__content {
  padding: 48px 30px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf9 100%);
}

.mfs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mfs-soft-strong);
  color: #117865;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
}

.mfs-hero__title,
.mfs-section-title {
  margin: 0;
  color: var(--mfs-heading);
  line-height: 1.08;
}

.mfs-hero__title {
  font-size: clamp(30px, 4vw, 54px);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.mfs-hero__subtitle,
.mfs-section-subtitle,
.mfs-contact__hint,
.mfs-journey__text,
.mfs-route-card__subtitle {
  margin: 12px auto 0;
  max-width: 840px;
  color: var(--mfs-muted);
  font-size: 16px;
  line-height: 1.65;
}

.mfs-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}

.mfs-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  background: #ffffff;
  border: 1px solid rgba(37, 211, 102, .18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #14532d;
}

.mfs-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.mfs-actions--wrap {
  flex-wrap: wrap;
}

.mfs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--mfs-radius-md);
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
}

.mfs-btn:hover {
  transform: translateY(-1px);
}

.mfs-btn--primary {
  background: var(--mfs-primary-bg);
  color: var(--mfs-primary-color);
  border-color: var(--mfs-primary-border);
}

.mfs-btn--primary:hover,
.mfs-btn--primary:focus {
  color: var(--mfs-primary-color);
  filter: brightness(.98);
}

.mfs-btn--secondary {
  background: #ffffff;
  color: var(--mfs-heading);
  border-color: var(--mfs-line-strong);
}

.mfs-btn--secondary:hover,
.mfs-btn--secondary:focus {
  color: var(--mfs-heading);
  background: #f9fafb;
}

.mfs-btn--wa {
  background: #ffffff;
  color: #128c7e;
  border-color: rgba(18, 140, 126, .24);
}

.mfs-btn--wa:hover,
.mfs-btn--wa:focus {
  color: #128c7e;
  background: #f3fbf7;
}

.mfs-section-head {
  margin-bottom: 18px;
}

.mfs-section-head--center {
  text-align: center;
}

.mfs-section-title {
  font-size: clamp(24px, 3vw, 38px);
}

.mfs-user-welcome__box {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf9 100%);
}

.mfs-quick-actions__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mfs-quick-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 16px;
  border-radius: var(--mfs-radius-lg);
  text-decoration: none;
  color: var(--mfs-heading);
  font-weight: 700;
  text-align: center;
}

.mfs-quick-action.is-primary {
  background: var(--mfs-primary-bg);
  color: var(--mfs-primary-color);
  border-color: var(--mfs-primary-border);
}

.mfs-trust__grid,
.mfs-routes__grid,
.mfs-journey__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mfs-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
}

.mfs-trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  background: var(--mfs-soft-strong);
  color: #128c7e;
  font-weight: 800;
}

.mfs-trust__text {
  color: var(--mfs-heading);
  font-weight: 700;
  line-height: 1.45;
}

.mfs-journey__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mfs-journey__card {
  padding: 22px;
}

.mfs-journey__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--mfs-soft-strong);
  color: #128c7e;
  font-weight: 800;
  margin-bottom: 14px;
}

.mfs-journey__title {
  display: block;
  color: var(--mfs-heading);
  font-size: 18px;
  line-height: 1.35;
}

.mfs-journey__text {
  margin: 10px 0 0;
}

.mfs-route-card {
  display: block;
  padding: 20px;
  text-decoration: none;
}

.mfs-route-card--static {
  cursor: default;
}

.mfs-route-card:hover {
  transform: translateY(-2px);
}

.mfs-route-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--mfs-soft-strong);
  color: #117865;
  font-size: 12px;
  font-weight: 800;
}

.mfs-route-card__title {
  display: block;
  color: var(--mfs-heading);
  font-size: 18px;
  line-height: 1.35;
  margin-top: 14px;
}

.mfs-route-card__cta {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: #128c7e;
}

.mfs-account__box,
.mfs-contact__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.mfs-contact__lead {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mfs-contact__label {
  font-weight: 800;
  color: var(--mfs-heading);
}

.mfs-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mfs-nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  background: #ffffff;
  color: var(--mfs-heading);
  border: 1px solid var(--mfs-line-strong);
  box-shadow: var(--mfs-shadow-soft);
  font-weight: 700;
}

.mfs-nav-pill.is-active {
  background: var(--mfs-primary-bg);
  color: #ffffff;
  border-color: var(--mfs-primary-border);
}

.mfs-page-intro__box {
  padding: 28px;
}

.mfs-page-intro.is-center .mfs-page-intro__box {
  text-align: center;
}

.mfs-mobile-bar {
  display: none;
}

.mfs-ready .mfs-route-card,
.mfs-ready .mfs-btn,
.mfs-ready .mfs-quick-action,
.mfs-ready .mfs-mobile-bar__item {
  will-change: transform;
}

@media (max-width: 991px) {
  .mfs-trust__grid,
  .mfs-routes__grid,
  .mfs-quick-actions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mfs-journey__grid {
    grid-template-columns: 1fr;
  }

  .mfs-account__box,
  .mfs-contact__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .mfs-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .mfs-surface {
    padding-bottom: 92px;
  }

  .mfs-block {
    padding: 14px 12px;
  }

  .mfs-hero__content,
  .mfs-account__box,
  .mfs-contact__bar,
  .mfs-user-welcome__box,
  .mfs-page-intro__box,
  .mfs-journey__card {
    padding: 22px 18px;
  }

  .mfs-trust__grid,
  .mfs-routes__grid,
  .mfs-quick-actions__grid {
    grid-template-columns: 1fr;
  }

  .mfs-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mfs-btn {
    width: 100%;
  }

  .mfs-chip-row {
    justify-content: flex-start;
  }

  .mfs-mobile-bar {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  .mfs-mobile-bar.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mfs-mobile-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--mfs-line);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 34px rgba(15, 23, 32, .14);
  }

  .mfs-mobile-bar__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 12px;
    text-decoration: none;
    text-align: center;
    border-radius: 16px;
    color: var(--mfs-heading);
    background: #ffffff;
    border: 1px solid var(--mfs-line-strong);
    font-weight: 700;
    font-size: 14px;
  }

  .mfs-mobile-bar__item--primary {
    background: var(--mfs-primary-bg);
    color: var(--mfs-primary-color);
    border-color: var(--mfs-primary-border);
  }

  .mfs-mobile-bar__item--wa {
    color: #128c7e;
    border-color: rgba(18, 140, 126, .22);
    background: #f3fbf7;
  }
}


.mfs-portal-embed__frame {
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf9 100%);
  border: 1px solid var(--mfs-line);
  border-radius: var(--mfs-radius-2xl);
  box-shadow: var(--mfs-shadow);
  padding: 24px;
}

.mfs-portal-embed__head {
  margin-bottom: 18px;
}

.mfs-portal-embed__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--mfs-soft-strong);
  color: #117865;
  font-size: 12px;
  font-weight: 800;
}

.mfs-portal-embed__empty {
  padding: 8px 0 4px;
}

.mfs-portal-embed__title {
  margin: 0;
  color: var(--mfs-heading);
  font-size: 24px;
  line-height: 1.3;
}

.mfs-portal-embed__text {
  margin: 10px 0 0;
  color: var(--mfs-muted);
  font-size: 15px;
  line-height: 1.6;
}

.mfs-portal-embed__shell {
  border-top: 1px solid var(--mfs-line);
  padding-top: 18px;
}

@media (max-width: 767px) {
  .mfs-portal-embed__frame {
    padding: 20px 16px;
  }
}


.mfs-login__box {
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf9 100%);
  border: 1px solid var(--mfs-line);
  border-radius: var(--mfs-radius-2xl);
  box-shadow: var(--mfs-shadow);
  padding: 28px;
}

.mfs-login__head {
  margin-bottom: 18px;
}

.mfs-login__form-wrap form {
  display: grid;
  gap: 14px;
}

.mfs-login__form-wrap label {
  display: block;
  font-weight: 700;
  color: var(--mfs-heading);
  margin-bottom: 6px;
}

.mfs-login__form-wrap input[type="text"],
.mfs-login__form-wrap input[type="password"],
.mfs-login__form-wrap input[type="email"] {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid var(--mfs-line-strong);
  padding: 0 14px;
  font-size: 15px;
  color: var(--mfs-heading);
  background: #ffffff;
  box-sizing: border-box;
}

.mfs-login__form-wrap .login-remember {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mfs-muted);
}

.mfs-login__form-wrap .login-remember label {
  margin: 0;
  font-weight: 600;
}

.mfs-login__form-wrap .button,
.mfs-login__form-wrap input[type="submit"] {
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  background: var(--mfs-primary-bg);
  color: var(--mfs-primary-color);
  font-weight: 800;
  padding: 0 18px;
  cursor: pointer;
}

.mfs-login__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 14px;
}

.mfs-login__link {
  color: #128c7e;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 767px) {
  .mfs-login__box {
    padding: 22px 18px;
  }
}


/* v1.9.0 customer entry polish */
.mfs-page-intro__box,
.mfs-user-welcome__box,
.mfs-login__box,
.mfs-portal-embed__frame {
  position: relative;
  overflow: hidden;
}

.mfs-page-intro__box::after,
.mfs-user-welcome__box::after,
.mfs-login__box::after,
.mfs-portal-embed__frame::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 211, 102, .22) 0%, rgba(37, 211, 102, 0) 100%);
}

.mfs-page-intro__box {
  padding: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf9 100%);
}

.mfs-page-intro__box .mfs-section-subtitle,
.mfs-user-welcome__box .mfs-section-subtitle {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
}

.mfs-user-welcome__box {
  padding: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f6fff9 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 32, .07);
}

.mfs-account-nav .mfs-inner {
  border: 1px solid var(--mfs-line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fafdfb 100%);
  box-shadow: var(--mfs-shadow-soft);
  padding: 12px;
}

.mfs-nav-pill {
  min-height: 44px;
  padding: 0 18px;
  border-color: rgba(37, 211, 102, .16);
}

.mfs-nav-pill.is-active {
  box-shadow: 0 12px 24px rgba(37, 211, 102, .22);
}

.mfs-quick-actions__grid {
  gap: 14px;
}

.mfs-quick-action {
  min-height: 68px;
  padding: 0 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.mfs-quick-action:hover {
  transform: translateY(-2px);
  box-shadow: var(--mfs-shadow);
  border-color: rgba(37, 211, 102, .22);
}

.mfs-portal-embed__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.mfs-portal-embed__state,
.mfs-login__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.mfs-portal-embed__state.is-live,
.mfs-login__eyebrow {
  background: rgba(37, 211, 102, .12);
  color: #117865;
}

.mfs-portal-embed__state.is-locked {
  background: rgba(15, 23, 32, .06);
  color: #435162;
}

.mfs-portal-embed__state.is-warning {
  background: rgba(255, 243, 205, .8);
  color: #8a6d1f;
}

.mfs-portal-embed__head {
  display: grid;
  gap: 8px;
}

.mfs-portal-embed__shell {
  border-top: 1px solid var(--mfs-line);
  padding-top: 20px;
}

.mfs-portal-embed__shell .movara-portal-foundation {
  max-width: none !important;
}

.mfs-login__box {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px;
}

.mfs-login__form-wrap form p {
  margin: 0;
}

.mfs-login__form-wrap .input,
.mfs-login__form-wrap input[type="text"],
.mfs-login__form-wrap input[type="password"],
.mfs-login__form-wrap input[type="email"] {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.mfs-login__form-wrap .button,
.mfs-login__form-wrap input[type="submit"] {
  width: 100%;
  box-shadow: 0 14px 26px rgba(37, 211, 102, .22);
}

@media (max-width: 991px) {
  .mfs-quick-actions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mfs-page-intro__box,
  .mfs-user-welcome__box,
  .mfs-login__box,
  .mfs-portal-embed__frame {
    padding: 22px 18px;
  }

  .mfs-account-nav .mfs-inner {
    padding: 10px;
  }

  .mfs-nav-pill,
  .mfs-quick-action {
    min-height: 52px;
  }
}

/* ===== Visual Design System ===== */
/* MOVARA Frontend Surface — Visual Design System Foundation */
.mfs-surface,
.mfs-block {
  --mfs-primary-bg: #123d32;
  --mfs-primary-color: #ffffff;
  --mfs-primary-border: #123d32;
  --mfs-accent: #8ac441;
  --mfs-accent-soft: rgba(138, 196, 65, .14);
  --mfs-forest: #123d32;
  --mfs-forest-2: #195244;
  --mfs-canvas: #f5f8f4;
  --mfs-soft: #f1f6f1;
  --mfs-soft-strong: #e8f1e7;
  --mfs-heading: #0b251f;
  --mfs-muted: #52645d;
  --mfs-line: rgba(18, 61, 50, .12);
  --mfs-line-strong: rgba(18, 61, 50, .22);
  --mfs-shadow: 0 24px 68px rgba(11, 37, 31, .12);
  --mfs-shadow-soft: 0 12px 32px rgba(11, 37, 31, .07);
  color: var(--mfs-heading);
  font-family: Inter, Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.mfs-surface {
  background:
    radial-gradient(circle at 5% 0%, rgba(138, 196, 65, .10), transparent 27%),
    radial-gradient(circle at 96% 16%, rgba(25, 82, 68, .09), transparent 24%);
}

.mfs-hero__content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: var(--mfs-line);
  background:
    radial-gradient(circle at 15% 8%, rgba(138, 196, 65, .18), transparent 27%),
    radial-gradient(circle at 88% 25%, rgba(25, 82, 68, .14), transparent 28%),
    linear-gradient(145deg, #ffffff 8%, #f3f8f2 100%);
  box-shadow: var(--mfs-shadow);
}

.mfs-hero__content::before,
.mfs-hero__content::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(18, 61, 50, .08);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.mfs-hero__content::before {
  width: 440px;
  height: 150px;
  right: -150px;
  top: 45px;
}

.mfs-hero__content::after {
  width: 320px;
  height: 110px;
  left: -120px;
  bottom: 28px;
}

.mfs-hero__eyebrow,
.mfs-route-card__badge {
  border: 1px solid rgba(138, 196, 65, .34);
  background: var(--mfs-accent-soft);
  color: var(--mfs-forest);
  letter-spacing: .04em;
}

.mfs-hero__title,
.mfs-section-title {
  letter-spacing: -.04em;
}

.mfs-hero__subtitle,
.mfs-section-subtitle,
.mfs-contact__hint,
.mfs-journey__text,
.mfs-route-card__subtitle {
  color: var(--mfs-muted);
}

.mfs-hero__journey {
  display: grid;
  grid-template-columns: auto minmax(52px, 120px) auto minmax(52px, 120px) auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 620px;
  margin: 26px auto 0;
}

.mfs-hero__journey-node {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mfs-muted);
  font-size: 12px;
  font-weight: 800;
}

.mfs-hero__journey-node i {
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--mfs-accent);
  box-shadow: 0 0 0 2px var(--mfs-forest);
}

.mfs-hero__journey-node.is-center i {
  background: var(--mfs-forest);
  box-shadow: 0 0 0 2px var(--mfs-accent);
}

.mfs-hero__journey-line {
  position: relative;
  display: block;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(18, 61, 50, .16);
}

.mfs-hero__journey-line b {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mfs-forest), var(--mfs-accent));
}

.mfs-chip {
  border-color: rgba(18, 61, 50, .14);
  color: var(--mfs-forest);
  box-shadow: 0 5px 14px rgba(11, 37, 31, .04);
}

.mfs-btn,
.mfs-quick-action,
.mfs-route-card {
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.mfs-btn--primary,
.mfs-quick-action.is-primary {
  background: linear-gradient(135deg, var(--mfs-forest), var(--mfs-forest-2));
  border-color: var(--mfs-forest);
  box-shadow: 0 12px 28px rgba(18, 61, 50, .18);
}

.mfs-btn--primary:hover,
.mfs-quick-action.is-primary:hover {
  box-shadow: 0 16px 34px rgba(18, 61, 50, .23);
}

.mfs-btn--secondary,
.mfs-quick-action:not(.is-primary) {
  border-color: var(--mfs-line-strong);
  color: var(--mfs-forest);
}

.mfs-btn:focus-visible,
.mfs-quick-action:focus-visible,
.mfs-route-card:focus-visible {
  outline: 2px solid var(--mfs-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(138, 196, 65, .18);
}

.mfs-hero__content,
.mfs-account__box,
.mfs-contact__bar,
.mfs-user-welcome__box,
.mfs-page-intro__box,
.mfs-journey__card,
.mfs-route-card,
.mfs-trust__item,
.mfs-quick-action {
  border-color: var(--mfs-line);
  box-shadow: var(--mfs-shadow-soft);
}

.mfs-trust__icon,
.mfs-journey__step {
  border: 1px solid rgba(138, 196, 65, .28);
  background: var(--mfs-accent-soft);
  color: var(--mfs-forest);
}

.mfs-journey__card,
.mfs-route-card,
.mfs-trust__item {
  position: relative;
  overflow: hidden;
}

.mfs-journey__card::after,
.mfs-route-card::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  right: -34px;
  bottom: -34px;
  border-radius: 999px;
  background: rgba(138, 196, 65, .10);
}

.mfs-journey__card:hover,
.mfs-route-card:hover,
.mfs-quick-action:hover {
  transform: translateY(-3px);
  border-color: rgba(138, 196, 65, .48);
  box-shadow: var(--mfs-shadow);
}

.mfs-route-card__cta {
  color: var(--mfs-forest);
}

@media (max-width: 680px) {
  .mfs-hero__content {
    padding: 38px 20px;
  }

  .mfs-hero__journey {
    grid-template-columns: auto 1fr auto 1fr auto;
    gap: 5px;
  }

  .mfs-hero__journey-node {
    display: grid;
    justify-items: center;
    gap: 5px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mfs-surface *,
  .mfs-surface *::before,
  .mfs-surface *::after,
  .mfs-block *,
  .mfs-block *::before,
  .mfs-block *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ===== Premium Route Atlas Surface ===== */
.mfs-route-surface {
  --mfs-route-forest: #0b251f;
  --mfs-route-forest-2: #12352d;
  --mfs-route-accent: #8ac441;
  --mfs-route-accent-soft: #eef8df;
  --mfs-route-ink: #14251f;
  --mfs-route-muted: #66746e;
  --mfs-route-line: #dfe8e2;
  --mfs-route-paper: #f7faf8;
  --mfs-route-white: #fff;
  color: var(--mfs-route-ink);
  font-family: Inter, Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mfs-route-surface *,
.mfs-route-surface *::before,
.mfs-route-surface *::after {
  box-sizing: border-box;
}

.mfs-route-container {
  width: min(100% - 36px, var(--mfs-max-width, 1200px));
  margin-inline: auto;
}

.mfs-route-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 74px 0 64px;
  background:
    linear-gradient(120deg, rgba(7,24,20,.97) 0%, rgba(11,37,31,.94) 56%, rgba(15,49,41,.88) 100%),
    var(--mfs-route-image, none) center/cover no-repeat;
}

.mfs-route-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}

.mfs-route-hero__ambient i {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.mfs-route-hero__ambient i:nth-child(1) {
  width: 390px;
  height: 390px;
  top: -230px;
  right: 10%;
}

.mfs-route-hero__ambient i:nth-child(2) {
  width: 270px;
  height: 270px;
  right: -110px;
  bottom: -120px;
}

.mfs-route-hero__ambient i:nth-child(3) {
  width: 170px;
  height: 170px;
  left: 42%;
  bottom: -130px;
}

.mfs-route-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
}

.mfs-route-hero__copy {
  min-width: 0;
  color: #fff;
}

.mfs-route-eyebrow,
.mfs-route-context span,
.mfs-route-section-head > span,
.mfs-route-final__card > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mfs-route-eyebrow {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #e3f4d7;
}

.mfs-route-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mfs-route-context span {
  min-height: 27px;
  padding: 0;
  color: rgba(255,255,255,.55);
}

.mfs-route-context span + span::before {
  content: "•";
  margin-right: 8px;
  color: var(--mfs-route-accent);
}

.mfs-route-hero h1 {
  max-width: 850px;
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .99;
  letter-spacing: -.052em;
}

.mfs-route-hero__subtitle {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.mfs-route-atlas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  max-width: 820px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.065);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}

.mfs-route-atlas > div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.mfs-route-atlas span {
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mfs-route-atlas strong {
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mfs-route-atlas > b {
  position: relative;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #fff, var(--mfs-route-accent));
}

.mfs-route-atlas > b::before,
.mfs-route-atlas > b::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--mfs-route-forest);
  transform: translateY(-50%);
}

.mfs-route-atlas > b::before { left: 0; }
.mfs-route-atlas > b::after {
  right: 0;
  border-color: var(--mfs-route-accent);
  background: var(--mfs-route-accent);
}

.mfs-route-hero__note {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.55;
}

.mfs-route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}

.mfs-route-actions--center {
  justify-content: center;
}

.mfs-route-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.mfs-route-btn:hover {
  transform: translateY(-2px);
}

.mfs-route-btn--primary {
  background: var(--mfs-route-accent);
  color: #102318 !important;
  box-shadow: 0 14px 28px rgba(138,196,65,.2);
}

.mfs-route-btn--secondary {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.065);
  color: #fff !important;
}

.mfs-route-reassurance {
  margin: 13px 0 0;
  color: rgba(255,255,255,.54);
  font-size: 12px;
}

.mfs-route-pass {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
  box-shadow: 0 24px 60px rgba(2,13,10,.28);
  color: #fff;
  backdrop-filter: blur(16px);
}

.mfs-route-pass::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -105px;
  right: -70px;
  border: 1px solid rgba(138,196,65,.24);
  border-radius: 50%;
}

.mfs-route-pass__label {
  display: block;
  color: #dff0d7;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mfs-route-pass > strong {
  display: block;
  margin-top: 13px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.mfs-route-pass__line {
  display: grid;
  grid-template-columns: 11px 1fr 11px;
  align-items: center;
  margin: 28px 0;
}

.mfs-route-pass__line i {
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.mfs-route-pass__line i:last-child {
  border-color: var(--mfs-route-accent);
  background: var(--mfs-route-accent);
}

.mfs-route-pass__line b {
  height: 1px;
  background: linear-gradient(90deg, #fff, var(--mfs-route-accent));
}

.mfs-route-pass dl,
.mfs-route-pass dl div {
  margin: 0;
}

.mfs-route-pass dl {
  display: grid;
  gap: 12px;
}

.mfs-route-pass dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.mfs-route-pass dt {
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.mfs-route-pass dd {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.mfs-route-trust {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  border-bottom: 1px solid var(--mfs-route-line);
  background: #fff;
}

.mfs-route-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mfs-route-trust__grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 16px 20px;
  border-right: 1px solid var(--mfs-route-line);
}

.mfs-route-trust__grid > div:last-child {
  border-right: 0;
}

.mfs-route-trust__grid span,
.mfs-route-why__grid article > span,
.mfs-route-vehicle-card__icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--mfs-route-accent-soft);
  color: #416d16;
}

.mfs-route-trust__grid svg,
.mfs-route-why__grid svg,
.mfs-route-vehicle-card svg {
  width: 21px;
  height: 21px;
}

.mfs-route-trust__grid strong {
  color: var(--mfs-route-ink);
  font-size: 13px;
  line-height: 1.35;
}

.mfs-route-section {
  padding: 86px 0;
}

.mfs-route-section:nth-of-type(even) {
  background: var(--mfs-route-paper);
}

.mfs-route-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.mfs-route-section-head > span,
.mfs-route-final__card > span {
  min-height: 26px;
  padding: 0;
  color: #5f8f25;
}

.mfs-route-section-head h2,
.mfs-route-final__card h2 {
  margin: 8px 0 10px;
  color: var(--mfs-route-forest);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.mfs-route-section-head p,
.mfs-route-final__card p {
  margin: 0;
  color: var(--mfs-route-muted);
  font-size: 16px;
  line-height: 1.7;
}

.mfs-route-clarity__grid,
.mfs-route-why__grid,
.mfs-route-vehicles__grid,
.mfs-route-related__grid {
  display: grid;
  gap: 18px;
}

.mfs-route-clarity__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mfs-route-clarity__grid article,
.mfs-route-why__grid article,
.mfs-route-vehicle-card,
.mfs-route-related__grid a {
  border: 1px solid var(--mfs-route-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(11,37,31,.055);
}

.mfs-route-clarity__grid article {
  min-height: 260px;
  padding: 26px;
}

.mfs-route-clarity__grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mfs-route-forest);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.mfs-route-clarity__grid h3,
.mfs-route-why__grid h3,
.mfs-route-vehicle-card h3 {
  margin: 22px 0 8px;
  color: var(--mfs-route-forest);
  font-size: 20px;
  line-height: 1.25;
}

.mfs-route-clarity__grid p,
.mfs-route-why__grid p,
.mfs-route-vehicle-card p {
  margin: 0;
  color: var(--mfs-route-muted);
  font-size: 14px;
  line-height: 1.68;
}

.mfs-route-why__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mfs-route-why__grid article {
  min-height: 250px;
  padding: 24px;
}

.mfs-route-why__grid article > span {
  width: 48px;
  height: 48px;
}

.mfs-route-vehicles {
  background:
    radial-gradient(circle at 90% 15%, rgba(138,196,65,.11), transparent 28%),
    var(--mfs-route-paper);
}

.mfs-route-vehicles__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mfs-route-vehicle-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
}

.mfs-route-vehicle-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--mfs-route-forest), var(--mfs-route-forest-2));
  color: #fff;
}

.mfs-route-vehicle-card__icon svg {
  width: 29px;
  height: 29px;
}

.mfs-route-vehicle-card span {
  color: #6a8e3e;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mfs-route-vehicle-card h3 {
  margin: 6px 0 7px;
}

.mfs-route-disclaimer {
  margin: 20px 0 0;
  color: var(--mfs-route-muted);
  font-size: 12px;
  line-height: 1.6;
}

.mfs-route-editorial__content {
  max-width: 860px;
  margin-inline: auto;
  color: var(--mfs-route-ink);
  font-size: 16px;
  line-height: 1.78;
}

.mfs-route-editorial__content > *:first-child { margin-top: 0; }
.mfs-route-editorial__content > *:last-child { margin-bottom: 0; }

.mfs-route-faq__layout {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(34px, 7vw, 90px);
}

.mfs-route-faq__items {
  display: grid;
  gap: 10px;
}

.mfs-route-faq details {
  overflow: hidden;
  border: 1px solid var(--mfs-route-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(11,37,31,.035);
}

.mfs-route-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 20px;
  color: var(--mfs-route-forest);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.mfs-route-faq summary::-webkit-details-marker { display: none; }

.mfs-route-faq summary span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--mfs-route-accent-soft);
  color: #507c20;
  font-size: 18px;
  transition: transform .2s ease;
}

.mfs-route-faq details[open] summary span {
  transform: rotate(45deg);
}

.mfs-route-faq details > div {
  padding: 0 20px 20px;
  color: var(--mfs-route-muted);
  font-size: 14px;
  line-height: 1.7;
}

.mfs-route-faq details > div p {
  margin: 0;
}

.mfs-route-related__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mfs-route-related__grid a {
  display: grid;
  gap: 9px;
  min-height: 190px;
  padding: 24px;
  color: inherit;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.mfs-route-related__grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(138,196,65,.5);
  box-shadow: 0 18px 42px rgba(11,37,31,.09);
}

.mfs-route-related__grid a > span {
  color: #6a8e3e;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mfs-route-related__grid a > strong {
  color: var(--mfs-route-forest);
  font-size: 19px;
  line-height: 1.35;
}

.mfs-route-related__grid a > small {
  align-self: end;
  color: var(--mfs-route-muted);
  font-size: 12px;
  font-weight: 750;
}

.mfs-route-related__grid a > small b {
  margin-left: 5px;
  color: #6a8e3e;
}

.mfs-route-final {
  padding: 28px 0 90px;
  background: var(--mfs-route-paper);
}

.mfs-route-final__card {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 70px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 15%, rgba(138,196,65,.24), transparent 28%),
    linear-gradient(145deg, #0b251f, #12352d);
  box-shadow: 0 28px 70px rgba(11,37,31,.16);
  color: #fff;
  text-align: center;
}

.mfs-route-final__card::before,
.mfs-route-final__card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
}

.mfs-route-final__card::before {
  width: 300px;
  height: 300px;
  top: -190px;
  left: -100px;
}

.mfs-route-final__card::after {
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -130px;
}

.mfs-route-final__card > * {
  position: relative;
  z-index: 1;
}

.mfs-route-final__card > span {
  color: #dff0d7;
}

.mfs-route-final__card h2 {
  max-width: 820px;
  margin-inline: auto;
  color: #fff;
}

.mfs-route-final__card p {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255,255,255,.7);
}

.mfs-route-final__card small {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,.5);
}

@media (max-width: 1024px) {
  .mfs-route-hero__grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 34px;
  }
  .mfs-route-why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mfs-route-trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mfs-route-trust__grid > div:nth-child(2) { border-right: 0; }
  .mfs-route-trust__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--mfs-route-line); }
}

@media (max-width: 820px) {
  .mfs-route-hero {
    padding: 54px 0 46px;
  }
  .mfs-route-hero__grid,
  .mfs-route-faq__layout {
    grid-template-columns: 1fr;
  }
  .mfs-route-pass {
    max-width: 560px;
  }
  .mfs-route-clarity__grid,
  .mfs-route-related__grid {
    grid-template-columns: 1fr;
  }
  .mfs-route-clarity__grid article {
    min-height: 0;
  }
  .mfs-route-vehicles__grid {
    grid-template-columns: 1fr;
  }
  .mfs-route-section {
    padding: 66px 0;
  }
}

@media (max-width: 600px) {
  .mfs-route-container {
    width: min(100% - 28px, var(--mfs-max-width, 1200px));
  }
  .mfs-route-hero h1 {
    font-size: 42px;
  }
  .mfs-route-atlas {
    grid-template-columns: 1fr;
  }
  .mfs-route-atlas strong {
    white-space: normal;
  }
  .mfs-route-atlas > b {
    width: 2px;
    height: 32px;
    margin-left: 5px;
    background: linear-gradient(180deg, #fff, var(--mfs-route-accent));
  }
  .mfs-route-atlas > b::before,
  .mfs-route-atlas > b::after {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
  .mfs-route-atlas > b::after {
    top: auto;
    right: auto;
    bottom: 0;
  }
  .mfs-route-actions,
  .mfs-route-actions--center {
    flex-direction: column;
  }
  .mfs-route-btn {
    width: 100%;
  }
  .mfs-route-pass {
    padding: 22px;
  }
  .mfs-route-trust__grid,
  .mfs-route-why__grid {
    grid-template-columns: 1fr;
  }
  .mfs-route-trust__grid > div {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid var(--mfs-route-line);
  }
  .mfs-route-trust__grid > div:last-child {
    border-bottom: 0;
  }
  .mfs-route-why__grid article {
    min-height: 0;
  }
  .mfs-route-vehicle-card {
    grid-template-columns: 1fr;
  }
  .mfs-route-section-head h2,
  .mfs-route-final__card h2 {
    font-size: 34px;
  }
  .mfs-route-final {
    padding-bottom: 58px;
  }
  .mfs-route-final__card {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mfs-route-surface *,
  .mfs-route-surface *::before,
  .mfs-route-surface *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ===== Portal Journey Continuity Lock ===== */
.mfs-portal-embed__head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 24px;
}

.mfs-portal-embed__head-copy {
  min-width: 0;
}

.mfs-portal-embed__head-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.mfs-portal-embed__quick-action {
  min-height: 44px;
  padding-inline: 17px;
  white-space: nowrap;
}

.mfs-portal-embed__quick-action.is-whatsapp {
  border-color: rgba(18, 140, 126, .24);
  background: #f2fbf7;
  color: #0d7568;
}

.mfs-portal-embed__shell {
  position: relative;
  isolation: isolate;
}

.mfs-portal-embed__shell .movara-portal-foundation.mfs-portal-runtime {
  --mpf-mfs-forest: #123d32;
  --mpf-mfs-forest-2: #195244;
  --mpf-mfs-accent: #8ac441;
  --mpf-mfs-ink: #0b251f;
  --mpf-mfs-muted: #5b6b64;
  --mpf-mfs-line: rgba(18, 61, 50, .14);
  --mpf-mfs-soft: #f4f8f3;
  max-width: none !important;
  color: var(--mpf-mfs-ink);
  font-family: Inter, Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mfs-portal-embed__shell .movara-portal-foundation.mfs-portal-runtime > p:first-child {
  margin: 0 0 14px !important;
  color: var(--mpf-mfs-muted) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mpf-portal-nav {
  position: sticky;
  z-index: 12;
  top: 10px;
  margin-bottom: 20px !important;
  padding: 9px !important;
  border: 1px solid var(--mpf-mfs-line) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 14px 34px rgba(11, 37, 31, .08) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mfs-portal-embed__shell .movara-portal-foundation .mpf-portal-nav-link {
  min-height: 42px;
  padding: 9px 14px !important;
  border-color: var(--mpf-mfs-line) !important;
  background: #fff !important;
  color: var(--mpf-mfs-forest) !important;
  font-weight: 800 !important;
  line-height: 1.2;
  box-shadow: none !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mpf-portal-nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(138, 196, 65, .55) !important;
  background: #f7fbf3 !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mpf-portal-nav-link.is-current,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-portal-nav-link[aria-current="page"] {
  border-color: var(--mpf-mfs-forest) !important;
  background: linear-gradient(135deg, var(--mpf-mfs-forest), var(--mpf-mfs-forest-2)) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(18, 61, 50, .2) !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-card,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-empty-state {
  border-color: var(--mpf-mfs-line) !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, #fff 0%, #fbfdfb 100%) !important;
  box-shadow: 0 12px 32px rgba(11, 37, 31, .065) !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-card {
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(138, 196, 65, .09);
  pointer-events: none;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(138, 196, 65, .46) !important;
  box-shadow: 0 18px 40px rgba(11, 37, 31, .1) !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-status {
  display: inline-flex !important;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px !important;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-status.is-completed {
  border-color: rgba(22, 101, 52, .18);
  background: #edf8ef !important;
  color: #166534 !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-status.is-progress {
  border-color: rgba(25, 82, 68, .2);
  background: #eaf5f1 !important;
  color: #195244 !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-status.is-pending {
  border-color: rgba(180, 113, 16, .2);
  background: #fff8e8 !important;
  color: #8a5a12 !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-status.is-danger {
  border-color: rgba(185, 28, 28, .18);
  background: #fff0f0 !important;
  color: #a51d1d !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-action {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 13px !important;
  border: 1px solid var(--mpf-mfs-line) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--mpf-mfs-forest) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(11, 37, 31, .05);
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-action.is-document {
  border-color: rgba(138, 196, 65, .4) !important;
  background: #f6fbeF !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-action.is-whatsapp {
  border-color: rgba(18, 140, 126, .25) !important;
  background: #f1fbf7 !important;
  color: #0d7568 !important;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-action:hover {
  transform: translateY(-1px);
  border-color: rgba(138, 196, 65, .55) !important;
  box-shadow: 0 10px 22px rgba(11, 37, 31, .08);
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-details {
  position: relative;
  z-index: 2;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-details[open] {
  z-index: 30;
}

.mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-summary {
  min-height: 40px;
  border-radius: 12px;
  color: var(--mpf-mfs-forest) !important;
  font-weight: 800 !important;
}

.mfs-portal-embed__shell .movara-portal-foundation dialog,
.mfs-portal-embed__shell .movara-portal-foundation [role="dialog"],
.mfs-portal-embed__shell .movara-portal-foundation [class*="modal"],
.mfs-portal-embed__shell .movara-portal-foundation [class*="popup"],
.mfs-portal-embed__shell .movara-portal-foundation [class*="document-preview"] {
  z-index: 10020 !important;
}

.mfs-portal-embed__shell .movara-portal-foundation table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden;
  border: 1px solid var(--mpf-mfs-line) !important;
  border-radius: 16px !important;
  background: #fff;
}

.mfs-portal-embed__shell .movara-portal-foundation th {
  background: var(--mpf-mfs-soft) !important;
  color: var(--mpf-mfs-forest) !important;
  font-weight: 800 !important;
}

.mfs-portal-embed__shell .movara-portal-foundation a:focus-visible,
.mfs-portal-embed__shell .movara-portal-foundation button:focus-visible,
.mfs-portal-embed__shell .movara-portal-foundation summary:focus-visible {
  outline: 2px solid var(--mpf-mfs-accent) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 5px rgba(138, 196, 65, .18) !important;
}

@media (max-width: 767px) {
  .mfs-portal-embed__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mfs-portal-embed__head-actions {
    width: 100%;
    justify-content: stretch;
  }

  .mfs-portal-embed__quick-action {
    flex: 1 1 140px;
  }

  .mfs-portal-embed__shell {
    margin-inline: -6px;
  }

  .mfs-portal-embed__shell .movara-portal-foundation.mfs-portal-runtime {
    padding-inline: 0 !important;
  }

  .mfs-portal-embed__shell .movara-portal-foundation .mpf-portal-nav {
    top: 4px;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .mfs-portal-embed__shell .movara-portal-foundation .mpf-portal-nav::-webkit-scrollbar {
    display: none;
  }

  .mfs-portal-embed__shell .movara-portal-foundation .mpf-portal-nav-link {
    flex: 0 0 auto;
    min-height: 44px;
    white-space: nowrap;
  }

  .mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-action {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-card,
  .mfs-portal-embed__shell .movara-portal-foundation .mfs-portal-action,
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-portal-nav-link {
    transition: none !important;
    transform: none !important;
  }
}

/* Portal Journey Pass Detail Lock — v1.9.5 */
.mfs-portal-embed__shell .movara-portal-foundation .mfs-journey-detail-card {
  padding: 0 !important;
  overflow: hidden !important;
  border-color: rgba(19, 78, 54, .14) !important;
  border-radius: 30px !important;
  background: #fff !important;
  box-shadow: 0 26px 70px rgba(15, 23, 42, .10) !important;
}
.mfs-portal-embed__shell .movara-portal-foundation .mfs-journey-detail-card > div:first-child {
  display: none !important;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass-detail {
  --mpf-jp-forest: #123f31;
  --mpf-jp-forest-2: #1b5d47;
  --mpf-jp-lime: #8ac441;
  --mpf-jp-ink: #13201a;
  --mpf-jp-muted: #5f6f67;
  --mpf-jp-line: #dce8df;
  display: grid;
  gap: 18px;
  color: var(--mpf-jp-ink);
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 38px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(138, 196, 65, .28), transparent 31%),
    linear-gradient(135deg, #0d3429 0%, #164f3c 56%, #1c664b 100%);
  isolation: isolate;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass::after {
  content: "";
  position: absolute;
  inset: auto -80px -135px auto;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255,255,255,.035), 0 0 0 76px rgba(255,255,255,.025);
  pointer-events: none;
  z-index: -1;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__identity { min-width: 0; flex: 1 1 420px; }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #d9ffad;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mpf-jp-lime);
  box-shadow: 0 0 0 7px rgba(138,196,65,.13);
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__reference {
  margin: 12px 0 0 !important;
  color: #fff !important;
  font-size: clamp(27px, 4vw, 42px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.035em !important;
  overflow-wrap: anywhere;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__lead {
  margin: 10px 0 0 !important;
  max-width: 650px;
  color: rgba(255,255,255,.78) !important;
  line-height: 1.65 !important;
  font-weight: 600;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__status,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__back,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-decoration: none !important;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__status {
  border: 1px solid rgba(217,255,173,.34);
  background: rgba(138,196,65,.16);
  color: #efffdc;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__status.is-cancelled {
  border-color: rgba(254,202,202,.38);
  background: rgba(220,38,38,.18);
  color: #fee2e2;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__back,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__copy {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.10);
  color: #fff !important;
  cursor: pointer;
  font-family: inherit;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__copy:hover,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__back:hover {
  background: rgba(255,255,255,.17);
  transform: translateY(-1px);
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__route {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(90px,.3fr) minmax(0,1fr);
  gap: 18px;
  align-items: center;
  margin-top: clamp(24px, 4vw, 38px);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(8px);
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__stop { min-width: 0; }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__stop span {
  display: block;
  color: #cde4d7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__stop strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__route-line {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__route-line b {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.25), var(--mpf-jp-lime), rgba(255,255,255,.25));
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__route-line i {
  width: 10px;
  height: 10px;
  border: 2px solid #d9ffad;
  border-radius: 50%;
  background: #164f3c;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__facts {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 10px;
  margin-top: 12px;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__facts > div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: rgba(0,0,0,.09);
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__facts span,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-fields span,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-contact span {
  display: block;
  color: #6b7d74;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__facts span { color: #c5ded1; }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__facts strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 10px;
  margin-top: 16px;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: rgba(255,255,255,.54);
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline-step::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 35px;
  right: -10px;
  height: 1px;
  background: rgba(255,255,255,.16);
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline-step:last-child::after { display: none; }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline-step > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: #194f3e;
  font-size: 11px;
  font-weight: 900;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline-step strong {
  position: relative;
  z-index: 1;
  font-size: 12px;
  line-height: 1.3;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline-step.is-complete,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline-step.is-current { color: #fff; }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline-step.is-complete > span,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline-step.is-current > span {
  border-color: var(--mpf-jp-lime);
  background: var(--mpf-jp-lime);
  color: #153623;
  box-shadow: 0 0 0 6px rgba(138,196,65,.13);
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline-step.is-complete::after { background: var(--mpf-jp-lime); }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  color: rgba(255,255,255,.86);
  font-size: 11px;
  font-weight: 800;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  padding: 0 clamp(18px, 3vw, 28px);
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-grid--primary { margin-top: 4px; }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-panel {
  min-width: 0;
  padding: 19px;
  border: 1px solid var(--mpf-jp-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.045);
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-panel--transport { background: linear-gradient(180deg,#fbfffc,#fff); }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-panel__head > strong {
  color: var(--mpf-jp-ink);
  font-size: 16px;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-panel__head > span {
  color: var(--mpf-jp-forest-2);
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-fields,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-contact {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-fields > div,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-contact > div {
  min-width: 0;
  padding: 12px;
  border: 1px solid #e7efea;
  border-radius: 14px;
  background: #fbfdfc;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-fields > div.is-wide { grid-column: 1 / -1; }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-fields strong,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-contact strong {
  display: block;
  margin-top: 5px;
  color: #18241e;
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-statuses { display: grid; gap: 10px; }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-statuses > div {
  border-radius: 15px !important;
  box-shadow: none !important;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-passengers {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-passengers li,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-legs > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid #e7efea;
  border-radius: 13px;
  background: #fbfdfc;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-passengers li span,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-legs span {
  color: var(--mpf-jp-muted);
  font-size: 12px;
  text-align: right;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-legs { display: grid; gap: 8px; }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-legs > div { display: grid; }
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-legs p,
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-empty {
  margin: 12px 0 0;
  color: var(--mpf-jp-muted);
  line-height: 1.6;
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-documents {
  padding: 0 clamp(18px, 3vw, 28px) clamp(22px, 4vw, 32px);
}
.mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-documents > * { margin-top: 0 !important; }
@media (max-width: 860px) {
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__facts,
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-grid { grid-template-columns: 1fr 1fr; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-grid > * { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .mfs-portal-embed__shell .movara-portal-foundation .mfs-journey-detail-card { border-radius: 22px !important; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass { padding: 21px 17px; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__actions { width: 100%; justify-content: flex-start; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__back,
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__copy { flex: 1 1 auto; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__route { grid-template-columns: 1fr; gap: 10px; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__route-line { transform: rotate(90deg); width: 48px; margin: 4px auto; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__facts { grid-template-columns: 1fr 1fr; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline { grid-template-columns: 1fr; gap: 7px; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__timeline-step::after { top: 30px; bottom: -8px; left: 15px; right: auto; width: 1px; height: auto; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-fields,
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-contact { grid-template-columns: 1fr; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-fields > div.is-wide { grid-column: auto; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-passengers li { display: grid; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-passengers li span { text-align: left; }
}
@media (max-width: 430px) {
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__facts { grid-template-columns: 1fr; }
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-grid,
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-detail-documents { padding-left: 12px; padding-right: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__copy,
  .mfs-portal-embed__shell .movara-portal-foundation .mpf-journey-pass__back { transform: none !important; }
}

