/* DSK nav owner critical v2
   Closed-state first paint for the clean navbar. The full nav owner still
   loads async for dropdown/open-state polish and interaction details. */
#sb-navigation[data-dsk-nav-shell] {
  position: sticky;
  top: 0;
  z-index: 10040;
  width: 100%;
}

#sb-navigation[data-dsk-nav-shell] *,
#sb-navigation[data-dsk-nav-shell] *::before,
#sb-navigation[data-dsk-nav-shell] *::after {
  box-sizing: border-box;
}

.dsk-nav-v2 {
  --dsk-nav-shell: min(calc(100% - 100px), 1236px);
  --dsk-nav-gutter: 0px;
  --dsk-nav-fg: #1a1a1a;
  --dsk-nav-muted: #595959;
  --dsk-nav-blue: #1685e8;
  width: 100%;
  background: #fff;
  color: var(--dsk-nav-fg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.dsk-nav-v2__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  width: var(--dsk-nav-shell);
  min-height: 128px;
  margin: 0 auto;
  padding: 20px var(--dsk-nav-gutter);
}

.dsk-nav-v2 a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.dsk-nav-v2__brand {
  display: inline-flex;
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  min-width: 0;
  width: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.dsk-nav-v2__logo {
  display: block;
  width: 88px !important;
  height: 88px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  flex: 0 0 auto;
}

.dsk-nav-v2__brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.dsk-nav-v2__menu {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  justify-self: stretch;
  min-width: 0;
  min-height: 70px;
  margin-left: 8px;
  overflow-x: visible;
}

.dsk-nav-v2__list,
.dsk-nav-v2__dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dsk-nav-v2__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 24px;
  min-width: 0;
  max-width: 100%;
  padding-left: 8px;
}

.dsk-nav-v2__item {
  position: relative;
  flex: 0 0 auto;
  min-width: 0;
}

.dsk-nav-v2__link,
.dsk-nav-v2__services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0;
  border-radius: 0;
  color: var(--dsk-nav-muted);
  font-size: .96rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  position: relative;
}

.dsk-nav-v2__link[aria-current="page"],
.dsk-nav-v2__dropdown-link[aria-current="page"] {
  color: var(--dsk-nav-muted);
}

.dsk-nav-v2__link[aria-current="page"]::after {
  content: none;
  display: none;
}

.dsk-nav-v2__caret {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.dsk-nav-v2__caret::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 1px;
  transform: translate(-50%, -58%) rotate(45deg);
}

.dsk-nav-v2__dropdown {
  min-width: 300px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .18), 0 2px 6px rgba(15, 23, 42, .08);
}

.dsk-nav-v2__dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--dsk-nav-fg);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.25;
}

.dsk-nav-v2__lang {
  display: inline-flex;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: auto;
  min-width: 72px;
  padding: 3px;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .10);
}

.dsk-nav-v2__lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  border-radius: 999px;
  color: #111827;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
}

.dsk-nav-v2__lang-link.is-active,
.dsk-nav-v2__lang-link[aria-current="page"] {
  background: #2086e8;
  color: #fff;
  box-shadow: 0 12px 26px rgba(32, 134, 232, .30);
}

.dsk-nav-v2__actions {
  display: inline-flex;
  grid-column: 4;
  grid-row: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.dsk-nav-v2__phone,
.dsk-nav-v2__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.dsk-nav-v2__phone {
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  color: #4a4a4a;
  font-size: .85rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.dsk-nav-v2__cta {
  gap: 8px;
  padding: 9px 14px 9px 10px;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 54%, var(--dsk-nav-blue) 100%);
  color: #fff;
  font-size: .70rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: 0 16px 34px rgba(239, 68, 68, .24), 0 10px 28px rgba(37, 99, 235, .16);
}

.dsk-nav-v2__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 24px;
  padding: 0 6px;
  border: 1px solid rgba(255, 255, 255, .50);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: .62rem;
  font-weight: 900;
  line-height: 1;
}

.dsk-nav-v2__cta-text {
  color: #fff;
  white-space: nowrap;
}

.dsk-nav-v2__mobile-cta,
.dsk-nav-v2__toggle,
.dsk-nav-v2__close {
  display: none;
}

@media (min-width: 1181px) {
  #sb-navigation[data-dsk-nav-shell],
  #sb-navigation[data-dsk-nav-shell] .dsk-nav-v2,
  #sb-navigation[data-dsk-nav-shell] .dsk-nav-v2__menu {
    overflow: visible !important;
  }

  .dsk-nav-v2__inner {
    gap: clamp(16px, 1.25vw, 22px);
  }

  .dsk-nav-v2__menu {
    margin-left: 0;
  }

  .dsk-nav-v2__list {
    gap: clamp(12px, 1.2vw, 18px);
    padding-left: 0;
  }

  .dsk-nav-v2__link,
  .dsk-nav-v2__services-trigger {
    font-size: .92rem;
  }

  .dsk-nav-v2__actions {
    gap: 10px;
  }

  .dsk-nav-v2__item--services::after {
    content: "";
    position: absolute;
    left: -14px;
    right: -14px;
    top: 100%;
    height: 16px;
  }

  .dsk-nav-v2__dropdown {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    z-index: 10070;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(4px);
  }

  .dsk-nav-v2__item--services:hover .dsk-nav-v2__dropdown,
  .dsk-nav-v2__item--services:focus-within .dsk-nav-v2__dropdown,
  .dsk-nav-v2__item--services.is-services-open .dsk-nav-v2__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 1320px) and (min-width: 1181px) {
  .dsk-nav-v2__inner {
    gap: 16px;
  }

  .dsk-nav-v2__logo {
    width: 78px !important;
    height: 78px !important;
  }

  .dsk-nav-v2__list {
    gap: 8px;
  }

  .dsk-nav-v2__link,
  .dsk-nav-v2__services-trigger {
    font-size: .88rem;
  }

  .dsk-nav-v2__phone-text {
    display: none;
  }
}

@media (max-width: 1180px) {
  .dsk-nav-v2 {
    position: relative;
    z-index: 10050;
  }

  .dsk-nav-v2__inner {
    grid-template-columns: auto 1fr auto;
    width: 100%;
    min-height: 104px;
    gap: 20px;
    padding: 20px;
  }

  .dsk-nav-v2__logo {
    width: 64px !important;
    height: 64px !important;
  }

  .dsk-nav-v2__brand,
  .dsk-nav-v2__lang,
  .dsk-nav-v2__toggle {
    position: relative;
    z-index: 10070;
  }

  .dsk-nav-v2__actions {
    display: none;
  }

  .dsk-nav-v2__lang {
    grid-column: 2;
    justify-self: end;
    min-width: 84px;
    height: 40px;
  }

  .dsk-nav-v2__lang-link {
    min-width: 38px;
    min-height: 34px;
    font-size: .85rem;
  }

  .dsk-nav-v2__toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--dsk-nav-fg);
    box-shadow: none;
    cursor: pointer;
  }

  .dsk-nav-v2__toggle-line {
    position: absolute;
    width: 29px;
    height: 3px;
    border-radius: 999px;
    background: #5f5f5f;
  }

  .dsk-nav-v2__toggle-line:nth-child(1) {
    transform: translateY(-9px);
  }

  .dsk-nav-v2__toggle-line:nth-child(3) {
    transform: translateY(9px);
  }

  .dsk-nav-v2__menu {
    display: none;
  }

  .dsk-nav-v2__dropdown {
    display: none;
  }
}

@media (max-width: 380px) {
  .dsk-nav-v2__inner {
    gap: 14px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .dsk-nav-v2__logo {
    width: 62px !important;
    height: 62px !important;
  }

  .dsk-nav-v2__lang {
    min-width: 82px;
  }
}
