:root {
  --enbuss-blue: #001d52;
  --enbuss-ink: #353d48;
  --enbuss-muted: #777d84;
  --enbuss-line: #e7e9ec;
  --enbuss-header-height: 68px;
  --enbuss-content-offset: max(calc(var(--f-topbar-height, 0px) + var(--f-header-height, 68px)), var(--enbuss-header-height));
}

body.template-home .page_container > div:last-child,
body.template-home #scroll-to-top-button {
  display: none !important;
}

body.template-home #main-content {
  margin: 0 !important;
  padding: 0 !important;
}

.enbuss-home-root,
.enbuss-contact-screen,
.enbuss-footer-screen {
  letter-spacing: 0;
}

.enbuss-home-root *,
.enbuss-contact-screen *,
.enbuss-footer-screen * {
  letter-spacing: normal !important;
}

.enbuss-site-header {
  align-items: center;
  color: #fff;
  display: flex;
  height: var(--enbuss-header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 max(7.9vw, 28px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background .45s ease, color .45s ease, box-shadow .45s ease;
  z-index: 1000;
}

.enbuss-site-header::after {
  background: rgba(255,255,255,.13);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.enbuss-site-header.is-solid {
  background: rgba(255,255,255,.97);
  box-shadow: 0 3px 18px rgba(0,29,82,.06);
  color: var(--enbuss-blue);
}

.enbuss-site-header.is-solid::after { background: #edf0f3; }

.enbuss-site-header__logo {
  display: block;
  flex: 0 0 auto;
  width: 142px;
}

.enbuss-site-header__logo img {
  display: block;
  filter: brightness(0) invert(1);
  height: auto;
  max-height: 48px;
  transition: filter .45s ease;
  width: 100%;
}

.enbuss-site-header.is-solid .enbuss-site-header__logo img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(43%) saturate(2508%) hue-rotate(188deg) brightness(87%) contrast(106%);
}

.enbuss-site-nav {
  align-items: center;
  display: flex;
  gap: clamp(28px, 4vw, 58px);
}

.enbuss-site-nav a {
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: var(--enbuss-header-height);
  position: relative;
  white-space: nowrap;
}

.enbuss-site-nav a::after {
  background: currentColor;
  bottom: 17px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
  width: 100%;
}

.enbuss-site-nav a:hover::after,
.enbuss-site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.enbuss-search-link {
  align-items: center;
  display: inline-flex !important;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.enbuss-search-link svg { height: 19px; width: 19px; }

.enbuss-mobile-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 40px;
  padding: 10px;
  width: 40px;
}

.enbuss-mobile-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 4px 0 0 auto;
  transition: transform .3s ease, width .3s ease;
  width: 20px;
}

.enbuss-mobile-toggle span:nth-child(2) { width: 15px; }

.enbuss-mobile-menu {
  background: #fff;
  color: var(--enbuss-blue);
  display: none;
  inset: 60px 0 auto 0;
  padding: 22px 20px 28px;
  position: fixed;
  z-index: 999;
}

.enbuss-mobile-menu.is-open { display: grid; }
.enbuss-mobile-menu a { border-bottom: 1px solid #edf0f2; color: inherit; font-size: 17px; padding: 13px 0; }

.enbuss-screen,
.enbuss-contact-screen,
.enbuss-footer-screen {
  background: #fff;
  color: var(--enbuss-ink);
}

.enbuss-screen__inner {
  margin: 0 auto;
  max-width: 1180px;
  width: calc(100% - 80px);
}

/* Match Grenpu's desktop content geometry in both preview and editor iframes. */
.enbuss-products > .enbuss-screen__inner {
  max-width: 1580px;
}

.enbuss-products .enbuss-section-head {
  margin-left: auto;
  margin-right: auto;
  max-width: 1580px;
}

.enbuss-cases > .enbuss-screen__inner,
.enbuss-quality > .enbuss-screen__inner {
  max-width: 1580px;
}

.enbuss-section-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
}

.enbuss-section-head h2 {
  color: var(--enbuss-blue);
  font-size: 43px;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.enbuss-section-head p {
  color: #777;
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.enbuss-more {
  align-items: center;
  color: var(--enbuss-blue);
  display: inline-flex;
  font-size: 14px;
  gap: 13px;
  white-space: nowrap;
}

.enbuss-more::after {
  border-top: 1px solid currentColor;
  content: "";
  width: 24px;
}

/* hero */
.enbuss-hero {
  background: #071a30;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.enbuss-hero-slide {
  background-image: var(--enbuss-hero-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 6s ease;
}

.enbuss-hero-slide::after {
  background: linear-gradient(90deg, rgba(1,18,40,.68), rgba(1,18,40,.24) 54%, rgba(1,18,40,.06));
  content: "";
  inset: 0;
  position: absolute;
}

.enbuss-hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }

.enbuss-hero-copy {
  left: max(9vw, 70px);
  max-width: 610px;
  position: absolute;
  top: 50%;
  transform: translateY(-28%);
  z-index: 2;
}

.enbuss-hero-copy small {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .18em !important;
  margin-bottom: 22px;
}

.enbuss-hero-copy h1 {
  color: #fff;
  font-size: clamp(38px, 4.1vw, 59px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.04;
  margin: 0;
}

.enbuss-hero-copy p { font-size: 18px; line-height: 1.6; margin: 22px 0 0; max-width: 560px; }

.enbuss-outline-button {
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 28px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  justify-content: center;
  margin-top: 38px;
  min-width: 170px;
  padding: 14px 24px;
  transition: background .3s ease, color .3s ease;
}

.enbuss-outline-button:hover { background: #fff; color: var(--enbuss-blue); }

.enbuss-hero-arrow {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 0;
  height: 64px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  z-index: 4;
}

.enbuss-hero-arrow::before {
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  display: block;
  height: 28px;
  margin: auto;
  transform: rotate(45deg);
  width: 28px;
}

.enbuss-hero-arrow--prev { left: 4.2vw; }
.enbuss-hero-arrow--next { right: 4.2vw; }
.enbuss-hero-arrow--next::before { transform: rotate(225deg); }

.enbuss-hero-dots {
  bottom: 25px;
  display: flex;
  gap: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 5;
}

.enbuss-hero-dots button { background: rgba(255,255,255,.65); border: 0; border-radius: 50%; height: 7px; padding: 0; width: 7px; }
.enbuss-hero-dots button.is-active { background: transparent; box-shadow: 0 0 0 1px #fff; }

/* products */
.enbuss-products { align-items: center; display: flex; }
.enbuss-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); width: 100%; }
.enbuss-product-card { color: #fff; display: block; min-height: 440px; overflow: hidden; position: relative; }
.enbuss-product-card::after { background: linear-gradient(180deg, rgba(0,29,82,.03), rgba(0,29,82,.72)); content: ""; inset: 0; position: absolute; }
.enbuss-product-card img { height: 100%; inset: 0; object-fit: cover; position: absolute; transition: transform .7s ease; width: 100%; }
.enbuss-product-card:hover img { transform: scale(1.05); }
.enbuss-product-card__number { border: 1px solid rgba(255,255,255,.75); border-radius: 50%; font-size: 14px; height: 58px; left: 50%; line-height: 56px; position: absolute; text-align: center; top: 31%; transform: translateX(-50%); width: 58px; z-index: 2; }
.enbuss-product-card h3 { bottom: 92px; color: #fff; font-size: 18px; font-weight: 600; left: 24px; line-height: 1.35; margin: 0; position: absolute; right: 24px; text-align: center; z-index: 2; }
.enbuss-product-card span:last-child { border-top: 1px solid rgba(255,255,255,.35); bottom: 0; font-size: 14px; left: 0; padding: 18px; position: absolute; right: 0; text-align: center; z-index: 2; }

/* cases */
.enbuss-cases { align-items: center; display: flex; }
.enbuss-case-grid { display: flex; height: 477px; overflow: hidden; }
.enbuss-case-card { color: #fff; cursor: default; flex: 0 0 15.375%; overflow: hidden; padding-right: 4px; position: relative; transition: flex-basis .55s ease; }
.enbuss-case-card.is-active { flex-basis: 38.5%; }
.enbuss-case-card img { height: 100%; object-fit: cover; position: absolute; width: 100%; }
.enbuss-case-card::after { background: linear-gradient(180deg, rgba(0,29,82,.02) 10%, #001d52 100%); content: ""; inset: 0 4px 0 0; position: absolute; }
.enbuss-case-card__copy { bottom: 38px; left: 20px; min-width: 340px; position: absolute; right: 26px; z-index: 2; }
.enbuss-case-card h3 { color: #fff; font-size: 18px; font-weight: 500; line-height: 1.35; margin: 0; white-space: nowrap; }
.enbuss-case-card p { border-top: 1px solid rgba(255,255,255,.25); display: none; font-size: 14px; justify-content: space-between; margin: 12px 0 0; padding-top: 12px; }
.enbuss-case-card.is-active p { display: flex; }

/* about */
.enbuss-about { background-position: center; background-size: cover; display: flex; position: relative; }
.enbuss-about::after { background: linear-gradient(90deg, rgba(231,245,255,.96) 0%, rgba(231,245,255,.88) 43%, rgba(231,245,255,.05) 72%); content: ""; inset: 0; position: absolute; }
.enbuss-about .enbuss-screen__inner { position: relative; z-index: 2; }
.enbuss-about-copy { max-width: 620px; }
.enbuss-about-copy h2 { color: var(--enbuss-blue); font-size: 43px; font-weight: 400; letter-spacing: -.035em; margin: 0; }
.enbuss-about-copy h3 { color: #6d6d6d; font-size: 28px; font-weight: 400; margin: 20px 0 42px; }
.enbuss-about-copy p { color: #414955; font-size: 15px; line-height: 1.75; margin: 0 0 14px; }
.enbuss-about-menu { bottom: 0; display: grid; grid-template-columns: repeat(4,1fr); left: 50%; max-width: 1180px; position: absolute; transform: translateX(-50%); width: calc(100% - 80px); z-index: 3; }
.enbuss-about-menu a { align-items: center; background: rgba(255,255,255,.84); color: var(--enbuss-blue); display: flex; font-size: 15px; font-weight: 600; gap: 15px; height: 90px; justify-content: center; margin-right: 2px; }
.enbuss-about-menu i { align-items: center; background: var(--enbuss-blue); border-radius: 50%; color: #fff; display: flex; font-size: 13px; font-style: normal; height: 44px; justify-content: center; width: 44px; }

/* quality/news composition */
.enbuss-quality { align-items: center; background: linear-gradient(150deg,#fff 35%,#f5f8fb 100%); display: flex; }
.enbuss-quality-grid { display: grid; gap: 24px; grid-template-columns: 48.5% 1fr; }
.enbuss-quality-main { border-bottom: 1px solid var(--enbuss-line); }
.enbuss-quality-main__image { background: #eef1f4; height: 282px; overflow: hidden; }
.enbuss-quality-main img { height: 100%; object-fit: cover; object-position: center 20%; width: 100%; }
.enbuss-quality-main h3 { color: var(--enbuss-ink); font-size: 23px; font-weight: 500; line-height: 1.35; margin: 18px 0 10px; }
.enbuss-quality-main p { color: #888; font-size: 14px; line-height: 1.65; margin: 0 0 16px; }
.enbuss-quality-list { display: grid; gap: 16px; }
.enbuss-quality-item { border-bottom: 1px solid var(--enbuss-line); display: grid; gap: 22px; grid-template-columns: 42% 1fr; padding-bottom: 16px; }
.enbuss-quality-item img { background: #edf0f2; height: 120px; object-fit: cover; object-position: center 18%; width: 100%; }
.enbuss-quality-item h3 { color: var(--enbuss-ink); font-size: 18px; font-weight: 500; line-height: 1.35; margin: 2px 0 9px; }
.enbuss-quality-item p { color: #8a8f94; font-size: 13px; line-height: 1.55; margin: 0; }

/* native functional contact section */
body.template-home .enbuss-contact-screen {
  align-items: center !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  display: flex !important;
  isolation: isolate;
  margin: 0 !important;
  padding: var(--enbuss-content-offset) 0 0 !important;
  position: relative;
  background-image: url('https://r2.waimaoya.com/diy/139/image/2026/07/30/61f049098215a7740e9383ffb855cac4.webp') !important;
}

body.template-home .enbuss-contact-screen::before { background: rgba(0,29,82,.53); content: ""; inset: 0; position: absolute; z-index: -1; }
body.template-home .enbuss-contact-screen > .container { max-width: 1180px !important; width: calc(100% - 80px) !important; }
body.template-home .enbuss-contact-screen .f-row { justify-content: flex-end; }
body.template-home .enbuss-contact-screen f-contact { font-size: 0; }
body.template-home .enbuss-contact-screen .f-contact-form__main { font-size: 16px; }
body.template-home .enbuss-contact-screen .notification-error:not(.show) { display: none !important; }
body.template-home .enbuss-contact-screen .notification-error.show {
  align-items: flex-start;
  color: #fff !important;
  display: flex !important;
  font-size: 14px !important;
  gap: 10px;
  line-height: 1.5 !important;
}
body.template-home .enbuss-contact-screen .notification-error .notification--error-message,
body.template-home .enbuss-contact-screen .notification-error .errors,
body.template-home .enbuss-contact-screen .notification-error ul,
body.template-home .enbuss-contact-screen .notification-error li {
  font-size: inherit !important;
  line-height: inherit !important;
}
body.template-home .enbuss-contact-screen .notification-error ul { margin: 0; padding-left: 18px; }
body.template-home .enbuss-contact-screen .notification-error svg { flex: 0 0 auto; margin-top: 2px; }
body.template-home .enbuss-contact-screen .f-contact-form__main { background: transparent !important; color: #fff; max-width: 590px; padding: 0 !important; width: 50% !important; }
body.template-home .enbuss-contact-screen .f-contact-form__heading { color: #fff; font-size: 40px; font-weight: 300; line-height: 1.15; margin-bottom: 14px; }
body.template-home .enbuss-contact-screen .f-contact-form__description { color: #fff; font-size: 15px; margin-bottom: 10px; }
body.template-home .enbuss-contact-screen .form-field { background: rgba(0,0,0,.17) !important; border: 1px solid rgba(255,255,255,.34) !important; border-radius: 0 !important; color: #fff !important; min-height: 52px; }
body.template-home .enbuss-contact-screen textarea.form-field { min-height: 104px; }
body.template-home .enbuss-contact-screen .form-field::placeholder { color: rgba(255,255,255,.9) !important; }
body.template-home .enbuss-contact-screen button,
body.template-home .enbuss-contact-screen .f-button { background: var(--enbuss-blue) !important; border: 0 !important; border-radius: 0 !important; color: #fff !important; min-width: 180px; }

/* footer screen */
.enbuss-footer-screen { background-position: center; background-size: cover; display: flex; flex-direction: column; }
.enbuss-footer-spacer { flex: 0 0 34%; }
.enbuss-footer-panel { background: linear-gradient(rgba(5,18,38,.96),rgba(5,18,38,.96)), radial-gradient(circle at 20% 0,#173a63,#071426 65%); color: #fff; flex: 1; padding: 54px 0 18px; }
.enbuss-footer-top { align-items: center; border-bottom: 1px solid rgba(255,255,255,.2); display: flex; justify-content: space-between; margin: 0 auto 32px; max-width: 1180px; padding-bottom: 30px; width: calc(100% - 80px); }
.enbuss-footer-logo img { height: auto; width: 235px; }
.enbuss-footer-stat { align-items: center; display: flex; gap: 26px; max-width: 500px; }
.enbuss-footer-stat strong { font-size: 44px; line-height: .9; }
.enbuss-footer-stat strong small { display: block; font-size: 11px; letter-spacing: .16em; margin-top: 7px; text-align: center; }
.enbuss-footer-stat p { font-size: 12px; line-height: 1.75; margin: 0; }
.enbuss-footer-links { display: grid; grid-template-columns: 1.1fr 1.1fr 1.1fr 1.1fr 1.7fr; margin: 0 auto; max-width: 1180px; width: calc(100% - 80px); }
.enbuss-footer-column h3 { color: #fff; font-size: 15px; font-weight: 400; margin: 0 0 20px; }
.enbuss-footer-column a,
.enbuss-footer-column p { color: rgba(255,255,255,.58); display: block; font-size: 13px; line-height: 1.9; margin: 0; }
.enbuss-footer-column--contact a { color: #fff; font-size: 15px; margin-bottom: 9px; }
.enbuss-footer-copy { border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.55); font-size: 11px; margin-top: 32px; padding-top: 13px; text-align: center; }

@media (min-width: 1025px) {
  html:has(body.template-home) { overflow: hidden !important; scroll-snap-type: none !important; }
  body.template-home { overflow: hidden !important; }
  body.template-home #main-content { height: 100vh; overflow: hidden; position: relative; }
  body.template-home #main-content > .f-section { display: block !important; min-height: 0 !important; }
  .enbuss-screen,
  .enbuss-contact-screen,
  .enbuss-footer-screen {
    height: 100vh !important;
    inset: 0;
    opacity: 1;
    overflow: hidden;
    position: fixed !important;
    transform: translate3d(0,100%,0);
    transition: transform .9s cubic-bezier(.65,0,.35,1);
    visibility: visible !important;
    width: 100%;
    z-index: 5;
  }
  .enbuss-screen.is-before,
  .enbuss-contact-screen.is-before,
  .enbuss-footer-screen.is-before { transform: translate3d(0,-100%,0); }
  .enbuss-screen.is-active,
  .enbuss-contact-screen.is-active,
  .enbuss-footer-screen.is-active { transform: translate3d(0,0,0); z-index: 8; }
  .enbuss-screen__inner { padding-top: var(--enbuss-content-offset); }

  /* Match the reference site's desktop content widths and card proportions. */
  .enbuss-products .enbuss-screen__inner { max-width: 1580px; }
  .enbuss-cases .enbuss-screen__inner,
  .enbuss-quality .enbuss-screen__inner { max-width: 1580px; }
  .enbuss-product-card { min-height: 589px; }
  .enbuss-case-grid { height: 637px; }
  .enbuss-quality-grid { gap: 2%; }
  .enbuss-quality-main__image { height: 374px; }
  .enbuss-quality-list { gap: 24px; }
  .enbuss-quality-item { padding-bottom: 0; }
  .enbuss-quality-item img { height: 174px; }
}

@media (max-width: 1024px) {
  .enbuss-hero-slide { background-image: var(--enbuss-hero-bg-mobile, var(--enbuss-hero-bg)); }
  :root {
    --enbuss-header-height: 60px;
    --enbuss-content-offset: max(calc(var(--f-topbar-height, 0px) + var(--f-header-height, 60px)), var(--enbuss-header-height));
  }
  html:has(body.template-home), body.template-home { overflow: visible !important; scroll-snap-type: none !important; }
  body.template-home #main-content { overflow: visible !important; }
  body.template-home #main-content > .f-section { display: block !important; min-height: 0 !important; overflow: visible !important; }
  .enbuss-site-header { background: #fff; box-shadow: 0 2px 12px rgba(0,29,82,.07); color: var(--enbuss-blue); height: 60px; padding: 0 20px; }
  .enbuss-site-header::after { background: #eef0f3; }
  .enbuss-site-header__logo { width: 114px; }
  .enbuss-site-header__logo img { filter: brightness(0) saturate(100%) invert(12%) sepia(43%) saturate(2508%) hue-rotate(188deg) brightness(87%) contrast(106%); max-height: 40px; }
  .enbuss-site-nav { display: none; }
  .enbuss-mobile-toggle { display: block; }
  .enbuss-screen,
  .enbuss-contact-screen,
  .enbuss-footer-screen { height: auto !important; min-height: 0 !important; overflow: hidden !important; position: relative !important; transform: none !important; }
  .enbuss-screen__inner { max-width: 640px; width: calc(100% - 40px); }
  .enbuss-section-head { align-items: flex-start; display: block; margin-bottom: 28px; }
  .enbuss-section-head h2 { font-size: 24px; line-height: 1.35; margin-bottom: 10px; }
  .enbuss-section-head p { font-size: 15px; }
  .enbuss-section-head .enbuss-more { margin-top: 16px; }
  .enbuss-hero { height: 240px !important; margin-top: var(--enbuss-content-offset); }
  .enbuss-hero-copy { left: 20px; max-width: calc(100% - 40px); top: 50%; transform: translateY(-25%); }
  .enbuss-hero-copy small { font-size: 10px; letter-spacing: .12em; margin-bottom: 8px; }
  .enbuss-hero-copy h1 { font-size: 25px; line-height: 1.08; }
  .enbuss-hero-copy p { font-size: 12px; line-height: 1.45; margin-top: 8px; }
  .enbuss-outline-button { display: none; }
  .enbuss-hero-arrow { display: none; }
  .enbuss-hero-dots { bottom: 12px; }
  .enbuss-products { display: block; padding: 50px 0; }
  .enbuss-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .enbuss-product-card { min-height: 208px; }
  .enbuss-product-card__number { height: 52px; line-height: 50px; top: 25%; width: 52px; }
  .enbuss-product-card h3 { bottom: 48px; font-size: 13px; left: 8px; right: 8px; }
  .enbuss-product-card span:last-child { display: none; }
  .enbuss-cases { display: block; padding: 50px 0; }
  .enbuss-case-grid { display: block; height: auto; }
  .enbuss-case-card,
  .enbuss-case-card.is-active { display: block; height: 240px; margin-top: 20px; padding: 0; width: 100%; }
  .enbuss-case-card:first-child { margin-top: 0; }
  .enbuss-case-card::after { right: 0; }
  .enbuss-case-card__copy { bottom: 24px; left: 18px; min-width: 0; right: 18px; }
  .enbuss-case-card h3 { font-size: 17px; white-space: normal; }
  .enbuss-case-card p,
  .enbuss-case-card.is-active p { display: flex; font-size: 12px; }
  .enbuss-about { display: block; min-height: 516px !important; padding: 50px 0 120px; }
  .enbuss-about::after { background: linear-gradient(90deg,rgba(231,245,255,.96),rgba(231,245,255,.84)); }
  .enbuss-about-copy h2 { font-size: 24px; }
  .enbuss-about-copy h3 { font-size: 20px; margin: 12px 0 24px; }
  .enbuss-about-copy p { font-size: 13px; line-height: 1.65; }
  .enbuss-about-menu { grid-template-columns: repeat(2,1fr); width: calc(100% - 40px); }
  .enbuss-about-menu a { font-size: 12px; height: 52px; }
  .enbuss-about-menu i { height: 30px; width: 30px; }
  .enbuss-quality { display: block; padding: 50px 0; }
  .enbuss-quality-grid { display: block; }
  .enbuss-quality-main__image { height: 210px; }
  .enbuss-quality-main h3 { font-size: 19px; }
  .enbuss-quality-list { margin-top: 26px; }
  .enbuss-quality-item { gap: 14px; grid-template-columns: 38% 1fr; }
  .enbuss-quality-item img { height: 92px; }
  .enbuss-quality-item h3 { font-size: 15px; }
  .enbuss-quality-item p { display: none; }
  body.template-home .enbuss-contact-screen { display: block !important; min-height: 541px !important; padding: 60px 0 50px !important; }
  body.template-home .enbuss-contact-screen > .container { width: calc(100% - 40px) !important; }
  body.template-home .enbuss-contact-screen .f-contact-form__main { max-width: none; width: 100% !important; }
  body.template-home .enbuss-contact-screen .f-contact-form__heading { font-size: 24px; }
  body.template-home .enbuss-contact-screen .f-contact-form__description { font-size: 13px; }
  body.template-home .enbuss-contact-screen .form-field { min-height: 46px; }
  body.template-home .enbuss-contact-screen textarea.form-field { min-height: 88px; }
  .enbuss-footer-screen { background-image: none !important; }
  .enbuss-footer-spacer { display: none; }
  .enbuss-footer-panel { padding: 42px 0 18px; }
  .enbuss-footer-top { display: block; margin-bottom: 24px; padding-bottom: 24px; width: calc(100% - 40px); }
  .enbuss-footer-logo img { width: 180px; }
  .enbuss-footer-stat { display: none; }
  .enbuss-footer-links { grid-template-columns: repeat(2,1fr); row-gap: 24px; width: calc(100% - 40px); }
  .enbuss-footer-column:nth-child(3),
  .enbuss-footer-column:nth-child(4) { display: none; }
  .enbuss-footer-column--contact { grid-column: span 2; }
  .enbuss-footer-copy { font-size: 10px; margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .enbuss-screen,
  .enbuss-contact-screen,
  .enbuss-footer-screen,
  .enbuss-hero-slide { transition-duration: .01ms !important; }
}

/* Use the configured system menu on the homepage while keeping the ENBUSS visual language. */
body.template-home .page_container > div:first-child {
  display: block !important;
  height: 0;
}

body.template-home .enbuss-site-header,
body.template-home .enbuss-mobile-menu {
  display: none !important;
}

body.template-home .page_container > div:first-child > div,
body.template-home .page_container > div:first-child site-nav {
  display: block !important;
}

body.template-home .page_container > div:first-child site-nav {
  inset: 0 0 auto;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

body.template-home .page_container > div:first-child .f-header {
  height: var(--enbuss-header-height);
}

body.template-home .page_container > div:first-child .f-header__desktop {
  background: linear-gradient(180deg, rgba(17,31,42,.34), rgba(17,31,42,0));
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #fff;
  min-height: var(--enbuss-header-height);
  padding-inline: clamp(18px, 3vw, 50px);
}

body.template-home .page_container > div:first-child .f-header__container {
  max-width: none;
  padding: 0;
  width: 100%;
}

body.template-home .page_container > div:first-child .f-header__inner {
  min-height: var(--enbuss-header-height);
}

body.template-home .page_container > div:first-child .f-header__desktop .f-logo__image-default img,
body.template-home .page_container > div:first-child .f-header__desktop .f-logo__image-transparent img {
  filter: brightness(0) invert(1);
}

body.template-home .page_container > div:first-child .f-header.is-solid .f-header__desktop,
body.template-home .page_container > div:first-child .f-header.stuck .f-header__desktop {
  background: rgb(var(--color-background)) !important;
  border-bottom-color: rgba(23,51,77,.12);
  box-shadow: 0 3px 18px rgba(0,29,82,.06);
  color: var(--enbuss-blue);
}

body.template-home .page_container > div:first-child .f-header.is-solid .f-header__desktop .f-logo__image-default img,
body.template-home .page_container > div:first-child .f-header.is-solid .f-header__desktop .f-logo__image-transparent img,
body.template-home .page_container > div:first-child .f-header.stuck .f-header__desktop .f-logo__image-default img,
body.template-home .page_container > div:first-child .f-header.stuck .f-header__desktop .f-logo__image-transparent img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(43%) saturate(2508%) hue-rotate(188deg) brightness(87%) contrast(106%);
}

@media (max-width: 1024px) {
  body.template-home .page_container > div:first-child site-nav {
    position: fixed;
  }

  body.template-home .page_container > div:first-child .f-header {
    height: var(--enbuss-header-height);
  }

  body.template-home .page_container > div:first-child .f-header__mobile {
    background: rgb(var(--color-background)) !important;
    border-bottom: 1px solid #eef0f3;
    color: var(--enbuss-blue);
    min-height: var(--enbuss-header-height);
  }

  body.template-home .page_container > div:first-child .f-header__mobile .f-logo__image-default img,
  body.template-home .page_container > div:first-child .f-header__mobile .f-logo__image-transparent img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(43%) saturate(2508%) hue-rotate(188deg) brightness(87%) contrast(106%);
  }
}

/* ENBUSS desktop submenu light blue v1 */
@media (min-width: 1025px) {
  body.template-home .page_container > div:first-child .f-header__desktop .f-header__dropdown-bg,
  body.template-home .page_container > div:first-child .f-header__desktop .f-mega-menu,
  body.template-home .page_container > div:first-child .f-header__desktop .f-mega-menu__container,
  body.template-home .page_container > div:first-child .f-header__desktop .f-mega-menu__inner,
  body.template-home .page_container > div:first-child .f-header__desktop .f-mega-menu__column,
  body.template-home .page_container > div:first-child .f-header__desktop .f-sub-menu {
    background-color: #eaf4ff !important;
    background-image: none !important;
  }

  body.template-home .page_container > div:first-child .f-header__desktop .f-mega-menu,
  body.template-home .page_container > div:first-child .f-header__desktop .f-mega-menu .f-menu__link,
  body.template-home .page_container > div:first-child .f-header__desktop .f-mega-menu .f-menu__sub-arrow {
    color: #17334d !important;
  }

  body.template-home .page_container > div:first-child .f-header__desktop .f-mega-menu .f-menu__link:hover,
  body.template-home .page_container > div:first-child .f-header__desktop .f-mega-menu .f-sub-menu__item:hover > .f-menu__link {
    background-color: #dceeff !important;
    color: #17334d !important;
  }
}



