/* ============================================================
   Linked Escrow — custom.css
   Standalone stylesheet — no Webflow dependency
   ============================================================ */

/* ── Mont Font Face ──────────────────────────────────────── */
@font-face { font-family: 'Mont'; src: url('fonts/Mont-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mont'; src: url('fonts/Mont-SemiBold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mont'; src: url('fonts/Mont-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }

/* ── Skip Link (accessibility) ───────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--turquoise);
  color: var(--dark-blue);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  font-weight: 600;
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── Reset & Box Model ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: hidden;
}

body {
  font-family: 'Mont', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--neutral-800);
  background: #ffffff;
  overflow-x: hidden;
}

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

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

/* ── Brand Color Palette ─────────────────────────────────── */
/* All colors sourced directly from Linked Escrow brand guide */
:root {
  --white:            #ffffff;   /* White */
  --gray-light:       #f7f9fc;   /* Gray */
  --turquoise-light:  #9ef8ec;   /* Light Turquoise */
  --turquoise:        #5ae9d7;   /* Turquoise */
  --orange:           #ff7958;   /* Orange */
  --blue:             #022b6d;   /* Blue */
  --gray:             #9197ae;   /* Dark Gray */
  --dark-blue:        #131f4a;   /* Dark Blue */

  /* Semantic aliases */
  --navy:             #022b6d;
  --navy-dark:        #131f4a;

  /* UI scale — all derived from the 8 brand colors */
  --neutral-50:       #f7f9fc;
  --neutral-100:      #f7f9fc;
  --neutral-200:      rgba(145,151,174,0.18);
  --neutral-300:      rgba(145,151,174,0.38);
  --neutral-400:      #9197ae;
  --neutral-500:      #9197ae;
  --neutral-600:      #9197ae;
  --neutral-700:      #022b6d;
  --neutral-800:      #131f4a;
  --neutral-900:      #131f4a;
  --neutral-1000:     #131f4a;
}

/* ── Base Typography ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Mont', sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

.heading-1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--navy-dark); letter-spacing: -0.02em; }
.heading-2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy-dark); letter-spacing: -0.015em; }
.heading-3 { font-size: clamp(1.65rem, 3vw, 2.4rem); color: var(--navy-dark); letter-spacing: -0.01em; font-family: 'Mont', sans-serif; }
.heading-4 { font-size: clamp(1.2rem, 2vw, 1.6rem); color: var(--navy-dark); letter-spacing: -0.005em; font-family: 'Mont', sans-serif; }
.heading-5 { font-size: 1.1rem; color: var(--navy-dark); font-family: 'Mont', sans-serif; }

.body-m { font-size: 1rem; line-height: 1.7; }
.body-s { font-size: 0.9rem; line-height: 1.65; }
.body-xs { font-size: 0.8rem; line-height: 1.55; }
.bold { font-weight: 600; }

/* ── Layout: Container ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Display utilities ───────────────────────────────────── */
.w-inline-block { display: inline-block; }
.reduce-rem { font-size: 0.875rem; }
.aligh-top { vertical-align: top; }

/* ── Components ──────────────────────────────────────────── */
.tag {
  background: var(--turquoise);
  color: var(--dark-blue);
  border-radius: 2rem;
  padding: 0.4rem 1.1rem 0.4rem calc(1.1rem + 0.08em);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--turquoise);
  color: #131f4a;
  border-radius: 0.83rem;
  padding: 0.9rem 1.94rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90,233,215,0.3);
}

.btn-primary-white {
  background: white;
  color: var(--navy-dark);
  border-radius: 0.83rem;
  padding: 0.9rem 1.94rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--neutral-200);
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.btn-primary-white:hover {
  background: var(--neutral-100);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2,43,109,0.08);
}

/* ── Section Wrappers ────────────────────────────────────── */
.set-2-block-wrap {
  background: var(--neutral-100);
  border-radius: 1.39rem;
  overflow: hidden;
  position: relative;
}
.set-2-block-wrap.white { background: white; }
.set-2-block-wrap.dark {
  background:
    linear-gradient(to bottom, rgba(19,31,74,0.85) 0%, rgba(19,31,74,0.82) 100%),
    url('images/home-interior.jpg') center center / cover no-repeat;
  color: white;
}
.set-2-block-wrap.dark .heading-3,
.set-2-block-wrap.dark .heading-4,
.set-2-block-wrap.dark .body-m { color: white; }

/* ── Header ──────────────────────────────────────────────── */
.section.mod--header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--neutral-200);
  padding: 0;
}

.is-header { padding: 0 6vw; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 1.5rem;
}

.logo-header {
  display: flex;
  align-items: center;
  gap: 0.69rem;
  font-size: 1.11rem;
  font-weight: 600;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.logo-wordmark {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Mont', sans-serif;
}

.le-logo-icon {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.le-logo-horizontal {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.le-logo-horizontal--footer {
  height: 36px;
}

.nav.set-2.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav__link.set-2 {
  color: var(--navy-dark);
  font-size: 0.97rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.15s;
}
.nav__link.set-2:hover { background: var(--neutral-100); }
.nav__link.set-2.active {
  background: var(--neutral-100);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.burger-icon-wrap {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: none;
}

/* Mobile Menu */
.mob-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem 1.5rem;
  background: white;
  border-top: 1px solid var(--neutral-200);
}
.mob-menu.is-open { display: flex; }
.mob-menu .nav__link {
  color: var(--navy-dark);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--neutral-100);
  display: block;
}

/* ── Page Wrapper ────────────────────────────────────────── */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }

/* ── Hero (Homepage) ─────────────────────────────────────── */
.le-hero {
  min-height: 92vh;
  background:
    linear-gradient(to bottom, rgba(19,31,74,0.82) 0%, rgba(19,31,74,0.75) 60%, rgba(19,31,74,0.9) 100%),
    url('images/house-exterior.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.le-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(90,233,215,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.le-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
}

.le-hero__inner .heading-3 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}

.le-hero__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
}

.le-hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.le-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.le-hero__stat-item { text-align: center; }

.le-hero__stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--turquoise);
  line-height: 1.1;
}

.le-hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.le-page-hero {
  background: linear-gradient(160deg, #f7f9fc 0%, #ffffff 60%);
  border-bottom: 1px solid var(--neutral-200);
  padding: 5rem 6vw 4rem;
  position: relative;
}

.le-page-hero .container { position: relative; z-index: 1; }

.le-page-hero .heading-3 {
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.75rem 0 1.25rem;
}

.le-page-hero__sub {
  color: var(--neutral-600);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 42rem;
}

.le-page-hero .tag { margin-bottom: 0.5rem; }

/* ── Brand Typography Overrides ─────────────────────────── */
.heading-3, .heading-4, .heading-5 {
  font-family: 'Mont', sans-serif;
}

.heading-3 { letter-spacing: -0.01em; }
.heading-4 { letter-spacing: -0.005em; }

/* ── Trust Bar ───────────────────────────────────────────── */
.le-trust-bar {
  background: var(--neutral-50);
  border-bottom: 1px solid var(--neutral-200);
  padding: 1.1rem 1.5rem;
}

.le-trust-bar__inner {
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.le-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--neutral-600);
}

.le-trust-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turquoise);
  flex-shrink: 0;
}

/* ── Process Steps ───────────────────────────────────────── */
.le-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 52rem;
  margin: 0 auto;
}

.le-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}

.le-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 4.2rem;
  bottom: 0;
  width: 2px;
  background: var(--neutral-200);
}

.le-step__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--turquoise);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.le-step__content { flex: 1; padding-top: 0.25rem; }
.le-step__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}
.le-step__body {
  font-size: 0.97rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* ── Checklist ───────────────────────────────────────────── */
.le-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.le-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.55;
}

.le-checklist li::before {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--turquoise);
  flex-shrink: 0;
  margin-top: 0.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23131f4a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Cards ───────────────────────────────────────────────── */
.le-card {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 1.11rem;
  padding: 1.75rem 1.5rem;
  transition: all 0.2s ease-out;
}
.le-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2,43,109,0.12);
}

.le-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.55rem;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.le-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.le-card__body {
  font-size: 0.97rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* ── Cards Grids ─────────────────────────────────────────── */
.le-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.le-cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.le-cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ── Stats Row ───────────────────────────────────────────── */
.le-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--neutral-100);
  border-radius: 1.11rem;
  padding: 2rem;
}

.le-stat-item { text-align: center; }
.le-stat-num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.le-stat-label {
  font-size: 0.85rem;
  color: var(--neutral-500);
  margin-top: 0.4rem;
  line-height: 1.45;
}

/* ── Feature Row ─────────────────────────────────────────── */
.le-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.le-feature-row.reverse { direction: rtl; }
.le-feature-row.reverse > * { direction: ltr; }

.le-feature-visual {
  background: var(--neutral-100);
  border-radius: 1.39rem;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.le-feature-visual__item {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--neutral-700);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.le-feature-visual__item::before {
  content: '';
  background: var(--turquoise);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23131f4a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Testimonials ────────────────────────────────────────── */
.le-testimonial {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 1.11rem;
  padding: 2rem;
}

.le-testimonial__quote {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.25rem;
}

.le-testimonial__quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-size: 2.5rem;
  color: var(--turquoise);
  line-height: 1;
  font-family: Georgia, serif;
}

.le-testimonial__author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
}

/* ── "What We Always Deliver" Card ───────────────────────── */
.le-delivers-wrap {
  padding: 0 1.25rem;
}

.le-delivers-card {
  background:
    linear-gradient(to bottom, rgba(19,31,74,0.84) 0%, rgba(19,31,74,0.80) 100%),
    url('images/home-interior.jpg') center center / cover no-repeat;
  color: white;
  padding: 4rem 4rem 3.5rem;
  border-radius: 1.39rem 1.39rem 0 0;
  max-width: 90rem;
  margin: 0 auto;
  overflow: hidden;
}

.le-delivers-card .le-checklist li::before {
  background: var(--turquoise);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23131f4a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Gallery (offset / collage) ──────────────────────────── */
.le-gallery-section {
  padding: 2rem 0;
  overflow: hidden;
  background: white;
}

.le-gallery {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  height: 36rem;
}

.le-gallery__img {
  position: absolute;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(2,43,109,0.10), 0 4px 12px rgba(0,0,0,0.04);
}

.le-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.le-gallery__text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  padding: 2.5rem 3rem;
}

@media (max-width: 1024px) {
  .le-gallery { height: 28rem; }
}

@media (max-width: 768px) {
  .le-gallery-section { padding: 0; }
  .le-gallery {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem 1.25rem;
  }
  .le-gallery__img {
    position: static;
    width: 100% !important;
    height: auto !important;
    max-width: 22rem;
  }
  .le-gallery__img img { height: 12rem; }
  .le-gallery__text {
    position: static;
    transform: none;
    padding: 1.5rem 0;
  }
}

/* ── CTA Banner ──────────────────────────────────────────── */
.le-cta-banner-wrap {
  padding: 0 1.25rem;
}

.le-cta-banner {
  background:
    linear-gradient(to bottom, rgba(19,31,74,0.82) 0%, rgba(19,31,74,0.78) 60%, rgba(19,31,74,0.88) 100%),
    url('images/house-sunset.jpg') center center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.39rem 1.39rem 0 0;
  max-width: 90rem;
  margin: 0 auto;
}

.le-cta-banner .container { position: relative; z-index: 1; }

.le-cta-banner .heading-3 {
  color: white;
  font-size: 2.5rem;
  margin: 0.75rem 0 1.25rem;
}

.le-cta-banner__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.le-cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Notice / Info Box ───────────────────────────────────── */
.le-notice {
  background: #f7f9fc;
  border-left: 4px solid var(--navy);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.97rem;
  color: var(--neutral-700);
  line-height: 1.65;
}
.le-notice strong { color: var(--navy-dark); }

/* ── FAQ ─────────────────────────────────────────────────── */
.le-faq-item {
  border-bottom: 1px solid var(--neutral-200);
  padding: 1.5rem 0;
}
.le-faq-item__q {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}
.le-faq-item__a {
  font-size: 0.97rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* ── Bio Card ────────────────────────────────────────────── */
.le-bio-card {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 1.39rem;
  overflow: hidden;
}

.le-bio-card__header {
  background: var(--neutral-100);
  border-bottom: 1px solid var(--neutral-200);
  padding: 2.5rem 2.5rem 2rem;
}

.le-bio-card__headshot {
  width: 7rem;
  height: 7rem;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
}

.le-bio-card__name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.le-bio-card__role {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.le-bio-card__years {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.le-bio-card__years span {
  font-size: 0.88rem;
  color: var(--neutral-500);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.le-bio-card__body { padding: 2.5rem; }

.le-bio-card__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--turquoise);
  color: var(--navy-dark);
  padding: 0.6rem 1.25rem;
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.le-bio-card__bio {
  font-size: 0.97rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.le-bio-card__specialties {
  font-size: 0.88rem;
  color: var(--neutral-500);
  line-height: 1.65;
  margin-top: 1.25rem;
}

.le-bio-card__specialties strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

/* ── License Box ─────────────────────────────────────────── */
.le-license-box {
  border: 1px solid var(--neutral-200);
  border-radius: 1.11rem;
  overflow: hidden;
}

.le-license-box__header {
  background: var(--neutral-100);
  color: var(--navy-dark);
  border-bottom: 1px solid var(--neutral-200);
  padding: 1.25rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.le-license-box__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.le-license-box__item {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--neutral-200);
  border-right: 1px solid var(--neutral-200);
}

.le-license-box__item:nth-child(even) { border-right: none; }

.le-license-box__field {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.35rem;
}

.le-license-box__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dark);
}

/* ── Contact Form ────────────────────────────────────────── */
.le-contact-form {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 1.39rem;
  padding: 2.5rem;
}

.le-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.le-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.le-form-group:last-child { margin-bottom: 0; }

.le-form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.le-form-group input,
.le-form-group select,
.le-form-group textarea {
  border: 1px solid var(--neutral-300);
  border-radius: 0.6rem;
  padding: 0.8rem 1rem;
  font-family: 'Mont', sans-serif;
  font-size: 0.97rem;
  color: var(--neutral-800);
  background: white;
  transition: border-color 0.15s;
  outline: none;
}

.le-form-group input:focus,
.le-form-group select:focus,
.le-form-group textarea:focus {
  border-color: var(--navy);
  outline: 2px solid var(--turquoise);
  outline-offset: 2px;
}

.le-form-group textarea { min-height: 7rem; resize: vertical; }
.le-form-group select { cursor: pointer; }

.le-form-consent {
  font-size: 0.82rem;
  color: var(--neutral-500);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.le-form-helper {
  font-size: 0.85rem;
  color: var(--neutral-500);
  margin-top: 0.75rem;
}

/* ── Contact Info ────────────────────────────────────────── */
.le-contact-info {
  background: var(--neutral-100);
  border-radius: 1.11rem;
  padding: 2rem;
}

.le-contact-info__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--neutral-200);
}
.le-contact-info__item:last-child { border-bottom: none; padding-bottom: 0; }
.le-contact-info__item:first-child { padding-top: 0; }

.le-contact-info__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--turquoise);
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.le-contact-info__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.le-contact-info__value {
  font-size: 0.97rem;
  color: var(--navy-dark);
  font-weight: 500;
  line-height: 1.55;
}
.le-contact-info__value a { color: var(--navy); font-weight: 600; }

/* ── Hours Table ─────────────────────────────────────────── */
.le-hours {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 1.11rem;
  overflow: hidden;
  margin-top: 1.25rem;
}

.le-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--neutral-200);
  font-size: 0.97rem;
}
.le-hours-row:last-child { border-bottom: none; }
.le-hours-row .day { color: var(--neutral-600); }
.le-hours-row .time { font-weight: 600; color: var(--navy-dark); }

/* ── Divider ─────────────────────────────────────────────── */
.le-divider {
  border: none;
  border-top: 1px solid var(--neutral-200);
  margin: 2.5rem 0;
}

/* ── Eyebrow ─────────────────────────────────────────────── */
.le-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 0.75rem;
  display: block;
}
.le-eyebrow.dark { color: var(--navy-dark); }
.le-eyebrow.white { color: var(--turquoise); }
.set-2-block-wrap.dark .le-eyebrow { color: var(--turquoise); }

/* ── Comparison Columns ──────────────────────────────────── */
.le-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.le-comparison__col {
  border-radius: 1.11rem;
  padding: 2rem;
  border: 1px solid var(--neutral-200);
}

.le-comparison__col.featured {
  background: var(--neutral-900);
  border-color: var(--neutral-900);
  color: white;
}

.le-comparison__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.le-comparison__col.featured .le-comparison__title { color: var(--turquoise); }
.le-comparison__col:not(.featured) .le-comparison__title { color: var(--navy-dark); }

.le-comparison__sub {
  font-size: 0.9rem;
  color: var(--neutral-500);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.le-comparison__col.featured .le-comparison__sub { color: rgba(255,255,255,0.65); }

/* ── Disclaimer Box ──────────────────────────────────────── */
.le-disclaimer {
  background: var(--neutral-100);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.7;
}
.le-disclaimer strong { color: var(--neutral-800); }

/* ── DFPI Badge ──────────────────────────────────────────── */
.le-dfpi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(90,233,215,0.1);
  border: 1px solid rgba(90,233,215,0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.88rem;
  color: var(--turquoise);
  font-weight: 500;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* ── Section spacing ─────────────────────────────────────── */
.section { padding: 4rem 6vw; position: relative; }
.section.large { padding: 6rem 6vw; }
.section.small { padding: 2.5rem 6vw; }

/* ── Grid Utilities ──────────────────────────────────────── */
.le-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.le-checklist-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── About Cards (Webflow) ───────────────────────────────── */
.grid-item.about-2 {
  background: var(--neutral-100);
  border-radius: 1.11rem;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}
.grid-item-info { flex: 1; }

/* ── Full-bleed container variants ───────────────────────── */
.container.full { max-width: 100%; }
.container.full.is-header { max-width: 100%; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--neutral-100);
  padding: 2rem 1.25rem;
}

.footer-wrap {
  background: white;
  border-radius: 1.39rem;
  padding: 4rem 4rem 2.5rem;
  max-width: 90rem;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
}

.footer-top-col-1 {
  flex: 0 0 22rem;
  max-width: 22rem;
}

.footer-top-col-2 {
  display: flex;
  gap: 3rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-top-col-2-item { min-width: 10rem; }

.link-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-link {
  color: var(--neutral-500);
  font-size: 0.92rem;
  line-height: 1.6;
  transition: color 0.15s;
  display: block;
}
.footer-nav-link:hover { color: var(--turquoise); }

.footer-bot {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
}

/* ── Visual label pill ───────────────────────────────────── */
.le-label-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  color: var(--navy-dark);
  border-radius: 2rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 1.5rem;
}

.le-label-pill span {
  background: var(--turquoise);
  color: var(--navy-dark);
  border-radius: 1rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* ── Responsive: 1024px ──────────────────────────────────── */
@media (max-width: 1024px) {
  .le-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .le-cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .le-stats { grid-template-columns: repeat(2, 1fr); }
  .le-feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .le-feature-row.reverse { direction: ltr; }
  .footer-top { flex-direction: column; gap: 2.5rem; }
  .footer-top-col-1 { max-width: 100%; flex: auto; }
  .footer-wrap { padding: 3rem 2.5rem 2rem; }
}

/* ── Responsive: 768px ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav.set-2.desktop-nav { display: none; }
  .burger-icon-wrap { display: flex; }
  .header-actions .btn-primary { display: none; }

  .le-hero { min-height: 80vh; padding: 5rem 1.25rem 3rem; }
  .le-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .le-hero__stat-num { font-size: 1.5rem; }
  .le-page-hero { padding: 4rem 1.25rem 3rem; }

  .le-cards-grid { grid-template-columns: 1fr; }
  .le-cards-grid-2 { grid-template-columns: 1fr; }
  .le-cards-grid-4 { grid-template-columns: 1fr; }
  .le-stats { grid-template-columns: repeat(2, 1fr); }
  .le-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .le-comparison { grid-template-columns: 1fr; }
  .le-checklist-two-col { grid-template-columns: 1fr; }
  .le-form-row { grid-template-columns: 1fr; }
  .le-license-box__grid { grid-template-columns: 1fr; }
  .le-license-box__item { border-right: none; }

  .footer-top-col-2 { flex-direction: column; gap: 2rem; }
  .footer-wrap { padding: 2.5rem 1.5rem 2rem; }
  .le-cta-banner { padding: 3.5rem 1.5rem; }
  .le-delivers-card { padding: 3rem 1.5rem 2.5rem; }

  /* Hide feature visual cards on mobile (duplicates checklist) */
  .le-feature-visual { display: none; }

  /* Unify button alignment: always centered on mobile */
  .btn-primary, .btn-primary-white { display: flex; justify-content: center; width: 100%; }
  .le-hero__ctas { flex-direction: column; align-items: stretch; }
  .le-cta-banner__actions { flex-direction: column; align-items: stretch; }
  .text-center .btn-primary { width: auto; }
  .set-2-block-wrap .btn-primary { width: auto; text-align: center; }

  .header-inner { height: 3.75rem; }
  .is-header { padding: 0 1.25rem; }
  .le-cta-banner .heading-3 { font-size: 1.85rem; }
  .section { padding: 3rem 1.25rem; }
  .section.large { padding: 4rem 1.25rem; }
  .le-contact-form { padding: 1.5rem; }

  .le-trust-bar__inner { gap: 1rem; }
  .le-feature-visual { padding: 1.5rem 1rem; }
  .le-comparison__col { padding: 1.5rem 1rem; }
  .le-bio-card__headshot { width: 5rem; height: 5rem; }

  .le-form-group input,
  .le-form-group select,
  .le-form-group textarea { padding: 1rem 1.2rem; min-height: 48px; }

  .btn-primary, .btn-primary-white { padding: 1rem 2rem; }
}

/* ── Responsive: 480px ───────────────────────────────────── */
@media (max-width: 480px) {
  .le-stats { grid-template-columns: 1fr; }
  .le-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .le-hero__stat-num { font-size: 1.25rem; }
  .le-hero__stat-label { font-size: 0.75rem; }
}
