/* Mobile shell — max-width centered layout for Blade frontend */
:root {
  --mobile-max-width: 430px;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.marketing-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #f5f5f5;
}

.mobile-shell {
  min-height: 100dvh;
  position: relative;
  max-width: var(--mobile-max-width);
  margin: 0 auto;
  background: #fff;
  overflow-x: hidden;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.06);
}

/* Upgrade Loan marketing styles — core layout, header, menu */
/* Ported from SmartAgent/mobile-h5 */

:root {
  --mk-primary: #1a5c3a;
  --mk-primary-dark: #0f680f;
  --mk-primary-hover: #14472d;
  --mk-accent: #00a651;
  --mk-trust-green: #00b67a;
  --mk-text: #222;
  --mk-text-muted: #666;
  --mk-text-soft: #6b7c8f;
  --mk-bg-soft: #f4f6f8;
  --mk-banner-bg: #e8f5e9;
  --site-header-height: 52px;
  --mk-menu-duration: 500ms;
  --mk-menu-ease: ease;
  --mk-menu-bg: #f3f3f3;
  --mk-icon-duration: 0.3s;
}

.marketing-layout {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: var(--site-header-height);
  background: #fff;
}

.marketing-layout--menu-present {
  overflow: hidden;
}

.marketing-layout--menu-present .marketing-layout__content {
  visibility: hidden;
  pointer-events: none;
}

.marketing-layout__body {
  flex: 1;
  overflow-x: hidden;
}

/* Header — fixed, does not scroll with page */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--site-header-height);
  padding: 0 16px;
}

.site-header__menu-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.site-header__hamburger {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.site-header__hamburger > span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  background-color: var(--mk-primary);
  transform: translateX(-50%);
  transition: background 0s var(--mk-icon-duration);
}

.site-header__hamburger > span::before,
.site-header__hamburger > span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--mk-primary);
  transition-duration: var(--mk-icon-duration);
  transition-delay: var(--mk-icon-duration), 0s;
}

.site-header__hamburger > span::before {
  top: -6px;
  transition-property: top, transform;
}

.site-header__hamburger > span::after {
  bottom: -6px;
  transition-property: bottom, transform;
}

.site-header__hamburger.is-active > span {
  background: transparent;
}

.site-header__hamburger.is-active > span::before,
.site-header__hamburger.is-active > span::after {
  transition-delay: 0s, var(--mk-icon-duration);
}

.site-header__hamburger.is-active > span::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header__hamburger.is-active > span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.site-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-header__logo img {
  width: 120px;
  max-height: 40px;
  object-fit: contain;
}

.site-header__notify {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.site-header__notify .fa-bell {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  color: #00a651;
}

.site-header__badge {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: #ff4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
}

.site-header__badge--hidden {
  display: none;
}

/* Menu full page overlay — jQuery fadeIn/fadeOut equivalent */
.site-menu-page {
  position: fixed;
  inset: 0;
  z-index: 350;
  padding-top: var(--site-header-height);
  box-sizing: border-box;
  background: var(--mk-menu-bg);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition:
    opacity var(--mk-menu-duration) var(--mk-menu-ease),
    visibility 0s linear var(--mk-menu-duration);
}

.site-menu-page.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity var(--mk-menu-duration) var(--mk-menu-ease),
    visibility 0s linear 0s;
}

.site-menu-page__panel {
  width: 370px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 26px 18px calc(45px + env(safe-area-inset-bottom));
  box-sizing: border-box;
  background: url('../images/menu/drawer-bg.png') no-repeat center top / 100% 100%;
}

.site-menu-page__logo {
  display: block;
  width: 140px;
  margin: 0 auto 18px 6px;
}

.site-menu-page__title {
  margin: 0 0 14px;
  padding-left: 6px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
}

.site-menu-page__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 6px;
}

.site-menu-page__item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.site-menu-page__item-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-menu-page__item-text {
  flex: 1;
  padding-left: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #2f2f2f;
  line-height: 1.2;
}

.site-menu-page__item-chevron {
  color: var(--mk-accent);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.site-menu-page__bottom {
  margin-top: 18px;
  margin-bottom: 45px;
  padding: 0 6px;
}

.site-menu-page__login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 16px 14px;
  border-radius: 14px;
  background: #2aaa3a;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.site-menu-page__login-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Upgrade Loan marketing styles — about page */
/* Ported from SmartAgent/mobile-h5 */

/* About page */
.about-page {
  background: #fff;
}

.about-page__hero {
  padding: 16px 20px 36px;
  text-align: center;
}

.about-page__hero h1 {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 500;
  color: #222;
}

.about-page__brand img {
  display: block;
  max-width: 320px;
  height: auto;
  margin: 0 auto 12px;
}

.about-page__tagline {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #888;
}

.about-page__divider {
  display: block;
  width: calc(100% - 10px);
  max-width: 560px;
  height: 1px;
  margin: 20px auto 28px;
  padding: 0;
  border: none;
  background: #eee;
}

.about-page__intro {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 8px;
  font-size: 10px;
  line-height: 1.6;
  color: #666;
  text-align: center;
}

.about-page__intro p {
  margin: 0 0 10px;
}

.about-page__intro p:last-child {
  margin-bottom: 0;
}

.about-page__intro-lead {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.about-page__intro-points {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 14px;
  color: #222;
}

.about-page__intro-points p {
  margin: 0 0 8px;
}

.about-page__intro-points p:last-child {
  margin-bottom: 0;
}

.about-page__intro-tag {
  color: #666;
}

.about-page__link {
  color: #0070e0;
  font-weight: 400;
  text-decoration: none;
}

.about-page__section {
  padding: 36px 16px 40px;
  text-align: center;
}

.about-page__section h2 {
  margin: 0 auto 32px;
  max-width: 320px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
}

.about-page__section--work h2 {
  font-weight: 600;
  font-size: 13px;
}

.about-page__awards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 14px;
  max-width: 360px;
  margin: 0 auto;
  padding: 0 4px;
}

.about-page__award {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 124px;
  padding: 2px 0;
}

.about-page__award img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 120px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.about-page__award--wide img {
  max-height: 72px;
}

.about-page__workplace {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 340px;
  margin: 0 auto;
  padding: 0 16px;
}

.about-page__work-logo {
  text-align: center;
}

.about-page__work-brand--forbes {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 32px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.about-page__work-brand--builtin {
  display: block;
  width: auto;
  max-width: 160px;
  height: auto;
  margin: 0 auto 10px;
  object-fit: contain;
}

.about-page__work-brand--banker {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.about-page__work-desc {
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
  color: #5c5c5c;
}

.about-page__offices {
  background: #2c4a6c;
  padding: 20px 16px 48px;
}

.about-page__offices h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.about-page__office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

.about-page__office-card {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  margin: 0;
}

.about-page__office-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-page__office-card--brand .about-page__office-img {
  aspect-ratio: 1 / 1;
}

.about-page__office-card figcaption {
  padding: 12px 14px 14px;
  text-align: left;
}

.about-page__office-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
}

.about-page__office-sub {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  color: #6b6b6b;
}

/* Upgrade Loan marketing styles — home sections and footer */
/* Ported from SmartAgent/mobile-h5 */

/* Home sections */
.home-banner {
  display: block;
  width: 100%;
  background: var(--mk-banner-bg);
  line-height: 0;
}

.home-banner__link {
  display: block;
  text-decoration: none;
}

.home-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.home-cs-fab {
  position: fixed;
  right: 16px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--mk-accent) 0%, var(--mk-primary) 100%);
  color: #fff;
  box-shadow:
    0 4px 14px rgba(26, 92, 58, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.home-cs-fab:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(26, 92, 58, 0.28);
}

.home-cs-fab__icon {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
}

.loan-promo {
  padding: 32px 12px 40px;
  text-align: center;
  background: #fff;
}

.loan-promo__eyebrow {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mk-primary);
}

.loan-promo__title {
  margin: 0 0 28px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--mk-primary);
}

.loan-promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 48px;
  padding: 14px 40px;
  border-radius: 6px;
  background: var(--mk-primary-dark);
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.loan-promo__note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin: 20px 0 0;
  font-size: 10px;
  line-height: 1.5;
  color: #333;
}

.loan-promo__note-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--mk-primary);
  font-size: 12px;
}

.loan-promo__steps-title {
  margin: 36px 0 32px;
  font-size: 18px;
  font-weight: 700;
  color: var(--mk-primary);
}

.loan-promo__steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.loan-promo__steps-list li {
  margin-bottom: 36px;
}

.loan-promo__steps-list li:last-child {
  margin-bottom: 0;
}

.loan-promo__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #74a37e;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.loan-promo__steps-list li:nth-child(3) .loan-promo__step-num {
  background: #408b3b;
}

.loan-promo__step-title {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.loan-promo__step-desc {
  margin: 0;
  font-size: 8px;
  line-height: 1.6;
  color: #333;
}

.loan-help {
  padding: 8px 16px 48px;
  background: #fff;
}

.loan-help__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.loan-help__list > li {
  margin-bottom: 12px;
}

.loan-help__list > li:last-child {
  margin-bottom: 0;
}

.loan-help__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px;
  border-radius: 12px;
  background: var(--mk-bg-soft);
  text-decoration: none;
  color: inherit;
}

.loan-help__title {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--mk-text);
}

.loan-help__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--mk-text-muted);
}

.loan-help__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}

.loan-help__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loan-best {
  padding: 40px 16px 48px;
  text-align: center;
  background: #fff;
}

.loan-best__title {
  margin: 0 0 32px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.loan-best__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.loan-best__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 118px;
}

.loan-best__img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.loan-best__caption {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--mk-text);
}

.loan-best__grid > li:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
  width: 100%;
}

.loan-choose {
  padding: 32px 16px 40px;
  text-align: center;
  background: var(--mk-primary);
}

.loan-choose__heading {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.loan-choose__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.loan-choose__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 12px 6px 12px 10px;
  border-radius: 6px;
  background: #fff;
  text-align: left;
  text-decoration: none;
  color: var(--mk-text) !important;
}

.loan-choose__body {
  flex: 1;
  min-width: 0;
}

.loan-choose__title {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--mk-text) !important;
}

.loan-choose__cta {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--mk-text-soft) !important;
}

.loan-choose__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.loan-choose__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loan-stats {
  padding: 40px 16px 48px;
  background: #fff;
}

.loan-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 20px;
}

.loan-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loan-stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-bottom: 8px;
}

.loan-stats__icon img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.loan-stats__item--trust .loan-stats__icon img {
  width: 120px;
}

.loan-stats__value {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--mk-primary);
}

.loan-stats__label {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--mk-text-soft);
}

.loan-stats__badge {
  width: 88px;
}

.loan-stats__badge img {
  width: 100%;
  height: auto;
}

.loan-products {
  padding: 8px 12px 40px;
  background: #fff;
}

.loan-product {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 1.05fr);
  grid-template-areas: 'intro visual features';
  gap: 8px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #e8ecef;
}

.loan-product:last-child {
  border-bottom: none;
}

.loan-product__intro {
  grid-area: intro;
  min-width: 0;
}

.loan-product__visual {
  grid-area: visual;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 4;
  padding: 8px 4px;
  border-radius: 6px;
  background-color: #f8fbfd;
  background-image: radial-gradient(#b8d4e8 1px, transparent 1px);
  background-size: 10px 10px;
}

.loan-product__visual img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.loan-product__features {
  grid-area: features;
  min-width: 0;
}

.loan-product__intro h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--mk-text);
}

.loan-product__intro p {
  margin: 0;
  font-size: 10px;
  line-height: 1.35;
  color: var(--mk-text-muted);
}

.loan-product__tag {
  margin: 0 0 8px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--mk-text);
}

.loan-product__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.loan-product__list li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 9px;
  line-height: 1.25;
  color: #444;
}

.loan-product__list li:last-child {
  margin-bottom: 0;
}

.loan-product__list-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.loan-testimonial {
  position: relative;
  overflow: hidden;
  padding: 20px 16px 24px;
  text-align: center;
  background: var(--mk-primary);
}

.loan-testimonial::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 45%;
  max-width: 220px;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='140' viewBox='0 0 120 140'%3E%3Cpath d='M20 20h40v40H20zm30 25h40v40H50zm-30 50h40v40H20z' fill='none' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 80px 90px;
  pointer-events: none;
}

.loan-testimonial__wrap {
  position: relative;
  z-index: 1;
}

.loan-testimonial__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.loan-testimonial__sub {
  margin: 0 0 24px;
  font-size: 12px;
  line-height: 1.4;
  color: #fff;
}

.loan-testimonial__card {
  margin: 0 auto 20px;
  padding: 18px 16px 16px;
  border-radius: 14px;
  background: #fff;
  text-align: left;
}

.loan-testimonial__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.loan-testimonial__stars {
  display: flex;
  gap: 2px;
}

.loan-testimonial__star {
  width: 16px;
  height: 16px;
  background: var(--mk-trust-green);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.loan-testimonial__invited {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #00838f;
}

.loan-testimonial__quote-title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #111;
}

.loan-testimonial__quote-body {
  margin: 0 0 14px;
  font-size: 11px;
  line-height: 1.45;
  color: #444;
}

.loan-testimonial__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
}

.loan-testimonial__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.loan-testimonial__nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #20827f;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* Footer */
.site-footer {
  margin-top: 0;
  padding: 32px 20px calc(40px + env(safe-area-inset-bottom));
  border-top: 3px solid var(--mk-accent);
  background: #fff;
  text-align: center;
}

.site-footer__nav {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

.site-footer__nav li {
  margin-bottom: 18px;
}

.site-footer__nav li:last-child {
  margin-bottom: 0;
}

.site-footer__nav a,
.site-footer__nav button {
  font-size: 16px;
  line-height: 1.35;
  color: #5c5c5c;
  text-decoration: none;
}

.site-footer__nav button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.site-footer__logo img {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto 22px;
}

.site-footer__copy {
  margin: 0 0 28px;
  font-size: 12px;
  line-height: 1.5;
  color: #000;
}

.site-footer__copy span {
  display: block;
}

.site-footer__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.site-footer__badges img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
}

