.elementor-187 .elementor-element.elementor-element-6dd1cbd{--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;--background-transition:0.3s;}.elementor-187 .elementor-element.elementor-element-36c1252{width:100%;max-width:100%;}.elementor-187 .elementor-element.elementor-element-36c1252 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-187 .elementor-element.elementor-element-36c1252.elementor-element{--order:99999 /* order end hack */;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-36c1252 */* {
  box-sizing: border-box;
}


.custom-header {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(0, 0, 0, 0.03) inset;
  transition: all 0.3s ease;
}

.custom-header:hover {
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(0, 0, 0, 0.04) inset;
}

.custom-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.06),
    transparent
  );
  border-radius: 999px;
}

/* LOGO */
.custom-header__logo {
  flex-shrink: 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111827, #1f2937);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.logo-link:hover .logo-badge {
  transform: translateY(-2px);
  box-shadow:
    0 12px 24px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.real-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 21px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.4px;
  transition: color 0.3s ease;
}

.logo-link:hover .logo-text {
  color: #4f7cff;
}

/* NAV */
.custom-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu > li {
  position: relative;
  list-style: none;
}

.main-menu > li > a {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  color: #24324a;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.main-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f7cff, #7c3aed);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.main-menu > li > a:hover {
  color: #4f7cff;
}

.main-menu > li > a:hover::after {
  width: 100%;
}

/* SUBMENU */
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 999;
}

.submenu li {
  list-style: none;
  margin: 0;
}

.submenu li a {
  display: block;
  padding: 11px 16px;
  text-decoration: none;
  color: #24324a;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.submenu li a:hover {
  background: rgba(79, 124, 255, 0.06);
  color: #4f7cff;
  padding-left: 20px;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CTA */
.custom-header__cta {
  flex-shrink: 0;
}

/* BOTON */
.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #ffffff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #4f7cff, #7c3aed);
  background-size: 200% 200%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 20px rgba(79, 124, 255, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  overflow: hidden;
  transition: all 0.35s ease;
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.6s;
}

.btn-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  transition: 0.4s;
  box-shadow: 0 0 26px rgba(124, 58, 237, 0.35);
}

.btn-hero:hover {
  transform: translateY(-3px);
  background-position: right center;
  box-shadow:
    0 16px 34px rgba(79, 124, 255, 0.36),
    0 0 18px rgba(124, 58, 237, 0.22);
}

.btn-hero:hover::before {
  left: 130%;
}

.btn-hero:hover::after {
  opacity: 1;
}

.btn-hero:active {
  transform: scale(0.98);
  box-shadow: 0 8px 20px rgba(79, 124, 255, 0.25);
}

.btn-hero span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-hero:hover span {
  transform: translateX(4px);
}

.btn-hero:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .custom-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    gap: 16px;
  }

  .custom-header__nav {
    width: 100%;
    justify-content: flex-start;
  }

  .main-menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-menu > li {
    width: 100%;
  }

  .main-menu > li > a {
    width: 100%;
    padding: 10px 0;
  }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 8px 0 0 14px;
    display: block;
    min-width: 100%;
  }

  .submenu li a {
    padding: 8px 0;
    font-size: 14px;
  }

  .submenu li a:hover {
    background: transparent;
    padding-left: 10px;
  }

  .custom-header__cta {
    width: 100%;
    margin-top: 4px;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .custom-header-wrap {
    padding: 16px 12px;
  }

  .custom-header {
    border-radius: 18px;
    padding: 14px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-badge {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .real-logo {
    width: 30px;
    height: 30px;
  }

  .btn-hero {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 13px;
  }
}/* End custom CSS */