/* ==========================================================================
   User Care — under Why MYLEASE (shared subnav + page tweaks)
   ========================================================================== */

body.page-user-care.page-modern {
  background: #fafafa;
}

/* Subnav toggle (shared with why-mylease.html) */
.dh-subnav {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.dh-subnav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
  padding: 18px 24px 20px;
}

.dh-subnav--toggle {
  padding: 8px 0 28px;
  background: #fafafa;
  border-bottom: none;
}

.dh-subnav--toggle .dh-subnav__inner {
  padding: 0 24px;
}

.dh-toggle {
  display: inline-flex;
  width: min(560px, 100%);
  padding: 6px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  gap: 4px;
}

.dh-toggle__btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: clamp(14px, 2.4vw, 16px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: #5b6472;
  background: transparent;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  text-align: center;
}

.dh-toggle__btn:hover {
  color: #1a1a1a;
  background: rgba(0, 0, 0, 0.03);
}

.dh-toggle__btn.is-active {
  color: #fff;
  background: var(--color-primary, #d71920);
  box-shadow: 0 4px 14px rgba(215, 25, 32, 0.28);
}

.dh-toggle__btn.is-active:hover {
  color: #fff;
  background: #b8141a;
}

/* Four care topic cards — 2×2 grid */
body.page-user-care .uc-topics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

body.page-user-care .uc-topics__card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 200ms ease;
}

body.page-user-care .uc-topics__card-link:hover {
  opacity: 0.75;
}

body.page-user-care .uc-topics__card-link::after {
  content: ' →';
}

/* RC panels — match difference cards */
body.page-user-care .uc-rc__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.page-user-care .uc-rc__list li {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

body.page-user-care .uc-rc__list strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Why MYLEASE promo on user-care (monochrome strip → card) */
.wm-hub-promo {
  padding: clamp(48px, 6vw, 72px) 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.wm-hub-promo__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 40px;
  align-items: end;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 40px);
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  border-left: 4px solid var(--color-primary);
}

.wm-hub-promo__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.wm-hub-promo__title {
  margin: 0 0 8px;
  font-family: 'Chillax', sans-serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.wm-hub-promo__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #5b6472;
  max-width: 48ch;
}

.wm-hub-promo__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease;
}

.wm-hub-promo__link:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

body.page-user-care .wm-cta .mobility-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 480px) {
  .dh-toggle__btn {
    min-height: 50px;
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  body.page-user-care .uc-topics__grid {
    grid-template-columns: 1fr;
  }

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

  .wm-hub-promo__link {
    justify-self: start;
  }
}
