/* Service advantages block color correction. Loaded after site.css. */
body[data-page="home"] .wy-route {
  background: #f5f5f5;
  padding: clamp(58px, 5.2083333333vw, 100px) 0;
}

body[data-page="home"] .wy-route__layout {
  display: block;
}

body[data-page="home"] .wy-route__title {
  display: flex;
  align-items: flex-end;
  gap: clamp(7px, 0.5208333333vw, 10px);
  margin-bottom: clamp(22px, 1.5625vw, 30px);
  padding: 0;
  border: 0;
  background: transparent;
}

body[data-page="home"] .wy-route__title h2 {
  margin: 0;
  color: var(--wy-green-dark);
  font-size: clamp(24px, 1.5625vw, 30px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

body[data-page="home"] .wy-route__title .wy-kicker {
  order: 2;
  margin: 0;
  color: rgba(17, 24, 39, 0.16);
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0;
}

body[data-page="home"] .wy-route__title .wy-kicker::before {
  content: "/";
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: clamp(7px, 0.5208333333vw, 10px);
  background: transparent;
  color: var(--wy-green);
  line-height: 1;
  -webkit-text-fill-color: currentColor;
}

body[data-page="home"] .wy-route__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.0416666667vw, 20px);
  background: transparent;
}

body[data-page="home"] .wy-step {
  position: relative;
  min-height: clamp(190px, 13.5416666667vw, 260px);
  overflow: hidden;
  padding: clamp(28px, 1.8229166667vw, 35px);
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

body[data-page="home"] .wy-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.06);
}

body[data-page="home"] .wy-step::before {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  width: 0;
  height: clamp(3px, 0.2083333333vw, 4px);
  background: linear-gradient(90deg, var(--wy-green-dark), var(--wy-green));
  transition: width 0.8s ease;
}

body[data-page="home"] .wy-step:hover::before {
  width: 100%;
}

body[data-page="home"] .wy-step span {
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(138, 86, 0, 0.42);
  font-size: clamp(26px, 1.875vw, 36px);
  font-weight: 900;
  line-height: 1;
  text-align: left;
}

body[data-page="home"] .wy-step h3 {
  margin: clamp(24px, 1.4583333333vw, 28px) 0 0;
  color: #07152f;
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 900;
  line-height: 1.35;
}

body[data-page="home"] .wy-step p {
  margin: clamp(12px, 0.78125vw, 15px) 0 0;
  color: #4a5873;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.75;
}

body[data-page="home"] .wy-route::after {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  body[data-page="home"] .wy-route__steps {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .wy-route__title {
    align-items: baseline;
  }
}

/* Final requested fixes: keep home navigation aligned with the about page and restore the gold brand theme. */
body[data-page="home"] .wy-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 227, 0.9);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

body[data-page="home"] .wy-header::before {
  display: none;
}

body[data-page="home"] .wy-header__inner {
  width: min(1200px, calc(100vw - 96px));
  max-width: none;
  height: 78px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 220px 1fr 136px;
  align-items: center;
  gap: 36px;
}

body[data-page="home"] .wy-logo__image {
  width: 170px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

body[data-page="home"] .wy-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-left: 0;
}

body[data-page="home"] .wy-nav a {
  position: relative;
  display: block;
  margin-left: 0;
  padding: 28px 2px 24px;
  color: #263238;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  transition: color 0.2s ease;
}

body[data-page="home"] .wy-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: block;
  height: 2px;
  background: var(--wy-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

body[data-page="home"] .wy-nav a:hover,
body[data-page="home"] .wy-nav a.is-active {
  background: none;
  color: var(--wy-green-dark);
  font-weight: 700;
  -webkit-text-fill-color: currentColor;
}

body[data-page="home"] .wy-nav a:hover::after,
body[data-page="home"] .wy-nav a.is-active::after {
  transform: scaleX(1);
}

body[data-page="home"] .wy-header__cta {
  display: inline-flex;
  min-width: 124px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wy-green);
  border-radius: var(--wy-radius);
  padding: 0 22px;
  background: var(--wy-green);
  color: var(--wy-navy);
  font-size: 15px;
  font-weight: 800;
  box-shadow: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body[data-page="home"] .wy-header__cta:hover {
  background: var(--wy-green-dark);
  border-color: var(--wy-green-dark);
  color: #fff;
  box-shadow: 0 16px 28px rgba(var(--wy-primary-rgb), 0.28);
  transform: translateY(-2px);
}

body[data-page="home"] .wy-hero {
  height: calc(100vh - 78px);
  min-height: 560px;
  margin-top: 0;
}

body[data-page="home"] .wy-btn,
body[data-page="home"] .wy-link-btn {
  background: var(--wy-green);
  color: var(--wy-navy);
}

body[data-page="home"] .wy-btn:hover,
body[data-page="home"] .wy-link-btn:hover {
  background: var(--wy-green-dark);
  color: #fff;
}

body[data-page="home"] .wy-hero__rail {
  display: none;
}

body[data-page="home"] .wy-menu {
  background: #f5f5f5;
}

body[data-page="home"] .wy-menu__head {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  margin-bottom: clamp(26px, 2.34375vw, 45px);
}

body[data-page="home"] .wy-menu__head h2 {
  margin: 0;
  color: var(--wy-green-dark);
  font-size: clamp(24px, 1.5625vw, 30px);
  font-weight: 900;
  line-height: 1.15;
}

body[data-page="home"] .wy-menu__head .wy-kicker {
  order: 2;
  margin: 0;
  color: rgba(17, 24, 39, 0.16);
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

body[data-page="home"] .wy-menu__head .wy-kicker::before {
  content: "/";
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 8px;
  background: transparent;
  color: var(--wy-green);
}

body[data-page="home"] .wy-menu__head p:not(.wy-kicker) {
  flex: 1;
  max-width: 560px;
  margin: 0 0 0 auto;
  color: #4a5873;
  text-align: right;
}

.wy-service-ref {
  display: grid;
  grid-template-columns: minmax(600px, clamp(640px, 40vw, 700px)) minmax(420px, 680px);
  gap: clamp(26px, 2.0833333333vw, 40px);
  align-items: stretch;
  justify-content: center;
}

.wy-service-ref__feature {
  position: relative;
  height: clamp(280px, 18.75vw, 360px);
  min-height: clamp(280px, 18.75vw, 360px);
  margin: 0;
  overflow: hidden;
  background: #e9edf1;
}

.wy-service-ref__feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.wy-service-ref__feature:hover img {
  transform: scale(1.04);
}

.wy-service-ref__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 58px;
  padding: 0 clamp(18px, 1.5625vw, 30px);
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.2));
  color: #fff;
}

.wy-service-ref__caption strong {
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 26px;
  line-height: 1;
}

.wy-service-ref__caption span {
  font-size: 16px;
  font-weight: 800;
}

.wy-service-ref__list {
  display: grid;
  align-content: stretch;
  border-top: 1px solid #ddd;
}

.wy-service-ref__item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 20px;
  min-height: 98px;
  border-bottom: 1px solid #ddd;
  color: #07152f;
  text-decoration: none;
  transition: background 0.2s ease, padding 0.2s ease;
  cursor: pointer;
}

.wy-service-ref__item:hover,
.wy-service-ref__item.is-active {
  background: rgba(var(--wy-primary-rgb), 0.08);
  padding-left: 16px;
}

.wy-service-ref__num {
  color: #b4b4b4;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
}

.wy-service-ref__num em {
  display: block;
  margin-top: 6px;
  color: #98a2b3;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}

.wy-service-ref__body {
  min-width: 0;
}

.wy-service-ref__body strong {
  display: block;
  color: #07152f;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.wy-service-ref__body small {
  display: block;
  margin-top: 5px;
  color: #4a5873;
  font-size: 14px;
  line-height: 1.55;
}

.wy-service-ref__item i {
  color: #b4b4b4;
  font-size: 28px;
  font-style: normal;
}

.wy-modal-open {
  overflow: hidden;
  padding-right: var(--wy-scrollbar-compensation, 0px);
}

.wy-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wy-contact-modal.is-open {
  display: flex;
}

.wy-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.58);
}

.wy-contact-modal__dialog {
  position: relative;
  width: min(420px, 100%);
  padding: 34px 34px 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.24);
  text-align: center;
}

.wy-contact-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  color: #344054;
  font-size: 24px;
  line-height: 34px;
  cursor: pointer;
}

.wy-contact-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--wy-green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.wy-contact-modal h2 {
  margin: 0;
  color: #07152f;
  font-size: 24px;
  line-height: 1.35;
}

.wy-contact-modal p:not(.wy-contact-modal__eyebrow) {
  margin: 12px 0 0;
  color: #4a5873;
  font-size: 14px;
  line-height: 1.75;
}

.wy-contact-modal__qr {
  width: 178px;
  margin: 24px auto 0;
  padding: 12px;
  background: #fff;
  border: 1px solid #eee4cf;
  border-radius: 6px;
}

.wy-contact-modal__qr img {
  display: block;
  width: 152px;
  height: 152px;
  object-fit: contain;
}

.wy-contact-modal__qr figcaption {
  margin-top: 10px;
  color: #8a5600;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  body[data-page="home"] .wy-header__inner {
    width: calc(100vw - 32px);
    height: auto;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    padding: 10px 0 12px;
  }

  body[data-page="home"] .wy-logo__image {
    width: 142px;
    height: 42px;
  }

  body[data-page="home"] .wy-header__cta {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 96px;
    height: 40px;
    justify-self: stretch;
    padding: 0 14px;
    font-size: 13px;
  }

  body[data-page="home"] .wy-nav {
    grid-column: 1 / -1;
    justify-self: start;
    display: inline-flex;
    gap: 22px;
  }

  body[data-page="home"] .wy-nav a {
    padding: 8px 0 6px;
    font-size: 14px;
  }

  body[data-page="home"] .wy-nav a::after {
    bottom: 0;
  }

  body[data-page="home"] .wy-hero {
    height: auto;
    min-height: 0;
    margin-top: 0;
  }

  body[data-page="home"] .wy-hero__layout {
    width: 100%;
  }

  .wy-service-ref {
    grid-template-columns: 1fr;
  }

  .wy-service-ref__feature {
    height: clamp(230px, 48vw, 320px);
    min-height: clamp(230px, 48vw, 320px);
  }

  body[data-page="home"] .wy-menu__head {
    display: block;
  }

  body[data-page="home"] .wy-menu__head p:not(.wy-kicker) {
    max-width: none;
    margin: 14px 0 0;
    text-align: left;
  }
}

@media (min-width: 1600px) {
  body[data-page="home"] .wy-header__inner {
    width: min(1360px, calc(100vw - 140px));
  }
}

@media (max-width: 520px) {
  .wy-service-ref__item {
    grid-template-columns: 58px minmax(0, 1fr) 18px;
    gap: 12px;
    min-height: 96px;
  }

  .wy-service-ref__num {
    font-size: 26px;
  }

  .wy-contact-modal__dialog {
    padding: 30px 22px 26px;
  }
}

/* Home banner carousel and readable text overlay. */
body[data-page="home"] .wy-hero {
  isolation: isolate;
}

body[data-page="home"] .wy-hero::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.66) 34%, rgba(255, 255, 255, 0.18) 62%, rgba(255, 255, 255, 0) 84%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.18));
  pointer-events: none;
}

body[data-page="home"] .wy-hero__photo {
  background: #101812;
}

body[data-page="home"] .wy-hero__layout {
  position: relative;
  z-index: 3;
}

body[data-page="home"] .wy-hero__slides,
body[data-page="home"] .wy-hero__slide {
  position: absolute;
  inset: 0;
}

body[data-page="home"] .wy-hero__slide {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.9s ease, transform 5.2s ease;
}

body[data-page="home"] .wy-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

body[data-page="home"] .wy-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .wy-hero__story {
  z-index: 4;
  text-shadow: none;
}

body[data-page="home"] .wy-hero .wy-kicker {
  color: #a66c00;
  text-shadow: none;
}

body[data-page="home"] .wy-hero h1 {
  color: var(--wy-navy);
  text-shadow: none;
}

body[data-page="home"] .wy-hero__story > p:not(.wy-kicker) {
  color: #415169;
  text-shadow: none;
}

body[data-page="home"] .wy-hero__actions {
  position: relative;
  z-index: 5;
}

body[data-page="home"] .wy-hero__dots {
  position: absolute;
  left: 13.0208333333vw;
  bottom: 7.2vh;
  z-index: 5;
  display: flex;
  gap: 10px;
}

body[data-page="home"] .wy-hero__dots button {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease;
}

body[data-page="home"] .wy-hero__dots button.is-active {
  width: 44px;
  background: var(--wy-green);
}

/* Enlarge assurance statistic icons while preserving clear number spacing. */
body[data-page="home"] .wy-proof-ref .z_about_num ul {
  gap: clamp(24px, 3.6458333333vw, 70px);
}

body[data-page="home"] .wy-proof-ref .z_about_num li {
  align-items: center;
  min-width: 0;
}

body[data-page="home"] .wy-proof-ref .z_about_num .ico {
  width: clamp(52px, 3.3333333333vw, 64px);
  max-width: none;
  height: clamp(52px, 3.3333333333vw, 64px);
  margin-top: 0;
  margin-right: clamp(16px, 1.25vw, 24px);
  object-fit: contain;
}

body[data-page="home"] .wy-proof-ref .z_about_num .text {
  min-width: 0;
}

@media (max-width: 980px) {
  body[data-page="home"] .wy-hero::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.38)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.2));
  }

  body[data-page="home"] .wy-hero__dots {
    left: 3%;
    bottom: 4vw;
  }

  body[data-page="home"] .wy-proof-ref .z_about_num .ico {
    width: 48px;
    height: 48px;
    margin-right: 14px;
  }
}

@media (max-width: 520px) {
  body[data-page="home"] .wy-proof-ref .z_about_num .ico {
    width: 44px;
    height: 44px;
  }

  body[data-page="home"] .wy-proof-ref .z_about_num ul {
    gap: 0;
  }

  body[data-page="home"] .wy-proof-ref .z_about_num li {
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
    padding-right: 12px;
  }

  body[data-page="home"] .wy-proof-ref .z_about_num .cc {
    white-space: normal;
  }
}

/* Mobile sizing refinement: keep stats readable and prevent compact headings from squeezing. */
@media (max-width: 520px) {
  body[data-page="home"] .wy-route__title,
  body[data-page="home"] .wy-menu__head {
    display: block;
    margin-bottom: 22px;
  }

  body[data-page="home"] .wy-route__title h2,
  body[data-page="home"] .wy-menu__head h2 {
    display: block;
    max-width: 100%;
    font-size: 24px;
    line-height: 1.25;
  }

  body[data-page="home"] .wy-route__title .wy-kicker,
  body[data-page="home"] .wy-menu__head .wy-kicker {
    display: block;
    order: initial;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.25;
  }

  body[data-page="home"] .wy-route__title .wy-kicker::before,
  body[data-page="home"] .wy-menu__head .wy-kicker::before {
    margin-right: 6px;
  }

  body[data-page="home"] .wy-proof-ref .z_about_num li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 18px 10px;
  }

  body[data-page="home"] .wy-proof-ref .z_about_num .ico {
    width: 36px;
    height: 36px;
    margin-right: 0;
  }

  body[data-page="home"] .wy-proof-ref .z_about_num .text {
    min-width: 0;
  }

  body[data-page="home"] .wy-proof-ref .z_about_num .tt {
    font-size: 24px;
    line-height: 1.08;
    white-space: nowrap;
  }

  body[data-page="home"] .wy-proof-ref .z_about_num .cc {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
  }
}
