.waatcm-head {
  --waatcm-head-blue: #009edb;
  --waatcm-head-blue-700: #007eb0;
  --waatcm-head-blue-800: #006b98;
  --waatcm-head-blue-50: #f2fafd;
  --waatcm-head-white: #ffffff;
  --waatcm-head-ink: #1b1f23;
  --waatcm-head-muted: #56616d;
  --waatcm-head-line: rgba(0, 82, 128, 0.16);
  --waatcm-head-shadow: 0 8px 24px rgba(0, 82, 128, 0.08);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  box-sizing: border-box;
  color: var(--waatcm-head-white);
  font-family: Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.2;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.waatcm-head *,
.waatcm-head *::before,
.waatcm-head *::after {
  box-sizing: border-box;
}

.waatcm-head a {
  color: inherit;
  text-decoration: none;
}

.waatcm-head button {
  font: inherit;
}

.waatcm-head::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 55, 86, 0.34), rgba(0, 55, 86, 0));
  content: "";
  pointer-events: none;
  transition: opacity 180ms ease;
}

.waatcm-head.is-scrolled,
.waatcm-head.is-menu-open {
  border-bottom: 1px solid var(--waatcm-head-line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--waatcm-head-shadow);
  color: var(--waatcm-head-ink);
  backdrop-filter: blur(14px);
}

.waatcm-head.is-scrolled::before,
.waatcm-head.is-menu-open::before {
  opacity: 0;
}

.waatcm-head__skip {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 10px 14px;
  background: var(--waatcm-head-white);
  color: var(--waatcm-head-blue-800);
  font-size: 0.84rem;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.waatcm-head__skip:focus {
  transform: translateY(0);
}

.waatcm-head__bar {
  display: grid;
  width: min(1460px, calc(100% - 56px));
  min-height: 136px;
  grid-template-columns: minmax(350px, clamp(370px, 28vw, 420px)) minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 8px 36px;
  align-items: center;
  margin: 0 auto;
  padding: 12px 0 10px;
  transition:
    min-height 180ms ease,
    gap 180ms ease;
}

.waatcm-head.is-scrolled .waatcm-head__bar,
.waatcm-head.is-menu-open .waatcm-head__bar {
  min-height: 104px;
  gap: 6px 30px;
  padding: 9px 0;
}

.waatcm-head__brand {
  position: relative;
  display: block;
  grid-row: 1 / 3;
  width: clamp(370px, 28vw, 420px);
  min-height: 118px;
  transition:
    width 180ms ease,
    min-height 180ms ease;
}

.waatcm-head.is-scrolled .waatcm-head__brand,
.waatcm-head.is-menu-open .waatcm-head__brand {
  width: clamp(275px, 21vw, 330px);
  min-height: 86px;
}

.waatcm-head__logo {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(108px, 8.4vw, 126px);
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: translateY(-50%);
  transition:
    opacity 160ms ease,
    height 180ms ease;
}

.waatcm-head.is-scrolled .waatcm-head__logo,
.waatcm-head.is-menu-open .waatcm-head__logo {
  height: clamp(74px, 6vw, 88px);
}

.waatcm-head__logo--white {
  opacity: 1;
  filter: drop-shadow(0 2px 3px rgba(0, 42, 70, 0.34));
}

.waatcm-head__logo--blue {
  opacity: 0;
}

.waatcm-head.is-scrolled .waatcm-head__logo--white,
.waatcm-head.is-menu-open .waatcm-head__logo--white {
  opacity: 0;
}

.waatcm-head.is-scrolled .waatcm-head__logo--blue,
.waatcm-head.is-menu-open .waatcm-head__logo--blue {
  opacity: 1;
}

.waatcm-head__nav {
  display: flex;
  grid-column: 2 / 4;
  grid-row: 2;
  min-width: 0;
  justify-content: flex-end;
  gap: 10px;
}

.waatcm-head__nav a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 14px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.waatcm-head.is-scrolled .waatcm-head__nav a,
.waatcm-head.is-menu-open .waatcm-head__nav a {
  color: var(--waatcm-head-ink);
}

.waatcm-head__nav a.is-active,
.waatcm-head__nav a[aria-current="page"] {
  border-color: rgba(255, 255, 255, 0.42);
  color: #bdefff;
}

.waatcm-head.is-scrolled .waatcm-head__nav a.is-active,
.waatcm-head.is-scrolled .waatcm-head__nav a[aria-current="page"],
.waatcm-head.is-menu-open .waatcm-head__nav a.is-active,
.waatcm-head.is-menu-open .waatcm-head__nav a[aria-current="page"] {
  border-color: var(--waatcm-head-line);
  background: var(--waatcm-head-blue-50);
  color: var(--waatcm-head-blue-800);
}

.waatcm-head__nav a:hover,
.waatcm-head__nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: 0;
}

.waatcm-head.is-scrolled .waatcm-head__nav a:hover,
.waatcm-head.is-scrolled .waatcm-head__nav a:focus-visible {
  background: var(--waatcm-head-blue-50);
  color: var(--waatcm-head-blue-800);
}

.waatcm-head__tools {
  display: flex;
  grid-column: 3;
  grid-row: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.waatcm-head__language-select {
  position: relative;
}

.waatcm-head__language,
.waatcm-head__cta,
.waatcm-head__menu-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  color: inherit;
  font-weight: 700;
  line-height: 1.15;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.waatcm-head__language {
  min-width: 58px;
  padding: 0 14px;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
}

.waatcm-head__language::after {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.waatcm-head__language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 3;
  display: none;
  width: 184px;
  padding: 8px;
  border: 1px solid var(--waatcm-head-line);
  background: #ffffff;
  box-shadow: var(--waatcm-head-shadow);
  color: var(--waatcm-head-ink);
  pointer-events: none;
  text-align: left;
}

.waatcm-head__language-select.is-open .waatcm-head__language-menu {
  display: grid;
  pointer-events: auto;
}

.waatcm-head__language-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 12px;
  color: var(--waatcm-head-ink);
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
}

.waatcm-head__language-menu a:hover,
.waatcm-head__language-menu a:focus-visible,
.waatcm-head__language-menu a.is-active {
  background: var(--waatcm-head-blue-50);
  color: var(--waatcm-head-blue-800);
  outline: 0;
}

.waatcm-head__language:hover,
.waatcm-head__language:focus-visible,
.waatcm-head__menu-button:hover,
.waatcm-head__menu-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
}

.waatcm-head.is-scrolled .waatcm-head__language:hover,
.waatcm-head.is-scrolled .waatcm-head__language:focus-visible,
.waatcm-head.is-scrolled .waatcm-head__menu-button:hover,
.waatcm-head.is-scrolled .waatcm-head__menu-button:focus-visible,
.waatcm-head.is-menu-open .waatcm-head__menu-button {
  border-color: var(--waatcm-head-line);
  background: var(--waatcm-head-blue-50);
  color: var(--waatcm-head-blue-800);
}

.waatcm-head__cta {
  padding: 0 22px;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
  color: var(--waatcm-head-white);
  font-size: 1rem;
  white-space: nowrap;
}

.waatcm-head__cta:hover,
.waatcm-head__cta:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: 0;
}

.waatcm-head.is-scrolled .waatcm-head__cta,
.waatcm-head.is-menu-open .waatcm-head__cta {
  border-color: var(--waatcm-head-blue);
  background: var(--waatcm-head-blue);
  color: var(--waatcm-head-white);
}

.waatcm-head__cta.is-active,
.waatcm-head__cta[aria-current="page"],
.waatcm-head.is-scrolled .waatcm-head__cta.is-active,
.waatcm-head.is-scrolled .waatcm-head__cta[aria-current="page"],
.waatcm-head.is-menu-open .waatcm-head__cta.is-active,
.waatcm-head.is-menu-open .waatcm-head__cta[aria-current="page"] {
  border-color: var(--waatcm-head-blue-800);
  background: var(--waatcm-head-blue-800);
  color: var(--waatcm-head-white);
}

.waatcm-head.is-scrolled .waatcm-head__cta:hover,
.waatcm-head.is-scrolled .waatcm-head__cta:focus-visible {
  background: var(--waatcm-head-blue-700);
}

.waatcm-head__menu-button {
  position: relative;
  display: none;
  width: 44px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.waatcm-head__menu-button span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    top 160ms ease;
}

.waatcm-head__menu-button span:nth-child(1) {
  top: 14px;
}

.waatcm-head__menu-button span:nth-child(2) {
  top: 21px;
}

.waatcm-head__menu-button span:nth-child(3) {
  top: 28px;
}

.waatcm-head.is-menu-open .waatcm-head__menu-button span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.waatcm-head.is-menu-open .waatcm-head__menu-button span:nth-child(2) {
  opacity: 0;
}

.waatcm-head.is-menu-open .waatcm-head__menu-button span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.waatcm-head__mobile-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - 74px);
  overflow: auto;
  border-top: 1px solid var(--waatcm-head-line);
  background: var(--waatcm-head-white);
  color: var(--waatcm-head-ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.waatcm-head.is-menu-open .waatcm-head__mobile-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.waatcm-head__mobile-inner {
  width: min(100% - 32px, 720px);
  margin: 0 auto;
  padding: 24px 0 30px;
}

.waatcm-head__mobile-label {
  margin: 0 0 14px;
  color: var(--waatcm-head-blue-800);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.waatcm-head__mobile-nav {
  display: grid;
  border: 1px solid var(--waatcm-head-line);
  background: var(--waatcm-head-white);
}

.waatcm-head__mobile-nav a {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--waatcm-head-line);
  color: var(--waatcm-head-ink);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.3;
}

.waatcm-head__mobile-nav a.is-active,
.waatcm-head__mobile-nav a[aria-current="page"] {
  border-left: 4px solid var(--waatcm-head-blue);
  background: var(--waatcm-head-blue-50);
  color: var(--waatcm-head-blue-800);
  padding-left: 14px;
}

.waatcm-head__mobile-nav a:last-child {
  border-bottom: 0;
}

.waatcm-head__mobile-nav a:hover,
.waatcm-head__mobile-nav a:focus-visible {
  background: var(--waatcm-head-blue-50);
  color: var(--waatcm-head-blue-800);
  outline: 0;
}

.waatcm-head__mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.waatcm-head__mobile-language {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.waatcm-head__mobile-language a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border: 1px solid var(--waatcm-head-line);
  color: var(--waatcm-head-ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.waatcm-head__mobile-language a:hover,
.waatcm-head__mobile-language a:focus-visible,
.waatcm-head__mobile-language a.is-active {
  border-color: rgba(0, 158, 219, 0.32);
  background: var(--waatcm-head-blue-50);
  color: var(--waatcm-head-blue-800);
  outline: 0;
}

.waatcm-head__mobile-actions a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border: 1px solid var(--waatcm-head-line);
  color: var(--waatcm-head-blue-800);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.waatcm-head__mobile-actions a:last-child {
  border-color: var(--waatcm-head-blue);
  background: var(--waatcm-head-blue);
  color: var(--waatcm-head-white);
}

@media (max-width: 1320px) {
  .waatcm-head__bar {
    width: min(100% - 48px, 1320px);
    grid-template-columns: minmax(350px, clamp(360px, 30vw, 420px)) minmax(0, 1fr) auto;
    gap: 8px 22px;
  }

  .waatcm-head__brand {
    width: clamp(360px, 30vw, 420px);
    min-height: 118px;
  }

  .waatcm-head.is-scrolled .waatcm-head__brand,
  .waatcm-head.is-menu-open .waatcm-head__brand {
    width: clamp(245px, 20vw, 300px);
    min-height: 76px;
  }

  .waatcm-head__nav a {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 1rem;
  }
}

@media (max-width: 1120px) {
  .waatcm-head__bar {
    grid-template-columns: minmax(260px, 1fr) auto;
    min-height: 94px;
  }

  .waatcm-head__brand,
  .waatcm-head.is-scrolled .waatcm-head__brand,
  .waatcm-head.is-menu-open .waatcm-head__brand {
    width: min(330px, 64vw);
    min-height: 86px;
  }

  .waatcm-head__nav,
  .waatcm-head__language-select,
  .waatcm-head__language {
    display: none;
  }

  .waatcm-head__menu-button {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .waatcm-head__bar {
    width: min(100% - 32px, 680px);
    min-height: 82px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .waatcm-head.is-scrolled .waatcm-head__bar,
  .waatcm-head.is-menu-open .waatcm-head__bar {
    min-height: 74px;
  }

  .waatcm-head__brand,
  .waatcm-head.is-scrolled .waatcm-head__brand,
  .waatcm-head.is-menu-open .waatcm-head__brand {
    width: min(260px, 70vw);
    min-height: 72px;
  }

  .waatcm-head.is-scrolled .waatcm-head__brand,
  .waatcm-head.is-menu-open .waatcm-head__brand {
    width: min(228px, 64vw);
  }

  .waatcm-head__cta {
    display: none;
  }

  .waatcm-head__menu-button {
    width: 44px;
    min-height: 44px;
  }

  .waatcm-head__mobile-actions {
    grid-template-columns: 1fr;
  }

  .waatcm-head__mobile-language {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .waatcm-head__brand,
  .waatcm-head.is-scrolled .waatcm-head__brand,
  .waatcm-head.is-menu-open .waatcm-head__brand {
    width: min(222px, 68vw);
  }

  .waatcm-head__mobile-nav a {
    min-height: 56px;
    padding: 15px 16px;
    font-size: 1rem;
  }
}
