.elementor-137 .elementor-element.elementor-element-9dd7613{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-137 .elementor-element.elementor-element-f023d2b{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-137{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-f023d2b *//* === HEADER === */
.elev8-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.elev8-header.scrolled {
  padding: 12px 48px;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Logo */
.elev8-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.elev8-header-logo img {
  height: 40px;
  width: auto;
}

.elev8-header-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.elev8-header-logo-text .e8 { color: #06B6D4; }
.elev8-header-logo-text .health { color: #F8FAFC; }

/* Nav links */
.elev8-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.elev8-header-nav > li {
  position: relative;
}

.elev8-header-nav > li > a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.elev8-header-nav > li > a:hover {
  color: #F8FAFC;
  background: rgba(248, 250, 252, 0.05);
}

/* Dropdown */
.elev8-header-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(6, 182, 212, 0.12);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  list-style: none;
  margin: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.elev8-header-nav > li:hover .elev8-header-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.elev8-header-dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #94A3B8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.elev8-header-dropdown li a:hover {
  color: #F8FAFC;
  background: rgba(6, 182, 212, 0.08);
}

.elev8-dd-icon {
  width: 32px;
  height: 32px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.elev8-dd-text {
  display: flex;
  flex-direction: column;
}

.elev8-dd-text span {
  font-size: 11px;
  color: #64748B;
  margin-top: 2px;
}

/* Chevron */
.elev8-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}

.elev8-header-nav > li:hover .elev8-chevron {
  transform: rotate(180deg);
}

/* CTA button */
.elev8-header-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, #06B6D4, #2563EB) !important;
  color: white !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.elev8-header-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35) !important;
  background: linear-gradient(135deg, #06B6D4, #2563EB) !important;
}

/* Mobile hamburger */
.elev8-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 10001;
}

.elev8-hamburger span {
  width: 24px;
  height: 2px;
  background: #CBD5E1;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.elev8-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.elev8-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.elev8-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
@media (max-width: 768px) {
  .elev8-header {
    padding: 12px 24px;
  }

  .elev8-hamburger {
    display: flex;
  }

  .elev8-header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 32px;
    gap: 4px;
    transition: right 0.35s ease;
    border-left: 1px solid rgba(6, 182, 212, 0.1);
  }

  .elev8-header-nav.mobile-open {
    right: 0;
  }

  .elev8-header-nav > li > a {
    padding: 14px 16px;
    font-size: 15px;
  }

  .elev8-header-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(6, 182, 212, 0.04);
    border: none;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    margin-top: 4px;
  }

  .elev8-header-cta {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }
}

/* Push page content below fixed header */
body {
  padding-top: 72px;
}/* End custom CSS */