.elementor-2 .elementor-element.elementor-element-86caa88{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2 .elementor-element.elementor-element-cfb53d1{--display:flex;}.elementor-2 .elementor-element.elementor-element-7bc9fb2 > .elementor-background-overlay{opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-2 .elementor-element.elementor-element-7bc9fb2{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;z-index:2;}.elementor-2 .elementor-element.elementor-element-612464b{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}@media(max-width:1024px) and (min-width:768px){.elementor-2 .elementor-element.elementor-element-0463110{width:100%;}}/* Start custom CSS for html, class: .elementor-element-18c7fc1 */:root {
  --teal: #248f99;
  --lime: #aac930;
  --ink: #1a1a1a;
  --bg: #f7f8f4;

  --header-h: 74px;
  --header-h-scrolled: 62px;

  --logo-h: 36px;          /* logo display height */
  --logo-h-scrolled: 30px; /* when scrolled */
  --logo-max-w: 80px;     /* cap width so it doesn't push nav */
}

/* Sticky shell */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1400;
  background: rgba(247, 248, 244, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background .2s ease, box-shadow .2s ease;
}
.main-header.is-scrolled {
  background: rgba(247, 248, 244, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}
.main-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.main-header.is-scrolled .main-header__inner {
  min-height: var(--header-h-scrolled);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  line-height: 1;
}
.brand__logo {
  display: block;
  height: var(--logo-h);
  width: auto;
  max-width: var(--logo-max-w);
  object-fit: contain;
}
.main-header.is-scrolled .brand__logo {
  height: var(--logo-h-scrolled);
}

/* Desktop menu */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.menu-link {
  position: relative;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}
.menu-link:hover::after,
.menu-link.is-active::after { transform: scaleX(1); }

.menu-cta {
  text-decoration: none;
  margin-left: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  box-shadow: 0 10px 24px rgba(36, 143, 153, 0.25);
  white-space: nowrap;
}

/* Drawer toggle */
.drawer-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(36, 143, 153, 0.35);
  border-radius: 12px;
  background: #fff;
  padding: 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex: 0 0 auto;
}
.drawer-toggle span {
  width: 100%;
  height: 2px;
  background: #1c6f77;
  border-radius: 2px;
}

/* Backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1490;
  background: rgba(12, 18, 22, 0.5);
  opacity: 0;
  transition: opacity .22s ease;
}
.drawer-backdrop.is-open { opacity: 1; }

/* Mobile drawer panel */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(84vw, 360px);
  height: 100dvh;
  z-index: 1500;
  background: #ffffff;
  border-left: 1px solid #e8e8e8;
  box-shadow: -14px 0 34px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform .24s ease;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px;
  border-bottom: 1px solid #ececec;
}
.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
}
.mobile-drawer__nav {
  display: grid;
  gap: 8px;
  padding: 14px;
}
.drawer-link {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 700;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
.drawer-link--cta {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--lime));
}

/* Responsive switch */
@media (max-width: 920px) {
  :root {
    --header-h: 68px;
    --header-h-scrolled: 58px;
    --logo-h: 32px;
    --logo-h-scrolled: 28px;
    --logo-max-w: 140px;
  }

  .desktop-menu { display: none; }
  .drawer-toggle { display: flex; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4a1aaf3 */:root {
  --teal: #248F99;
  --line: #e6e6e6;
  --line-soft: #eaeaea;
  --muted: #444;
  --ink: #1a1a1a;
  --grad-main: linear-gradient(135deg, #248F99, #AAC930);
  --bg-section: #f7f8f4;
  --bg-panel: linear-gradient(145deg, rgba(255,255,255,.98), rgba(170,201,48,.08));
  --radius: 16px;
  --shadow-sm: 0 12px 24px rgba(0,0,0,.07);
}

.section {
  padding: 80px 0;
  background: var(--bg-section);
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: #5c5c5c;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.7rem, 3.3vw, 2.6rem);
  margin-bottom: 10px;
  color: var(--ink);
}

#roi { background: var(--bg-section); }

.roi-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: start;
}

.calculator {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.calculator h3 { margin: 0 0 6px; }

.calc-row {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
}

.calc-field label {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #2f2f2f;
}

.calc-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  background: #fff;
}

.calc-btn {
  margin-top: 16px;
  padding: 11px 18px;
  border-radius: 12px;
  border: none;
  background: var(--grad-main);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(36,143,153,.24);
}

.result-wrap {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.calc-result {
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  min-width: 170px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.calc-annual { font-size: .9rem; color: var(--muted); }

.roi-copy h3 { margin: 0 0 10px; font-size: 1.4rem; }
.roi-points { display: grid; gap: 12px; margin-top: 14px; }

.roi-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.roi-point-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--grad-main);
  font-size: 16px;
}

.roi-point-body h4 { margin: 0 0 3px; font-size: .95rem; }
.roi-point-body p { font-size: .88rem; color: var(--muted); }

@media (max-width: 900px) {
  .roi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .calc-row { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a5dc296 */:root {
  --teal: #248f99;
  --lime: #aac930;
  --ink: #1a1a1a;
  --bg: #f7f8f4;
}

/* Sticky shell */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1400;
  background: rgba(247, 248, 244, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background .2s ease, box-shadow .2s ease;
}

.main-header.is-scrolled {
  background: rgba(247, 248, 244, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.main-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: min-height .2s ease;
}

.main-header.is-scrolled .main-header__inner { min-height: 62px; }

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: .01em;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  box-shadow: 0 8px 18px rgba(36, 143, 153, 0.26);
}

/* Desktop menu */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.menu-link {
  position: relative;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 10px;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}

.menu-link:hover::after,
.menu-link.is-active::after { transform: scaleX(1); }

.menu-cta {
  text-decoration: none;
  margin-left: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  box-shadow: 0 10px 24px rgba(36, 143, 153, 0.25);
}

/* Drawer toggle */
.drawer-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(36, 143, 153, 0.35);
  border-radius: 12px;
  background: #fff;
  padding: 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.drawer-toggle span {
  width: 100%;
  height: 2px;
  background: #1c6f77;
  border-radius: 2px;
}

/* Backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1490;
  background: rgba(12, 18, 22, 0.5);
  opacity: 0;
  transition: opacity .22s ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
}

/* Mobile drawer panel */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(84vw, 360px);
  height: 100dvh;
  z-index: 1500;
  background: #ffffff;
  border-left: 1px solid #e8e8e8;
  box-shadow: -14px 0 34px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform .24s ease;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px;
  border-bottom: 1px solid #ececec;
}

.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
}

.mobile-drawer__nav {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.drawer-link {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 700;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 12px 12px;
  background: #fff;
}

.drawer-link--cta {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--lime));
}

/* Responsive switch */
@media (max-width: 920px) {
  .desktop-menu { display: none; }
  .drawer-toggle { display: inline-flex; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-612464b */:root {
  --teal: #248f99;
  --lime: #aac930;
  --ink: #1a1a1a;
  --bg: #f7f8f4;

  --header-h: 74px;
  --header-h-scrolled: 62px;

  --logo-h: 36px;          /* logo display height */
  --logo-h-scrolled: 30px; /* when scrolled */
  --logo-max-w: 80px;     /* cap width so it doesn't push nav */
}

/* Sticky shell */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1400;
  background: rgba(223, 234, 223, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background .2s ease, box-shadow .2s ease;
}
.main-header.is-scrolled {
  background: rgba(223, 234, 223, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}
.main-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.main-header.is-scrolled .main-header__inner {
  min-height: var(--header-h-scrolled);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  line-height: 1;
}
.brand__logo {
  display: block;
  height: var(--logo-h);
  width: auto;
  max-width: var(--logo-max-w);
  object-fit: contain;
}
.main-header.is-scrolled .brand__logo {
  height: var(--logo-h-scrolled);
}

/* Desktop menu */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.menu-link {
  position: relative;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}
.menu-link:hover::after,
.menu-link.is-active::after { transform: scaleX(1); }

.menu-cta {
  text-decoration: none;
  margin-left: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  box-shadow: 0 10px 24px rgba(36, 143, 153, 0.25);
  white-space: nowrap;
}

/* Drawer toggle */
.drawer-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(36, 143, 153, 0.35);
  border-radius: 12px;
  background: #fff;
  padding: 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex: 0 0 auto;
}
.drawer-toggle span {
  width: 100%;
  height: 2px;
  background: #1c6f77;
  border-radius: 2px;
}

/* Backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1490;
  background: rgba(12, 18, 22, 0.5);
  opacity: 0;
  transition: opacity .22s ease;
}
.drawer-backdrop.is-open { opacity: 1; }

/* Mobile drawer panel */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(84vw, 360px);
  height: 100dvh;
  z-index: 1500;
  background: #ffffff;
  border-left: 1px solid #e8e8e8;
  box-shadow: -14px 0 34px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform .24s ease;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px;
  border-bottom: 1px solid #ececec;
}
.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
}
.mobile-drawer__nav {
  display: grid;
  gap: 8px;
  padding: 14px;
}
.drawer-link {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 700;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
.drawer-link--cta {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--lime));
}

/* Responsive switch */
@media (max-width: 920px) {
  :root {
    --header-h: 68px;
    --header-h-scrolled: 58px;
    --logo-h: 32px;
    --logo-h-scrolled: 28px;
    --logo-max-w: 140px;
  }

  .desktop-menu { display: none; }
  .drawer-toggle { display: flex; }
}/* End custom CSS */