.wda-header-widget,
.wda-header-widget * {
  box-sizing: border-box;
}

.wda-header-widget {
  --wda-primary: #0057ff;
  --wda-accent: #ff4d1c;
  --wda-black: #0a0a0a;
  --wda-header-bg: #ffffff;
  --wda-header-scrolled-bg: rgba(255, 255, 255, 0.95);
  --wda-header-border: rgba(10, 10, 10, 0.06);
  --wda-header-inner-border: rgba(10, 10, 10, 0.05);
  --wda-logo-height: 32px;
  --wda-logo-safe-y: 16px;
  --wda-topbar-height: 48px;
  --wda-mainbar-height: 44px;
  --wda-shape-size: 28px;
  --wda-font-heading: "Syne", ui-sans-serif, system-ui, sans-serif;
  --wda-font-body: "Figtree", ui-sans-serif, system-ui, sans-serif;
  color: var(--wda-black);
  font-family: var(--wda-font-body);
}

.wda-header-widget a {
  color: inherit;
  text-decoration: none;
}

.wda-header-widget button {
  border: 0;
  padding: 0;
  appearance: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.wda-header-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99990;
  width: 100%;
  background: var(--wda-header-bg);
  border-bottom: 1px solid var(--wda-header-border);
  overflow: visible;
  animation: wda-header-slide-down 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

@keyframes wda-header-slide-down {
  from { transform: translateY(-120px); }
  to { transform: translateY(0); }
}

.wda-header-nav.is-scrolled {
  background: var(--wda-header-scrolled-bg);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.wda-header-container {
  width: 100%;
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 64px;
}

.wda-header-topbar,
.wda-header-mainbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wda-header-topbar {
  min-height: max(var(--wda-topbar-height), calc(var(--wda-logo-height) + var(--wda-logo-safe-y)));
  height: auto;
  overflow: visible;
  border-bottom: 1px solid var(--wda-header-inner-border);
}

.wda-header-mainbar {
  height: var(--wda-mainbar-height);
}
.wda-header-layout-one_row .wda-header-topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 28px;
  align-items: center;
  min-height: max(calc(var(--wda-logo-height) + var(--wda-logo-safe-y) + 16px), 88px);
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 0;
}

.wda-header-one-row-actions {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.wda-header-one-row-actions .wda-header-top-actions {
  justify-content: flex-end;
}

.wda-header-one-row-menu {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
}

.wda-header-one-row-menu .wda-header-burger {
  width: 40px;
  height: 30px;
}

.wda-header-mainbar-no-shape {
  justify-content: flex-end;
}

.wda-header-mainbar-no-shape .wda-header-mainbar-spacer {
  display: none;
}


.wda-header-logo {
  display: inline-flex;
  min-height: var(--wda-logo-height);
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  overflow: visible;
}

.wda-header-logo img {
  display: block;
  width: auto;
  height: var(--wda-logo-height);
  max-width: 220px;
  max-height: none;
  object-fit: contain;
}

.wda-header-top-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.wda-header-top-link,
.wda-header-icon-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: color 0.2s ease;
}

.wda-header-top-link {
  color: rgba(10, 10, 10, 0.5);
  font-family: var(--wda-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.wda-header-phone {
  color: var(--wda-primary);
  font-weight: 700;
}

.wda-header-phone:hover {
  color: var(--wda-accent);
}

.wda-header-icon-link {
  color: rgba(10, 10, 10, 0.4);
}

.wda-header-svg {
  display: block;
  width: 16px;
  height: 16px;
}

.wda-header-svg-small {
  display: block;
  width: 14px;
  height: 14px;
}

.wda-header-geom,
.wda-header-mainbar-spacer {
  width: var(--wda-shape-size);
  height: var(--wda-shape-size);
  flex: 0 0 var(--wda-shape-size);
}

.wda-header-geom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wda-black);
  transform-origin: center center;
  will-change: transform;
}

.wda-header-geom svg {
  display: block;
  width: var(--wda-shape-size);
  height: var(--wda-shape-size);
}

.wda-header-geom-svg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.wda-header-geom-current {
  opacity: 1;
}

.wda-header-geom.is-morphing .wda-header-geom-current {
  opacity: 0;
}

.wda-header-geom.is-morphing .wda-header-geom-next {
  opacity: 1;
}

.wda-header-burger {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--wda-black);
  transition: color 0.2s ease;
}

.wda-header-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.wda-header-burger.is-open span:first-child {
  transform: rotate(45deg) translateY(5.5px);
}

.wda-header-burger.is-open span:last-child {
  transform: rotate(-45deg) translateY(-5.5px);
}

.wda-header-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(ellipse at 20% 50%, #0a1628 0%, #0d1117 60%, #0a0a0a 100%);
}

.wda-header-overlay.is-open {
  display: flex;
}

.wda-header-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 10;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.wda-header-close:hover {
  color: #ffffff;
}

.wda-header-close-svg {
  display: block;
  width: 24px;
  height: 24px;
}

.wda-header-overlay-content {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  padding: 64px 80px;
}

.wda-header-menu-group {
  margin-bottom: 40px;
}

.wda-header-menu-group:last-child {
  margin-bottom: 0;
}

.wda-header-overlay-title,
.wda-header-overlay-heading {
  display: inline-block;
  margin: 0 0 20px;
  color: #ffffff;
  font-family: var(--wda-font-heading);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.wda-header-overlay-title:hover {
  color: var(--wda-primary);
}

.wda-header-popular-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--wda-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wda-header-popular-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.wda-header-popular-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  background: var(--wda-accent);
  color: #ffffff;
  font-family: var(--wda-font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.wda-header-popular-button:hover {
  transform: translateY(-1px);
  background: var(--wda-primary);
  color: #ffffff;
}

.wda-header-overlay-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 24px;
  row-gap: 10px;
}

.wda-header-overlay-link {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--wda-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wda-header-overlay-link:hover {
  color: #ffffff;
}

.wda-header-industry-link.is-featured {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
}

.wda-header-industry-link.is-featured:hover {
  border-color: var(--wda-primary);
  background: rgba(0, 87, 255, 0.16);
  color: #ffffff;
  transform: translateY(-1px);
}

.wda-header-menu-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.08);
}

.wda-header-sidebar {
  position: relative;
  display: flex;
  width: 320px;
  flex: 0 0 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 32px;
  background: rgba(0, 87, 255, 0.06);
}

.wda-header-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 3px;
  border-radius: 0;
  background: #0057ff;
  pointer-events: none;
}

.wda-header-sidebar > * {
  position: relative;
  z-index: 2;
}

.wda-sidebar-divider-hide .wda-header-sidebar::before,
.wda-sidebar-divider- .wda-header-sidebar::before {
  display: none;
}

.wda-sidebar-divider-position-right .wda-header-sidebar::before {
  right: 0;
  left: auto;
}

.wda-header-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #ffffff;
  font-family: var(--wda-font-heading);
  font-size: 16px;
  font-weight: 800;
}

.wda-header-sidebar-logo {
  display: inline-flex;
  width: auto;
  max-width: 190px;
  align-items: center;
  margin-bottom: 24px;
  overflow: visible;
}

.wda-header-sidebar-logo img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 190px;
  max-height: none;
  object-fit: contain;
}

.wda-header-sidebar-mark {
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: var(--wda-primary);
}

.wda-header-accent-dot {
  color: var(--wda-accent);
}

.wda-header-sidebar-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--wda-font-body);
  font-size: 12px;
  line-height: 1.4;
}

.wda-header-sidebar-line svg {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.3);
}

.wda-header-sidebar-line a {
  color: var(--wda-primary);
  word-break: break-word;
  transition: color 0.2s ease;
}

.wda-header-sidebar-line a:hover {
  color: rgba(0, 87, 255, 0.7);
}

.wda-header-sidebar-separator {
  height: 1px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.08);
}

.wda-header-case-label {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--wda-font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wda-header-case-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wda-header-case-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--wda-font-body);
  font-size: 14px;
  transition: color 0.2s ease;
}

.wda-header-case-link span {
  color: var(--wda-primary);
  font-size: 12px;
}

.wda-header-case-link:hover {
  color: #ffffff;
}

.wda-header-sidebar-cta {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--wda-primary);
  color: #ffffff;
  font-family: var(--wda-font-heading);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.3s ease;
}

.wda-header-sidebar-cta:hover {
  background: var(--wda-accent);
  color: #ffffff;
}

.wda-header-spacer {
  height: calc(max(var(--wda-topbar-height), calc(var(--wda-logo-height) + var(--wda-logo-safe-y))) + var(--wda-mainbar-height) + 1px);
}
.wda-header-layout-one_row .wda-header-spacer {
  height: calc(max(calc(var(--wda-logo-height) + var(--wda-logo-safe-y) + 16px), 88px) + 1px);
}


body.wda-header-menu-open {
  overflow: hidden;
}

.elementor-editor-active .wda-header-nav {
  z-index: 9990;
}

@media (max-width: 1024px) {
  .wda-header-container {
    padding-right: 40px;
    padding-left: 40px;
  }

  .wda-header-sidebar {
    display: none;
  }

  .wda-header-overlay-content {
    padding: 64px 56px;
  }
}

@media (max-width: 767px) {
  .wda-header-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .wda-header-logo img {
    max-width: 180px;
  }

  .wda-header-top-actions {
    gap: 14px;
  }
  .wda-header-layout-one_row .wda-header-topbar {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 16px;
    min-height: max(calc(var(--wda-logo-height) + var(--wda-logo-safe-y) + 12px), 78px);
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .wda-header-layout-one_row .wda-header-top-actions {
    gap: 12px;
  }

  .wda-header-layout-one_row .wda-header-one-row-actions {
    gap: 6px;
  }

  .wda-header-layout-one_row .wda-header-burger {
    width: 36px;
    height: 28px;
  }


  .wda-header-reviews,
  .wda-header-icon-link[aria-label="Location"] {
    display: none;
  }

  .wda-header-top-link {
    font-size: 12px;
  }

  .wda-header-overlay-content {
    justify-content: flex-start;
    padding: 84px 28px 48px;
  }

  .wda-header-overlay-title,
  .wda-header-overlay-heading {
    font-size: clamp(2.7rem, 16vw, 4.5rem);
  }

  .wda-header-popular-buttons {
    gap: 8px;
  }

  .wda-header-popular-button {
    padding: 10px 16px;
    font-size: 13px;
  }

  .wda-header-overlay-links {
    column-gap: 18px;
  }

  .wda-header-overlay-link {
    font-size: 14px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .wda-header-nav {
    animation: none;
  }

  .wda-header-geom {
    transform: none !important;
  }
}

.wda-header-social-wrap {
  margin-top: 18px;
}

.wda-header-social-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--wda-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.wda-header-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wda-header-social-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.62);
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.wda-header-social-link:hover {
  transform: translateY(-2px);
  border-color: transparent;
  background: var(--wda-primary);
  color: #ffffff;
}

.wda-header-social-svg {
  display: block;
  width: 17px;
  height: 17px;
}
