/* ==========================================================================
   MYLEASE — Premium Enterprise Website
   Page-specific styles. Design system: assets/css/design-system.css
   ========================================================================== */

/* Link assets/css/design-system.css before this file (no @import — avoids critical request chains). */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* WCAG AA — visible keyboard focus */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Buttons & section templates: see design-system.css */

/* --- Header / Sticky Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(18, 18, 18, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  animation: headerFadeIn 800ms ease-out both;
  transition: height var(--transition-header),
              background var(--transition-header),
              border-color var(--transition-header),
              box-shadow var(--transition-header),
              backdrop-filter var(--transition-header);
}

.header--scrolled {
  height: var(--header-height-scrolled);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header:not(.header--scrolled) .nav__link {
  color: #FFFFFF;
}

.header:not(.header--scrolled) .nav__link:hover {
  color: var(--color-primary);
}

.header:not(.header--scrolled) .nav__link--active {
  color: #FFFFFF;
}

.header:not(.header--scrolled) .nav__link--active::after {
  background-color: #FFFFFF;
}

.header:not(.header--scrolled) .menu-toggle__bar {
  background-color: #FFFFFF;
}

.header:not(.header--scrolled) .menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header:not(.header--scrolled) .header__logo-img {
  filter: brightness(0) invert(1);
}

.header--scrolled .nav__link {
  color: #222222;
}

.header--scrolled .nav__link:hover {
  color: var(--color-primary);
}

.header--scrolled .nav__link--active {
  color: #222222;
}

.header--scrolled .nav__link--active::after {
  background-color: var(--color-primary);
}

.header--scrolled .menu-toggle__bar {
  background-color: #222222;
}

.header--scrolled .menu-toggle:hover {
  background-color: var(--color-grey);
}

.header--scrolled .header__logo-img {
  filter: none;
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--header-padding-x);
  gap: 24px;
}

.header__logo {
  grid-column: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity var(--transition-fast);
}

.header__logo:hover {
  opacity: 0.85;
}

.header__logo-img {
  height: var(--logo-height);
  width: auto;
  transition: height var(--transition-header), opacity var(--transition-fast), filter var(--transition-header);
}

.header--scrolled .header__logo-img {
  height: var(--logo-height-scrolled);
}

/* Desktop Navigation */
.nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 44px;
}

.cr-nav-careers--hidden {
  display: none !important;
}

.nav__list > [data-careers-nav-item]:not(.cr-nav-careers--hidden),
.mobile-menu__list > [data-careers-nav-item]:not(.cr-nav-careers--hidden) {
  display: list-item;
}

.mobile-menu__list > [data-careers-nav-item]:not(.cr-nav-careers--hidden) .mobile-menu__link {
  display: flex;
}

@media (max-width: 1280px) {
  .nav__list {
    gap: 28px;
  }
}

.nav__link {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  transition: color 300ms ease;
  position: relative;
  line-height: 1;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 1px;
  transition: width 300ms ease, background-color 300ms ease;
}

.nav__link:hover::after {
  width: 0;
}

.nav__link--active::after {
  width: 100%;
}

/* MYLEASE One — Header trigger + dropdown */
.header__one {
  grid-column: 3;
  justify-self: end;
  position: relative;
}

.header__one-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-dark);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 300ms ease;
}

.header__one-trigger-lock {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  line-height: 0;
}

.header__one-trigger-arrow {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  transition: transform 300ms ease;
}

.header__one-trigger:hover,
.header__one--open .header__one-trigger {
  color: var(--color-primary);
}

.header__one-trigger:hover .header__one-trigger-arrow,
.header__one--open .header__one-trigger-arrow {
  transform: translateX(4px);
}

.header:not(.header--scrolled) .header__one-trigger {
  color: rgba(255, 255, 255, 0.95);
}

.header:not(.header--scrolled) .header__one-trigger:hover,
.header:not(.header--scrolled) .header__one--open .header__one-trigger {
  color: #FFFFFF;
}

.header--scrolled .header__one-trigger {
  color: var(--color-dark);
}

.header--scrolled .header__one-trigger:hover,
.header--scrolled .header__one--open .header__one-trigger {
  color: var(--color-primary);
}

.header__one-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 330px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 320ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 320ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 320ms ease;
  pointer-events: none;
  z-index: 1100;
}

.header__one-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.header__one--open .header__one-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header__one-panel {
  padding: 30px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(30, 30, 30, 0.1);
}

.header__one-panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.header__one-panel-lock {
  display: flex;
  color: var(--color-primary);
  line-height: 0;
}

.header__one-panel-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.header__one-panel-desc {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #666666;
}

.header__one-signin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 22px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  background-color: transparent;
  border: 1.5px solid var(--color-primary);
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.header__one-signin:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(215, 25, 32, 0.22);
}

.header__one-panel-divider {
  height: 1px;
  margin: 22px 0;
  background-color: var(--color-border-light);
}

.header__one-built-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 14px;
}

.header__one-roles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.header__one-role {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
}

.header__one-role-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #F8F9FB;
  color: #666666;
  flex-shrink: 0;
}

.header__one-panel-footer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border-light);
}

.header__one-panel-shield {
  display: flex;
  color: var(--color-primary);
  line-height: 0;
  margin-top: 2px;
}

.header__one-panel-footer-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.4;
}

.header__one-panel-footer-brand {
  font-size: 11px;
  font-weight: 500;
  color: #888888;
  margin-top: 2px;
}

.header__one-trigger--auth .header__one-trigger-lock {
  color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.menu-toggle:hover {
  background-color: var(--color-grey);
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-base), background-color 300ms ease;
}

.menu-toggle--active .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle--active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle--active .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu backdrop — hidden on desktop */
.mobile-menu-overlay {
  display: none;
}

/* Mobile Menu Panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  padding: 32px var(--container-padding);
  flex-direction: column;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  overflow-y: auto;
}

.mobile-menu--open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-border-light);
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--color-primary);
}

.mobile-menu__divider {
  height: 1px;
  background-color: var(--color-border-light);
  margin: 8px 0;
}

.mobile-menu__one {
  cursor: pointer;
}

.mobile-menu__one-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0 4px;
}

.mobile-menu__one-lock {
  display: flex;
  color: var(--color-primary);
  line-height: 0;
  margin-top: 3px;
}

.mobile-menu__one-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.3;
}

.mobile-menu__one-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 2px;
}

.mobile-menu__signin {
  margin-top: 4px;
}

/* --- Hero Section — MYLEASE banner image (homepage) --- */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background-color: #1a1a1a;
  line-height: 0;
}

.hero__media {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  aspect-ratio: 2 / 1;
  max-height: 680px;
  background-color: #1a1a1a;
  line-height: 0;
}

.hero__banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.hero__sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero + .why-choose {
  padding-top: 50px;
}

/* Homepage: banner starts below fixed header (trial layout) */
body.page-home .hero {
  margin-top: var(--header-height);
}

body.page-home .header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

body.page-home .header .header__logo-img {
  filter: none;
}

body.page-home .header .nav__link {
  color: #222222;
}

body.page-home .header .nav__link:hover {
  color: var(--color-primary);
}

body.page-home .header .nav__link--active {
  color: #222222;
}

body.page-home .header .nav__link--active::after {
  background-color: var(--color-primary);
}

body.page-home .header .menu-toggle__bar {
  background-color: #222222;
}

body.page-home .header .menu-toggle:hover {
  background-color: var(--color-grey);
}

body.page-home .header .header__one-trigger,
body.page-home .header:not(.header--scrolled) .header__one-trigger {
  color: #1a1a1a;
}

body.page-home .header .header__one-trigger:hover,
body.page-home .header:not(.header--scrolled) .header__one-trigger:hover,
body.page-home .header .header__one--open .header__one-trigger,
body.page-home .header:not(.header--scrolled) .header__one--open .header__one-trigger {
  color: var(--color-primary);
}

.btn--hero-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 20px rgba(215, 25, 32, 0.35);
  transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
}

.btn--hero-primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 18px 40px rgba(225, 57, 43, 0.35);
  transform: translateY(-3px) scale(1.02);
}

.btn--hero-glass {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
}

.btn--hero-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12), 0 0 40px rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* Section headers: see design-system.css (.ds-section__header, .section-header) */

/* --- Why Choose Section --- */
.why-choose {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.why-choose__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-header-spacing);
}

.why-choose__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.why-choose__subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.why-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 24px;
  padding: var(--card-padding);
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.04), 0 8px 24px rgba(30, 30, 30, 0.04);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(215, 25, 32, 0.12);
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.08), 0 24px 56px rgba(30, 30, 30, 0.1);
}

.why-card__icon {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  background-color: rgba(215, 25, 32, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 350ms ease, color 350ms ease;
}

.why-card:hover .why-card__icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.why-card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.why-card__text {
  font-size: var(--text-body-sm);
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* --- Solutions Section --- */
.solutions {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.solutions__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-header-spacing);
}

.solutions__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.solutions__subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.solution-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.04), 0 8px 24px rgba(30, 30, 30, 0.04);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.08), 0 24px 56px rgba(30, 30, 30, 0.1);
}

.solution-card__media {
  flex-shrink: 0;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background-color: #F8F9FB;
}

.solution-card__visual {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.solution-card__illustration {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 350ms ease;
}

.solution-card:hover .solution-card__illustration {
  transform: scale(1.05);
}

.solution-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--card-padding-sm);
}

.solution-card__title {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.solution-card__text {
  font-size: var(--text-body-sm);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.solution-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: color 350ms ease;
  align-self: flex-start;
}

.solution-card__cta:hover {
  color: var(--color-primary-dark);
}

.solution-card__arrow {
  display: inline-block;
  transition: transform 350ms ease;
}

.solution-card__cta:hover .solution-card__arrow {
  transform: translateX(6px);
}

.solution-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.solution-card--link:hover .solution-card__cta {
  color: var(--color-primary-dark);
}

.solution-card--link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* --- How Leasing Works --- */
.leasing-process {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.leasing-process__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.leasing-process__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.leasing-process__subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.leasing-process__subtitle-accent {
  color: #E53935;
  font-weight: 600;
}

.leasing-process__timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.leasing-process__timeline::before {
  content: '';
  position: absolute;
  top: 66px;
  left: calc(8.33% + 20px);
  right: calc(8.33% + 20px);
  height: 1px;
  background-color: #E0E2E6;
  z-index: 0;
}

.leasing-process__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  transition: transform 350ms ease;
}

.leasing-process__step:hover {
  transform: translateY(-6px);
}

.leasing-process__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.leasing-process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-muted);
  transition: color 350ms ease;
}

.leasing-process__step:hover .leasing-process__icon {
  color: var(--color-primary);
}

.leasing-process__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid #E0E2E6;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  transition: border-color 350ms ease, color 350ms ease, box-shadow 350ms ease;
}

.leasing-process__step:hover .leasing-process__circle {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(215, 25, 32, 0.12);
}

.leasing-process__content {
  max-width: 200px;
}

.leasing-process__step-title {
  font-size: var(--text-body-sm);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.leasing-process__step-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* --- Industries We Serve --- */
.industries {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.industries__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-header-spacing);
}

.industries__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.industries__subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 20px;
  padding: var(--card-padding-md);
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.04), 0 6px 20px rgba(30, 30, 30, 0.04);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 25, 32, 0.1);
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.07), 0 16px 40px rgba(30, 30, 30, 0.08);
}

.industry-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(215, 25, 32, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background-color 350ms ease, color 350ms ease;
}

.industry-card:hover .industry-card__icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.industry-card__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.industry-card__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-muted);
  flex-grow: 1;
}

.industry-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.industry-card--link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.industry-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: color 350ms ease;
}

.industry-card__arrow {
  display: inline-block;
  transition: transform 350ms ease;
}

.industry-card--link:hover .industry-card__cta {
  color: var(--color-primary-dark);
}

.industry-card--link:hover .industry-card__arrow {
  transform: translateX(6px);
}

.industries__footer {
  margin-top: 40px;
  text-align: center;
}

.industries__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 350ms ease, gap 350ms ease;
}

.industries__view-all:hover {
  color: var(--color-primary-dark);
  gap: 12px;
}

.ind-page-challenges {
  background-color: #F8F9FB;
}

.ind-page-helps__grid {
  max-width: 100%;
}

.ind-page-solutions .solutions__grid {
  grid-template-columns: repeat(3, 1fr);
}

.ind-page-why__list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ind-page-why__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.04);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-dark);
}

.ind-page-why__check {
  flex-shrink: 0;
  color: var(--color-primary);
}

.page-industries .industries {
  padding-top: 0;
}

/* --- Lease Comparison Section --- */
.lease-compare {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.lease-compare__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-header-spacing);
}

.lease-compare__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.lease-compare__subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.lease-compare__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  align-items: stretch;
  margin-bottom: 40px;
}

.lease-compare__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  padding: var(--card-padding);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.lease-compare__card:hover {
  transform: translateY(-6px);
}

.lease-compare__card--traditional {
  background-color: #262628;
}

.lease-compare__card--traditional:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.lease-compare__card--lease {
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  box-shadow: 0 4px 16px rgba(30, 30, 30, 0.06), 0 12px 40px rgba(30, 30, 30, 0.06);
}

.lease-compare__card--lease:hover {
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.1), 0 24px 56px rgba(30, 30, 30, 0.08);
}

.lease-compare__card--traditional .lease-compare__card-title {
  color: var(--color-white);
}

.lease-compare__card--lease .lease-compare__card-title {
  color: var(--color-primary);
}

.lease-compare__card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.lease-compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.lease-compare__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-body-sm);
  font-weight: 500;
  line-height: 1.45;
}

.lease-compare__card--traditional .lease-compare__item {
  color: rgba(255, 255, 255, 0.88);
}

.lease-compare__card--lease .lease-compare__item {
  color: var(--color-dark);
}

.lease-compare__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.lease-compare__icon--cross {
  color: var(--color-primary);
}

.lease-compare__icon--check {
  color: #1B8A5A;
}

.lease-compare__insight {
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-left: 4px solid var(--color-primary);
  border-radius: 24px;
  padding: 34px 40px;
  margin-bottom: 40px;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.lease-compare__insight:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.06);
}

.lease-compare__insight-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.lease-compare__insight-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-dark);
  max-width: 900px;
}

.lease-compare__cta {
  text-align: center;
}

.lease-compare__cta .btn--primary {
  padding: 14px 30px;
  box-shadow: 0 4px 20px rgba(215, 25, 32, 0.3);
}

.lease-compare__cta .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(215, 25, 32, 0.35);
}

/* --- HR & Finance Teams Section --- */
.hr-finance {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.hr-finance__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-header-spacing);
}

.hr-finance__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.hr-finance__subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.hr-finance__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  align-items: stretch;
  margin-bottom: 44px;
}

.hr-finance__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.04), 0 8px 24px rgba(30, 30, 30, 0.04);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.hr-finance__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.08), 0 24px 56px rgba(30, 30, 30, 0.08);
}

.hr-finance__visual {
  flex-shrink: 0;
  aspect-ratio: 12 / 4.25;
  overflow: hidden;
  background-color: #F0F1F3;
}

.hr-finance__illustration {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 350ms ease;
}

.hr-finance__card:hover .hr-finance__illustration {
  transform: scale(1.04);
}

.hr-finance__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 34px 34px;
}

.hr-finance__card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 22px;
}

.hr-finance__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.hr-finance__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-body-sm);
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-dark);
}

.hr-finance__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1B8A5A;
  margin-top: 1px;
}

.hr-finance__cta {
  text-align: center;
}

.hr-finance__cta .btn--primary {
  padding: 14px 30px;
  box-shadow: 0 4px 20px rgba(215, 25, 32, 0.3);
}

.hr-finance__cta .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(215, 25, 32, 0.35);
}

/* --- Insights Section --- */
.insights {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.insights__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-header-spacing);
}

.insights__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.insights__subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.insights__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--grid-gap);
  margin-bottom: 48px;
  align-items: stretch;
}

.insight-card--featured {
  grid-row: 1 / 3;
}

.insight-card--featured .insight-card__media {
  aspect-ratio: auto;
  flex: 1;
  min-height: 255px;
}

.insight-card--featured .insight-card__title {
  font-size: clamp(19px, 2vw, 22px);
}

.insight-card--featured .insight-card__body {
  padding: 27px 30px 30px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.04), 0 8px 24px rgba(30, 30, 30, 0.04);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.08), 0 24px 56px rgba(30, 30, 30, 0.08);
}

.insight-card__media {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 16 / 7.65;
  overflow: hidden;
  background-color: #F0F1F3;
}

.insight-card__featured {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 14px;
  background-color: var(--color-primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  box-shadow: 0 2px 12px rgba(215, 25, 32, 0.25);
}

.insight-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  background-color: var(--color-white);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.08);
}

.insight-card__cover {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 350ms ease;
}

.insight-card:hover .insight-card__cover {
  transform: scale(1.05);
}

.insight-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--card-padding-sm) 27px 27px;
}

.insight-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.insight-card__text {
  font-size: var(--text-body-sm);
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.insight-card__reading-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.insight-card__reading-icon {
  flex-shrink: 0;
  color: var(--color-text-muted);
  opacity: 0.7;
}

.insight-card__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.06);
}

.insight-card__author {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
}

.insight-card__date {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.insight-card__date::before {
  content: '·';
  margin-right: 16px;
  color: var(--color-border);
}

.insight-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: color 350ms ease;
  align-self: flex-start;
  margin-top: auto;
}

.insight-card__link:hover {
  color: var(--color-primary-dark);
}

.insight-card__arrow {
  display: inline-block;
  transition: transform 350ms ease;
}

.insight-card__link:hover .insight-card__arrow {
  transform: translateX(6px);
}

.insights__hub {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 40px;
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 24px;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.insights__hub:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(30, 30, 30, 0.06);
}

.insights__hub-title {
  font-size: clamp(24px, 2.6vw, 31px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.insights__hub-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 26px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.insights__hub .btn--primary {
  padding: 14px 30px;
  box-shadow: 0 4px 20px rgba(215, 25, 32, 0.3);
}

.insights__hub .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(215, 25, 32, 0.35);
}

/* --- Why Companies Partner --- */
.partner {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.partner__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-header-spacing);
}

.partner__link {
  display: inline-flex;
  margin-top: 24px;
}

.partner__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.partner__subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.partner__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.partner-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 27px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.03), 0 4px 16px rgba(30, 30, 30, 0.03);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.partner-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 25, 32, 0.1);
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.06), 0 16px 40px rgba(30, 30, 30, 0.06);
}

.partner-feature:hover .partner-feature__icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.partner-feature__icon {
  flex-shrink: 0;
  width: 47px;
  height: 47px;
  border-radius: 14px;
  background-color: rgba(215, 25, 32, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 350ms ease, color 350ms ease;
}

.partner-feature__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.partner-feature__text {
  font-size: var(--text-body-sm);
  line-height: 1.65;
  color: var(--color-text-muted);
}

.partner__quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 44px 40px;
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 24px;
  border-left: 4px solid var(--color-primary);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.partner__quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(30, 30, 30, 0.06);
}

.partner__quote-text {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 16px;
  font-style: normal;
}

.partner__quote-cite {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-style: normal;
}

/* --- About Section --- */
.about {
  padding: var(--section-padding-y-secondary) 0;
  background-color: var(--color-grey);
}

.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-top: 12px;
}

.about__link {
  display: inline-flex;
  margin-top: 24px;
}

.about__metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about__metric {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px 27px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base);
}

.about__metric:hover {
  transform: translateX(4px);
}

.about__metric-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

.about__metric-label {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* --- Corporate Mobility CTA --- */
.mobility-cta {
  position: relative;
  padding: 100px 0;
  background-color: #1E1E1E;
  overflow: hidden;
}

.mobility-cta__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 72px,
      rgba(255, 255, 255, 0.35) 72px,
      rgba(255, 255, 255, 0.35) 73px
    ),
    repeating-linear-gradient(
      78deg,
      transparent,
      transparent 96px,
      rgba(255, 255, 255, 0.2) 96px,
      rgba(255, 255, 255, 0.2) 97px
    ),
    radial-gradient(
      ellipse 60% 40% at 85% 20%,
      rgba(215, 25, 32, 0.15) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 35% at 10% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 70%
    );
}

.mobility-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.mobility-cta__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.mobility-cta__highlight {
  color: #D71920;
}

.mobility-cta__text {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto 36px;
}

.mobility-cta__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  margin-bottom: 40px;
}

.mobility-cta__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
}

.mobility-cta__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(215, 25, 32, 0.15);
  color: #D71920;
}

.mobility-cta__btn {
  display: inline-flex;
  background-color: #D71920;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(215, 25, 32, 0.3);
  transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
}

.mobility-cta__btn:hover {
  background-color: #b0141a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(215, 25, 32, 0.4);
}

.mobility-cta__footnote {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
}

/* --- Footer --- */
.footer {
  padding: 40px 0;
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__copy {
  font-size: 13px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
  max-width: 640px;
}

.footer__nav--about {
  row-gap: 10px;
}

.footer__link {
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

/* --- Icon Scale --- */
.why-card__icon svg,
.industry-card__icon svg,
.leasing-process__icon svg,
.partner-feature__icon svg,
.lease-compare__icon svg,
.hr-finance__check svg,
.ol-benefits__icon svg,
.ol-package__icon svg,
.ol-journey__highlight-icon svg,
.ol-conversion__check svg {
  width: 22px;
  height: 22px;
}

/* Scroll reveal animations: see design-system.css (.ds-animate-fade-up, .reveal) */

/* --- Responsive (page-specific) --- */
@media (max-width: 1024px) {
  :root {
    --header-padding-x: 40px;
  }

  .nav,
  .header__one {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .leasing-process__timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 44px;
  }

  .leasing-process__timeline::before {
    display: none;
  }

  .leasing-process__content {
    max-width: 260px;
  }

  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .lease-compare__cards {
    gap: 24px;
  }

  .hr-finance__cards {
    gap: 24px;
  }

  .insights__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .insight-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .insight-card--featured .insight-card__media {
    aspect-ratio: 16 / 7.65;
    min-height: auto;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --hero-padding-x: 20px;
    --header-padding-x: 20px;
    --header-height: 70px;
    --header-height-scrolled: 70px;
    --logo-height: 42px;
    --logo-height-scrolled: 42px;
    --grid-gap: 20px;
    --section-padding-y-mobile: 56px;
  }

  .why-choose,
  .solutions,
  .leasing-process,
  .industries,
  .lease-compare,
  .hr-finance,
  .insights,
  .partner,
  .about,
  .mobility-cta {
    padding: var(--section-padding-y-mobile) 0;
  }

  .mobility-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .why-choose__header {
    margin-bottom: 44px;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 27px;
  }

  .solutions__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ind-page-solutions .solutions__grid {
    grid-template-columns: 1fr;
  }

  .ind-page-why__item {
    padding: 16px 18px;
  }

  .solution-card__body {
    padding: 24px;
  }

  .leasing-process__header {
    margin-bottom: 44px;
  }

  .leasing-process__timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 8px;
  }

  .leasing-process__timeline::before {
    display: block;
    top: 24px;
    bottom: 24px;
    left: 31px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .leasing-process__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    padding: 0 0 48px;
  }

  .leasing-process__step:last-child {
    padding-bottom: 0;
  }

  .leasing-process__marker {
    flex-shrink: 0;
    margin-bottom: 0;
    gap: 0;
  }

  .leasing-process__icon {
    display: none;
  }

  .leasing-process__content {
    max-width: none;
    padding-top: 10px;
  }

  .leasing-process__step-title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .leasing-process__step-text {
    font-size: 14px;
  }

  .industries__header {
    margin-bottom: 44px;
  }

  .industries__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-card {
    padding: 24px;
  }

  .lease-compare__header {
    margin-bottom: 44px;
  }

  .lease-compare__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .lease-compare__card {
    padding: 32px 28px;
  }

  .lease-compare__card-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .lease-compare__insight {
    padding: 32px 28px;
    margin-bottom: 40px;
  }

  .lease-compare__insight-text {
    font-size: 16px;
  }

  .hr-finance__header {
    margin-bottom: 44px;
  }

  .hr-finance__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .hr-finance__body {
    padding: 28px 28px 32px;
  }

  .hr-finance__card-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .insights__header {
    margin-bottom: 44px;
  }

  .insights__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .insight-card--featured {
    grid-column: auto;
  }

  .insight-card__body {
    padding: 24px 28px 28px;
  }

  .insights__hub {
    padding: 40px 28px;
  }

  .insights__hub-text {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .partner__header {
    margin-bottom: 44px;
  }

  .partner__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }

  .partner-feature {
    padding: 28px 24px;
    gap: 20px;
  }

  .partner__quote {
    padding: 40px 28px;
  }

  .partner__quote-text {
    font-size: 18px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .mobility-cta__trust {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
  }

  .mobility-cta__text {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .mobility-cta__btn {
    width: 100%;
    max-width: 360px;
  }

  .about__metrics {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --hero-padding-x: 20px;
    --header-padding-x: 20px;
  }
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ol-hero__eyebrow,
  .ol-hero__title,
  .ol-hero__subtitle,
  .ol-hero__actions,
  .ol-hero__trust,
  .ol-lifecycle__step,
  .header,
  .signature-logo,
  .signature-title__trust,
  .signature-title__mobility,
  .signature-text,
  .signature-divider {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/* --- Brand Signature --- */
.brand-signature {
  background-color: var(--color-white);
  padding: 112px 20px;
  text-align: center;
}

.signature-container {
  max-width: 900px;
  margin: 0 auto;
}

.signature-logo {
  display: block;
  width: 153px;
  height: auto;
  margin: 0 auto 40px;
  opacity: 0;
  animation: signatureFadeIn 0.9s ease forwards;
}

.signature-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.signature-title__trust,
.signature-title__mobility {
  display: block;
  font-size: clamp(31px, 4.25vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(24px);
  animation: signatureFadeUp 0.9s ease forwards;
}

.signature-title__trust {
  color: #222222;
  animation-delay: 0.4s;
}

.signature-title__mobility {
  color: #D71920;
  animation-delay: 0.7s;
}

.signature-text {
  margin: 34px auto 0;
  font-size: 19px;
  color: #666666;
  line-height: 1.8;
  max-width: 700px;
  opacity: 0;
  animation: signatureFadeIn 0.9s ease 1s forwards;
}

.signature-divider {
  width: 120px;
  height: 2px;
  background-color: #D71920;
  margin: 48px auto 0;
  border-radius: 100px;
  transform: scaleX(0);
  animation: signatureDividerExpand 0.8s ease 1.3s forwards;
}

@keyframes signatureFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes signatureFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signatureDividerExpand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 768px) {
  .brand-signature {
    padding: 80px 20px;
  }

  .signature-logo {
    width: 135px;
    margin-bottom: 34px;
  }

  .signature-text {
    font-size: 16px;
  }
}

/* ==========================================================================
   Operating Lease Page
   ========================================================================== */

/* --- Operating Lease Hero --- */
.ol-hero {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  width: 100%;
  min-height: 680px;
  overflow: hidden;
  background-color: var(--color-white);
}

.ol-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 56px) 8% 64px var(--hero-padding-x);
  max-width: 640px;
}

.ol-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
  animation: heroFadeUp 600ms 80ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ol-hero__title {
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 22px;
  animation: heroFadeUp 600ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ol-hero__subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  animation: heroFadeUp 800ms 120ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ol-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  animation: heroFadeUp 1000ms 200ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ol-hero__trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: heroFadeUp 1100ms 320ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ol-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

.ol-hero__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(215, 25, 32, 0.08);
  color: var(--color-primary);
}

.ol-hero__media {
  position: relative;
  min-height: 480px;
}

.ol-hero__image {
  position: absolute;
  inset: 0;
  background-image: url('../Images/hero-image-new.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.ol-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

/* --- What is an Operating Lease --- */
.ol-intro {
  padding: calc(var(--section-padding-y) + 16px) 0;
  background-color: var(--color-white);
}

.ol-intro__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.ol-intro__content {
  max-width: 520px;
}

.ol-intro__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.ol-intro__text {
  font-size: var(--text-subtitle);
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.ol-intro__cta {
  margin-top: 4px;
}

/* --- Lifecycle Flow Illustration --- */
.ol-lifecycle__flow {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
}

.ol-lifecycle__step {
  opacity: 0;
  transform: translateY(20px);
}

.reveal--visible .ol-lifecycle__step {
  animation: heroFadeUp 700ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.reveal--visible .ol-lifecycle__step:nth-child(1) { animation-delay: 0ms; }
.reveal--visible .ol-lifecycle__step:nth-child(3) { animation-delay: 80ms; }
.reveal--visible .ol-lifecycle__step:nth-child(5) { animation-delay: 160ms; }
.reveal--visible .ol-lifecycle__step:nth-child(7) { animation-delay: 240ms; }
.reveal--visible .ol-lifecycle__step:nth-child(9) { animation-delay: 320ms; }
.reveal--visible .ol-lifecycle__step:nth-child(11) { animation-delay: 400ms; }

.ol-lifecycle__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.03), 0 4px 16px rgba(30, 30, 30, 0.03);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.ol-lifecycle__card:hover {
  transform: translateX(6px);
  border-color: rgba(215, 25, 32, 0.12);
  box-shadow: 0 6px 20px rgba(30, 30, 30, 0.06);
}

.ol-lifecycle__illus {
  flex-shrink: 0;
  width: 80px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
}

.ol-lifecycle__illus svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ol-lifecycle__label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  line-height: 1.3;
}

.ol-lifecycle__connector {
  display: flex;
  justify-content: center;
  padding: 6px 0;
  list-style: none;
}

.ol-lifecycle__arrow {
  display: block;
  width: 2px;
  height: 18px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  background: linear-gradient(180deg, rgba(215, 25, 32, 0.15) 0%, rgba(215, 25, 32, 0.45) 100%);
  border-radius: 1px;
}

/* --- Leasing Journey (Operating Lease Page) --- */
.ol-journey {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.ol-journey__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-header-spacing);
}

.ol-journey__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.ol-journey__subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.ol-journey__timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 8px;
}

.ol-journey__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8.33%;
  right: 8.33%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(215, 25, 32, 0.15) 0%,
    rgba(215, 25, 32, 0.45) 50%,
    rgba(215, 25, 32, 0.15) 100%
  );
  z-index: 0;
}

.ol-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ol-journey__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 24px 18px 28px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.04), 0 8px 24px rgba(30, 30, 30, 0.04);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.ol-journey__card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 25, 32, 0.12);
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.08);
}

.ol-journey__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(215, 25, 32, 0.1);
  transition: background-color 350ms ease, color 350ms ease, box-shadow 350ms ease;
}

.ol-journey__step:hover .ol-journey__number {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(215, 25, 32, 0.25);
}

.ol-journey__step-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ol-journey__step-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

.ol-journey__highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding: 28px 32px;
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-left: 4px solid var(--color-primary);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.03);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.ol-journey__highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.06);
}

.ol-journey__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.ol-journey__highlight-text {
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-dark);
  margin: 0;
}

/* --- What's Included Package --- */
.ol-package {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.ol-package__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
  align-items: stretch;
}

.ol-package__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 44px 40px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.04), 0 8px 24px rgba(30, 30, 30, 0.04);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.ol-package__card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 25, 32, 0.1);
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.08);
}

.ol-package__card-title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.ol-package__divider {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
  margin-bottom: 32px;
  border-radius: 1px;
}

.ol-package__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}

.ol-package__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  color: #374151;
}

.ol-package__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ol-package__icon--green {
  color: #1B8A5A;
  margin-top: 2px;
}

.ol-package__icon--red {
  color: var(--color-primary);
  margin-top: 3px;
}

.ol-package__note {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  font-size: var(--text-body-sm);
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* --- Benefits --- */
.ol-benefits {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.ol-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  align-items: stretch;
}

.ol-benefits__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 44px 40px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.04), 0 8px 24px rgba(30, 30, 30, 0.04);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.ol-benefits__card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 25, 32, 0.1);
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.08);
}

.ol-benefits__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.ol-benefits__title {
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.ol-benefits__divider {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
  margin-bottom: 28px;
  border-radius: 1px;
}

.ol-benefits__primary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.ol-benefits__primary-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #374151;
  margin: 0;
}

.ol-benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ol-benefits__icon--primary {
  color: #E53935;
  margin-top: 2px;
}

.ol-benefits__icon--support {
  color: var(--color-primary);
  margin-top: 3px;
}

.ol-benefits__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}

.ol-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* --- The MYLEASE Difference (Operating Lease Page) --- */
.ol-different {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.ol-different .lease-compare__cards {
  margin-bottom: 40px;
}

.ol-different .lease-compare__card--traditional {
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.06);
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.04), 0 8px 24px rgba(30, 30, 30, 0.04);
}

.ol-different .lease-compare__card--traditional:hover {
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.08);
}

.ol-different .lease-compare__card--traditional .lease-compare__card-title {
  color: #6B7280;
}

.ol-different .lease-compare__card--traditional .lease-compare__item {
  color: var(--color-text-muted);
}

.ol-different .lease-compare__icon--cross {
  color: #9CA3AF;
}

.ol-different .lease-compare__card--lease {
  border: 1px solid rgba(215, 25, 32, 0.1);
  box-shadow: 0 4px 16px rgba(30, 30, 30, 0.06), 0 12px 40px rgba(215, 25, 32, 0.06);
}

.ol-different .lease-compare__card--lease:hover {
  border-color: rgba(215, 25, 32, 0.18);
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.08), 0 20px 48px rgba(215, 25, 32, 0.08);
}

.ol-different .lease-compare__card--lease .lease-compare__card-title {
  color: var(--color-primary);
}

.ol-different .lease-compare__list {
  gap: 16px;
}

.ol-different .lease-compare__item {
  font-size: 15px;
  line-height: 1.6;
}

.ol-different .lease-compare__insight {
  margin-bottom: 0;
}

/* --- FAQ --- */
.ol-faq {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.ol-faq__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-header-spacing);
}

.ol-faq__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.ol-faq__subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.ol-faq__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.ol-faq__tab {
  padding: 12px 22px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-text-muted);
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 100px;
  cursor: pointer;
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.ol-faq__tab:hover {
  color: var(--color-dark);
  border-color: rgba(215, 25, 32, 0.15);
}

.ol-faq__tab--active {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(215, 25, 32, 0.25);
}

.ol-faq__tab--active:hover {
  color: var(--color-white);
}

.ol-faq__panels {
  max-width: 860px;
  margin: 0 auto;
}

.ol-faq__panel {
  animation: olFaqFadeIn 400ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.ol-faq__panel[hidden] {
  display: none;
}

@keyframes olFaqFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ol-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ol-faq .faq__item {
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 350ms ease, border-color 350ms ease, transform 350ms ease;
}

.ol-faq .faq__item:hover {
  border-color: rgba(215, 25, 32, 0.1);
}

.ol-faq .faq__item--open {
  border-color: rgba(215, 25, 32, 0.2);
  box-shadow: 0 8px 28px rgba(30, 30, 30, 0.06);
}

.ol-faq .faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 26px 32px;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 350ms ease;
}

.ol-faq .faq__question:hover {
  color: var(--color-primary);
}

.ol-faq .faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.ol-faq .faq__icon::before,
.ol-faq .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-dark);
  border-radius: 1px;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), background-color 350ms ease, opacity 350ms ease;
}

.ol-faq .faq__icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.ol-faq .faq__icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.ol-faq .faq__item--open .faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.ol-faq .faq__item--open .faq__question {
  color: var(--color-primary);
}

.ol-faq .faq__item--open .faq__icon::before {
  background-color: var(--color-primary);
}

.ol-faq .faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ol-faq .faq__answer p {
  padding: 0 32px 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.ol-faq__footer {
  text-align: center;
  max-width: 640px;
  margin: 56px auto 0;
  padding: 48px 40px;
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 24px;
}

.ol-faq__footer-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.ol-faq__footer-text {
  font-size: var(--text-subtitle);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.ol-faq__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* --- Conversion Section --- */
.ol-conversion {
  padding: var(--section-padding-y) 0;
  background-color: var(--color-white);
}

.ol-conversion__card {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 52px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(30, 30, 30, 0.04), 0 16px 48px rgba(30, 30, 30, 0.06);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.ol-conversion__card:hover {
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.06), 0 24px 56px rgba(30, 30, 30, 0.08);
}

.ol-conversion__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.ol-conversion__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.ol-conversion__divider {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 auto 24px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.ol-conversion__subtitle {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0;
}

.ol-conversion__checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  margin: 0 0 44px;
  padding: 0;
}

.ol-conversion__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-dark);
}

.ol-conversion__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.ol-conversion__prompt {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-dark);
  max-width: 640px;
  margin: 0 auto 32px;
}

.ol-conversion__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* --- Explore More Solutions (Operating Lease Page) --- */
.ol-explore {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.ol-explore .solutions__grid {
  align-items: stretch;
}

.ol-explore .solution-card__title {
  font-size: clamp(17px, 1.6vw, 20px);
}

.ol-explore .solution-card__text {
  font-size: var(--text-body);
  line-height: 1.75;
}

.ol-explore .solution-card__body {
  padding: 32px 28px;
}

/* Legacy FAQ (shared accordion base) */
.faq__item {
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 350ms ease, border-color 350ms ease;
}

.faq__item:hover {
  border-color: rgba(215, 25, 32, 0.08);
}

.faq__item--open {
  border-color: rgba(215, 25, 32, 0.12);
  box-shadow: 0 4px 20px rgba(30, 30, 30, 0.05);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 350ms ease;
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-dark);
  border-radius: 1px;
  transition: transform 350ms ease, background-color 350ms ease;
}

.faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq__item--open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__item--open .faq__question {
  color: var(--color-primary);
}

.faq__item--open .faq__icon::before {
  background-color: var(--color-primary);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer p {
  padding: 0 28px 22px;
  font-size: var(--text-body-sm);
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* --- Dual CTA Buttons --- */
.mobility-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.mobility-cta__btn--outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.mobility-cta__btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* --- Operating Lease Responsive --- */
@media (max-width: 1024px) {
  .ol-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ol-hero__media {
    order: -1;
    min-height: 380px;
  }

  .ol-hero__content {
    max-width: none;
    padding: 48px var(--container-padding) 56px;
  }

  .ol-intro__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .ol-intro__content {
    max-width: none;
    order: 2;
  }

  .ol-lifecycle {
    order: 1;
  }

  .ol-benefits__grid {
    grid-template-columns: 1fr;
  }

  .ol-package__cards {
    grid-template-columns: 1fr;
  }

  .ol-journey__timeline {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 8px;
  }

  .ol-journey__timeline::before {
    top: 28px;
    bottom: 28px;
    left: 35px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(215, 25, 32, 0.15) 0%,
      rgba(215, 25, 32, 0.45) 50%,
      rgba(215, 25, 32, 0.15) 100%
    );
  }

  .ol-journey__step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: start;
  }

  .ol-journey__number {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .ol-journey__card {
    grid-column: 2;
    align-items: flex-start;
    text-align: left;
    padding: 28px 24px;
  }

  .ol-journey__step-title {
    font-size: 16px;
  }

  .ol-journey__step-text {
    font-size: 14px;
  }

  .ol-journey__highlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .ol-hero__media {
    min-height: 300px;
  }

  .ol-hero__content {
    padding: 40px var(--container-padding) 48px;
  }

  .ol-hero__title {
    font-size: clamp(32px, 8vw, 40px);
  }

  .ol-hero__subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .ol-hero__actions {
    flex-direction: column;
    margin-bottom: 28px;
  }

  .ol-hero__actions .btn {
    width: 100%;
  }

  .ol-intro__inner {
    gap: 48px;
  }

  .ol-lifecycle__card {
    padding: 16px 18px;
    gap: 16px;
  }

  .ol-lifecycle__illus {
    width: 72px;
    height: 50px;
  }

  .ol-lifecycle__label {
    font-size: 14px;
  }

  .ol-intro,
  .ol-package,
  .ol-journey,
  .ol-different,
  .ol-faq,
  .ol-conversion,
  .ol-explore {
    padding: var(--section-padding-y-mobile) 0;
  }

  .ol-benefits {
    padding: var(--section-padding-y-mobile) 0;
  }

  .ol-package__card {
    padding: 36px 28px;
  }

  .ol-package__note {
    margin-top: 32px;
  }

  .ol-journey__timeline {
    padding-left: 4px;
  }

  .ol-journey__highlight {
    margin-top: 36px;
  }

  .ol-benefits__card {
    padding: 36px 28px;
  }

  .ol-benefits__title {
    font-size: clamp(26px, 7vw, 32px);
    margin-bottom: 16px;
  }

  .ol-benefits__divider {
    margin-bottom: 24px;
  }

  .ol-benefits__primary {
    margin-bottom: 24px;
  }

  .ol-benefits__primary-text {
    font-size: 15px;
  }

  .ol-benefits__item {
    font-size: 14px;
  }

  .ol-faq__nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 32px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ol-faq__nav::-webkit-scrollbar {
    display: none;
  }

  .ol-faq__tab {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 13px;
  }

  .ol-faq .faq__question {
    padding: 22px 24px;
    font-size: 16px;
  }

  .ol-faq .faq__answer p {
    padding: 0 24px 24px;
    font-size: 15px;
  }

  .ol-faq__footer {
    margin-top: 40px;
    padding: 36px 24px;
  }

  .ol-faq__actions {
    flex-direction: column;
  }

  .ol-faq__actions .btn {
    width: 100%;
  }

  .ol-conversion__card {
    padding: 40px 28px;
    border-radius: 24px;
  }

  .ol-conversion__title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .ol-conversion__checklist {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .ol-conversion__item {
    font-size: 16px;
  }

  .ol-conversion__prompt {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .ol-conversion__actions {
    flex-direction: column;
  }

  .ol-conversion__actions .btn {
    width: 100%;
  }

  .faq__question {
    padding: 18px 22px;
    font-size: 15px;
  }

  .faq__answer p {
    padding: 0 22px 18px;
  }

  .mobility-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .mobility-cta__actions .mobility-cta__btn {
    width: 100%;
    max-width: 360px;
  }
}

/* --- Why Lease Page --- */
.wl-section--white,
.wl-employee {
  background-color: var(--color-white);
}

/* --- Why MYLEASE Page --- */
@keyframes wmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.wm-hero__image {
  background-image: linear-gradient(135deg, rgba(30, 30, 30, 0.04) 0%, rgba(215, 25, 32, 0.06) 100%);
}

.wm-believe {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.wm-believe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wm-believe__card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.03), 0 8px 24px rgba(30, 30, 30, 0.04);
  transition: transform 450ms ease, box-shadow 450ms ease, border-color 450ms ease;
}

.wm-believe__card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 25, 32, 0.1);
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.07), 0 20px 48px rgba(30, 30, 30, 0.06);
}

.wm-believe__illus {
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
}

.wm-believe__illus svg {
  display: block;
  width: 100%;
  height: auto;
}

.wm-believe__illus--float {
  animation: wmFloat 6s ease-in-out infinite;
}

.wm-believe__illus--float-delay {
  animation: wmFloat 6s ease-in-out 1s infinite;
}

.wm-believe__illus--float-delay-2 {
  animation: wmFloat 6s ease-in-out 2s infinite;
}

.wm-believe__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.wm-believe__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.wm-commitments {
  padding: var(--section-padding-y) 0;
}

.wm-commitments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.wm-commitment {
  padding: 36px 32px;
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.05);
  border-radius: 20px;
  transition: transform 400ms ease, border-color 400ms ease, background-color 400ms ease;
}

.wm-commitment:hover {
  transform: translateY(-4px);
  background-color: var(--color-white);
  border-color: rgba(215, 25, 32, 0.1);
  box-shadow: 0 8px 28px rgba(30, 30, 30, 0.06);
}

.wm-commitment__num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.wm-commitment__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.wm-commitment__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.wm-standards {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.wm-standards__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.wm-standards__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.wm-standards__intro {
  font-size: var(--text-subtitle);
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}

.wm-standards__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wm-standard {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 16px;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.wm-standard:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(30, 30, 30, 0.05);
}

.wm-standard__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(215, 25, 32, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wm-standard__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.wm-standard__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.wm-standards__visual {
  display: flex;
  justify-content: center;
}

.wm-standards__illus {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30, 30, 30, 0.08);
}

.wm-standards__illus svg {
  display: block;
  width: 100%;
  height: auto;
}

.wm-standards__illus--float {
  animation: wmFloat 7s ease-in-out infinite;
}

.wm-experience {
  padding: var(--section-padding-y) 0;
}

.wm-experience .ol-lifecycle {
  max-width: 640px;
  margin: 0 auto;
}

.wm-retention {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.wm-retention__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.wm-retention__card {
  padding: 30px 28px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.03);
  transition: transform 400ms ease, box-shadow 400ms ease, border-color 400ms ease;
}

.wm-retention__card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 25, 32, 0.1);
  box-shadow: 0 10px 28px rgba(30, 30, 30, 0.07);
}

.wm-retention__card:hover .wm-retention__icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.wm-retention__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(215, 25, 32, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background-color 400ms ease, color 400ms ease;
}

.wm-retention__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.wm-retention__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.wm-retention__quote {
  margin-top: 8px;
}

.wm-cta .mobility-cta__title {
  font-weight: 800;
}

@media (max-width: 1024px) {
  .wm-believe__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wm-standards__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wm-standards__visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .wm-believe,
  .wm-commitments,
  .wm-standards,
  .wm-experience,
  .wm-retention {
    padding: var(--section-padding-y-mobile) 0;
  }

  .wm-commitments__grid,
  .wm-retention__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wm-commitment {
    padding: 28px 24px;
  }

  .wm-believe__card {
    padding: 28px 24px;
  }

  .wm-standard {
    padding: 16px 18px;
  }
}

/* --- About MYLEASE Page --- */
.ab-hero__image {
  background-image: linear-gradient(145deg, rgba(30, 30, 30, 0.03) 0%, rgba(215, 25, 32, 0.05) 50%, rgba(30, 30, 30, 0.02) 100%);
}

.ab-section__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.ab-section__lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  max-width: 480px;
}

.ab-purpose {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.ab-purpose__layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}

.ab-purpose__illus {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(30, 30, 30, 0.08);
}

.ab-purpose__illus svg {
  display: block;
  width: 100%;
  height: auto;
}

.ab-purpose__illus--float {
  animation: wmFloat 7s ease-in-out infinite;
}

.ab-purpose__list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ab-purpose__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ab-purpose__marker {
  flex-shrink: 0;
  width: 3px;
  min-height: 48px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(215, 25, 32, 0.2) 100%);
  margin-top: 4px;
}

.ab-purpose__item-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.ab-purpose__item-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 480px;
}

.ab-story {
  padding: var(--section-padding-y) 0;
}

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

.ab-story__chapter {
  padding: 32px 28px;
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.05);
  border-radius: 20px;
  transition: transform 400ms ease, box-shadow 400ms ease, background-color 400ms ease;
}

.ab-story__chapter:hover {
  transform: translateY(-5px);
  background-color: var(--color-white);
  box-shadow: 0 10px 32px rgba(30, 30, 30, 0.07);
}

.ab-story__era {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.ab-story__chapter-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ab-story__chapter-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.ab-story__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.ab-story__metric {
  text-align: center;
  padding: 28px 20px;
  background-color: #F8F9FB;
  border-radius: 16px;
  border: 1px solid rgba(30, 30, 30, 0.05);
}

.ab-story__metric-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.ab-story__metric-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.ab-different {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.ab-values {
  padding: var(--section-padding-y) 0;
}

.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ab-value {
  text-align: center;
  padding: 32px 20px;
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.05);
  border-radius: 20px;
  transition: transform 400ms ease, background-color 400ms ease, box-shadow 400ms ease;
}

.ab-value:hover {
  transform: translateY(-5px);
  background-color: var(--color-white);
  box-shadow: 0 8px 28px rgba(30, 30, 30, 0.06);
}

.ab-value:hover .ab-value__letter {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.ab-value__letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(215, 25, 32, 0.08);
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  transition: background-color 400ms ease, color 400ms ease;
}

.ab-value__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.ab-value__text {
  font-size: 12px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.ab-approach {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.ab-approach__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ab-approach__step {
  padding: 28px 24px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.03);
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.ab-approach__step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(30, 30, 30, 0.07);
}

.ab-approach__illus {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
}

.ab-approach__illus svg {
  display: block;
  width: 72px;
  height: 56px;
}

.ab-approach__num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.ab-approach__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.ab-approach__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.ab-leadership {
  padding: var(--section-padding-y) 0;
}

.ab-leadership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ab-leader {
  text-align: center;
  padding: 40px 28px;
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.05);
  border-radius: 24px;
  transition: transform 400ms ease, box-shadow 400ms ease, background-color 400ms ease;
}

.ab-leader:hover {
  transform: translateY(-6px);
  background-color: var(--color-white);
  box-shadow: 0 12px 36px rgba(30, 30, 30, 0.07);
}

.ab-leader__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.ab-leader__avatar svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ab-leader__role {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ab-leader__focus {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 280px;
  margin: 0 auto;
}

.ab-promise {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.ab-promise__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 48px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(30, 30, 30, 0.05);
}

.ab-promise__illus {
  display: block;
  width: 100%;
  height: auto;
}

.ab-promise__illus--float {
  animation: wmFloat 8s ease-in-out infinite;
}

.ab-promise__title {
  font-size: var(--heading-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.ab-promise__statement {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--color-dark);
  margin-bottom: 28px;
}

.ab-promise__pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ab-promise__pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.ab-promise__pillar-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(215, 25, 32, 0.08);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

@media (max-width: 1100px) {
  .ab-values__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ab-story__timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-approach__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .ab-purpose__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ab-purpose__visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .ab-promise__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 32px;
  }

  .ab-promise__visual {
    max-width: 160px;
    margin: 0 auto;
  }

  .ab-promise__pillars {
    align-items: center;
  }

  .ab-promise__pillar {
    text-align: left;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .ab-purpose,
  .ab-story,
  .ab-different,
  .ab-values,
  .ab-approach,
  .ab-leadership,
  .ab-promise {
    padding: var(--section-padding-y-mobile) 0;
  }

  .ab-story__timeline,
  .ab-approach__steps,
  .ab-leadership__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ab-values__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ab-story__metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ab-section__lead {
    font-size: 17px;
  }

  .ab-promise__statement {
    font-size: 16px;
  }

  .ab-promise__inner {
    padding: 32px 24px;
  }
}

/* --- Why Organisations Choose MYLEASE Page --- */
.woc-hero__image {
  background-image: linear-gradient(160deg, rgba(30, 30, 30, 0.03) 0%, rgba(215, 25, 32, 0.06) 60%, rgba(30, 30, 30, 0.02) 100%);
}

.woc-needs {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.woc-needs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.woc-stakeholder {
  padding: 36px 32px;
  background-color: var(--color-white);
  border: 1px solid rgba(30, 30, 30, 0.06);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.03), 0 8px 24px rgba(30, 30, 30, 0.04);
  transition: transform 400ms ease, box-shadow 400ms ease, border-color 400ms ease;
}

.woc-stakeholder:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 25, 32, 0.1);
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.07);
}

.woc-stakeholder__role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: rgba(215, 25, 32, 0.06);
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.woc-stakeholder__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.woc-stakeholder__outcomes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.woc-stakeholder__outcomes li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.woc-stakeholder__outcomes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.7;
}

.woc-stakeholder__guide {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 30, 30, 0.08);
}

.woc-stakeholder__guide-link {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 200ms ease;
}

.woc-stakeholder__guide-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.woc-guide-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(215, 25, 32, 0.05);
  border: 1px solid rgba(215, 25, 32, 0.12);
  border-left: 4px solid var(--color-primary);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.woc-guide-callout:hover {
  background: rgba(215, 25, 32, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(215, 25, 32, 0.08);
}

.woc-guide-callout__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(215, 25, 32, 0.1);
  color: var(--color-primary);
}

.woc-guide-callout__body {
  flex: 1;
  min-width: 0;
}

.woc-guide-callout__eyebrow {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.woc-guide-callout__title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: #111827;
}

.woc-guide-callout__arrow {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-primary);
  transition: transform 200ms ease;
}

.woc-guide-callout:hover .woc-guide-callout__title {
  color: var(--color-primary);
}

.woc-guide-callout:hover .woc-guide-callout__arrow {
  transform: translateX(4px);
}

.woc-guide-callout--faq {
  margin-top: 24px;
}

.woc-finance-guide {
  padding: 0 0 8px;
  background: #fafafa;
}

.woc-guide-callout--banner {
  margin-top: 0;
  padding: 22px 24px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(30, 30, 30, 0.06);
}

.woc-guide-callout--hero {
  margin-top: 32px;
  max-width: 720px;
  text-align: left;
  background: #fff;
  box-shadow: 0 8px 32px rgba(30, 30, 30, 0.06);
}

body.page-modern .ol-hero .woc-guide-callout--hero {
  margin-left: auto;
  margin-right: auto;
}

.woc-promise {
  padding: var(--section-padding-y) 0;
}

.woc-promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.woc-promise__card {
  text-align: center;
  padding: 40px 28px;
  background-color: #F8F9FB;
  border: 1px solid rgba(30, 30, 30, 0.05);
  border-radius: 24px;
  transition: transform 400ms ease, background-color 400ms ease, box-shadow 400ms ease;
}

.woc-promise__card:hover {
  transform: translateY(-5px);
  background-color: var(--color-white);
  box-shadow: 0 10px 32px rgba(30, 30, 30, 0.07);
}

.woc-promise__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.woc-promise__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.woc-promise__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.woc-promise__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.woc-work {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

.woc-different {
  padding: var(--section-padding-y) 0;
}

.woc-industries {
  padding: var(--section-padding-y) 0;
  background-color: #F8F9FB;
}

@media (max-width: 1024px) {
  .woc-promise__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .woc-needs,
  .woc-promise,
  .woc-work,
  .woc-different,
  .woc-industries {
    padding: var(--section-padding-y-mobile) 0;
  }

  .woc-needs__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .woc-stakeholder {
    padding: 28px 24px;
  }

  .woc-guide-callout {
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }

  .woc-guide-callout__title {
    font-size: 14px;
  }

  .woc-promise__card {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   Mobile Premium Experience (< 768px only)
   Desktop layout unchanged — homepage + site-wide mobile polish
   ========================================================================== */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  /* --- Header --- */
  .header {
    position: fixed;
    top: 0;
    height: 70px;
    z-index: 1002;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  }

  .header--scrolled {
    height: 70px;
  }

  /* Homepage hero: charcoal header at top of page */
  body:not(.page-home):not(.page-operating-lease):not(.page-about):not(.page-why-mylease):not(.page-why-organisations) .header:not(.header--scrolled) {
    background: #1a1a1a;
  }

  body:not(.page-home):not(.page-operating-lease):not(.page-about):not(.page-why-mylease):not(.page-why-organisations) .header:not(.header--scrolled) .header__logo-img {
    filter: brightness(0) invert(1);
  }

  body:not(.page-home):not(.page-operating-lease):not(.page-about):not(.page-why-mylease):not(.page-why-organisations) .header:not(.header--scrolled) .menu-toggle__bar {
    background-color: #ffffff;
  }

  body:not(.page-home):not(.page-operating-lease):not(.page-about):not(.page-why-mylease):not(.page-why-organisations) .header:not(.header--scrolled) .menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  body.page-home .header,
  body.page-home .header:not(.header--scrolled) {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  }

  body.page-home .header .header__logo-img,
  body.page-home .header:not(.header--scrolled) .header__logo-img {
    filter: none;
  }

  body.page-home .header .menu-toggle__bar,
  body.page-home .header:not(.header--scrolled) .menu-toggle__bar {
    background-color: #222222;
  }

  /* Scrolled + light subpages: solid white header */
  .header.header--scrolled,
  body.page-operating-lease .header,
  body.page-about .header,
  body.page-why-mylease .header,
  body.page-why-organisations .header {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  }

  .header.header--scrolled .header__logo-img,
  body.page-operating-lease .header .header__logo-img,
  body.page-about .header .header__logo-img,
  body.page-why-mylease .header .header__logo-img,
  body.page-why-organisations .header .header__logo-img {
    filter: none;
  }

  .header.header--scrolled .menu-toggle__bar,
  body.page-operating-lease .header .menu-toggle__bar,
  body.page-about .header .menu-toggle__bar,
  body.page-why-mylease .header .menu-toggle__bar,
  body.page-why-organisations .header .menu-toggle__bar {
    background-color: #222222;
  }

  .header__inner {
    height: 100%;
    padding: 0 20px;
    grid-template-columns: 1fr auto;
    gap: 0;
    align-items: center;
  }

  .header__logo-img,
  .header--scrolled .header__logo-img {
    height: 42px;
  }

  /* Hamburger — 22px, right-aligned */
  .menu-toggle {
    display: flex;
    width: 22px;
    height: 22px;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border-radius: 6px;
    position: relative;
    z-index: 1003;
  }

  .menu-toggle__bar {
    width: 22px;
    height: 2px;
    transition: transform 280ms ease, opacity 280ms ease, background-color 280ms ease;
  }

  .menu-toggle--active .menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle--active .menu-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle--active .menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* --- Mobile menu — slide from right --- */
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 300ms ease, visibility 300ms ease;
  }

  .mobile-menu-overlay--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: 85vw;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    padding: 0 20px 28px;
    background-color: #ffffff;
    z-index: 1001;
    opacity: 1;
    transform: translateX(100%);
    transition: transform 300ms ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu--open {
    transform: translateX(0);
  }

  .mobile-menu__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 36px;
    padding-bottom: 28px;
  }

  .mobile-menu__brand-logo {
    display: block;
    height: 38px;
    width: auto;
    margin-bottom: 14px;
  }

  .mobile-menu__brand-name {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #1a1a1a;
    text-transform: uppercase;
  }

  .mobile-menu__brand-tagline {
    margin: 6px 0 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #8a8f98;
  }

  .mobile-menu__divider {
    height: 1px;
    background-color: rgba(30, 30, 30, 0.08);
    margin: 0;
    flex-shrink: 0;
  }

  .mobile-menu__list {
    gap: 0;
    margin: 0;
    padding: 4px 0;
  }

  .mobile-menu__link {
    display: flex;
    align-items: center;
    height: 56px;
    min-height: 56px;
    padding: 0 6px;
    margin: 0 -6px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    border-bottom: none;
    border-radius: 10px;
    transition: color 200ms ease, background-color 200ms ease, transform 150ms ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu__link:active {
    transform: scale(0.98);
    background-color: rgba(0, 0, 0, 0.05);
  }

  @media (hover: hover) {
    .mobile-menu__link:hover {
      color: var(--color-primary);
      background-color: rgba(0, 0, 0, 0.03);
    }
  }

  .mobile-menu__link.nav__link--active {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
  }

  .mobile-menu__one,
  .mobile-menu__one-card {
    cursor: pointer;
  }

  .mobile-menu__one-card {
    margin-top: 28px;
    padding: 20px;
    background-color: #f4f5f7;
    border-radius: 16px;
  }

  .mobile-menu__one-card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .mobile-menu__one-lock {
    display: flex;
    flex-shrink: 0;
    color: var(--color-primary);
    line-height: 0;
    margin-top: 2px;
  }

  .mobile-menu__one-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
  }

  .mobile-menu__one-subtitle {
    margin: 3px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.35;
  }

  .mobile-menu__one-desc {
    margin: 14px 0 16px;
    font-size: 14px;
    line-height: 1.55;
    color: #5c6370;
  }

  .mobile-menu__signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: 12px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 200ms ease, transform 150ms ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu__signin-btn:hover {
    background-color: var(--color-primary-dark);
  }

  .mobile-menu__signin-btn:active {
    transform: scale(0.98);
  }

  .mobile-menu__version {
    margin-top: auto;
    padding-top: 28px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #a0a6b0;
  }

  /* --- Homepage hero — full banner, faces visible (mobile) --- */
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero__media {
    position: relative;
    inset: auto;
    max-width: 100%;
    max-height: none;
    width: 100%;
    aspect-ratio: 2 / 1;
  }

  .hero__banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }

  .hero + .why-choose {
    padding-top: 50px;
    padding-bottom: 56px;
  }

  /* --- General mobile spacing --- */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .why-choose,
  .solutions,
  .leasing-process,
  .industries,
  .lease-compare,
  .hr-finance,
  .insights,
  .partner,
  .about,
  .mobility-cta,
  .wm-believe,
  .wm-commitments,
  .wm-standards,
  .wm-experience,
  .wm-retention,
  .ab-purpose,
  .ab-story,
  .ab-different,
  .ab-values,
  .ab-approach,
  .ab-leadership,
  .ab-promise,
  .woc-needs,
  .woc-promise,
  .woc-work,
  .woc-different,
  .woc-industries {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .why-choose__grid,
  .solutions__grid,
  .industries__grid,
  .partner__grid,
  .lease-compare__cards,
  .hr-finance__cards,
  .insights__grid {
    gap: 20px;
  }

  .why-card,
  .industry-card,
  .partner-feature,
  .lease-compare__card {
    padding: 24px;
  }

  /* Subpage heroes — respect fixed header */
  .ol-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ol-hero__content {
    padding: calc(70px + 32px) 20px 48px;
  }

  .ol-hero__title {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.08;
  }

  .ol-hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
  }

  .ol-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ol-hero__actions .btn {
    width: 100%;
    max-width: 340px;
    height: 52px;
    border-radius: 14px;
  }

  .ol-hero__media {
    min-height: 220px;
  }
}