/* ==========================================================================
   Why MYLEASE — Trust & philosophy page
   ========================================================================== */

body.page-why-mylease.page-modern {
  background: #fafafa;
}

.wm-page-section {
  padding: clamp(72px, 9vw, 108px) 0;
}

.wm-page-section--white {
  background: #fff;
}

.wm-page-section--soft {
  background: #f8f9fb;
}

.wm-page-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.wm-page-head__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.wm-page-head__title {
  margin: 0 0 16px;
  font-family: 'Chillax', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1a1a1a;
}

.wm-page-head__subtitle {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: #5b6472;
}

/* --- Our Story --- */
.wm-story__intro {
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: #5b6472;
}

.wm-story__timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.wm-story__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(215, 25, 32, 0.12) 0%,
    rgba(215, 25, 32, 0.35) 50%,
    rgba(215, 25, 32, 0.12) 100%
  );
  z-index: 0;
}

.wm-story__chapter {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.wm-story__chapter:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.wm-story__year {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(215, 25, 32, 0.1);
}

.wm-story__chapter-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.wm-story__chapter-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #6b7280;
}

/* --- What We Believe --- */
.wm-beliefs__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  width: 100%;
}

.wm-beliefs__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.wm-beliefs__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(215, 25, 32, 0.1);
}

.wm-beliefs__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(215, 25, 32, 0.08);
  color: var(--color-primary);
  transition: background-color 300ms ease, color 300ms ease;
}

.wm-beliefs__card:hover .wm-beliefs__icon {
  background: var(--color-primary);
  color: #fff;
}

.wm-beliefs__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.wm-beliefs__text {
  margin: 0;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

/* --- The MYLEASE Difference --- */
.wm-difference__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.wm-difference__item {
  padding: 32px 28px;
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  border-left: 4px solid var(--color-primary);
  transition: transform 300ms ease, background-color 300ms ease;
}

.wm-difference__item:hover {
  transform: translateX(4px);
  background: #fff;
}

.wm-difference__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
}

.wm-difference__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

/* --- Vision --- */
.wm-vision__statement {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 56px) clamp(32px, 4vw, 48px);
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(215, 25, 32, 0.06), transparent),
    #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
}

.wm-vision__quote {
  margin: 0 0 20px;
  font-family: 'Chillax', sans-serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.wm-vision__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #5b6472;
}

/* --- Future Roadmap --- */
.wm-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wm-roadmap::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), rgba(215, 25, 32, 0.2));
  z-index: 0;
}

.wm-roadmap__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.wm-roadmap__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(215, 25, 32, 0.2);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
  transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease;
}

.wm-roadmap__step--active .wm-roadmap__marker,
.wm-roadmap__step:hover .wm-roadmap__marker {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.wm-roadmap__label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.wm-roadmap__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.wm-roadmap__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #6b7280;
}

/* --- Leadership --- */
.wm-leadership__card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(36px, 4vw, 48px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.wm-leadership__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: #f3f4f6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.wm-leadership__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.wm-leadership__quote {
  margin: 0 0 24px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.wm-leadership__cite {
  display: block;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  color: #1a1a1a;
}

.wm-leadership__role {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

/* --- Why Customers Stay --- */
.wm-stay__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.wm-stay__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.wm-stay__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.wm-stay__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(215, 25, 32, 0.08);
  color: var(--color-primary);
}

.wm-stay__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.wm-stay__text {
  margin: 0;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

/* --- CTA dual buttons --- */
body.page-why-mylease .wm-cta .mobility-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 1024px) {
  .wm-story__timeline,
  .wm-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .wm-story__timeline::before,
  .wm-roadmap::before {
    display: none;
  }

  .wm-beliefs__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
  }

  .wm-beliefs__card:nth-child(-n+3) {
    grid-column: span 2;
  }

  .wm-beliefs__card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .wm-beliefs__card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .wm-difference__grid {
    grid-template-columns: 1fr;
  }

  .wm-stay__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .wm-story__timeline,
  .wm-roadmap {
    grid-template-columns: 1fr;
  }

  .wm-beliefs__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wm-beliefs__card:nth-child(n) {
    grid-column: auto;
  }

  .wm-leadership__card {
    grid-template-columns: 1fr;
  }

  .wm-leadership__photo {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }
}
