:root {
  --ink: #111714;
  --muted: #55615b;
  --line: #dfe5de;
  --paper: #f7f8f5;
  --white: #ffffff;
  --forest: #245b42;
  --forest-dark: #163c2b;
  --copper: #a45132;
  --gold: #e5b951;
  --soft-green: #e8f2eb;
  --shadow: 0 18px 45px rgba(17, 23, 20, 0.16);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

.section[id] {
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 6px;
  font-weight: 900;
}

.brand-logo {
  width: 96px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.brand-logo img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #24302b;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--copper);
}

.reverse-proxy-header {
  padding-bottom: 0;
}

.hub-subnav {
  position: relative;
  z-index: 110;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(36, 91, 66, 0.12);
  background: rgba(247, 248, 245, 0.98);
  transition: none;
}

.hub-subnav.is-open {
  padding-bottom: var(--hub-open-menu-height, 58px);
}

.hub-subnav-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 54px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.hub-subnav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  overflow: visible;
}

.hub-menu {
  position: static;
  flex: 0 0 auto;
}

.hub-menu[open] {
  z-index: 80;
}

.hub-menu > summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #24302b;
  min-height: 54px;
  padding: 1px 0 0;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  list-style: none;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.hub-menu > summary::-webkit-details-marker {
  display: none;
}

.hub-menu > summary::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
  transition: transform 160ms ease, margin 160ms ease;
}

.hub-menu[open] > summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.hub-menu > summary:hover,
.hub-menu[open] > summary,
.hub-menu[data-active="true"] > summary {
  color: var(--forest);
  border-bottom-color: var(--copper);
}

.hub-dropdown {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 90;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 12px 0 13px;
  border-top: 1px solid rgba(36, 91, 66, 0.12);
  background: rgba(247, 248, 245, 0.98);
  box-shadow: none;
}

.hub-dropdown a {
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 0;
  border-radius: 0;
  color: #24302b;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.25;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.hub-dropdown a:hover,
.hub-dropdown a[aria-current="page"] {
  color: var(--forest);
  background: transparent;
}

.hub-dropdown a:hover {
  transform: translateX(2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.nav-social:hover {
  color: var(--forest);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--forest);
  border-radius: 6px;
  background: var(--forest);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button.secondary {
  background: var(--white);
  color: var(--forest);
}

.button.copper {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--button-on-accent, var(--white));
}

.button svg {
  width: 17px;
  height: 17px;
}

.hero {
  min-height: calc(100vh - 150px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(12, 18, 15, 0.84) 0%, rgba(12, 18, 15, 0.55) 44%, rgba(12, 18, 15, 0.1) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.client-hero {
  min-height: calc(100vh - 140px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 0.98) 0%, rgba(247, 248, 245, 0.84) 42%, rgba(247, 248, 245, 0.18) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.client-hero-copy {
  max-width: 710px;
  padding: 76px 0;
}

.client-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.client-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.source-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.84) 39%, rgba(255, 255, 255, 0.2) 72%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.source-hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.source-kicker,
.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.source-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(50px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

.source-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 650;
}

.source-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.source-service {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
}

.source-service span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.source-service h3 {
  margin: 13px 0 0;
  font-size: 22px;
  line-height: 1.12;
}

.source-service p {
  margin: 14px 0 0;
  color: var(--muted);
}

.source-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.source-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.source-contact-band {
  padding: 52px 0;
  color: var(--white);
  background: var(--ink);
}

.source-contact-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.source-contact-band h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
}

.source-contact-band p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.source-contact-lines {
  display: grid;
  gap: 8px;
  min-width: 250px;
  font-weight: 850;
}

.source-contact-lines a {
  color: var(--white);
  text-decoration: none;
}

.source-contact-lines span {
  color: rgba(255, 255, 255, 0.72);
}

.evm-source-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 180;
  height: 124px;
  background: transparent;
  pointer-events: none;
}

.evm-source-logo,
.evm-source-actions,
.evm-source-menu {
  pointer-events: auto;
}

.evm-source-logo {
  position: absolute;
  top: -42px;
  left: 0;
  display: block;
  width: 300px;
  height: 165px;
}

.evm-source-logo img {
  width: 300px;
  height: 165px;
  object-fit: contain;
}

.evm-source-actions {
  position: absolute;
  top: 40px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.evm-source-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 0;
  font: inherit;
  line-height: 1;
  text-decoration: none;
}

.evm-source-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: currentColor;
}

.evm-whatsapp::before {
  content: none;
}

.evm-menu-toggle {
  width: 32px;
  height: 32px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.evm-menu-toggle span {
  display: block;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
}

.evm-source-menu {
  position: absolute;
  top: 84px;
  right: 32px;
  width: min(320px, calc(100vw - 32px));
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.evm-source-menu a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  color: #2c2c2c;
  font: 800 15px/1.2 Roboto, Arial, sans-serif;
  text-decoration: none;
}

.evm-source-menu a[aria-current="page"] {
  color: #0ba7cc;
}

.evm-source-menu a:last-child {
  border-bottom: 0;
}

.evm-hub-subnav {
  z-index: 170;
  margin-top: 124px;
  margin-bottom: -178px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 0;
  border-bottom: 1px solid rgba(10, 167, 204, 0.35);
  backdrop-filter: blur(12px);
}

.evm-hub-subnav .hub-subnav-inner {
  width: min(1180px, calc(100% - 64px));
}

.evm-hub-subnav .hub-menu > summary:hover,
.evm-hub-subnav .hub-menu[open] > summary,
.evm-hub-subnav .hub-menu[data-active="true"] > summary {
  color: #087c9d;
  border-bottom-color: #0ba7cc;
}

.brand-fit-source-header {
  position: sticky;
  top: 0;
  z-index: 180;
  overflow: visible;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.brand-fit-main {
  background: #fff;
}

.brand-fit-inner {
  width: min(1320px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.8vw, 38px);
}

.brand-fit-logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--source-text);
  font-family: var(--client-heading-font-stack);
  font-weight: var(--client-heading-weight);
  text-decoration: none;
}

.brand-fit-logo img {
  width: auto;
  max-width: min(230px, 26vw);
  max-height: 56px;
  object-fit: contain;
}

.brand-fit-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--brand-radius, 6px);
  background: var(--source-accent);
  color: #fff;
}

.brand-fit-name {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-fit-menu {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
}

.brand-fit-menu a {
  color: var(--source-text);
  font-family: var(--client-body-font-stack);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.15;
  text-decoration: none;
  transition: color 160ms ease;
}

.brand-fit-menu a:hover,
.brand-fit-menu a[aria-current="page"] {
  color: var(--source-accent);
}

.brand-fit-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.brand-fit-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--source-accent);
  border-radius: var(--button-radius, 6px);
  padding: 0 20px;
  background: var(--source-accent);
  color: #fff;
  font-family: var(--client-body-font-stack);
  font-size: 15px;
  font-weight: var(--client-button-weight);
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.brand-fit-cta:hover {
  border-color: var(--source-deep);
  background: var(--source-deep);
  transform: translateY(-1px);
}

.brand-fit-menu-button {
  width: 42px;
  height: 42px;
  display: none;
  align-content: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: var(--source-text);
  cursor: pointer;
}

.brand-fit-menu-button span {
  width: 26px;
  height: 2px;
  display: block;
  background: currentColor;
}

.brand-fit-mobile-menu {
  display: grid;
  gap: 0;
  padding: 6px 24px 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.brand-fit-mobile-menu[hidden] {
  display: none;
}

.brand-fit-mobile-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--source-text);
  font-family: var(--client-body-font-stack);
  font-size: 16px;
  font-weight: 650;
  text-decoration: none;
}

.brand-fit-mobile-menu a:hover,
.brand-fit-mobile-menu a[aria-current="page"] {
  color: var(--source-accent);
}

.brand-fit-mobile-child {
  padding-left: 18px;
  color: var(--source-neutral) !important;
  font-size: 15px !important;
}

.brand-fit-hub-subnav {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.brand-fit-hub-subnav .hub-subnav-inner {
  width: min(1320px, calc(100% - 32px));
  min-height: 46px;
}

.brand-fit-hub-subnav .hub-subnav-links {
  gap: 20px;
}

.brand-fit-hub-subnav .hub-menu > summary {
  min-height: 46px;
  color: var(--source-text);
  font-family: var(--client-body-font-stack);
  font-size: 14px;
  font-weight: 750;
}

.brand-fit-hub-subnav .hub-menu > summary:hover,
.brand-fit-hub-subnav .hub-menu[open] > summary,
.brand-fit-hub-subnav .hub-menu[data-active="true"] > summary {
  color: var(--source-accent);
  border-bottom-color: var(--source-accent);
}

.source-elementor-header {
  position: sticky;
  top: 0;
  z-index: 180;
  overflow: visible;
  background: #fff;
  border-bottom: 1px solid rgba(4, 42, 94, 0.1);
}

.source-elementor-bar {
  background: #fff;
}

.source-elementor-inner {
  width: min(1440px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 20% minmax(0, 1fr) 20%;
  align-items: center;
  gap: 0;
}

.source-elementor-logo {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.source-elementor-logo img {
  width: min(80%, 210px);
  max-height: 72px;
  object-fit: contain;
}

.source-elementor-menu {
  min-width: 0;
}

.source-elementor-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-menu-item {
  position: relative;
}

.source-elementor-menu a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 13px 14px;
  color: var(--source-text);
  font-family: var(--client-body-font-stack);
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  text-transform: capitalize;
  transition: color 160ms ease;
}

.source-elementor-menu a:hover,
.source-elementor-menu a[aria-current="page"] {
  color: var(--source-accent);
}

.source-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 18px 45px rgba(4, 42, 94, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.source-menu-item-has-children:hover .source-submenu,
.source-menu-item-has-children:focus-within .source-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.source-submenu a {
  width: 100%;
  min-height: 38px;
  justify-content: flex-start;
  padding: 10px 18px;
  text-transform: none;
}

.source-elementor-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--source-accent);
  color: #fff;
  font-family: var(--client-body-font-stack);
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}

.source-elementor-cta:hover {
  background: var(--source-deep);
  transform: translateY(-1px);
}

.source-elementor-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.bootscore-source-header {
  background: #f8f9fa;
  border-bottom: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.bootscore-source-header .source-elementor-bar {
  background: #f8f9fa;
}

.bootscore-source-header .source-elementor-inner {
  width: min(1320px, calc(100% - 24px));
  min-height: 92px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
}

.bootscore-source-header .source-elementor-logo {
  width: auto;
}

.bootscore-source-header .source-elementor-logo img {
  width: 200px;
  max-width: min(42vw, 200px);
  max-height: 60px;
}

.bootscore-source-header .source-elementor-list {
  justify-content: flex-end;
}

.bootscore-source-header .source-menu-item {
  display: flex;
  align-items: center;
}

.bootscore-source-header .source-elementor-menu a {
  position: relative;
  min-height: 44px;
  padding: 10px 12px;
  color: #202020;
  font-family: var(--client-body-font-stack);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}

.bootscore-source-header .source-elementor-menu a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0d6efd;
  opacity: 0;
  transform: translateX(-50%);
  transition: width 160ms ease, opacity 160ms ease;
}

.bootscore-source-header .source-elementor-menu a:hover,
.bootscore-source-header .source-elementor-menu a[aria-current="page"] {
  color: #202020;
}

.bootscore-source-header .source-elementor-menu a:hover::after,
.bootscore-source-header .source-elementor-menu a[aria-current="page"]::after {
  width: calc(100% - 32px);
  opacity: 1;
}

.bootscore-source-header .source-elementor-cta {
  min-height: 31px;
  padding: 4px 8px;
  border: 1px solid #0d6efd;
  border-radius: 4px;
  background: #0d6efd;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.bootscore-source-header .source-elementor-cta:hover {
  border-color: #a1895e;
  background: #a1895e;
  transform: none;
}

.bootscore-source-header .source-elementor-cta svg {
  display: none;
}

.bootscore-hub-subnav {
  border-top: 1px solid rgba(32, 32, 32, 0.08);
  border-bottom: 1px solid rgba(32, 32, 32, 0.08);
  background: #fff;
}

.bootscore-hub-subnav .hub-subnav-inner {
  width: min(1320px, calc(100% - 24px));
}

.bootscore-hub-subnav .hub-menu > summary {
  min-height: 52px;
  color: #202020;
  font-size: 15px;
  font-weight: 400;
}

.bootscore-hub-subnav .hub-menu > summary:hover,
.bootscore-hub-subnav .hub-menu[open] > summary,
.bootscore-hub-subnav .hub-menu[data-active="true"] > summary {
  color: #202020;
  border-bottom-color: var(--source-accent);
}

.bootscore-source-header .source-elementor-mobile-menu {
  background: #ceb07b;
  text-align: center;
}

.bootscore-source-header .source-elementor-mobile-menu a {
  justify-content: center;
  color: #202020;
  font-size: 18px;
}

.webflow-source-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 996;
  background: transparent;
  color: #fff;
}

.webflow-navbar22-container {
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.webflow-navbar22-logo-link {
  position: relative;
  width: 10rem;
  height: 3.75rem;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: var(--client-heading-font-stack);
  font-weight: 800;
  text-decoration: none;
}

.webflow-navbar22-logo {
  position: absolute;
  inset: 0 auto 0 0;
  width: 10rem;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.webflow-navbar22-logo-dark {
  opacity: 0;
}

.webflow-navbar22-logo-light {
  opacity: 1;
}

.webflow-navbar22-logo-link:not(:has(.webflow-navbar22-logo-light)) .webflow-navbar22-logo-dark {
  opacity: 1;
}

.webflow-navbar22-actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.webflow-navbar22-cta {
  min-width: 212px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 0.75rem 2rem;
  background: transparent;
  color: #fff;
  font-family: var(--client-body-font-stack);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}

.webflow-navbar22-cta:hover {
  border-color: var(--source-accent);
  background: var(--source-accent);
}

.webflow-navbar22-menu-button {
  width: 38px;
  height: 38px;
  display: grid;
  align-content: center;
  justify-content: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.webflow-navbar22-menu-button span {
  width: 26px;
  height: 2px;
  display: block;
  background: currentColor;
}

.webflow-navbar22-menu {
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  z-index: 995;
  min-height: calc(100vh - 80px);
  display: grid;
  justify-items: end;
  padding: 5.5rem 5% 4rem;
  background: #101010;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
}

.webflow-navbar22-menu[hidden] {
  display: none;
}

.webflow-navbar22-menu-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 2.5rem;
}

.webflow-navbar22-menu-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0;
  color: #fff;
  font-family: var(--client-heading-font-stack);
  font-size: clamp(1.4rem, 2.7vw, 2.2rem);
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}

.webflow-navbar22-menu-link:hover,
.webflow-navbar22-menu-link[aria-current="page"] {
  color: var(--source-accent);
}

.webflow-navbar22-menu-link-child {
  padding-left: 2rem;
  color: var(--source-neutral);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
}

.webflow-hub-subnav {
  display: none;
}

.webflow-hub-subnav .hub-subnav-inner {
  width: min(100%, calc(100% - 10%));
}

.webflow-hub-subnav .hub-menu > summary {
  color: var(--source-deep);
  font-family: var(--client-body-font-stack);
  font-weight: var(--client-button-weight);
}

.webflow-hub-subnav .hub-menu > summary:hover,
.webflow-hub-subnav .hub-menu[open] > summary,
.webflow-hub-subnav .hub-menu[data-active="true"] > summary {
  color: var(--source-accent);
  border-bottom-color: var(--source-accent);
}

.source-menu-toggle {
  width: 34px;
  height: 34px;
  display: none;
  align-content: center;
  justify-self: end;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--source-accent);
  cursor: pointer;
}

.source-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.source-elementor-mobile-menu {
  display: grid;
  gap: 0;
  padding: 10px 39px 18px;
  border-top: 1px solid rgba(4, 42, 94, 0.1);
  background: #fff;
}

.source-elementor-mobile-menu[hidden] {
  display: none;
}

.source-elementor-mobile-menu a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: var(--source-text);
  font-family: var(--client-body-font-stack);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: none;
}

.source-elementor-mobile-menu a:hover,
.source-elementor-mobile-menu a[aria-current="page"] {
  color: var(--source-accent);
}

.source-mobile-child {
  padding-left: 18px !important;
  color: var(--source-neutral) !important;
}

.source-hub-subnav {
  position: relative;
  z-index: 170;
  border-top: 1px solid rgba(4, 42, 94, 0.08);
  border-bottom: 1px solid rgba(4, 42, 94, 0.12);
  background: #fff;
}

.source-hub-subnav .hub-subnav-inner {
  width: min(1440px, calc(100% - 40px));
  min-height: 58px;
}

.source-hub-subnav .hub-subnav-links {
  gap: 30px;
}

.source-hub-subnav .hub-menu > summary {
  min-height: 58px;
  color: var(--source-text);
  font-family: var(--client-body-font-stack);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.source-hub-subnav .hub-menu > summary:hover,
.source-hub-subnav .hub-menu[open] > summary,
.source-hub-subnav .hub-menu[data-active="true"] > summary {
  color: var(--source-deep);
  border-bottom-color: var(--source-accent);
}

.evm-hero {
  position: relative;
  min-height: 100vh;
  background: var(--hero-image) center / cover no-repeat;
}

.evm-hero-title {
  position: absolute;
  bottom: 64px;
  left: 0;
  width: min(1078px, 75vw);
  padding: 10px 74px 14px;
  background: #10a6ca;
}

.evm-hero-title h1 {
  margin: 0;
  color: #fff;
  font-family: Raleway, Arial, sans-serif;
  font-size: clamp(44px, 3.9vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.evm-intro {
  display: grid;
  grid-template-columns: 415px minmax(0, 1fr);
  gap: 180px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 0 0;
  background: #fff;
}

.evm-intro-copy {
  padding-top: 6px;
}

.evm-intro h3,
.evm-passion h3 {
  margin: 0 0 20px;
  color: #2d2d2d;
  font-family: Raleway, Arial, sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 5px;
}

.evm-intro h2 {
  margin: 0;
  color: #2e2e2e;
  font-family: Raleway, Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.evm-intro p {
  margin: 26px 0 0;
  color: #333;
  font: 400 14px/1.55 Roboto, Arial, sans-serif;
}

.evm-intro-media {
  position: relative;
  min-height: 578px;
}

.evm-intro-media > img {
  width: 450px;
  height: 450px;
  object-fit: cover;
}

.evm-contact-card {
  position: absolute;
  right: 257px;
  bottom: 10px;
  width: 342px;
  min-height: 292px;
  padding: 18px 32px 26px;
  background: #10a6ca;
  color: #fff;
}

.evm-contact-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 5px;
}

.evm-contact-card p {
  margin: 0 0 30px;
  color: #fff;
  font: 400 14px/1.45 Roboto, Arial, sans-serif;
}

.evm-contact-card a {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 18px;
  color: #fff;
  font: 400 14px/1.2 Roboto, Arial, sans-serif;
  text-decoration: none;
}

.evm-contact-card span {
  width: 20px;
  display: inline-grid;
  place-items: center;
  font-size: 17px;
}

.evm-passion {
  display: grid;
  grid-template-columns: 57.8% 42.2%;
  min-height: 1120px;
  margin-top: 116px;
  color: #fff;
  background: #137f96;
}

.evm-passion-copy {
  padding: 74px 80px 70px 198px;
}

.evm-passion h3 {
  color: #fff;
  font-size: 31px;
  letter-spacing: 0;
}

.evm-passion h2 {
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-family: Raleway, Arial, sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.evm-passion-copy > p {
  max-width: 600px;
  margin: 22px 0 48px;
  color: #fff;
  font: 400 14px/1.55 Roboto, Arial, sans-serif;
}

.evm-passion > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evm-passion-list {
  display: grid;
  gap: 48px;
}

.evm-passion-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.evm-line-icon {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
}

.evm-passion-item h3 {
  margin: 0 0 16px;
  font: 700 14px/1.2 Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

.evm-passion-item p {
  max-width: 420px;
  margin: 0;
  color: #fff;
  font: 400 14px/1.55 Roboto, Arial, sans-serif;
}

.evm-services {
  max-width: 1140px;
  margin: 0 auto;
  padding: 112px 0 90px;
  background: #fff;
}

.evm-services h2 {
  margin: 0 0 28px;
  color: #333;
  font-family: Raleway, Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.evm-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 40px;
}

.evm-service-item {
  min-height: 244px;
}

.evm-service-item:nth-last-child(2) {
  grid-column: 1 / span 1;
  margin-left: 181px;
  width: calc(100% - 181px);
}

.evm-service-item:nth-last-child(1) {
  grid-column: 2 / span 1;
  margin-left: 181px;
  width: calc(100% - 181px);
}

.evm-service-item h3 {
  margin: 46px 0 26px;
  color: #087c9d;
  font-family: Raleway, Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.evm-service-item p {
  margin: 0;
  color: #333;
  font: 400 14px/1.55 Roboto, Arial, sans-serif;
}

.evm-service-item a {
  color: #333;
  font: 800 14px/1 Roboto, Arial, sans-serif;
  text-decoration: none;
}

.evm-service-item a:last-child {
  display: inline-block;
  margin-top: 34px;
}

.evm-final-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 0 118px;
  background: #fff;
}

.evm-final-cta img {
  width: 550px;
  height: 310px;
  object-fit: cover;
}

.evm-final-cta h2 {
  margin: 30px 0 24px;
  color: #333;
  font-family: Raleway, Arial, sans-serif;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.05;
}

.evm-final-cta p {
  max-width: 490px;
  margin: 0 0 30px;
  color: #333;
  font: 400 15px/1.55 Roboto, Arial, sans-serif;
}

.evm-outline-button {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  padding: 0 26px;
  border: 1px solid #087c9d;
  color: #087c9d;
  font: 700 15px/1 Roboto, Arial, sans-serif;
  text-decoration: none;
}

.evm-footer {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 0 28px;
  color: #333;
  background: #fff;
  font: 400 15px/1.55 Roboto, Arial, sans-serif;
}

.evm-footer img {
  width: 320px;
  height: auto;
  margin-bottom: -8px;
}

.evm-footer a {
  display: block;
  width: fit-content;
  color: #333;
  text-decoration: none;
}

.evm-footer p {
  margin: 18px 0;
}

.evm-footer small {
  display: block;
  text-align: center;
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 58px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 800px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.18);
}

.hero-proof div {
  padding: 18px;
  background: rgba(12, 18, 15, 0.42);
}

.hero-proof strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.hero-proof span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 82px 0;
}

.hero + .section {
  padding-top: 42px;
}

.section.white {
  background: var(--white);
}

.section.green {
  color: var(--white);
  background: var(--forest-dark);
}

.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.split.top {
  align-items: start;
}

.section h2,
.article h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.green .lead {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.article-meta {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-card h3 {
  margin-top: 10px;
}

.article-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.article-card a {
  margin-top: auto;
  padding-top: 20px;
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 16px 15px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 19px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--forest);
  border-bottom: 3px solid var(--forest);
  transform: rotate(-45deg);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.stat-strip div {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.stat-strip div:last-child {
  border-right: 0;
}

.stat-strip strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.stat-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
}

.band h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 82px 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  text-decoration: none;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.article-wrap {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 82px;
}

.article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 58px);
}

.article h2 {
  margin: 42px 0 12px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
}

.article h3 {
  margin: 28px 0 8px;
  font-size: 21px;
}

.article p,
.article li {
  color: #38433e;
  font-size: 17px;
}

.article ul {
  padding-left: 22px;
}

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
}

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

.comparison-table th {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.related-links {
  margin: 42px 0 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.related-links h2 {
  margin-top: 0;
}

.related-links ul {
  margin: 0;
}

.summary {
  margin: 28px 0;
  padding: 24px;
  border-left: 5px solid var(--gold);
  background: #fbf6e4;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.direct-answer {
  margin: 34px 0;
  padding: 26px;
  border: 1px solid rgba(36, 91, 66, 0.22);
  border-radius: var(--radius);
  background: var(--soft-green);
}

.direct-answer strong {
  display: block;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.direct-answer p {
  margin: 10px 0 0;
  color: #24302b;
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 800;
  line-height: 1.25;
}

.blog-layout-editorial-magazine .blog-home-articles .section-inner,
.blog-layout-proof-led .blog-home-proof .section-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.blog-layout-editorial-magazine .blog-home-articles .blog-card-grid,
.blog-layout-proof-led .blog-home-proof .card {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.blog-layout-editorial-magazine .blog-home-articles h2,
.blog-layout-editorial-magazine .blog-home-articles .lead,
.blog-layout-proof-led .blog-home-proof h2,
.blog-layout-proof-led .blog-home-proof .lead {
  grid-column: 1;
}

.blog-layout-editorial-magazine .blog-home-articles .blog-card-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.blog-layout-editorial-magazine .blog-home-articles .card:first-child {
  grid-row: span 2;
}

.blog-layout-editorial-magazine .blog-home-articles .card:first-child .card-body {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-layout-editorial-magazine .page-hero,
.blog-layout-editorial-magazine .article {
  border-radius: 0;
}

.blog-layout-editorial-magazine .article-wrap {
  width: min(1120px, calc(100% - 48px));
}

.blog-layout-editorial-magazine .article {
  border: 0;
  box-shadow: inset 0 1px 0 var(--line);
}

.blog-layout-editorial-magazine .article h2 {
  max-width: 780px;
}

.blog-layout-decision-guide .blog-home-services {
  background: var(--white);
}

.blog-layout-decision-guide .blog-home-guides,
.blog-layout-decision-guide .blog-home-articles {
  background: var(--paper);
}

.blog-layout-decision-guide .direct-answer,
.blog-layout-decision-guide .summary,
.blog-layout-decision-guide .decision-tool,
.blog-layout-decision-guide .comparison-table-wrap {
  border-left: 5px solid var(--forest);
  background: #f4f8f4;
}

.blog-layout-decision-guide .article {
  border-top: 8px solid var(--forest);
}

.blog-layout-decision-guide .check-list li {
  background: #fbfdfb;
}

.blog-layout-proof-led .hero-proof,
.blog-layout-proof-led .trust-block,
.blog-layout-proof-led .project-gallery,
.blog-layout-proof-led .before-after-section {
  box-shadow: var(--shadow);
}

.blog-layout-proof-led .blog-home-proof {
  background:
    linear-gradient(135deg, rgba(36, 91, 66, 0.94), rgba(20, 45, 36, 0.98)),
    var(--forest-dark);
}

.blog-layout-proof-led .blog-home-proof .card {
  color: var(--ink);
}

.blog-layout-proof-led .article {
  border-color: rgba(36, 91, 66, 0.22);
}

.blog-layout-proof-led .direct-answer {
  border-color: rgba(185, 115, 70, 0.35);
  background: #fff8ec;
}

.blog-layout-custom.client-layout-tectura-proof-editorial-v1 .page-hero,
.blog-layout-custom.client-layout-tectura-proof-editorial-v1 .hero {
  background-position: center top;
}

.blog-layout-custom.client-layout-tectura-proof-editorial-v1 .article {
  border-top: 6px solid var(--source-accent, var(--copper));
}

.comparison-table {
  margin: 34px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

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

.comparison-table th {
  color: var(--forest);
  background: #eef5ef;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.video-clip-section {
  margin: 42px 0;
}

.project-gallery {
  margin: 42px 0;
}

.before-after-section {
  margin: 42px 0;
}

.before-after-section h2,
.project-gallery h2 {
  margin-bottom: 18px;
}

.before-after-slider {
  --position: 50%;
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  aspect-ratio: 16 / 10;
}

.before-after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-reveal {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.before-after-reveal .before-after-image {
  width: 100%;
  max-width: none;
}

.before-after-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 24, 32, .72);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.before-label {
  left: 14px;
}

.after-label {
  right: 14px;
}

.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 3;
  width: 2px;
  background: rgba(255, 255, 255, .92);
  transform: translateX(-1px);
  box-shadow: 0 0 0 1px rgba(16, 24, 32, .18);
  pointer-events: none;
}

.before-after-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 86%, #000);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(16, 24, 32, .28);
}

.before-after-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after-slider p {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(16, 24, 32, .72);
  color: #fff;
  font-size: 14px;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-gallery video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #101820;
}

.project-gallery figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
}

.video-clip-section h2 {
  margin-bottom: 18px;
}

.video-clip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-clip-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.08);
}

.video-clip-card video,
.video-clip-card iframe,
.video-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #101820;
}

.video-frame {
  display: grid;
  place-items: center;
  padding: 22px;
  color: var(--white);
  text-align: center;
}

.video-frame strong,
.video-frame span {
  display: block;
}

.video-frame span {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.72);
}

.video-clip-card > div {
  padding: 20px;
}

.video-clip-card h3 {
  margin: 6px 0 10px;
}

.video-clip-card blockquote {
  margin: 14px 0 0;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  color: var(--forest-dark);
  font-weight: 800;
}

.trust-block {
  margin: 38px 0;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest-dark);
}

.trust-block h2,
.trust-block h3 {
  color: var(--white);
}

.trust-block p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-items div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.trust-items strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
}

.trust-items span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.decision-tool {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.decision-tool h3 {
  margin: 0;
}

.decision-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.decision-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.decision-option span {
  display: block;
  min-height: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: #24302b;
  font-weight: 800;
  cursor: pointer;
}

.decision-option input:focus-visible + span,
.decision-option input:checked + span {
  border-color: var(--forest);
  background: var(--soft-green);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.decision-result {
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fbf6e4;
}

.decision-result strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
}

.decision-result p {
  margin: 8px 0 0;
}

.decision-result a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.faq-block {
  display: grid;
  gap: 12px;
  margin: 24px 0 6px;
}

.faq-block details {
  overflow: clip;
  border: 1px solid rgba(17, 23, 20, 0.12);
  border-radius: min(12px, var(--radius));
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 23, 20, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-block details[open] {
  border-color: rgba(24, 74, 53, 0.32);
  box-shadow: 0 18px 44px rgba(17, 23, 20, 0.09);
}

.faq-block summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  color: var(--ink);
  font-family: var(--client-heading-font-stack);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 900;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.faq-block summary::-webkit-details-marker {
  display: none;
}

.faq-block summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(24, 74, 53, 0.18);
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--forest);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.faq-block details[open] summary::after {
  content: "-";
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-block details p,
.faq-answer p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .faq-block {
    gap: 10px;
  }

  .faq-block summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 15px 16px;
    font-size: 17px;
  }

  .faq-block summary::after {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }
}

.cta-panel {
  margin-top: 42px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--soft-green);
}

.sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 200;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(17, 23, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(247, 248, 245, 0.96);
  box-shadow: 0 18px 45px rgba(17, 23, 20, 0.2);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.sticky-cta .button {
  min-height: 42px;
  padding: 0 10px;
  font-size: 13px;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer {
  padding: 52px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 36px;
}

.footer strong,
.footer a {
  color: var(--white);
}

.footer a {
  display: block;
  margin-top: 8px;
  text-decoration: none;
}

.theme-source-editorial {
  background: #fff;
  color: var(--source-text);
}

.theme-source-editorial .evm-source-header {
  position: absolute;
}

.theme-source-editorial .evm-source-menu {
  border: 0;
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.theme-source-editorial .evm-hub-subnav {
  position: absolute;
  top: 124px;
  right: 0;
  left: 0;
  z-index: 171;
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 166, 202, 0.32);
  backdrop-filter: blur(10px);
}

.theme-source-editorial .hub-menu > summary {
  min-height: 54px;
  color: var(--source-text);
  font-family: var(--client-heading-font-stack);
  font-size: 15px;
  font-weight: var(--client-button-weight);
  line-height: 1;
}

.theme-source-editorial .hub-menu {
  position: relative;
}

.theme-source-editorial .hub-menu > summary:hover,
.theme-source-editorial .hub-menu[open] > summary,
.theme-source-editorial .hub-menu[data-active="true"] > summary {
  color: var(--source-deep);
  border-bottom-color: var(--source-accent);
}

.theme-source-editorial .evm-hub-subnav.is-open {
  padding-bottom: 0;
}

.theme-source-editorial .hub-dropdown {
  top: calc(100% + 8px);
  right: auto;
  left: 0;
  width: max-content;
  min-width: 240px;
  max-width: min(420px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.theme-source-editorial .hub-dropdown a {
  min-height: 38px;
  padding: 0 18px;
  font-family: var(--client-heading-font-stack);
  font-size: 14px;
  font-weight: var(--client-button-weight);
  line-height: 1.2;
}

.theme-source-editorial .hub-dropdown a:hover,
.theme-source-editorial .hub-dropdown a[aria-current="page"] {
  color: #fff;
  background: var(--source-accent);
  transform: none;
}

.theme-source-editorial .source-elementor-header {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid rgba(4, 42, 94, 0.1);
}

.theme-source-editorial .source-hub-subnav {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  margin: 0;
  background: #fff;
  border-top: 1px solid rgba(4, 42, 94, 0.08);
  border-bottom: 1px solid rgba(4, 42, 94, 0.12);
  backdrop-filter: none;
}

.theme-source-editorial .source-hub-subnav .hub-menu > summary {
  min-height: 58px;
  color: var(--source-text);
  font-family: var(--client-body-font-stack);
  font-size: 15px;
  font-weight: 400;
}

.theme-source-editorial .source-hub-subnav .hub-menu > summary:hover,
.theme-source-editorial .source-hub-subnav .hub-menu[open] > summary,
.theme-source-editorial .source-hub-subnav .hub-menu[data-active="true"] > summary {
  color: var(--source-deep);
  border-bottom-color: var(--source-accent);
}

.theme-source-editorial .source-hub-subnav.is-open {
  padding-bottom: var(--hub-open-menu-height, 96px);
}

.theme-source-editorial .source-hub-subnav .hub-menu {
  position: static;
}

.theme-source-editorial .source-hub-subnav .hub-dropdown {
  top: 58px;
  right: 0;
  left: 0;
  width: auto;
  min-width: 0;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 12px 0 13px;
  border-top: 1px solid rgba(4, 42, 94, 0.08);
  background: #fff;
  box-shadow: none;
}

.theme-source-editorial .source-hub-subnav .hub-dropdown a {
  min-height: 30px;
  padding: 0;
  font-family: var(--client-body-font-stack);
  font-size: 14px;
  font-weight: var(--client-button-weight);
}

.theme-source-editorial .source-hub-subnav .hub-dropdown a:hover,
.theme-source-editorial .source-hub-subnav .hub-dropdown a[aria-current="page"] {
  color: var(--source-accent);
  background: transparent;
  transform: translateX(2px);
}

.theme-source-editorial .hero,
.theme-source-editorial .page-hero {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 230px 0 54px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.58) 100%),
    var(--hub-hero-image) center / cover no-repeat;
  color: #fff;
}

.theme-source-editorial .hero-inner,
.theme-source-editorial .page-hero .section-inner {
  width: 100%;
  max-width: none;
  padding: 0;
}

.theme-source-editorial .breadcrumbs {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--client-body-font-stack);
  font-size: 13px;
  font-weight: var(--client-button-weight);
  line-height: 1;
}

.theme-source-editorial .breadcrumbs a {
  color: #fff;
}

.theme-source-editorial .hero h1,
.theme-source-editorial .page-hero h1 {
  width: min(980px, 76vw);
  max-width: none;
  margin: 0;
  padding: 12px 74px 16px;
  background: var(--source-accent);
  color: #fff;
  font-family: var(--client-heading-font-stack);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: var(--client-heading-weight);
  line-height: 1;
}

.theme-source-editorial .hero p,
.theme-source-editorial .page-hero p {
  width: min(var(--max), calc(100% - 64px));
  max-width: 820px;
  margin: 24px auto 0;
  color: #fff;
  font-family: var(--client-body-font-stack);
  font-size: 18px;
  font-weight: var(--client-body-weight);
  line-height: 1.55;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.theme-source-editorial .hero-actions,
.theme-source-editorial .hero-proof {
  width: min(var(--max), calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.theme-source-editorial .hero-proof {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.16);
}

.theme-source-editorial .section,
.theme-source-editorial .article-wrap {
  background: #fff;
}

.theme-source-editorial .article-wrap {
  width: min(1080px, calc(100% - 64px));
  padding: 78px 0 96px;
}

.theme-source-editorial .article {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.theme-source-editorial .article h2,
.theme-source-editorial .section h2 {
  color: var(--source-text);
  font-family: var(--client-heading-font-stack);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: var(--client-heading-weight);
  line-height: 1.02;
}

.theme-source-editorial .article h3,
.theme-source-editorial .card h3 {
  color: var(--source-deep);
  font-family: var(--client-heading-font-stack);
  font-weight: 800;
}

.theme-source-editorial .article p,
.theme-source-editorial .article li {
  color: var(--source-text);
  font-family: var(--client-body-font-stack);
  font-size: 16px;
  font-weight: var(--client-body-weight);
  line-height: 1.68;
}

.theme-source-editorial .summary,
.theme-source-editorial .decision-result {
  border-left-color: var(--source-accent);
  border-radius: 0;
  background: var(--source-light);
  color: var(--source-text);
}

.theme-source-editorial .summary strong,
.theme-source-editorial .summary li,
.theme-source-editorial .decision-result strong,
.theme-source-editorial .decision-result p {
  color: var(--source-text);
}

.theme-source-editorial .direct-answer,
.theme-source-editorial .cta-panel {
  border: 0;
  border-radius: 0;
  background: var(--source-accent);
  color: var(--source-accent-contrast, #fff);
  box-shadow: none;
}

.theme-source-editorial .trust-block {
  border: 0;
  border-radius: 0;
  background: var(--source-deep);
  color: #fff;
  box-shadow: none;
}

.theme-source-editorial .direct-answer strong,
.theme-source-editorial .direct-answer p,
.theme-source-editorial .trust-block h2,
.theme-source-editorial .trust-block h3,
.theme-source-editorial .trust-block p,
.theme-source-editorial .cta-panel h2,
.theme-source-editorial .cta-panel p {
  color: var(--source-accent-contrast, #fff);
}

.theme-source-editorial .direct-answer strong {
  font-family: var(--client-body-font-stack);
  letter-spacing: 0.12em;
}

.theme-source-editorial .direct-answer p {
  font-family: var(--client-heading-font-stack);
  font-weight: 500;
}

.theme-source-editorial .comparison-table,
.theme-source-editorial .decision-tool,
.theme-source-editorial .card,
.theme-source-editorial .service-card {
  border-radius: 0;
  box-shadow: none;
}

.theme-source-editorial .comparison-table th {
  color: #fff;
  background: var(--source-deep);
}

.theme-source-editorial .comparison-table td,
.theme-source-editorial .faq-block summary,
.theme-source-editorial .decision-tool h3,
.theme-source-editorial .decision-option span {
  color: var(--source-text);
}

.theme-source-editorial .faq-block details {
  border-color: rgba(16, 16, 16, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.theme-source-editorial .faq-block details[open] {
  border-color: rgba(16, 16, 16, 0.18);
  box-shadow: inset 4px 0 0 var(--source-accent);
}

.theme-source-editorial .faq-block summary {
  font-family: var(--client-heading-font-stack);
  font-weight: 800;
}

.theme-source-editorial .faq-block summary::after {
  border-color: var(--source-accent);
  background: var(--source-light);
  color: var(--source-accent);
}

.theme-source-editorial .faq-block details[open] summary::after {
  background: var(--source-accent);
  color: var(--source-accent-contrast, #fff);
}

.theme-source-editorial .faq-block details p,
.theme-source-editorial .faq-answer p {
  color: var(--source-neutral);
}

.theme-source-editorial .decision-option input:focus-visible + span,
.theme-source-editorial .decision-option input:checked + span {
  border-color: var(--source-accent);
  background: var(--source-light);
  box-shadow: inset 0 0 0 1px var(--source-accent);
}

.theme-source-editorial .check-list li::marker,
.theme-source-editorial .article a,
.theme-source-editorial .card a,
.theme-source-editorial .decision-result a {
  color: var(--source-deep);
}

.theme-source-editorial .button.copper {
  border-color: var(--source-accent);
  background: var(--source-accent);
  color: var(--source-accent-contrast, var(--button-on-accent, #fff));
}

.theme-source-editorial .cta-panel .button.copper {
  min-height: 48px;
  margin-top: 6px;
  padding: 0 22px;
  border: 2px solid rgba(16, 16, 16, 0.88);
  background: #fff;
  color: #101010;
  box-shadow: 0 12px 24px rgba(16, 16, 16, 0.16);
  transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.theme-source-editorial .cta-panel .button.copper:hover,
.theme-source-editorial .cta-panel .button.copper:focus-visible {
  background: #fff;
  color: #101010;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(16, 16, 16, 0.2);
}

.theme-source-editorial .cta-panel .button.copper:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.theme-source-editorial .hero .button.copper,
.theme-source-editorial .section.green .button.copper {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.theme-source-editorial .button.secondary {
  border-color: var(--source-deep);
  color: var(--source-deep);
}

.theme-source-editorial .grid .card,
.theme-source-editorial .service-card {
  border: 0;
  border-top: 1px solid #dedede;
  background: #fff;
}

.theme-source-editorial .footer {
  border-top: 1px solid #e5e5e5;
  background: #fff;
  color: var(--source-text);
}

.theme-source-editorial .footer strong,
.theme-source-editorial .footer a {
  color: var(--source-text);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

@media (max-width: 1120px) {
  .source-elementor-inner {
    width: min(100%, calc(100% - 28px));
    min-height: 74px;
    grid-template-columns: 70% 30%;
  }

  .source-elementor-logo img {
    width: min(55%, 180px);
    max-height: 60px;
  }

  .source-elementor-menu,
  .source-elementor-cta {
    display: none;
  }

  .source-menu-toggle {
    display: grid;
  }

  .webflow-navbar22-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 178px;
  }

  .section[id] {
    scroll-margin-top: 178px;
  }

  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
  }

  .nav,
  .nav-links,
  .nav-actions {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 12px 18px;
  }

  .hub-subnav-inner {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    align-items: center;
    flex-direction: row;
    gap: 0;
  }

  .hub-subnav-links {
    flex: 1;
    width: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hub-subnav-links::-webkit-scrollbar {
    display: none;
  }

  .hub-menu > summary {
    width: auto;
    min-height: 52px;
    justify-content: flex-start;
    padding: 1px 0 0;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
  }

  .hub-menu[data-active="true"] > summary,
  .hub-menu[open] > summary {
    border-bottom-color: var(--copper);
  }

  .hub-dropdown {
    right: 16px;
    left: 16px;
    min-width: 0;
  }

  .hero {
    min-height: 760px;
  }

  .grid.three,
  .grid.two,
  .split,
  .decision-options,
  .source-services,
  .source-contact-band .section-inner,
  .evm-intro,
  .evm-passion,
  .evm-service-grid,
  .evm-final-cta,
  .footer-grid,
  .project-gallery-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .evm-source-logo {
    top: -26px;
    left: 10px;
    width: 170px;
    height: 94px;
  }

  .evm-source-logo img {
    width: 170px;
    height: 94px;
  }

  .evm-source-actions {
    top: 28px;
    right: 16px;
    gap: 12px;
  }

  .evm-source-icon,
  .evm-menu-toggle {
    width: 24px;
    height: 24px;
  }

  .evm-source-icon svg {
    width: 24px;
    height: 24px;
  }

  .evm-menu-toggle span {
    width: 24px;
    height: 3px;
  }

  .evm-source-menu {
    top: 72px;
    right: 16px;
  }

  .evm-hub-subnav {
    margin-top: 86px;
    margin-bottom: -138px;
  }

  .evm-hub-subnav .hub-subnav-inner {
    width: 100%;
  }

  .source-elementor-inner {
    width: min(100%, calc(100% - 28px));
    min-height: 74px;
    grid-template-columns: 70% 30%;
  }

  .source-elementor-logo img {
    width: min(55%, 180px);
    max-height: 60px;
  }

  .source-elementor-menu,
  .source-elementor-cta {
    display: none;
  }

  .source-menu-toggle {
    display: grid;
  }

  .source-hub-subnav .hub-subnav-inner {
    width: 100%;
    min-height: 52px;
  }

  .source-hub-subnav .hub-subnav-links {
    gap: 18px;
  }

  .webflow-navbar22-container {
    min-height: 80px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .webflow-navbar22-logo-link,
  .webflow-navbar22-logo {
    width: 8.5rem;
    height: 3.2rem;
  }

  .webflow-navbar22-menu {
    top: 80px;
    min-height: calc(100vh - 80px);
    padding: 5rem 1.5rem 3rem;
  }

  .webflow-navbar22-menu-grid {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .webflow-hub-subnav .hub-subnav-inner {
    width: 100%;
  }

  .source-hub-subnav .hub-menu > summary,
  .theme-source-editorial .source-hub-subnav .hub-menu > summary {
    min-height: 52px;
    font-size: 15px;
  }

  .brand-fit-inner {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .brand-fit-logo img {
    max-width: min(210px, 58vw);
    max-height: 52px;
  }

  .brand-fit-menu,
  .brand-fit-cta {
    display: none;
  }

  .brand-fit-menu-button {
    display: grid;
  }

  .brand-fit-hub-subnav .hub-subnav-inner {
    width: 100%;
    min-height: 48px;
  }

  .brand-fit-hub-subnav .hub-subnav-links {
    gap: 16px;
  }

  .brand-fit-hub-subnav .hub-menu > summary,
  .theme-source-editorial .brand-fit-hub-subnav .hub-menu > summary {
    min-height: 48px;
    font-size: 14px;
  }

  .evm-hero {
    min-height: 560px;
    background-position: center top;
  }

  .evm-hero-title {
    bottom: 18px;
    width: 100%;
    padding: 8px 26px 10px;
  }

  .evm-hero-title h1 {
    font-size: 31px;
    line-height: 1.02;
  }

  .evm-intro {
    max-width: none;
    gap: 28px;
    padding: 24px 16px 0;
  }

  .evm-intro h3 {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .evm-intro h2 {
    font-size: 40px;
  }

  .evm-intro-media {
    min-height: auto;
  }

  .evm-intro-media > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .evm-contact-card {
    position: static;
    width: 100%;
    min-height: 0;
    margin-top: -4px;
  }

  .evm-contact-card h3 {
    font-size: 27px;
  }

  .evm-passion {
    min-height: 0;
    margin-top: 56px;
  }

  .evm-passion-copy {
    padding: 48px 24px;
  }

  .evm-passion h2 {
    font-size: 42px;
  }

  .evm-passion > img {
    min-height: 420px;
  }

  .evm-passion-item {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 24px;
  }

  .evm-line-icon {
    width: 82px;
    height: 82px;
    font-size: 34px;
  }

  .evm-services {
    max-width: none;
    padding: 58px 16px;
  }

  .evm-service-grid {
    gap: 36px;
  }

  .evm-service-item,
  .evm-service-item:nth-last-child(2),
  .evm-service-item:nth-last-child(1) {
    width: auto;
    min-height: 0;
    margin-left: 0;
    grid-column: auto;
  }

  .evm-service-item h3 {
    margin-top: 28px;
  }

  .evm-final-cta {
    max-width: none;
    padding: 0 16px 70px;
  }

  .evm-final-cta img {
    width: 100%;
    height: auto;
  }

  .evm-footer {
    padding: 34px 16px 26px;
  }

  .theme-source-editorial .evm-hub-subnav {
    position: absolute;
    top: 86px;
    margin: 0;
  }

  .theme-source-editorial .hero,
  .theme-source-editorial .page-hero {
    min-height: 560px;
    padding: 172px 0 42px;
  }

  .theme-source-editorial .hero h1,
  .theme-source-editorial .page-hero h1 {
    width: 100%;
    padding: 10px 26px 12px;
    font-size: clamp(31px, 9vw, 46px);
  }

  .theme-source-editorial .hero p,
  .theme-source-editorial .page-hero p,
  .theme-source-editorial .breadcrumbs,
  .theme-source-editorial .hero-actions,
  .theme-source-editorial .hero-proof,
  .theme-source-editorial .article-wrap {
    width: calc(100% - 32px);
  }

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

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

  .stat-strip div:nth-child(2) {
    border-right: 0;
  }

  .band {
    grid-template-columns: 1fr;
  }

  body.has-sticky-cta {
    padding-bottom: 76px;
  }

  .sticky-cta {
    display: grid;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 238px;
  }

  .section[id] {
    scroll-margin-top: 238px;
  }

  .hero {
    min-height: 560px;
    background-position: center;
  }

  .client-hero {
    min-height: 560px;
  }

  .source-hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 52%, rgba(255, 255, 255, 0.28) 100%),
      var(--hero-image);
    background-position: center;
  }

  .evm-hero {
    min-height: 506px;
  }

  .evm-hero-title {
    padding: 8px 26px 9px;
  }

  .evm-hero-title h1 {
    font-size: 25px;
    line-height: 1.05;
  }

  .theme-source-editorial .evm-hub-subnav {
    top: 86px;
  }

  .theme-source-editorial .hub-menu > summary {
    min-height: 46px;
    font-size: 13px;
  }

  .theme-source-editorial .hub-dropdown {
    top: 46px;
    right: auto;
    left: 0;
    min-width: 230px;
    max-width: calc(100vw - 32px);
    padding: 8px 0;
  }

  .theme-source-editorial .hub-subnav.is-open {
    padding-bottom: 0;
  }

  .source-elementor-inner {
    min-height: 68px;
  }

  .source-elementor-logo img {
    width: min(70%, 160px);
    max-height: 54px;
  }

  .source-elementor-mobile-menu {
    padding: 8px 28px 16px;
  }

  .theme-source-editorial .source-hub-subnav {
    top: auto;
  }

  .theme-source-editorial .source-hub-subnav .hub-menu > summary {
    min-height: 46px;
    font-size: 14px;
  }

  .theme-source-editorial .source-hub-subnav.is-open {
    padding-bottom: var(--hub-open-menu-height, 118px);
  }

  .theme-source-editorial .source-hub-subnav .hub-dropdown {
    top: 46px;
    right: 16px;
    left: 16px;
    width: auto;
    min-width: 0;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    padding: 8px 0 10px;
  }

  .theme-source-editorial .hero,
  .theme-source-editorial .page-hero {
    min-height: 530px;
    padding: 158px 0 34px;
  }

  .theme-source-editorial .article-wrap {
    padding: 54px 0 76px;
  }

  .evm-intro h2 {
    font-size: 35px;
  }

  .evm-passion-copy {
    padding: 44px 16px;
  }

  .client-hero-copy {
    padding: 44px 0;
  }

  .hero-inner {
    padding: 44px 0;
  }

  .hero h1,
  .client-hero h1,
  .source-hero h1 {
    font-size: 46px;
  }

  .source-hero-inner {
    padding: 54px 0;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip div {
    border-right: 0;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hub-subnav-inner {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .hub-subnav-links {
    width: 100%;
    gap: 10px;
    padding: 0 12px;
    scroll-padding-inline: 12px;
  }

  .hub-subnav.is-open {
    padding-bottom: var(--hub-open-menu-height, 114px);
  }

  .hub-menu > summary {
    min-height: 42px;
  }

  .hub-dropdown {
    top: 82px;
    right: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0 10px;
  }

  .hub-dropdown a {
    min-height: 34px;
  }

  .theme-source-editorial .hub-dropdown {
    right: 16px;
    left: 16px;
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero-proof div {
    padding: 10px;
  }

  .hero-proof strong {
    font-size: 18px;
  }

  .hero-proof span {
    font-size: 11px;
  }

  .section {
    padding: 58px 0;
  }

  .media-frame img {
    height: 340px;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .button {
    flex: 1 1 auto;
  }

  body.has-sticky-cta {
    padding-bottom: 76px;
  }

  .sticky-cta {
    display: grid;
  }

  .direct-answer,
  .decision-tool,
  .trust-block,
  .cta-panel {
    padding: 20px;
  }

  .video-clip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .blog-layout-editorial-magazine .blog-home-articles .section-inner,
  .blog-layout-proof-led .blog-home-proof .section-inner {
    grid-template-columns: 1fr;
  }

  .blog-layout-editorial-magazine .blog-home-articles .blog-card-grid,
  .blog-layout-proof-led .blog-home-proof .card,
  .blog-layout-editorial-magazine .blog-home-articles h2,
  .blog-layout-editorial-magazine .blog-home-articles .lead,
  .blog-layout-proof-led .blog-home-proof h2,
  .blog-layout-proof-led .blog-home-proof .lead {
    grid-column: 1;
    grid-row: auto;
  }

  .blog-layout-editorial-magazine .blog-home-articles .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-layout-editorial-magazine .blog-home-articles .card:first-child .card-body {
    min-height: auto;
  }
}
