/*==================================================
  HOMEBUYER REPORT PAGE
==================================================*/

.service-page-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
}

/* Hero */
.service-page-hero {
  padding: 5.5rem 0;
  background: var(--surface-alt);
}

.service-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
  gap: clamp(4rem, 7vw, 8rem);
  align-items: center;
}

.service-page-hero__content h1 {
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.8rem, 5.8vw, 6.5rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.service-page-hero__intro {
  max-width: 720px;
  margin: 1.7rem 0 0;
  color: var(--slate);
  font-size: 1.12rem;
  line-height: 1.75;
}

.service-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.service-page-btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
  text-decoration: none;
}

.service-page-btn-outline:hover,
.service-page-btn-outline:focus {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-page-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.8rem;
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.service-page-hero__trust span {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
}

.service-page-hero__trust span::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--gold);
}

.service-page-hero__image {
  min-height: 610px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-page-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

/* Intro */
.service-intro-section,
.service-trust-section {
  padding: var(--section-space) 0;
  background: var(--white);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr);
  gap: clamp(4rem, 8vw, 9rem);
}

.service-intro-heading h2,
.section-heading-narrow h2,
.section-heading-wide h2,
.buyer-outcomes-heading h2,
.service-faq-heading h2,
.service-final-cta h2 {
  color: var(--ink);
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.service-intro-copy {
  max-width: 820px;
  padding-top: 2rem;
}

.service-intro-copy p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-intro-copy .service-intro-lead {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Suitability */
.survey-suitability-section,
.service-faq-section {
  padding: var(--section-space) 0;
  background: var(--surface-alt);
}

.section-heading-narrow {
  max-width: 850px;
  margin-bottom: 3.5rem;
}

.section-heading-narrow > p:last-child {
  max-width: 700px;
  margin-top: 1.5rem;
  color: var(--slate);
  line-height: 1.75;
}

.survey-suitability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.survey-suitability-card {
  min-height: 420px;
  padding: 3rem;
  background: var(--white);
  border: 1px solid rgba(5, 27, 63, .08);
  box-shadow: var(--shadow-card);
}

.survey-suitability-card--positive {
  border-top: 4px solid var(--gold);
}

.survey-card-index,
.report-include-number {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
}

.survey-suitability-card h3,
.report-include-card h3,
.service-trust-grid h3,
.buyer-outcomes-list h3 {
  color: var(--ink);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.15;
}

.survey-suitability-card p {
  color: var(--slate);
  line-height: 1.8;
}

.survey-check-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.survey-check-list li {
  position: relative;
  padding: .9rem 0 .9rem 2rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.survey-check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}

.service-text-link {
  display: inline-flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 1.2rem;
  padding-bottom: .25rem;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.service-text-link--light {
  color: var(--white);
}

/* Includes */
.report-includes-section {
  padding: var(--section-space) 0;
  background: var(--white);
}

.section-heading-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: 4rem;
}

.section-heading-wide > p {
  max-width: 520px;
  margin: 0;
  color: var(--slate);
  line-height: 1.75;
}

.report-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.report-include-card {
  min-height: 260px;
  padding: 2.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-include-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Buyer outcomes */
.buyer-outcomes-section {
  padding: var(--section-space) 0;
  color: rgba(255,255,255,.78);
  background: var(--ink);
}

.buyer-outcomes-grid {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 8vw, 9rem);
}

.buyer-outcomes-heading h2 {
  color: var(--white);
}


.buyer-outcomes-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.buyer-outcomes-list > li > span {
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
}

.buyer-outcomes-list h3 {
  margin-bottom: .4rem;
  color: var(--white);
}

.buyer-outcomes-list p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}

/* Comparison */
.survey-comparison-section {
  padding: var(--section-space) 0;
  background: var(--surface-alt);
}

.survey-comparison-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.survey-comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.survey-comparison-table th,
.survey-comparison-table td {
  padding: 1.5rem 1.6rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.survey-comparison-table thead th {
  color: var(--white);
  background: var(--ink);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.survey-comparison-table tbody th {
  width: 44%;
  color: var(--ink);
  font-weight: 600;
}

.survey-comparison-table td {
  color: var(--slate);
}

.survey-comparison-table td strong {
  color: var(--ink);
}

.survey-comparison-cta {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  color: var(--white);
  background: var(--ink);
}

.survey-comparison-cta p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

/* Trust */
.service-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-trust-grid article {
  padding: 2.8rem;
  border-right: 1px solid var(--line);
}

.service-trust-grid article:last-child {
  border-right: 0;
}

.service-trust-icon {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: .76rem;
}

.service-trust-grid p {
  color: var(--muted);
  line-height: 1.7;
}

/* FAQ */
.service-faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr);
  gap: clamp(4rem, 8vw, 9rem);
}

.service-faq .accordion-item {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}


.service-faq .accordion-button {
  padding: 1.5rem 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.service-faq .accordion-button:not(.collapsed) {
  color: var(--ink);
  background: transparent;
}

.service-faq .accordion-button::after {
  filter: none;
}


/* Final CTA */
.service-final-cta {
  padding: 5.5rem 0;
  color: rgba(255,255,255,.72);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.service-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 4rem;
  align-items: center;
}

.service-final-cta h2 {
  max-width: 850px;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-final-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
}

.service-final-cta__actions {
  display: grid;
  gap: 1rem;
  min-width: 300px;
}

.service-final-cta__phone {
  display: block;
  color: var(--white);
  text-decoration: none;
}

.service-final-cta__phone small {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.service-final-cta__phone strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .service-page-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .report-includes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .service-page-hero__grid,
  .service-intro-grid,
  .buyer-outcomes-grid,
  .service-faq-grid,
  .section-heading-wide {
    grid-template-columns: 1fr;
  }

  .service-page-hero__image {
    min-height: 480px;
  }

  .service-page-hero__image img {
    min-height: 480px;
  }

  .survey-suitability-grid {
    grid-template-columns: 1fr;
  }

  .service-trust-grid {
    grid-template-columns: 1fr;
  }

  .service-trust-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-trust-grid article:last-child {
    border-bottom: 0;
  }

  .service-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .service-final-cta__actions {
    max-width: 420px;
  }
}

@media (max-width: 767.98px) {
  .service-page-hero,
  .service-intro-section,
  .survey-suitability-section,
  .report-includes-section,
  .buyer-outcomes-section,
  .survey-comparison-section,
  .service-trust-section,
  .service-faq-section {
    padding: var(--section-space-mobile) 0;
  }

  .service-page-hero__content h1 {
    font-size: clamp(2.9rem, 12vw, 4rem);
  }

  .service-intro-heading h2,
  .section-heading-narrow h2,
  .section-heading-wide h2,
  .buyer-outcomes-heading h2,
  .service-faq-heading h2,
  .service-final-cta h2 {
    font-size: clamp(2.55rem, 10vw, 3.65rem);
  }

  .service-page-hero__actions {
    display: grid;
  }

  .service-page-hero__actions .btn {
    width: 100%;
  }

  .service-page-hero__image,
  .service-page-hero__image img {
    min-height: 330px;
  }

  .survey-suitability-card {
    min-height: 0;
    padding: 2rem 1.5rem;
  }

  .report-includes-grid {
    grid-template-columns: 1fr;
  }

  .report-include-card {
    min-height: 0;
    padding: 2rem 1.5rem;
  }

  .buyer-outcomes-list li {
    grid-template-columns: 48px 1fr;
  }

  .survey-comparison-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-final-cta {
    padding: 4rem 0;
  }

  .service-final-cta__actions {
    min-width: 0;
  }
}

/* v4.5 refinements */
.service-breadcrumb{display:flex;flex-wrap:wrap;gap:.55rem;margin-bottom:1.4rem;color:var(--muted);font-size:.72rem}
.service-breadcrumb a{color:var(--muted);text-decoration:none}.service-breadcrumb a:hover{color:var(--ink)}
.service-choice-strip{background:var(--white);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.service-choice-strip__inner{display:grid;grid-template-columns:minmax(0,1.3fr) auto;gap:3rem;align-items:center;padding-top:2rem;padding-bottom:2rem}
.service-choice-strip__eyebrow{margin:0 0 .4rem;color:var(--gold);font-family:"IBM Plex Mono",monospace;font-size:.65rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase}
.service-choice-strip h2{margin:0 0 .4rem;color:var(--ink);font-size:1.45rem;font-weight:600;letter-spacing:-.025em}
.service-choice-strip p:not(.service-choice-strip__eyebrow){max-width:760px;margin:0;color:var(--slate);font-size:.9rem}
.service-choice-strip__actions{display:flex;gap:2rem;align-items:center}.service-choice-strip__phone{color:var(--ink);text-decoration:none;white-space:nowrap}
.service-choice-strip__phone small{display:block;color:var(--muted);font-size:.62rem;letter-spacing:.08em;text-transform:uppercase}.service-choice-strip__phone strong{font-family:"Manrope",sans-serif;font-size:1.15rem}
.survey-check-list li{display:grid;gap:.25rem}.survey-check-list li strong{color:var(--ink);font-size:.96rem}.survey-check-list li span{color:var(--muted);font-size:.8rem;line-height:1.55}
.report-include-card{position:relative;overflow:hidden;transition:transform var(--transition-standard),box-shadow var(--transition-standard)}
.report-include-card:before{position:absolute;inset:0 auto auto 0;width:0;height:2px;content:"";background:var(--gold);transition:width var(--transition-standard)}
.report-include-card:hover{z-index:1;box-shadow:0 18px 45px rgba(5,27,63,.08);transform:translateY(-5px)}.report-include-card:hover:before{width:100%}
.report-include-number{font-size:1.35rem}.report-include-card h3{font-size:1.75rem}
.buyer-outcomes-list>li>span{font-size:1.45rem}.buyer-outcomes-list li{border-top-color:rgba(205,194,12,.32)}
.survey-comparison-table tbody tr:nth-child(even){background:rgba(5,27,63,.025)}.survey-comparison-table tbody th{font-weight:700}
.service-trust-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.service-trust-grid article{padding:2.5rem 2rem}
.service-faq .accordion-button{min-height:76px;transition:background-color var(--transition-fast)}.service-faq .accordion-button:hover{background:rgba(255,255,255,.55)}
.service-faq .accordion-button:after{width:auto;height:auto;margin-left:auto;content:"+";color:var(--gold);background-image:none;font-size:1.45rem;line-height:1;transform:none}
.service-faq .accordion-button:not(.collapsed):after{content:"×";transform:none}
.service-final-cta h2{font-size:clamp(3.2rem,5vw,5.6rem)}.service-final-cta__phone strong{font-size:2rem}
.service-final-cta__reassurance{margin:.25rem 0 0!important;color:rgba(255,255,255,.58)!important;font-size:.72rem}
@media(max-width:1199.98px){.service-trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:991.98px){.service-choice-strip__inner{grid-template-columns:1fr;gap:1.25rem}.service-choice-strip__actions{justify-content:space-between}}
@media(max-width:767.98px){.service-choice-strip__actions{flex-direction:column;align-items:flex-start;gap:.65rem}.service-trust-grid{grid-template-columns:1fr}.service-breadcrumb{margin-bottom:1rem}}

/*==================================================
  v4.5.1 HERO REFINEMENT
==================================================*/

.service-page-hero {
  padding: 5.5rem 0 3.6rem;
}

.service-page-hero__grid {
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
}

.service-page-hero__image {
  min-height: 640px;
  margin-top: 14px;
}

.service-page-hero__image img {
  min-height: 640px;
}

.service-page-hero__trust {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  padding-top: 1.4rem;
}

.service-page-hero__trust span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1.25rem 0 1.5rem;
  border-right: 1px solid var(--line);
  font-size: .8rem;
  white-space: nowrap;
}

.service-page-hero__trust span:first-child {
  padding-left: 1.25rem;
}

.service-page-hero__trust span:last-child {
  border-right: 0;
}

@media (max-width: 1199.98px) {
  .service-page-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-page-hero__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page-hero__trust span {
    border-bottom: 1px solid var(--line);
  }

  .service-page-hero__trust span:nth-child(2n) {
    border-right: 0;
  }

  .service-page-hero__trust span:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .service-page-hero__image,
  .service-page-hero__image img {
    min-height: 500px;
  }

  .service-page-hero__image {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .service-page-hero {
    padding: 4.5rem 0 3rem;
  }

  .service-page-hero__trust {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .service-page-hero__trust span {
    padding: .7rem 0 .7rem 1.4rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .service-page-hero__trust span:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .service-page-hero__trust span:last-child {
    border-bottom: 0;
  }

  .service-page-hero__image,
  .service-page-hero__image img {
    min-height: 340px;
  }
}

/*==================================================
  v4.5.2 HERO BENEFIT ROW
==================================================*/

.service-page-hero__trust {
  margin-top: .9rem;
  padding-top: 1.25rem;
}

.service-page-hero__trust .hero-benefit {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .28rem;
  min-width: 0;
  min-height: 58px;
  padding: .2rem 1.6rem;
  border-right: 1px solid var(--line);
}

.service-page-hero__trust .hero-benefit:first-child {
  padding-left: 0;
}

.service-page-hero__trust .hero-benefit:last-child {
  border-right: 0;
}

.service-page-hero__trust .hero-benefit__label,
.service-page-hero__trust .hero-benefit__text {
  position: static;
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  white-space: normal;
}

.service-page-hero__trust .hero-benefit__label {
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-page-hero__trust .hero-benefit__text {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
}

.service-page-hero__trust .hero-benefit__label::before,
.service-page-hero__trust .hero-benefit__text::before {
  display: none;
  content: none;
}

@media (max-width: 1199.98px) {
  .service-page-hero__trust .hero-benefit {
    padding: .9rem 1.4rem;
    border-bottom: 1px solid var(--line);
  }

  .service-page-hero__trust .hero-benefit:nth-child(2n) {
    border-right: 0;
  }

  .service-page-hero__trust .hero-benefit:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .service-page-hero__trust .hero-benefit:first-child {
    padding-left: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .service-page-hero__trust .hero-benefit,
  .service-page-hero__trust .hero-benefit:first-child {
    padding: .9rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-page-hero__trust .hero-benefit:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .service-page-hero__trust .hero-benefit:last-child {
    border-bottom: 0;
  }
}

/*==================================================
  v4.5.3 FIXED COMPACT HERO BENEFITS
==================================================*/
.service-page-hero__trust.service-page-hero__trust--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column: auto;
  gap: 0;
  width: 100%;
  margin: 1.5rem 0 0;
  padding: 0;
  border: 0;
}

.service-page-hero__trust--compact .hero-benefit,
.service-page-hero__trust--compact .hero-benefit:first-child,
.service-page-hero__trust--compact .hero-benefit:nth-child(odd),
.service-page-hero__trust--compact .hero-benefit:nth-child(even) {
  display: flex;
  flex-direction: column;
  gap: .22rem;
  min-height: 0;
  margin: 0;
  padding: .85rem 1.25rem .85rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.service-page-hero__trust--compact .hero-benefit:nth-child(even) {
  padding-left: 1.25rem;
  border-left: 1px solid var(--line);
}

.service-page-hero__trust--compact .hero-benefit__label {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-page-hero__trust--compact .hero-benefit__text {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .service-page-hero__trust.service-page-hero__trust--compact {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }

  .service-page-hero__trust--compact .hero-benefit,
  .service-page-hero__trust--compact .hero-benefit:first-child,
  .service-page-hero__trust--compact .hero-benefit:nth-child(odd),
  .service-page-hero__trust--compact .hero-benefit:nth-child(even) {
    padding: .75rem 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

/*==================================================
  v4.5.4 HERO BREADCRUMB + FULL-WIDTH BENEFITS
==================================================*/

.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.4;
}

.service-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.service-breadcrumb a:hover,
.service-breadcrumb a:focus {
  color: var(--ink);
}

.service-page-hero__trust.service-page-hero__trust--wide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 2.25rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
}

.service-page-hero__trust--wide .hero-benefit,
.service-page-hero__trust--wide .hero-benefit:first-child,
.service-page-hero__trust--wide .hero-benefit:nth-child(odd),
.service-page-hero__trust--wide .hero-benefit:nth-child(even) {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-height: 58px;
  margin: 0;
  padding: .25rem 1.75rem;
  border: 0;
  border-right: 1px solid var(--line);
}

.service-page-hero__trust--wide .hero-benefit:first-child {
  padding-left: 0;
}

.service-page-hero__trust--wide .hero-benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-page-hero__trust--wide .hero-benefit__label {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-page-hero__trust--wide .hero-benefit__text {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  .service-page-hero__trust.service-page-hero__trust--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page-hero__trust--wide .hero-benefit,
  .service-page-hero__trust--wide .hero-benefit:first-child,
  .service-page-hero__trust--wide .hero-benefit:nth-child(odd),
  .service-page-hero__trust--wide .hero-benefit:nth-child(even) {
    padding: .9rem 1.25rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .service-page-hero__trust--wide .hero-benefit:nth-child(2n) {
    border-right: 0;
  }

  .service-page-hero__trust--wide .hero-benefit:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .service-page-hero__trust.service-page-hero__trust--wide {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
    padding-top: .5rem;
  }

  .service-page-hero__trust--wide .hero-benefit,
  .service-page-hero__trust--wide .hero-benefit:first-child,
  .service-page-hero__trust--wide .hero-benefit:nth-child(odd),
  .service-page-hero__trust--wide .hero-benefit:nth-child(even) {
    padding: .8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-page-hero__trust--wide .hero-benefit:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .service-page-hero__trust--wide .hero-benefit:last-child {
    border-bottom: 0;
  }
}

/*==================================================
  v4.5.5 CENTERED HERO BENEFITS
==================================================*/

.service-page-hero__trust--wide .hero-benefit,
.service-page-hero__trust--wide .hero-benefit:first-child,
.service-page-hero__trust--wide .hero-benefit:nth-child(odd),
.service-page-hero__trust--wide .hero-benefit:nth-child(even) {
  align-items: center;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.service-page-hero__trust--wide .hero-benefit__label,
.service-page-hero__trust--wide .hero-benefit__text {
  width: 100%;
  text-align: center;
}

@media (max-width: 767.98px) {
  .service-page-hero__trust--wide .hero-benefit,
  .service-page-hero__trust--wide .hero-benefit:first-child,
  .service-page-hero__trust--wide .hero-benefit:nth-child(odd),
  .service-page-hero__trust--wide .hero-benefit:nth-child(even) {
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .service-page-hero__trust--wide .hero-benefit__label,
  .service-page-hero__trust--wide .hero-benefit__text {
    text-align: left;
  }
}

/*==================================================
  v4.5.6 TRUE CENTRING OF HERO BENEFIT BOXES
==================================================*/

/* Give the row a defined box height so vertical centring has a real area. */
.service-page-hero__trust.service-page-hero__trust--wide {
  align-items: stretch;
  padding-top: 0;
}

/* Each quarter is now the full-height box. */
.service-page-hero__trust--wide .hero-benefit,
.service-page-hero__trust--wide .hero-benefit:first-child,
.service-page-hero__trust--wide .hero-benefit:nth-child(odd),
.service-page-hero__trust--wide .hero-benefit:nth-child(even) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 112px;
  min-height: 112px;
  margin: 0;
  padding: 0 1.5rem;
  text-align: center;
  border-top: 0;
  border-bottom: 0;
}

/* Full-height separators between the four boxes. */
.service-page-hero__trust--wide .hero-benefit:not(:last-child) {
  border-right: 1px solid var(--line);
}

.service-page-hero__trust--wide .hero-benefit:last-child {
  border-right: 0;
}

.service-page-hero__trust--wide .hero-benefit__label,
.service-page-hero__trust--wide .hero-benefit__text {
  width: 100%;
  margin: 0;
  text-align: center;
}

@media (max-width: 991.98px) {
  .service-page-hero__trust--wide .hero-benefit,
  .service-page-hero__trust--wide .hero-benefit:first-child,
  .service-page-hero__trust--wide .hero-benefit:nth-child(odd),
  .service-page-hero__trust--wide .hero-benefit:nth-child(even) {
    height: 100px;
    min-height: 100px;
    padding: 0 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .service-page-hero__trust--wide .hero-benefit,
  .service-page-hero__trust--wide .hero-benefit:first-child,
  .service-page-hero__trust--wide .hero-benefit:nth-child(odd),
  .service-page-hero__trust--wide .hero-benefit:nth-child(even) {
    align-items: flex-start;
    justify-content: center;
    height: 82px;
    min-height: 82px;
    padding: 0;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-page-hero__trust--wide .hero-benefit__label,
  .service-page-hero__trust--wide .hero-benefit__text {
    text-align: left;
  }
}

/*==================================================
  v4.5.7 HERO ICON BENEFIT CARDS
==================================================*/

.service-page-hero__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}

.hero-benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 1.55rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  transition:
    transform var(--transition-standard),
    box-shadow var(--transition-standard),
    border-color var(--transition-standard);
}

.hero-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 194, 12, .6);
  box-shadow: 0 16px 34px rgba(5, 27, 63, .08);
}

.hero-benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.hero-benefit-card__icon svg {
  display: block;
  width: 38px;
  height: 38px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefit-card__label {
  margin: 0 0 .35rem;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-benefit-card__text {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .service-page-hero__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .service-page-hero__benefits {
    grid-template-columns: 1fr;
    gap: .75rem;
    margin-top: 1.5rem;
  }

  .hero-benefit-card {
    align-items: flex-start;
    min-height: 0;
    padding: 1.25rem;
    text-align: left;
  }

  .hero-benefit-card__icon {
    margin-bottom: .75rem;
  }
}

/*==================================================
  v4.5.8 VISUAL RHYTHM
==================================================*/

/* Supporting photograph in suitability section */
.survey-suitability-card--image {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.survey-suitability-card__media {
  aspect-ratio: 16 / 6.4;
  overflow: hidden;
  background: var(--stone);
}

.survey-suitability-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transition: transform var(--transition-standard);
}

.survey-suitability-card--image:hover .survey-suitability-card__media img {
  transform: scale(1.025);
}

.survey-suitability-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.25rem 3rem 2.6rem;
}

.survey-suitability-card__body .service-text-link {
  margin-top: auto;
}

/* Report coverage icons */
.report-include-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 46px;
  height: 46px;
  margin: .7rem 0 1.2rem;
  color: var(--gold);
}

.report-include-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.report-include-card h3 {
  margin-top: 0;
}

/* Stronger outcome numbering */
.buyer-outcomes-list > li > span {
  align-self: start;
  margin-top: -.15rem;
  color: var(--gold);
  font-size: clamp(2rem, 2.4vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
}

/* Trust icon system */
.service-trust-icon--svg {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.service-trust-icon--svg svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 767.98px) {
  .survey-suitability-card__media {
    aspect-ratio: 16 / 8;
  }

  .survey-suitability-card__body {
    padding: 1.75rem 1.5rem 2rem;
  }

  .report-include-icon {
    margin-bottom: .9rem;
  }
}

/*==================================================
  BUILDING SURVEY PAGE
==================================================*/
.building-survey-note {
  max-width: 880px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.55;
}

/*==================================================
  BUILDING SURVEYS v4.6.1 — PAGE LAYOUT
==================================================*/

.section-pad {
  padding: var(--section-space) 0;
}

.section-soft {
  background: var(--surface-alt);
}

.section-navy {
  color: rgba(255,255,255,.76);
  background: var(--ink);
}

.service-heading-rule {
  display: block;
  width: 48px;
  height: 2px;
  margin-top: var(--heading-rule-gap);
  background: var(--gold);
}

.service-section-title,
.service-two-col h2 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.service-two-col {
  display: grid;
  grid-template-columns: minmax(320px,.78fr) minmax(0,1.22fr);
  gap: clamp(4rem,8vw,9rem);
  align-items: start;
}

.service-copy {
  max-width: 820px;
  padding-top: 1rem;
}

.service-copy p {
  color: var(--slate);
  font-size: 1.03rem;
  line-height: 1.8;
}

.service-copy__lead {
  color: var(--ink) !important;
  font-family: "Manrope",sans-serif;
  font-size: 1.42rem !important;
  font-weight: 500;
  line-height: 1.5 !important;
}

.service-section-heading-row {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
  gap: clamp(3rem,7vw,8rem);
  align-items: end;
  margin-bottom: 3.5rem;
}

.service-section-heading-row > p {
  max-width: 540px;
  margin: 0;
  color: var(--slate);
  line-height: 1.75;
}

/*==================================================
  DETAILED ASSESSMENT — 3 × 2 GRID
==================================================*/

.report-includes {
  background: var(--white);
}

.report-include-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.report-include-grid .report-include-card {
  position: relative;
  min-height: 285px;
  padding: 2.5rem;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    transform var(--transition-standard),
    box-shadow var(--transition-standard);
}

.report-include-grid .report-include-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width var(--transition-standard);
}

.report-include-grid .report-include-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(5,27,63,.08);
}

.report-include-grid .report-include-card:hover::before {
  width: 100%;
}

.report-include-grid .report-include-number {
  display: block;
  margin-bottom: .45rem;
  color: var(--gold);
  font-family: "IBM Plex Mono",monospace;
  font-size: .76rem;
}

.report-include-grid .report-include-icon {
  display: flex;
  align-items: center;
  width: 46px;
  height: 46px;
  margin: .6rem 0 1.1rem;
  color: var(--gold);
}

.report-include-grid .report-include-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.report-include-grid h3 {
  margin-bottom: .8rem;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.15;
}

.report-include-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/*==================================================
  NAVY OUTCOMES — PROVEN HOMEBUYER TREATMENT
==================================================*/

.buyer-outcomes {
  background: var(--ink);
}

.buyer-outcomes .service-two-col {
  grid-template-columns: minmax(320px,.8fr) minmax(0,1.2fr);
}

.buyer-outcomes .eyebrow,
.eyebrow--gold {
  color: var(--gold);
}

.buyer-outcomes h2 {
  color: var(--white);
}

.buyer-outcomes-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.buyer-outcomes-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.buyer-outcomes-list > li > span {
  align-self: start;
  margin-top: -.1rem;
  color: var(--gold);
  font-family: "IBM Plex Mono",monospace;
  font-size: clamp(2rem,2.4vw,2.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
}

.buyer-outcomes-list h3 {
  margin: 0 0 .35rem;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 500;
}

.buyer-outcomes-list p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}

/*==================================================
  COMPARISON
==================================================*/

.survey-comparison {
  background: var(--surface-alt);
}

.survey-comparison-intro {
  max-width: 760px;
  margin: 1.4rem 0 2.5rem;
  color: var(--slate);
  line-height: 1.75;
}

.survey-comparison .survey-comparison-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.survey-comparison .survey-comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.survey-comparison .survey-comparison-table th,
.survey-comparison .survey-comparison-table td {
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.survey-comparison .survey-comparison-table thead th {
  color: var(--white);
  background: var(--ink);
  font-family: "Manrope",sans-serif;
  font-weight: 600;
}

.survey-comparison .survey-comparison-table tbody th {
  width: 42%;
  color: var(--ink);
  font-weight: 700;
}

.survey-comparison .survey-comparison-table tbody tr:nth-child(even) {
  background: rgba(5,27,63,.025);
}

.survey-comparison .survey-comparison-table td {
  color: var(--slate);
}

.survey-comparison .survey-comparison-table td strong {
  color: var(--ink);
}

/*==================================================
  LOWER TRUST + FAQ
==================================================*/

.service-trust {
  background: var(--white);
}

.service-faq {
  background: var(--surface-alt);
}

.service-faq .accordion-item {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
}

.service-faq .accordion-item:last-child {
  border-bottom: 1px solid var(--line);
}

.service-faq .accordion-button {
  min-height: 76px;
  padding: 1.5rem 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-family: "Manrope",sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.service-faq .accordion-button::after {
  width: auto;
  height: auto;
  margin-left: auto;
  content: "+";
  color: var(--gold);
  background-image: none;
  font-size: 1.4rem;
  line-height: 1;
  transform: none;
}

.service-faq .accordion-button:not(.collapsed)::after {
  content: "×";
}

.service-faq .accordion-body {
  padding: 0 2rem 1.5rem 0;
  color: var(--slate);
  line-height: 1.75;
}

/* Different suitability photograph */
.survey-suitability-card--image .survey-suitability-card__media {
  aspect-ratio: 16 / 6.5;
}

.survey-suitability-card--image .survey-suitability-card__media img {
  object-position: center 42%;
}

/*==================================================
  RESPONSIVE
==================================================*/

@media (max-width: 1199.98px) {
  .report-include-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 991.98px) {
  .service-two-col,
  .service-section-heading-row,
  .buyer-outcomes .service-two-col {
    grid-template-columns: 1fr;
  }

  .service-copy {
    padding-top: 0;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: var(--section-space-mobile) 0;
  }

  .service-section-title,
  .service-two-col h2 {
    font-size: clamp(2.55rem,10vw,3.65rem);
  }

  .report-include-grid {
    grid-template-columns: 1fr;
  }

  .report-include-grid .report-include-card {
    min-height: 0;
    padding: 2rem 1.5rem;
  }

  .buyer-outcomes-list li {
    grid-template-columns: 54px 1fr;
  }
}

/*==================================================
  v4.6.2 — ALIGN SUITABILITY TICKS
==================================================*/

.survey-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.survey-check-list li {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  padding: 1.15rem 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.survey-check-list li::before {
  position: static;
  grid-column: 1;
  grid-row: 1 / span 2;
  justify-self: center;
  align-self: start;
  width: auto;
  height: auto;
  margin: .05rem 0 0;
  content: "✓";
  color: var(--gold);
  background: none;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.survey-check-list li strong {
  display: block;
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 .25rem;
  color: var(--ink);
}

.survey-check-list li span {
  display: block;
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/*==================================================
  v4.6.3 — ALIGN SUITABILITY HEADING WITH CARD CONTENT
==================================================*/

.service-suitability > .container > .eyebrow,
.service-suitability > .container > .service-section-title,
.service-suitability > .container > .service-heading-rule {
  margin-left: 38px;
}

@media (max-width: 991.98px) {
  .service-suitability > .container > .eyebrow,
  .service-suitability > .container > .service-section-title,
  .service-suitability > .container > .service-heading-rule {
    margin-left: 0;
  }
}

/*==================================================
  v4.6.4 — CORRECT SUITABILITY HEADING ALIGNMENT
==================================================*/

/* Align the section heading to the outer left edge of the card grid. */
.service-suitability > .container > .eyebrow,
.service-suitability > .container > .service-section-title,
.service-suitability > .container > .service-heading-rule {
  margin-left: 0;
}

/* Keep the heading width controlled so it does not visually overhang the cards. */
.service-suitability > .container > .service-section-title {
  max-width: 980px;
}

/*==================================================
  v4.6.5 — SUITABILITY SECTION SPACING
==================================================*/

/* Give the section introduction clear breathing room before the cards. */
.service-suitability .survey-suitability-grid {
  margin-top: 32px;
}

/* Let the CTA follow the card copy naturally rather than sitting at the bottom. */
.survey-suitability-card--image .survey-suitability-card__body {
  display: block;
}

.survey-suitability-card--image .service-text-link {
  display: inline-flex;
  margin-top: 42px;
margin-bottom: 0;
}

/*==================================================
  v4.6.6 — AUTHORITATIVE MOBILE BUILDING SURVEY HERO
  This block intentionally comes last in the cascade.
==================================================*/

@media (max-width: 991.98px) {

  .service-page-hero {
    padding: 3.5rem 0 2.75rem;
  }

  .service-page-hero__grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 2rem !important;
    align-items: start !important;
  }

  .service-page-hero__content {
    width: 100%;
    min-width: 0;
  }

  .service-page-hero__content h1 {
    max-width: 680px;
    margin-bottom: 1rem;
    font-size: clamp(3rem, 8.5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    text-wrap: balance;
  }

  .service-page-hero__intro {
    max-width: 680px;
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .service-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.6rem;
  }

  .service-page-hero__image {
    width: 100%;
    min-height: 0 !important;
    height: auto;
    margin: 0 !important;
    overflow: hidden;
    aspect-ratio: 16 / 10;
  }

  .service-page-hero__image img {
    display: block;
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover;
    object-position: center;
  }

  .service-page-hero > .container:last-of-type {
    width: min(var(--container-max), calc(100% - 3rem));
  }

  .service-page-hero__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .85rem;
    margin-top: 1.75rem;
  }

  .hero-benefit-card {
    min-height: 150px;
    padding: 1.35rem 1rem;
  }

  .hero-benefit-card__icon {
    width: 38px;
    height: 38px;
    margin-bottom: .75rem;
  }

  .hero-benefit-card__icon svg {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 767.98px) {

  .service-page-hero {
    padding: 2.4rem 0 2.25rem !important;
  }

  .service-page-hero__grid {
    gap: 1.5rem !important;
  }

  .service-breadcrumb {
    gap: .35rem;
    margin-bottom: .85rem;
    font-size: .65rem;
  }

  .service-page-hero__content > .eyebrow {
    margin-bottom: .7rem;
  }

  .service-page-hero__content h1 {
    max-width: none;
    margin-bottom: .9rem;
    font-size: clamp(2.55rem, 12vw, 3.5rem) !important;
    line-height: .98;
    letter-spacing: -.045em;
    text-wrap: pretty;
  }

  .service-page-rule {
    margin-top: .3rem;
  }

  .service-page-hero__intro {
    margin-top: 1.1rem;
    font-size: .94rem;
    line-height: 1.65;
  }

  .service-page-hero__actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: .65rem;
    margin-top: 1.4rem;
  }

  .service-page-hero__actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }

  .service-page-hero__image {
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-card);
  }

  .service-page-hero > .container:last-of-type {
    width: min(100%, calc(100% - 2rem));
  }

  .service-page-hero__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .65rem;
    margin-top: 1.25rem;
  }

  .hero-benefit-card {
    align-items: center !important;
    justify-content: center;
    min-height: 132px;
    padding: 1rem .7rem;
    text-align: center !important;
  }

  .hero-benefit-card__icon {
    width: 34px;
    height: 34px;
    margin-bottom: .6rem;
  }

  .hero-benefit-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .hero-benefit-card__label {
    font-size: .56rem;
  }

  .hero-benefit-card__text {
    font-size: .76rem;
    line-height: 1.3;
  }
}

@media (max-width: 399.98px) {

  .service-page-hero__content h1 {
    font-size: clamp(2.35rem, 11.5vw, 3rem) !important;
  }

  .service-page-hero__benefits {
    grid-template-columns: 1fr !important;
  }

  .hero-benefit-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: .85rem;
    min-height: 0;
    padding: 1rem;
    text-align: left !important;
  }

  .hero-benefit-card__icon {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .hero-benefit-card__label,
  .hero-benefit-card__text {
    text-align: left;
  }
}

/*==================================================
  PROPERTY VALUATIONS v4.7
==================================================*/

.valuation-purposes {
  background: var(--surface-alt);
}

.valuation-purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.valuation-purpose-card {
  position: relative;
  min-height: 300px;
  padding: 2.35rem 2rem;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    transform var(--transition-standard),
    box-shadow var(--transition-standard);
}

.valuation-purpose-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width var(--transition-standard);
}

.valuation-purpose-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(5,27,63,.08);
}

.valuation-purpose-card:hover::before {
  width: 100%;
}

.valuation-purpose-number {
  display: block;
  margin-bottom: .65rem;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
}

.valuation-purpose-icon {
  display: flex;
  align-items: center;
  width: 46px;
  height: 46px;
  margin: .75rem 0 1.15rem;
  color: var(--gold);
}

.valuation-purpose-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.valuation-purpose-card h3 {
  margin-bottom: .85rem;
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.valuation-purpose-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.valuation-process {
  background: var(--ink);
}

.valuation-process h2 {
  color: var(--white);
}

.valuation-standards {
  background: var(--white);
}

.valuation-standards-grid {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 7vw, 8rem);
  align-items: stretch;
}

.valuation-standards__image {
  min-height: 620px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.valuation-standards__image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.valuation-standards__content {
  align-self: center;
}

.valuation-standards__lead {
  margin: 1.75rem 0 1rem;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.5;
}

.valuation-standards__content > p:not(.eyebrow):not(.valuation-standards__lead) {
  color: var(--slate);
  line-height: 1.8;
}

.valuation-standard-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.valuation-standard-points > div {
  padding: 1.7rem 1.5rem;
  border-right: 1px solid var(--line);
}

.valuation-standard-points > div:first-child {
  padding-left: 0;
}

.valuation-standard-points > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.valuation-standard-points span {
  display: block;
  margin-bottom: .7rem;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: .68rem;
}

.valuation-standard-points strong {
  display: block;
  margin-bottom: .45rem;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

.valuation-standard-points p {
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.55;
}

/* Keep valuation page mobile behaviour aligned with v4.6.6 */
@media (max-width: 1199.98px) {
  .valuation-purpose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .valuation-standards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 991.98px) {
  .valuation-standards-grid {
    grid-template-columns: 1fr;
  }

  .valuation-standards__image,
  .valuation-standards__image img {
    min-height: 480px;
  }
}

@media (max-width: 767.98px) {
  .valuation-purpose-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .valuation-purpose-card {
    min-height: 0;
    padding: 2rem 1.5rem;
  }

  .valuation-standards__image,
  .valuation-standards__image img {
    min-height: 340px;
  }

  .valuation-standard-points {
    grid-template-columns: 1fr;
  }

  .valuation-standard-points > div,
  .valuation-standard-points > div:first-child,
  .valuation-standard-points > div:last-child {
    padding: 1.25rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .valuation-standard-points > div:last-child {
    border-bottom: 0;
  }
}

/*==================================================
  PROPERTY VALUATIONS v4.7.1 — FINAL REFINEMENTS
==================================================*/

/* Larger, more confident valuation-purpose cards */
.valuation-purpose-card {
  min-height: 340px;
  padding: 2.75rem 2.35rem;
}

.valuation-purpose-icon {
  width: 52px;
  height: 52px;
  margin: .85rem 0 1.25rem;
}

.valuation-purpose-icon svg {
  width: 42px;
  height: 42px;
}

.valuation-purpose-card h3 {
  font-size: 1.5rem;
}

/* Give the standards photograph slightly more presence */
.valuation-standards-grid {
  grid-template-columns: minmax(460px, 1fr) minmax(0, 1.08fr);
  gap: clamp(4rem, 6vw, 7rem);
}

/* Tighten the local-knowledge section */
.service-trust.section-pad {
  padding-top: clamp(4.5rem, 6vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 6vw, 6.5rem);
}

.service-trust .service-trust-grid {
  margin-top: 2.6rem;
}

.service-trust .service-trust-grid article {
  padding-top: 2.15rem;
  padding-bottom: 2.15rem;
}

@media (max-width: 1199.98px) {
  .valuation-standards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 991.98px) {
  .valuation-standards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .valuation-purpose-card {
    min-height: 0;
    padding: 2rem 1.5rem;
  }

  .service-trust.section-pad {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }
}

/* Site-wide editorial heading rule spacing */
h2 + .service-page-rule,
h2 + .service-heading-rule {
  margin-top: var(--heading-rule-gap);
}
