/* Lendology Design System */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   LENDOLOGY DESIGN SYSTEM v2
   Scoped to .lp — won't conflict with LMG chrome
   ============================================================ */

.lp *, .lp *::before, .lp *::after { box-sizing: border-box; margin: 0; padding: 0; }

.lp {
  --navy:       #12253a;
  --navy-deep:  #0c1d2e;
  --mint:       #1edcaa;
  --mint-dark:  #0fb389;
  --mint-light: #e6fdf5;
  --mint-mid:   rgba(30,220,170,0.12);
  --white:      #ffffff;
  --fog:        #f5f7fa;
  --text:       #0d1b2a;
  --text-mid:   #4a5568;
  --text-soft:  #718096;
  --border:     rgba(18,37,58,0.08);
  --border-mid: rgba(18,37,58,0.14);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1;
}

.lp img { display: block; max-width: 100%; }
.lp a  { text-decoration: none; }
.lp ul { list-style: none; }
.lp button { cursor: pointer; font-family: inherit; border: none; background: none; }

.lp-wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ── Section rhythm ── */
.lp-sec { padding: 60px 0; }
.lp-sec-fog { background: var(--fog); }
.lp-sec-white { background: var(--white); }
.lp-sec-navy { background: var(--navy); }
.lp-sec-deep { background: var(--navy-deep); }

/* Mint accent line tops specific sections */
.lp-sec-accent { border-top: 2.5px solid var(--mint); }

/* ── Typography ── */
.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 13px 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  /* Default: on light bg */
  background: var(--mint);
  color: var(--navy);
}
.lp-kicker-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* On dark/navy sections — still mint bg, navy text — high contrast always */
.lp-kicker.dk {
  background: var(--mint);
  color: var(--navy);
}

.lp-h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 8px;
}
.lp-h2.wh { color: var(--white); }

.lp-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 36px;
}
.lp-lead.wh { color: rgba(255,255,255,0.55); }

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  transition: all 0.17s ease;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.lp-btn-mint  { background: var(--mint); color: var(--navy); border: 2px solid var(--mint); }
.lp-btn-mint:hover { background: var(--mint-dark); border-color: var(--mint-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(30,220,170,0.3); }
.lp-btn-navy  { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.lp-btn-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.lp-btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.lp-btn-ghost:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.lp-btn-outline-mint { background: transparent; color: var(--mint-dark); border: 2px solid rgba(30,220,170,0.35); }
.lp-btn-outline-mint:hover { border-color: var(--mint); background: rgba(30,220,170,0.06); }

/* Icon in button */
.lp-btn svg { flex-shrink: 0; transition: transform 0.15s; }
.lp-btn:hover svg { transform: translateX(2px); }


/* ============================================================
   TRUST BAR — very top, before everything
   ============================================================ */
.lp-trust-bar {
  background: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid rgba(30,220,170,0.15);
}
.lp-trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.lp-trust-item strong { color: var(--mint); font-weight: 700; }
.lp-trust-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}


/* ============================================================
   NAV
   ============================================================ */
.lp-nav {
  background: var(--white);
  border-bottom: 0.5px solid var(--border-mid);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.lp-logo {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.lp-logo span { color: var(--mint); }

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.lp-nav-item { position: relative; }
.lp-nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 7px 11px;
  border-radius: var(--r-sm);
  transition: all 0.13s;
  white-space: nowrap;
}
.lp-nav-link:hover { color: var(--navy); background: var(--fog); }
.lp-nav-link svg { transition: transform 0.15s; }
.lp-nav-item:hover .lp-nav-link svg { transform: rotate(180deg); }

.lp-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--r-md);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  min-width: 200px;
  padding: 5px;
  z-index: 100;
}
.lp-nav-item:hover .lp-dropdown { display: block; }
.lp-dropdown a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 11px;
  border-radius: var(--r-sm);
  transition: all 0.12s;
}
.lp-dropdown a:hover { color: var(--navy); background: var(--mint-light); }

.lp-nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lp-nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
}
.lp-nav-phone:hover { color: var(--mint-dark); }
.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
}
.lp-hamburger:hover { background: var(--fog); }
.lp-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.22s ease; }
.lp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.open span:nth-child(2) { opacity: 0; }
.lp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp-mobile-menu { display: none; background: var(--white); border-top: 0.5px solid var(--border); padding: 16px 28px 24px; }
.lp-mobile-menu.open { display: block; }
.lp-mob-sec { margin-bottom: 14px; }
.lp-mob-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-soft); margin-bottom: 5px; }
.lp-mobile-menu a { display: block; font-size: 15px; font-weight: 500; color: var(--text); padding: 9px 0; border-bottom: 0.5px solid var(--border); }
.lp-mobile-menu a:last-child { border-bottom: none; }
.lp-mob-cta { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }


/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
  background: var(--navy);
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
}
.lp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(30,220,170,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 85%, rgba(30,220,170,0.04) 0%, transparent 45%);
  pointer-events: none;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.lp-h1 em { color: var(--mint); font-style: normal; }
.lp-hero-sub {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
  margin-bottom: 32px;
  max-width: 460px;
}
.lp-hero-btns { display: flex; gap: 11px; flex-wrap: wrap; }

/* Photo */
.lp-hero-photo { position: relative; }
.lp-photo-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(30,220,170,0.18);
  position: relative;
  aspect-ratio: 5/4;
  background: rgba(30,220,170,0.04);
}
.lp-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.lp-photo-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,18,30,0.95) 0%, rgba(8,18,30,0.55) 60%, transparent 100%);
  padding: 36px 20px 20px;
}
.lp-photo-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.lp-photo-role { font-size: 12px; color: rgba(255,255,255,0.45); }
.lp-star-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--mint); color: var(--navy);
  font-size: 11px; font-weight: 800;
  padding: 6px 13px; border-radius: 999px;
  display: flex; align-items: center; gap: 5px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(30,220,170,0.45);
}


/* ============================================================
   SERVICES — fog bg, mint accent top
   ============================================================ */
.lp-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.lp-svc-card {
  background: var(--white);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--r-lg);
  padding: 20px 18px 18px;
  display: block;
  color: inherit;
  transition: all 0.18s ease;
}
.lp-svc-card:hover { border-color: var(--mint); box-shadow: 0 4px 16px rgba(0,0,0,0.07); transform: translateY(-2px); }
.lp-svc-icon {
  width: 42px; height: 42px;
  background: var(--mint-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  transition: background 0.18s;
}
.lp-svc-card:hover .lp-svc-icon { background: var(--mint); }
.lp-svc-card:hover .lp-svc-icon svg path,
.lp-svc-card:hover .lp-svc-icon svg rect,
.lp-svc-card:hover .lp-svc-icon svg circle { stroke: var(--navy); }
.lp-svc-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.lp-svc-desc { font-size: 12px; line-height: 1.6; color: var(--text-mid); margin-bottom: 12px; }
.lp-svc-more { font-size: 12px; font-weight: 700; color: var(--mint-dark); display: flex; align-items: center; gap: 4px; transition: gap 0.14s; }
.lp-svc-card:hover .lp-svc-more { gap: 7px; }


/* ============================================================
   WHY — white bg
   ============================================================ */
.lp-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.lp-why-card {
  background: var(--fog);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  border-left: 3px solid var(--mint);
}
.lp-why-icon {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.06);
}
.lp-why-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.lp-why-desc { font-size: 13px; line-height: 1.68; color: var(--text-mid); }


/* ============================================================
   PROCESS — navy break section
   ============================================================ */
.lp-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; position: relative; }
.lp-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 1px;
  background: rgba(30,220,170,0.2);
}
.lp-step { text-align: center; position: relative; z-index: 1; }
.lp-step-num {
  width: 44px; height: 44px;
  background: var(--mint); color: var(--navy);
  font-size: 17px; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(30,220,170,0.35);
}
.lp-step-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.lp-step-desc { font-size: 12px; line-height: 1.65; color: rgba(255,255,255,0.5); }

.lp-process-footer {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-goals { display: flex; flex-wrap: wrap; gap: 7px; }
.lp-goal {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  transition: all 0.15s;
}
.lp-goal:hover { color: var(--mint); border-color: rgba(30,220,170,0.6); }
.lp-process-btns { display: flex; gap: 9px; flex-wrap: wrap; flex-shrink: 0; }


/* ============================================================
   REVIEWS — white bg
   ============================================================ */
.lp-review-feat {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 36px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.lp-review-feat::before {
  content: '\201C';
  position: absolute;
  top: 0; left: 24px;
  font-size: 130px;
  font-weight: 800;
  color: rgba(30,220,170,0.1);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.lp-review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.lp-review-text {
  font-size: 17px; font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
  position: relative; z-index: 1;
  max-width: 640px;
}
.lp-reviewer { display: flex; align-items: center; gap: 12px; }
.lp-rav {
  width: 42px; height: 42px;
  background: var(--mint); color: var(--navy);
  font-size: 14px; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-r-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.lp-r-meta { font-size: 11px; color: rgba(255,255,255,0.38); }

.lp-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.lp-rev-card {
  background: var(--fog);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--r-lg);
  padding: 20px;
}
.lp-rev-card.cta {
  background: var(--navy);
  border-color: rgba(30,220,170,0.15);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 6px;
}
.lp-rc-stars { color: #F5C444; font-size: 12px; margin-bottom: 7px; letter-spacing: 2px; }
.lp-rc-text { font-size: 12px; font-style: italic; line-height: 1.6; color: var(--text-mid); margin-bottom: 9px; }
.lp-rc-name { font-size: 12px; font-weight: 700; color: var(--text); }
.lp-rc-date { font-size: 10px; color: var(--text-soft); margin-top: 2px; }
.lp-rev-count { font-size: 44px; font-weight: 800; color: var(--mint); line-height: 1; }
.lp-rev-label { font-size: 12px; color: rgba(255,255,255,0.48); line-height: 1.5; margin: 4px 0 12px; }


/* ============================================================
   TEAM — fog bg, mint top accent
   ============================================================ */
.lp-team-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.lp-team-card {
  background: var(--white);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.lp-team-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); transform: translateY(-2px); }
.lp-team-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: #ffffff; }
.lp-team-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.lp-team-body { padding: 20px 20px 22px; }
.lp-team-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.lp-team-role { font-size: 12px; color: var(--text-soft); margin-bottom: 12px; }
.lp-team-bio { font-size: 13px; line-height: 1.65; color: var(--text-mid); margin-bottom: 18px; }
.lp-team-acts { display: flex; gap: 7px; flex-wrap: wrap; }
.lp-ta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600;
  padding: 7px 15px; border-radius: 999px;
  transition: all 0.14s;
}
.lp-ta-p { background: var(--mint); color: var(--navy); }
.lp-ta-p:hover { background: var(--mint-dark); }
.lp-ta-o { border: 0.5px solid var(--border-mid); color: var(--text-mid); }
.lp-ta-o:hover { border-color: var(--navy); color: var(--navy); }

/* Office strip */
.lp-office {
  background: var(--white);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}
.lp-office-items { display: flex; gap: 24px; flex-wrap: wrap; flex: 1; padding: 24px 0; }
.lp-office > a { flex-shrink: 0; margin-right: 24px; }
.lp-office-items { display: flex; gap: 28px; flex-wrap: wrap; }
.lp-office-item { display: flex; align-items: flex-start; gap: 10px; }
.lp-office-ico {
  width: 34px; height: 34px;
  background: var(--mint-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-office-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); margin-bottom: 3px; }
.lp-office-val { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.45; }
.lp-office-val a { color: inherit; }
.lp-office-val a:hover { color: var(--mint-dark); }


/* ============================================================
   FAQ — navy bg, visually separates from team
   ============================================================ */
.lp-faq-wrap { max-width: 720px; margin: 0 auto; }
.lp-faq-item { border-bottom: 0.5px solid rgba(255,255,255,0.1); }
.lp-faq-q {
  width: 100%; text-align: left;
  padding: 18px 0;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  background: none; cursor: pointer;
  transition: color 0.14s;
}
.lp-faq-q:hover { color: var(--mint); }
.lp-faq-ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.lp-faq-item.open .lp-faq-ico { background: var(--mint); transform: rotate(45deg); }
.lp-faq-item.open .lp-faq-ico svg path { stroke: var(--navy); }
.lp-faq-ans {
  display: none;
  padding: 0 0 18px;
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,0.55);
}
.lp-sec-navy .lp-faq-ans a { color: var(--mint); font-weight: 600; }
.lp-sec-navy .lp-faq-ans a:hover { text-decoration: underline; }
.lp-faq-item.open .lp-faq-ans { display: block; }
.lp-faq-foot { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }


/* ============================================================
   ARTICLES — white bg, mint accent top
   ============================================================ */
.lp-art-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.lp-art-card {
  background: var(--white);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.18s ease;
  color: inherit;
}
.lp-art-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.08); transform: translateY(-2px); }
.lp-art-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--fog); }
.lp-art-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.lp-art-card:hover .lp-art-img img { transform: scale(1.04); }
.lp-art-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.lp-art-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--mint-dark);
  background: var(--mint-light);
  padding: 3px 9px; border-radius: 999px;
  margin-bottom: 9px;
}
.lp-art-title { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 7px; flex: 1; }
.lp-art-excerpt { font-size: 12px; line-height: 1.65; color: var(--text-mid); margin-bottom: 14px; }
.lp-art-read { font-size: 12px; font-weight: 700; color: var(--mint-dark); display: flex; align-items: center; gap: 4px; transition: gap 0.14s; }
.lp-art-card:hover .lp-art-read { gap: 7px; }


/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer { background: var(--navy-deep); padding: 52px 0 0; }
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}
.lp-f-logo { font-size: 21px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; margin-bottom: 10px; }
.lp-f-logo span { color: var(--mint); }
.lp-f-tagline { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.38); margin-bottom: 22px; max-width: 220px; }
.lp-f-contact { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; }
.lp-footer .lp-f-contact a { font-size: 13px; color: rgba(255,255,255,0.62); transition: color 0.14s; line-height: 1.4; }
.lp-footer .lp-f-contact a:hover { color: var(--mint); }
.lp-f-col-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.lp-footer .lp-f-link { display: block; font-size: 13px; color: rgba(255,255,255,0.62); padding: 4px 0; transition: color 0.14s; }
.lp-footer .lp-f-link:hover { color: var(--mint); }

.lp-footer-bottom { padding: 24px 0; }
.lp-compliance { font-size: 11px; line-height: 1.85; color: rgba(255,255,255,0.25); margin-bottom: 14px; }
.lp-legal-links { display: flex; flex-wrap: wrap; gap: 4px 18px; }
.lp-footer .lp-legal-links a { font-size: 11px; color: rgba(255,255,255,0.42); transition: color 0.14s; }
.lp-footer .lp-legal-links a:hover { color: rgba(255,255,255,0.7); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ── Stat block ── */
.lp-stats {
  background: var(--white);
  padding: 52px 0;
  border-top: 0.5px solid var(--border-mid);
  border-bottom: 0.5px solid var(--border-mid);
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lp-stat-item {
  text-align: center;
  padding: 8px 24px;
  border-right: 0.5px solid var(--border-mid);
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
  display: block;
}
.lp-stat-num em {
  color: var(--mint-dark);
  font-style: normal;
}
.lp-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.lp-stat-sub {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 3px;
}

/* ── Pre-footer CTA banner ── */
.lp-cta-banner {
  background: var(--mint);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-banner-inner { position: relative; z-index: 1; }
.lp-cta-h {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.lp-cta-h em { color: var(--white); font-style: normal; }
.lp-cta-sub {
  font-size: 16px;
  color: rgba(18,37,58,0.65);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.lp-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-btn-navy-solid {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.lp-btn-navy-solid:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(18,37,58,0.25);
}
.lp-btn-navy-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(18,37,58,0.4);
}
.lp-btn-navy-outline:hover {
  border-color: var(--navy);
  background: rgba(18,37,58,0.08);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .lp-stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .lp-stat-item { border-right: none; border-bottom: 0.5px solid var(--border-mid); padding: 20px 16px; }
  .lp-stat-item:nth-child(odd) { border-right: 0.5px solid var(--border-mid); }
  .lp-stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .lp-cta-btns { flex-direction: column; align-items: stretch; max-width: 300px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .lp-nav-links, .lp-nav-phone, .lp-nav-cta-desk { display: none; }
  .lp-hamburger { display: flex; }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-photo-wrap { aspect-ratio: 4/3; }
  .lp-svc-grid { grid-template-columns: repeat(2,1fr); }
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-sec-white [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .lp-sec-white [style*="grid-template-columns:1fr 1fr"] > div:last-child { aspect-ratio: 16/9 !important; }
  .lp-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .lp-steps::before { display: none; }
  .lp-rev-grid { grid-template-columns: 1fr; }
  .lp-art-grid { grid-template-columns: 1fr; }
  .lp-team-grid { grid-template-columns: 1fr; max-width: 380px; }
  .lp-footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .lp-sec { padding: 48px 0; }
  .lp-process-footer { flex-direction: column; }
  .lp-office { flex-direction: column; align-items: stretch; }
  .lp-office > div:first-child { width: 100% !important; aspect-ratio: 16/9 !important; border-radius: 0 !important; }
  .lp-office-items { flex-direction: column; gap: 14px; padding: 20px 20px 0; }
  .lp-office > a { margin: 16px 20px 20px; }
  .lp-trust-bar-inner { justify-content: flex-start; gap: 12px; }
  .lp-trust-dot { display: none; }
}
@media (max-width: 480px) {
  .lp-svc-grid { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-hero-btns { flex-direction: column; align-items: stretch; }
  .lp-btn { justify-content: center; }
  .lp-wrap { padding: 0 18px; }
}



.lp-trust-bar {
  background: #12253a;
  padding: 8px 0;
  border-bottom: 1px solid rgba(30,220,170,0.15);
}
.lp-trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  font-family: "DM Sans", system-ui, sans-serif;
}
.lp-trust-item strong { color: #1edcaa; font-weight: 700; }
.lp-trust-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.lp-nav {
  background: #ffffff;
  border-bottom: 0.5px solid rgba(18,37,58,0.14);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  font-family: "DM Sans", system-ui, sans-serif;
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.lp-logo { flex-shrink: 0; text-decoration: none; }
.lp-logo img { display: block; height: 36px; width: auto; }
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.lp-nav-item { position: relative; }
.lp-nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  padding: 7px 11px;
  border-radius: 6px;
  transition: all 0.13s;
  white-space: nowrap;
  text-decoration: none;
  font-family: "DM Sans", system-ui, sans-serif;
}
.lp-nav-link:hover { color: #12253a; background: #f5f7fa; }
.lp-nav-link svg { transition: transform 0.15s; }
.lp-nav-item:hover .lp-nav-link svg { transform: rotate(180deg); }
.lp-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 0.5px solid rgba(18,37,58,0.14);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  min-width: 200px;
  padding: 5px;
  z-index: 100;
}
.lp-nav-item:hover .lp-dropdown { display: block; }
.lp-dropdown a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #4a5568;
  padding: 8px 11px;
  border-radius: 6px;
  transition: all 0.12s;
  text-decoration: none;
  font-family: "DM Sans", system-ui, sans-serif;
}
.lp-dropdown a:hover { color: #12253a; background: #e6fdf5; }
.lp-nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lp-nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: #12253a;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-family: "DM Sans", system-ui, sans-serif;
}
.lp-nav-phone:hover { color: #0fb389; }
.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.lp-hamburger:hover { background: #f5f7fa; }
.lp-hamburger span { display: block; width: 22px; height: 2px; background: #12253a; border-radius: 2px; transition: all 0.22s ease; }
.lp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.open span:nth-child(2) { opacity: 0; }
.lp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lp-mobile-menu { display: none; background: #fff; border-top: 0.5px solid rgba(18,37,58,0.08); padding: 16px 28px 24px; font-family: "DM Sans", system-ui, sans-serif; }
.lp-mobile-menu.open { display: block; }
.lp-mob-sec { margin-bottom: 14px; }
.lp-mob-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: #718096; margin-bottom: 5px; }
.lp-mobile-menu a { display: block; font-size: 15px; font-weight: 500; color: #0d1b2a; padding: 9px 0; border-bottom: 0.5px solid rgba(18,37,58,0.08); text-decoration: none; }
.lp-mobile-menu a:last-child { border-bottom: none; }
.lp-mob-cta { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.lp-btn-mint-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  background: #1edcaa;
  color: #12253a;
  border: 2px solid #1edcaa;
  text-decoration: none;
  transition: all 0.17s ease;
  cursor: pointer;
}
.lp-btn-mint-nav:hover { background: #0fb389; border-color: #0fb389; }
@media (max-width: 768px) {
  .lp-nav-links, .lp-nav-phone, .lp-nav-cta-desk { display: none; }
  .lp-hamburger { display: flex; }
  .lp-trust-dot { display: none; }
}

/* Accessibility: skip link and focus-visible rings (Audit Batch A, May 2026) */
.lp-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100000;
}
.lp-skip:focus,
.lp-skip:focus-visible {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  background: #12253a;
  color: #1edcaa;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  outline: 2px solid #1edcaa;
  outline-offset: 2px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.lp a:focus-visible,
.lp button:focus-visible,
.lp input:focus-visible,
.lp select:focus-visible,
.lp textarea:focus-visible,
.lp [role="button"]:focus-visible,
.lp [tabindex]:focus-visible {
  outline: 2px solid #1edcaa;
  outline-offset: 2px;
  border-radius: 4px;
}
.lp .lp-btn-mint:focus-visible,
.lp .lp-btn-mint-nav:focus-visible {
  outline: 2px solid #12253a;
  outline-offset: 3px;
}

/* Hero H1 prominence (Audit Batch B, May 2026) */
/* Lifts H1 visibility on /home-loans/*, /suburbs/* and /other-loans/* */
/* without disturbing the existing H2 visual anchor below it. */
.lp .lp-hero-h1 {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 0.85rem 0;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .lp .lp-hero-h1 {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }
}

/* Trust strip — visible MFPA/MFAA/ACL/reviews/lenders proof */
/* (Audit Batch B, May 2026 — rolled out below H2 on /home-loans/*) */
.lp-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  margin: 1.5rem auto 0;
  padding: 0.95rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.lp-trust-strip-light {
  background: var(--fog, #f5f7fa);
  border-color: var(--border, #e2e8f0);
}
.lp-trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
  white-space: nowrap;
}
.lp-trust-strip-light .lp-trust-strip-item {
  color: var(--navy, #12253a);
}
.lp-trust-strip-item strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}
.lp-trust-strip-light .lp-trust-strip-item strong {
  color: var(--navy, #12253a);
}
.lp-trust-strip-icon {
  flex: none;
  width: 14px;
  height: 14px;
  color: var(--mint, #1edcaa);
}
.lp-trust-strip-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
}
.lp-trust-strip-light .lp-trust-strip-divider {
  background: rgba(18, 37, 58, 0.14);
}
@media (max-width: 700px) {
  .lp-trust-strip {
    gap: 0.5rem 1rem;
    padding: 0.75rem 1rem;
  }
  .lp-trust-strip-item {
    font-size: 0.76rem;
  }
  .lp-trust-strip-divider { display: none; }
}

/* ── Blog CTA component (Task 2) ──────────────────
   Reusable conversion block for blog and answer pages.
   Drop one <aside class="lp lp-blog-cta" role="complementary"
   data-cta-variant="general|fhb|separation"> at the bottom
   of an article, immediately before related-posts / footer.
   Click tracking handled in ga-events.js.
*/
.lp .lp-blog-cta{
  background:var(--navy);
  border-radius:20px;
  border-top:2.5px solid var(--mint);
  padding:2rem 1.75rem;
  margin:3rem 0 1rem;
  color:#fff;
  font-family:'DM Sans',-apple-system,BlinkMacSystemFont,sans-serif;
}
.lp .lp-blog-cta-kicker{
  display:inline-block;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#1edcaa;
  margin-bottom:.6rem;
}
.lp .lp-blog-cta-title{
  font-size:clamp(1.2rem,2.4vw,1.55rem);
  font-weight:800;
  line-height:1.2;
  color:#fff;
  margin:0 0 .55rem;
}
.lp .lp-blog-cta-body{
  font-size:.92rem;
  line-height:1.7;
  color:rgba(255,255,255,.72);
  margin:0 0 1.25rem;
  max-width:60ch;
}
.lp .lp-blog-cta-btns{
  display:flex;
  gap:.65rem;
  flex-wrap:wrap;
  margin-bottom:1.1rem;
}
.lp .lp-blog-cta-btn{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.78rem 1.4rem;
  border-radius:999px;
  font-weight:800;
  font-size:.9rem;
  text-decoration:none;
  transition:transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.lp .lp-blog-cta-btn-primary{
  background:#1edcaa;
  color:#12253a;
}
.lp .lp-blog-cta-btn-primary:hover{
  background:#17c49a;
  transform:translateY(-1px);
}
.lp .lp-blog-cta-btn-secondary{
  background:transparent;
  color:#fff;
  border:1.5px solid rgba(255,255,255,.35);
}
.lp .lp-blog-cta-btn-secondary:hover{
  border-color:#1edcaa;
  color:#1edcaa;
}
.lp .lp-blog-cta-authority{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-size:.78rem;
  color:rgba(255,255,255,.55);
  padding-top:.85rem;
  border-top:1px solid rgba(255,255,255,.08);
}
.lp .lp-blog-cta-authority svg{
  width:14px;
  height:14px;
  color:#1edcaa;
  flex-shrink:0;
}
@media (max-width:540px){
  .lp .lp-blog-cta{padding:1.6rem 1.25rem;border-radius:16px}
  .lp .lp-blog-cta-btns{flex-direction:column;align-items:stretch}
  .lp .lp-blog-cta-btn{justify-content:center}
}
