/* ============================================================
   MAKAI — PAGES CSS v23
   All values from Figma JSON. No guessing.
   ============================================================ */

/* ── SHARED UTILITIES ──────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;      /* Figma: 12px */
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ED8A19;
  margin-bottom: 0.5rem;
}
.section-eyebrow--center { text-align: center; }

.section-underline {
  width: 60px;             /* Figma: 60×3 RECTANGLE bg=#ED8A19 */
  height: 3px;
  background: #ED8A19;
  margin-bottom: 1.5rem;
}
.section-underline--center { margin-left: auto; margin-right: auto; }

/* ── WHAT WE DO ─────────────────────────────────────────────
   Figma: 1920×893, white bg
   Layout: LEFT 320px (navy header + image below), RIGHT 824px (service rows)
   Total inner width: ~1144px, centered via container
   ─────────────────────────────────────────────────────────── */
.what-we-do {
  background: #FFFFFF;
  overflow: hidden;
  padding-bottom: 80px;
  padding-top: 80px;
}
.what-we-do__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
}

/* LEFT: navy header block + image */
.what-we-do__left {
  display: flex;
  flex-direction: column;
}
.what-we-do__left-header {
  background: #0C3157;
  padding: 40px 32px 32px;
  min-height: 194px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.what-we-do__left-header .section-eyebrow {
  color: #ED8A19;
  margin-bottom: 0.5rem;
}
/* Figma: h2 "What\nWe Do" Poppins 700 48px white */
.what-we-do__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3rem;          /* Figma: 48px */
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0;
}
.what-we-do__left-img {
  flex: 1;
  overflow: hidden;
  min-height: 300px; /* minimum so it always shows something */
}
.what-we-do__left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* RIGHT: service list */
.what-we-do__right {
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Each service row: border-bottom 1px #E5E0D8 */
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgb(229, 224, 216);
}
/* Last service row — no border, no special class needed */
.service-row--last {
  border-bottom: 1px solid rgb(229, 224, 216);
}

/* Icon: 52×52 cream bg #F2E9D8, r=8 */
.service-row__icon {
  width: 52px;
  height: 52px;
  background: #F2E9D8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-row__icon img {
  width: 28px;
  height: 28px;
  display: block;
}
/* Figma: title Poppins 600 20px #0C3157 */
.service-row__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;       /* Figma: 20px */
  color: #0C3157;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
/* Figma: body Poppins 400 14px #6B7280 */
.service-row__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;      /* Figma: 14px */
  color: #6B7280;
  line-height: 1.65;
  margin: 0;
}

/* Footer area — sits directly after last service row, no gap */
.what-we-do__footer {
  padding: 1.5rem 2rem 2rem;
  border-top: none;
}
.what-we-do__disclaimer {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
/* Figma: link 487×52, bg #0C3157, r=4, Poppins 600 12px white */
.what-we-do__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  height: 52px;
  background: #0C3157;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;       /* Figma: 12px */
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  border: 2px solid #0C3157;
}
.what-we-do__btn:hover { background: #ED8A19; border-color: #ED8A19; }

/* ── WHY BUYERS CHOOSE ──────────────────────────────────────
   Figma: 1920×859, full-width bg image + dark gradient overlay
   LEFT 564px: content. RIGHT 455×454: image.
   Container 1240px centered.
   ─────────────────────────────────────────────────────────── */
.why-choose {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.why-choose__bg {
  position: absolute;
  inset: 0;
}
.why-choose__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-choose__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.82);
}
.why-choose .container { position: relative; z-index: 1; }

.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 455px);
  gap: 4rem;
  align-items: center;
}

/* LEFT content */
/* Figma: eyebrow "Why Choose Us" amber 12px 600 */
.why-choose__eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ED8A19;
  margin-bottom: 0.75rem;
}
/* Figma: h2 Poppins 700 36px white */
.why-choose__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;       /* Figma: 36px */
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 0.875rem;
}
.why-choose__underline {
  width: 60px;
  height: 3px;
  background: #ED8A19;
  margin-bottom: 2rem;
}
.why-choose__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Figma: each item 564×36, amber 36×36 icon square, Poppins 500 16px white */
.why-choose__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 9px 0;           /* 36px height total */
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;          /* Figma: 16px */
  font-weight: 500;
  color: #FFFFFF;
}
/* Figma: overlay-border 36×36, bg #ED8A19, r unspecified (square) */
.why-choose__icon {
  width: 36px;
  height: 36px;
  background: #ED8A19;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-choose__icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  display: block;
}

/* RIGHT: image container — flush right */
.why-choose__image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Extend image to right edge of container */
  margin-right: -1.5rem; /* compensate container padding so image goes edge-right */
}
.why-choose__img {
  width: 100%;
  max-width: 480px;
  height: 480px;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 12px 0 0 12px; /* only left corners rounded — right sits flush */
  display: block;
  box-shadow: -8px 0 40px rgba(0,0,0,0.25);
}

/* ── HOW IT WORKS ───────────────────────────────────────────
   Figma: 1240×516, white bg, centered.
   Header: eyebrow + h2 centered + amber bar.
   4 steps in a row with arrow connectors between.
   Step: num amber 12px 700, circle 80×80 cream r=40
   border 3px #E5E0D8, icon 36×36, title 18px 600, body 14px.
   ─────────────────────────────────────────────────────────── */
.how-it-works {
  background: #FFFFFF;
  padding: 80px 0 60px;
}
.how-it-works__header {
  text-align: center;
  margin-bottom: 3rem;
}
/* Figma: h2 Poppins 700 36px #0C3157 */
.how-it-works__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;       /* Figma: 36px */
  color: #0C3157;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.how-it-works__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
.how-it-works__divider {
  width: 100%;
  height: 1px;
  background: rgb(229, 224, 216);
  margin-top: 3rem;
}

/* Each step */
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 202px;
  flex-shrink: 0;
}
/* Figma: step number amber Poppins 700 12px */
.hiw-step__num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #ED8A19;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
/* Figma: background-border 80×80, bg #F2E9D8, r=40, border 3px #E5E0D8 */
.hiw-step__circle {
  width: 80px;
  height: 80px;
  background: #F2E9D8;
  border-radius: 50%;
  border: 3px solid rgb(229, 224, 216);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.hiw-step__circle img {
  width: 36px;
  height: 36px;
  display: block;
}
/* Figma: title Poppins 600 18px #0C3157 */
.hiw-step__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;      /* Figma: 18px */
  color: #0C3157;
  margin-bottom: 0.5rem;
}
/* Figma: body Poppins 400 14px #6B7280 */
.hiw-step__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;      /* Figma: 14px */
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* Connector arrows between steps — 60×16 */
.hiw-connector {
  width: 60px;
  flex-shrink: 0;
  margin-top: 28px;         /* align with center of circles */
  padding: 0 4px;
}
.hiw-connector svg { width: 60px; height: 16px; display: block; }

/* ── FEES AND ENGAGEMENT ────────────────────────────────────
   Figma: 1192×591, white bg.
   LEFT: person image, natural size, no harsh crop.
   RIGHT: eyebrow, h2, amber bar, body 18px, contact line, btn.
   ─────────────────────────────────────────────────────────── */
.fees {
  background: #FFFFFF;
  padding: 80px 0;
  overflow: hidden;
}
.fees__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.fees__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #FFFFFF;
}
.fees__img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Figma: h2 Poppins 700 36px #0C3157 */
.fees__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;       /* Figma: 36px */
  color: #0C3157;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
/* Figma: body Poppins 400 18px #6B7280 */
.fees__body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;      /* Figma: 18px */
  color: #6B7280;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
/* Figma: "Speak with..." Arial 400 18px #1A2A3A, phone Poppins 600 20px amber */
.fees__contact {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  color: #1A2A3A;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.fees__phone {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;       /* Figma: 20px */
  color: #ED8A19;
  text-decoration: none;
}
.fees__phone:hover { text-decoration: underline; }
/* Figma: link 250×56, bg #0C3157, r=4, Poppins 600 14px white */
.fees__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 56px;
  padding: 0 1.75rem;
  background: #0C3157;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;      /* Figma: 14px */
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid #0C3157;
  text-decoration: none;
  transition: all 0.2s;
}
.fees__btn:hover { background: #ED8A19; border-color: #ED8A19; }

/* ── STATS BAND ─────────────────────────────────────────────
   Figma: 1920×268, bg image + dark overlay. 4 stats centered.
   Number: Poppins 700 60px white. Label: Poppins 500 14px white.
   ─────────────────────────────────────────────────────────── */
.stats-band {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.stats-band__bg {
  position: absolute;
  inset: 0;
}
.stats-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stats-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
}
.stats-band .container { position: relative; z-index: 1; }
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
/* Figma: number Poppins 700 60px white */
.stat-item__num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.75rem;       /* Figma: 60px */
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
}
/* Figma: label Poppins 500 14px white */
.stat-item__lbl {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;      /* Figma: 14px */
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── BLOGS & INSIGHTS ───────────────────────────────────────
   Figma: 1240×316, white bg.
   Header row: eyebrow + title left, "View All" outline btn right.
   Cards: 376×154, white r=12, border 1px #E5E0D8.
   ─────────────────────────────────────────────────────────── */
.blogs {
  background: #FFFFFF;
  padding: 80px 0;
}
.blogs__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}
/* Figma: h2 Poppins 700 36px #0C3157 */
.blogs__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #0C3157;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
/* Figma: "View All" link 152×56, border 2px #0C3157, r=4, Poppins 600 14px #0C3157 */
.blogs__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 56px;
  padding: 0 1.5rem;
  border: 2px solid #0C3157;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0C3157;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}
.blogs__view-all:hover { background: #0C3157; color: #FFFFFF; }
.blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
/* Figma: article 376×154, white r=12, border 1px #E5E0D8 */
.blog-card {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgb(229, 224, 216);
  padding: 1.5rem;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
/* Figma: date + comments Poppins 400 12px #6B7280 */
.blog-card__date,
.blog-card__comments {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #6B7280;
}
.blog-card__dot { color: #ED8A19; font-size: 0.75rem; }
/* Figma: title Poppins 600 20px #0C3157 */
.blog-card__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #0C3157;
  line-height: 1.3;
  margin: 0;
}
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: #ED8A19; }
/* Figma: "Read More →" amber Poppins 600 14px */
.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ED8A19;
  text-decoration: none;
  margin-top: auto;
}
.blog-card__read-more:hover { text-decoration: underline; }

/* ── TESTIMONIALS ───────────────────────────────────────────
   Figma: 1920×757, bg #F8F7F5.
   Header centered: eyebrow + h2 + amber bar.
   3 cards 376×407, r=12:
     outer 2: white bg border #E5E0D8
     center:  navy #0C3157 bg/border
   Quote mark: amber 64px 700.
   Body: Poppins 400 18px.
   Name: Poppins 600 16px. Role: 14px.
   ─────────────────────────────────────────────────────────── */
.testimonials {
  background: rgb(248, 247, 245);
  padding: 80px 0;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}
/* Figma: "Don't Trust Us,\nTrust Our Clients." Poppins 700 36px */
.testimonials__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;       /* Figma: 36px */
  color: #0C3157;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.testimonials__title--amber { color: #ED8A19; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Base card: Figma 376×407, r=12 */
.tcard {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgb(229, 224, 216);
  padding: 2rem;
  min-height: 407px;
  display: flex;
  flex-direction: column;
}
/* Featured (center): navy bg */
.tcard--featured {
  background: #0C3157;
  border-color: #0C3157;
}
/* Figma: quote mark amber Poppins 700 64px */
.tcard__quote {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 4rem;          /* Figma: 64px */
  color: #ED8A19;
  line-height: 1;
  margin-bottom: 0.5rem;
}
/* Figma: body Poppins 400 18px */
.tcard__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;      /* Figma: 18px */
  line-height: 1.7;
  color: #1A2A3A;
  flex: 1;
  margin-bottom: 1.25rem;
}
.tcard--featured .tcard__text { color: #FFFFFF; }
/* Figma: name Poppins 600 16px #0C3157 */
.tcard__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;          /* Figma: 16px */
  color: #0C3157;
}
.tcard--featured .tcard__name { color: #FFFFFF; }
/* Figma: role Poppins 400 14px #6B7280 */
.tcard__role {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;      /* Figma: 14px */
  color: #6B7280;
  margin-top: 0.2rem;
}
.tcard--featured .tcard__role { color: rgba(255,255,255,0.7); }

/* ── FOOTER CTA BAND ────────────────────────────────────────
   Figma: 1920×150, bg #0C3157.
   "Ready to Buy Smart?" eyebrow amber 12px +
   "Any Inquiry? Feel free to Contact Us." Poppins 700 30px white.
   Button: 202×56, bg #ED8A19, r=4, Poppins 600 14px white.
   ─────────────────────────────────────────────────────────── */
.footer-cta {
  background: #0C3157;
  padding: 0 0;
}
.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 150px;
  padding: 2rem 0;
}
.footer-cta__text {}
/* Figma: eyebrow "Ready to Buy Smart?" amber 12px 600 */
.footer-cta__eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ED8A19;
  margin-bottom: 0.4rem;
}
/* Figma: heading Poppins 700 30px white */
.footer-cta__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;      /* Figma: 30px */
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}
/* Figma: btn 202×56, bg #ED8A19, r=4, Poppins 600 14px white */
.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 56px;
  padding: 0 1.75rem;
  background: #ED8A19;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid #ED8A19;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}
.footer-cta__btn:hover { background: #FFFFFF; color: #ED8A19; }

/* ── RESPONSIVE ─────────────────────────────────────────────*/

/* ============================================================
   INNER PAGES CSS — restored from v19
   Covers: page-hero, about, contact, faq, prose, pagination
   ============================================================ */


/* ── INNER PAGE HERO ─────────────────────────────────────────*/
.page-hero { background: linear-gradient(135deg, #0C3157 0%, #1A2A3A 100%); padding: 100px 0 60px; }
.page-hero .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.page-hero__eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #ED8A19; display: block; margin-bottom: 12px; }
.page-hero__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #FFFFFF; line-height: 1.2; max-width: 700px; }
.page-hero__subtitle { font-size: 1rem; color: rgba(255,255,255,0.75); margin-top: 16px; max-width: 620px; line-height: 1.8; }

/* ── ABOUT PAGE ──────────────────────────────────────────────*/
.about-intro { padding: 80px 0; }
.about-intro__grid, .buyers-agent__grid, .our-approach__grid {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-intro__image img, .buyers-agent__image img { border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.18); width: 100%; height: 480px; object-fit: cover; }
.our-approach__image img { border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.18); width: 100%; }
.buyers-agent__list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.buyers-agent__item { display: flex; align-items: flex-start; gap: 16px; font-size: 0.9375rem; color: #1A2A3A; }
.buyers-agent__bullet { width: 8px; height: 8px; border-radius: 50%; background: #ED8A19; flex-shrink: 0; margin-top: 8px; }
.approach-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid #E5E0D8; }
.approach-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.approach-item__icon { width: 48px; height: 48px; background: #F2E9D8; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.approach-item__title { font-size: 1rem; font-weight: 600; color: #0C3157; margin-bottom: 6px; }
.approach-item__text { font-size: 0.875rem; color: #6B7280; line-height: 1.8; }
.who-we-help { background: #0C3157; padding: 80px 0; }
.who-we-help__grid { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.who-we-help__image img { border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.18); width: 100%; height: 460px; object-fit: cover; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.who-item { display: flex; gap: 12px; align-items: flex-start; }
.who-item__dot { width: 8px; height: 8px; border-radius: 50%; background: #ED8A19; flex-shrink: 0; margin-top: 6px; }

/* ── CONTACT ─────────────────────────────────────────────────*/
.contact-section { padding: 80px 0; }
.contact-grid { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: flex-start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-item__icon { width: 48px; height: 48px; background: #F2E9D8; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item__label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #ED8A19; margin-bottom: 4px; }
.contact-info-item__value { font-size: 0.9375rem; color: #1A2A3A; font-weight: 500; }
.contact-map { margin-top: 32px; border-radius: 12px; overflow: hidden; }
.contact-form-card { background: #FFFFFF; border-radius: 20px; padding: 40px; box-shadow: 0 16px 48px rgba(0,0,0,0.18); border: 1px solid #E5E0D8; }
.contact-form-card__title { font-size: 1.375rem; font-weight: 700; color: #0C3157; margin-bottom: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: #1A2A3A; margin-bottom: 8px; }
.form-control { width: 100%; padding: 12px 18px; font-family: 'Poppins'; font-size: 0.9375rem; color: #1A2A3A; background: #FFFFFF; border: 1.5px solid #E5E0D8; border-radius: 8px; outline: none; transition: border-color 150ms, box-shadow 150ms; }
.form-control:focus { border-color: #0C3157; box-shadow: 0 0 0 3px rgba(12,49,87,0.1); }
.form-control::placeholder { color: #A8A8A8; }
textarea.form-control { resize: vertical; min-height: 140px; }

/* ── FAQ ─────────────────────────────────────────────────────*/
.faq-section { padding: 80px 0; }
.faq-layout { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: flex-start; }
.faq-sidebar__card { background: #0C3157; border-radius: 20px; padding: 32px; position: sticky; top: 100px; }
.faq-sidebar__title { font-size: 1.125rem; font-weight: 700; color: #FFFFFF; margin-bottom: 12px; }
.faq-sidebar__text { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.faq-sidebar__divider { border-top: 1px solid rgba(255,255,255,0.12); margin: 20px 0; }
.faq-sidebar__phone { display: block; font-size: 1.375rem; font-weight: 700; color: #ED8A19; margin-top: 8px; }
.faq-item { border-bottom: 1px solid #E5E0D8; }
.faq-item:first-child { border-top: 1px solid #E5E0D8; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; font-size: 1rem; font-weight: 600; color: #0C3157; text-align: left; cursor: pointer; background: none; border: none; font-family: 'Poppins'; transition: color 0.25s; gap: 16px; }
.faq-question:hover { color: #ED8A19; }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: #0C3157; color: #FFFFFF; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all 0.25s; }
.faq-item.active .faq-icon { background: #ED8A19; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer__inner { padding-bottom: 24px; font-size: 0.9375rem; color: #6B7280; line-height: 1.85; }

/* ── PROSE ───────────────────────────────────────────────────*/
.prose-content { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.prose-content h2 { font-size: 1.5rem; font-weight: 700; color: #0C3157; margin: 2rem 0 0.75rem; }
.prose-content p { color: #6B7280; line-height: 1.9; margin-bottom: 1rem; }

/* ── PAGINATION ──────────────────────────────────────────────*/
.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; align-items: center; gap: 8px; }
.pagination .page-numbers { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 4px; font-size: 0.875rem; font-weight: 500; color: #1A2A3A; border: 1px solid #E5E0D8; transition: all 150ms; }
.pagination .page-numbers:hover, .pagination .page-numbers.current { background: #0C3157; border-color: #0C3157; color: #FFFFFF; }

/* ── RESPONSIVE ──────────────────────────────────────────────*/
@media (max-width: 1280px) {
  .what-we-do__grid { grid-template-columns: 360px 1fr; }
  .what-we-do__left-top { padding: 60px 30px 32px 24px; }
  .why-makai__inner { grid-template-columns: 1fr; }
  .why-makai__right-wrap { width: 100%; max-width: 469px; height: 400px; margin: 40px auto 0; }
  .why-list__item { width: 100%; }
  .why-makai__divider { width: 100%; }
  .buyer-advocacy__grid { grid-template-columns: 1fr 1fr; }
  .buyer-advocacy__img-wrap { width: 100%; }
}
@media (max-width: 1024px) {
  .what-we-do__grid { grid-template-columns: 1fr; }
  .what-we-do__left-top { padding: 40px 24px 24px; }
  .fees__grid { grid-template-columns: 1fr; }
  .fees__image { height: 340px; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .testimonial-card--featured { width: 100%; }
}
@media (max-width: 768px) {
  .hero__card { aspect-ratio: 4/3; max-height: 380px; }
  .hero__title { font-size: 36px; line-height: 44px; }
  .hero__card-text { left: 24px; padding-bottom: 24px; }
  .hero-features-strip__grid { grid-template-columns: 1fr; }
  .hero-feature-item { border-right: none; border-bottom: 1px solid rgba(139,139,139,0.15); }
  .hero-feature-item:last-child { border-bottom: none; }
  .buyer-advocacy__grid { grid-template-columns: 1fr; gap: 40px; }
  .buyer-advocacy__img-wrap { width: 100%; height: 350px; }
  .buyer-advocacy__badge { right: 0; }
  .buyer-advocacy__content h2, .buyer-advocacy__body, .buyer-advocacy__list-item { font-size: 18px; line-height: 28px; }
  .buyer-advocacy__with { font-size: 18px; }
  .about-intro__grid, .buyers-agent__grid, .our-approach__grid, .who-we-help__grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .process__steps { flex-direction: column; align-items: center; }
  .process-step__connector { transform: rotate(90deg); margin: 0; }
  .footer-cta-band { height: auto; min-height: 465px; }
  .footer-cta-band__overlay, .footer-cta-band__content { width: 100%; position: relative; }
  .footer-cta-band__content { padding: 60px 24px; }
  .footer-cta-band__title { font-size: 32px; line-height: 42px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar__card { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .why-makai__left h2 { font-size: 32px; line-height: 40px; }
  .why-list__text { font-size: 18px; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero__title { font-size: 28px; line-height: 36px; }
  .what-we-do__left-title { font-size: 36px; }
  .stat-item__number { font-size: 36px; }
  .testimonials__header h2 { font-size: 32px; }
}

/* ============================================================

/* ── ABOUT PAGE SPECIFIC ────────────────────────────────────*/

.about-hero { background: #0C3157; padding: 60px 0; }
.about-hero .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.about-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-hero__eyebrow { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #ED8A19; margin-bottom: 1rem; }
.about-hero__title { font-family: 'Poppins'; font-weight: 700; font-size: 2.5rem; line-height: 1.2; color: #FFFFFF; margin-bottom: 1.25rem; }
.about-hero__subtitle { font-family: 'Poppins'; font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.75); }
.about-hero__image { border-radius: 12px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.about-hero__image img { width: 100%; display: block; }

.about-section { padding: 80px 0; background: #FFFFFF; }
.about-section--alt { background: #F8F7F5; }
.about-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.about-section__image { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.about-section__image img { width: 100%; display: block; max-height: 500px; object-fit: cover; }
.about-section__title { font-family: 'Poppins'; font-weight: 700; font-size: 2rem; color: #0C3157; margin-bottom: 1rem; }
.about-section__content p { font-family: 'Poppins'; font-size: 0.9375rem; line-height: 1.85; color: #454545; margin-bottom: 1rem; }
.about-section__content p:last-child { margin-bottom: 0; }

.about-checklist { display: flex; flex-direction: column; gap: 0.875rem; margin-top: 1.25rem; list-style: none; padding: 0; }
.about-checklist__item { display: flex; align-items: flex-start; gap: 0.875rem; font-family: 'Poppins'; font-size: 0.9375rem; color: #454545; line-height: 1.6; }
.about-checklist__dot { width: 10px; height: 10px; border-radius: 50%; background: #ED8A19; flex-shrink: 0; margin-top: 5px; }

.approach-list { display: flex; flex-direction: column; gap: 1.5rem; }
.approach-item { display: flex; align-items: flex-start; gap: 1rem; }
.approach-item__icon { width: 40px; height: 40px; background: #F2E9D8; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.approach-item__title { font-family: 'Poppins'; font-weight: 600; font-size: 1rem; color: #0C3157; margin-bottom: 4px; }
.approach-item__text { font-family: 'Poppins'; font-size: 0.875rem; color: #6B7280; line-height: 1.75; margin: 0; }

.who-we-help-section { background: #0C3157; padding: 80px 0; }
.who-we-help-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.who-we-help-section__title { font-family: 'Poppins'; font-weight: 700; font-size: 2rem; color: #FFFFFF; margin-bottom: 1rem; }
.who-we-help-section__intro { font-family: 'Poppins'; font-size: 0.9375rem; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; }
/* who-grid-2col and who-item-card defined in wwh-section block below */
.who-we-help-section__image { border-radius: 12px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.who-we-help-section__image img { width: 100%; display: block; max-height: 520px; object-fit: cover; }

@media (max-width: 768px) {
  .about-hero__grid, .about-section__grid, .who-we-help-section__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero__title { font-size: 1.875rem; }
  .who-grid-2col { grid-template-columns: 1fr; }
}

/* fees__image styles defined above */

/* Who We Help image — white bg person needs light container */
.who-we-help-section__image {
  background: #FFFFFF !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
}
.who-we-help-section__image img {
  object-fit: contain !important;
  object-position: bottom center !important;
  max-height: 480px !important;
  width: auto !important;
}

/* ── ABOUT PAGE RESPONSIVE ───────────────────────────────────*/
@media (max-width: 768px) {
  .about-hero__grid, .about-section__grid, .who-we-help-section__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero__title { font-size: 1.875rem; }
  .who-grid-2col { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar__card { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── WHO WE HELP SECTION (About page) ───────────────────────*/
.wwh-section {
  width: 100%;
  overflow: hidden;
}
.wwh-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
/* LEFT: full navy, content centered within its column */
.wwh-section__left {
  background: #0C3157;
  padding: 60px 60px 60px 40px; /* more padding right to center toward middle */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* On wide screens, constrain content width but keep bg full */
@media (min-width: 1240px) {
  .wwh-section__left {
    padding: 60px 80px 60px calc((100vw - 1240px) / 2 + 60px);
  }
  .wwh-section__right {
    padding-right: calc((100vw - 1240px) / 2);
  }
}
.wwh-section__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.wwh-section__intro {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}
/* RIGHT: image fills column fully */
.wwh-section__right {
  background: #FFFFFF;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.wwh-section__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Who grid inside wwh-section */
.who-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.who-item-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.who-item-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ED8A19;
  flex-shrink: 0;
  margin-top: 6px;
}
.who-item-card strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.who-item-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .wwh-section__grid { grid-template-columns: 1fr; }
  .wwh-section__left { padding: 52px 40px; }
  .wwh-section__right { min-height: 360px; }
  .wwh-section__img { height: 360px; }
}
@media (max-width: 768px) {
  .wwh-section__left { padding: 40px 24px; }
  .wwh-section__title { font-size: 1.625rem; }
  .who-grid-2col { grid-template-columns: 1fr; }
  .wwh-section__img { height: 300px; }
}

/* ── FAQ CTA SECTION (Speak with Jamie) ─────────────────────*/
.faq-cta-section {
  background: var(--cream);
  padding: 80px 0 100px; /* extra bottom padding before footer CTA */
  text-align: center;
}
.faq-cta-section .section-title {
  font-size: 2.25rem;
  color: var(--navy);
}
.faq-cta-section .section-subtitle {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.8;
}
.faq-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .faq-cta-btns { flex-direction: column; align-items: center; }
  .faq-cta-btns .btn { width: 100%; justify-content: center; }
  .faq-cta-section .section-title { font-size: 1.75rem; }
}

/* ── FAQ SIDEBAR CALL CTA ────────────────────────────────────*/
.faq-sidebar__contact-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.875rem;
  line-height: 1.5;
}
.faq-sidebar__call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #ED8A19;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.faq-sidebar__call-btn:hover { background: #FFFFFF; color: #0C3157; }

/* ── ZOHO FORM — Custom styling to match Makai brand ─────────
   Overrides default Zoho form.css with site fonts/colors
   ──────────────────────────────────────────────────────────── */
.contact-form-card__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.zoho-form-container { width: 100%; }
#zoho-contact-form { width: 100%; }

/* Field wrapper */
.zf-field {
  margin-bottom: 1.25rem;
}
.zf-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
.zf-field-row .zf-field { margin-bottom: 1.25rem; }

/* Labels */
.zf-field__label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A2A3A;
  margin-bottom: 0.5rem;
}
.zf-field__required {
  color: #ED8A19;
  font-style: normal;
  margin-left: 2px;
}

/* Inputs & Textarea */
.zf-field__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  color: #1A2A3A;
  background: #FFFFFF;
  border: 1.5px solid #E5E0D8;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.zf-field__input:focus {
  border-color: #0C3157;
  box-shadow: 0 0 0 3px rgba(12, 49, 87, 0.1);
}
.zf-field__input::placeholder { color: #A8A8A8; }
.zf-field__textarea {
  resize: vertical;
  min-height: 140px;
}

/* Error messages */
.zf-field__error {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: #DC2626;
  margin-top: 0.375rem;
}

/* Submit button */
.zf-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 52px;
  background: #0C3157;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.zf-submit-btn:hover { background: #ED8A19; }

@media (max-width: 600px) {
  .zf-field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── ZOHO FORM THANK YOU MESSAGE ─────────────────────────────*/
.zoho-thankyou {
  text-align: center;
  padding: 3rem 2rem;
}
.zoho-thankyou__icon {
  width: 80px;
  height: 80px;
  background: #F2E9D8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.zoho-thankyou__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #0C3157;
  margin-bottom: 0.875rem;
}
.zoho-thankyou__text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.75;
  max-width: 400px;
  margin: 0 auto 2rem;
}
.zoho-thankyou__call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ED8A19;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.zoho-thankyou__call:hover { background: #0C3157; }
