@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --froo-navy: #071338;
  --froo-blue: #3155ff;
  --froo-blue-bright: #5973ff;
  --froo-purple: #5634d8;
  --froo-purple-dark: #3516b9;
  --froo-muted: #68738e;
  --froo-border: rgba(18, 38, 92, 0.1);
  --froo-shadow-soft: 0 14px 40px rgba(31, 43, 98, 0.08);
  --froo-shadow: 0 20px 56px rgba(55, 55, 153, 0.16);
  --froo-radius: 16px;
  --froo-max-width: 1320px;
}

.froo-shell,
.froo-shell *,
.froo-shell *::before,
.froo-shell *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

body.froo-menu-open {
  overflow: hidden;
  touch-action: none;
}

.froo-main-content {
  min-height: 1px;
}

.froo-main-content--article {
  width: min(100% - 40px, 1140px);
  margin-inline: auto;
  padding-block: 64px 88px;
}

.froo-content-entry--article {
  color: var(--froo-navy);
  font: 400 16px/1.75 Arial, sans-serif;
}

.froo-article-header h1,
.froo-empty-state h1 {
  margin: 0 0 20px;
  color: var(--froo-navy);
  font: 800 clamp(34px, 5vw, 58px)/1.05 Arial, sans-serif;
}

.froo-inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--froo-blue), var(--froo-purple));
  color: #fff;
  font: 700 14px/1 Arial, sans-serif;
  text-decoration: none;
}

/* All public layout styles are strictly scoped to the Froo shell. */
.froo-shell {
  color: var(--froo-navy);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.froo-shell a {
  text-decoration: none;
}

.froo-shell svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.froo-shell--header {
  position: relative;
  z-index: 9999;
}

.froo-shell--header-sticky {
  position: sticky;
  top: 0;
}

.admin-bar .froo-shell--header-sticky {
  top: 32px;
}

.froo-site-header {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(24, 44, 102, 0.075);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 7px 24px rgba(32, 47, 100, 0.045);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}

.froo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--froo-max-width));
  min-height: 84px;
  margin-inline: auto;
  gap: 34px;
}

.froo-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.froo-brand__logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: 205px;
  object-fit: contain;
}

.froo-header__navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  min-width: 0;
}

.froo-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.froo-menu--primary {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.froo-menu--primary .menu-item {
  position: relative;
}

.froo-menu--primary a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--froo-navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  transition: color 180ms ease;
}

.froo-menu--primary > .menu-item > a::before {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--froo-blue), var(--froo-purple));
  content: '';
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.froo-menu--primary a:hover,
.froo-menu--primary a:focus-visible,
.froo-menu--primary .current-menu-item > a,
.froo-menu--primary .current-menu-ancestor > a {
  color: var(--froo-blue);
}

.froo-menu--primary > .menu-item > a:hover::before,
.froo-menu--primary > .menu-item > a:focus-visible::before,
.froo-menu--primary > .current-menu-item > a::before,
.froo-menu--primary > .current-menu-ancestor > a::before {
  opacity: 1;
  transform: scaleX(1);
}

.froo-menu--primary .menu-item-has-children > a::after {
  width: 6px;
  height: 6px;
  margin-left: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: '';
  transform: rotate(45deg) translateY(-2px);
}

.froo-menu--primary .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  visibility: hidden;
  min-width: 245px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(34, 54, 116, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--froo-shadow);
  list-style: none;
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.froo-menu--primary .menu-item:hover > .sub-menu,
.froo-menu--primary .menu-item:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.froo-menu--primary .sub-menu a {
  display: flex;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 13px;
}

.froo-menu--primary .sub-menu a:hover,
.froo-menu--primary .sub-menu a:focus-visible {
  background: linear-gradient(90deg, rgba(49, 85, 255, 0.08), rgba(86, 52, 216, 0.055));
}

.froo-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 9px 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: linear-gradient(135deg, #5470ff 0%, #4e42ea 48%, #4218bb 100%);
  box-shadow: 0 12px 24px rgba(74, 55, 213, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.froo-header__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.15);
}

.froo-header__cta-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.15;
}

.froo-header__cta:hover,
.froo-header__cta:focus-visible {
  box-shadow: 0 16px 30px rgba(74, 55, 213, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.26);
  color: #fff;
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.froo-nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  box-shadow: none;
  color: var(--froo-navy);
  cursor: pointer;
  font: 800 12px/1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-appearance: none;
  appearance: none;
}

.froo-nav-toggle:hover,
.froo-nav-toggle:focus,
.froo-nav-toggle:focus-visible,
.froo-nav-toggle:active {
  border: 0;
  outline: none;
  background: transparent;
  box-shadow: none;
}

.froo-nav-toggle__icon {
  display: grid;
  gap: 4px;
}

.froo-nav-toggle__icon span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.froo-site-header--menu-open .froo-nav-toggle__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.froo-site-header--menu-open .froo-nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.froo-site-header--menu-open .froo-nav-toggle__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.froo-nav-backdrop,
.froo-mobile-nav__top,
.froo-mobile-nav__intro,
.froo-mobile-nav__contact {
  display: none;
}

/* Footer */
.froo-site-footer {
  border-top: 1px solid rgba(28, 48, 108, 0.08);
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.froo-footer__inner {
  width: min(100% - 40px, var(--froo-max-width));
  margin-inline: auto;
}

.froo-footer__grid {
  display: grid;
  grid-template-columns: minmax(290px, 1.72fr) minmax(175px, 0.88fr) minmax(175px, 0.88fr) minmax(255px, 1.22fr);
  gap: 52px;
  padding: 52px 0 36px;
}

.froo-brand--footer .froo-brand__logo {
  height: 43px;
}

.froo-footer__description {
  max-width: 335px;
  margin: 18px 0 0;
  color: var(--froo-muted);
  font-size: 12px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.froo-footer__menu-column h2,
.froo-footer__contact-column h2 {
  margin: 4px 0 17px;
  color: var(--froo-navy);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.froo-menu--footer {
  display: grid;
  gap: 10px;
}

.froo-menu--footer a,
.froo-contact-list a,
.froo-contact-list__text {
  color: var(--froo-muted);
  font-size: 12.5px;
  line-height: 1.55;
  transition: color 180ms ease;
}

.froo-menu--footer a:hover,
.froo-menu--footer a:focus-visible,
.froo-contact-list a:hover,
.froo-contact-list a:focus-visible {
  color: var(--froo-blue);
}

.froo-contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.froo-contact-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-width: 0;
}

.froo-contact-list a,
.froo-contact-list__text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.froo-contact-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(49, 85, 255, 0.12);
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(49, 85, 255, 0.09), rgba(86, 52, 216, 0.055));
  color: var(--froo-blue);
}

.froo-contact-list__icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.9;
}

.froo-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.froo-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(22, 43, 100, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--froo-navy);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.froo-socials svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.85;
}

.froo-socials a:hover,
.froo-socials a:focus-visible {
  border-color: rgba(49, 85, 255, 0.35);
  box-shadow: 0 7px 16px rgba(49, 85, 255, 0.1);
  color: var(--froo-blue);
  transform: translateY(-2px);
}

.froo-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0 18px;
  border-top: 1px solid rgba(23, 43, 97, 0.075);
}

.froo-footer__bottom p {
  margin: 0;
  color: #8a93a9;
  font-size: 11px;
  line-height: 1.4;
}

.froo-footer__privacy-link {
  color: #7e8aa4;
  font-size: 11px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 180ms ease;
}

.froo-footer__privacy-link:hover,
.froo-footer__privacy-link:focus-visible {
  color: var(--froo-blue);
}

@media (max-width: 1160px) {
  .froo-header__navigation {
    gap: 20px;
  }

  .froo-menu--primary {
    gap: 18px;
  }

  .froo-menu--primary a {
    font-size: 13px;
  }

  .froo-footer__grid {
    grid-template-columns: 1.35fr repeat(2, 1fr);
  }

  .froo-footer__contact-column {
    grid-column: span 2;
  }
}

@media (max-width: 1023px) {
  .froo-header__inner {
    min-height: 74px;
  }

  .froo-brand__logo {
    height: 42px;
    max-width: 175px;
  }

  .froo-nav-toggle {
    display: inline-flex;
  }

  .froo-nav-backdrop {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: block;
    visibility: hidden;
    padding: 0;
    border: 0;
    background: rgba(6, 16, 48, 0.52);
    cursor: pointer;
    opacity: 0;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .froo-site-header--menu-open .froo-nav-backdrop {
    visibility: visible;
    opacity: 1;
  }

  .froo-header__navigation {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    visibility: hidden;
    width: min(90vw, 400px);
    height: 100dvh;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: hidden;
    border-left: 1px solid rgba(34, 54, 116, 0.1);
    background: #fff;
    box-shadow: -22px 0 50px rgba(7, 19, 56, 0.16);
    opacity: 0;
    transform: translateX(104%);
    transition: opacity 220ms ease, transform 260ms ease, visibility 260ms ease;
    overscroll-behavior: contain;
  }

  .froo-header__navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .froo-mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(24, 44, 102, 0.08);
  }

  .froo-brand--mobile-drawer .froo-brand__logo {
    height: 39px;
    max-width: 164px;
  }

  .froo-mobile-nav__close {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(36, 57, 117, 0.11);
    border-radius: 11px;
    background: rgba(245, 247, 255, 0.9);
    color: var(--froo-navy);
    cursor: pointer;
  }

  .froo-mobile-nav__close::before,
  .froo-mobile-nav__close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 9px;
    background: currentColor;
    content: '';
  }

  .froo-mobile-nav__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .froo-mobile-nav__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .froo-mobile-nav__intro {
    display: block;
    padding: 22px 22px 8px;
  }

  .froo-mobile-nav__intro p {
    margin: 0 0 8px;
    color: var(--froo-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1;
    text-transform: uppercase;
  }

  .froo-mobile-nav__intro strong {
    display: block;
    color: var(--froo-navy);
    font-size: 20px;
    letter-spacing: -0.035em;
    line-height: 1.15;
  }

  .froo-primary-nav {
    min-height: 0;
    flex: 1 1 auto;
    padding: 14px 18px 12px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .froo-menu--primary {
    display: grid;
    gap: 4px;
  }

  .froo-menu--primary a {
    display: flex;
    min-height: 46px;
    padding: 0 10px;
    border-radius: 9px;
    font-size: 14px;
  }

  .froo-menu--primary > .menu-item > a::before {
    display: none;
  }

  .froo-menu--primary a:hover,
  .froo-menu--primary a:focus-visible,
  .froo-menu--primary .current-menu-item > a,
  .froo-menu--primary .current-menu-ancestor > a {
    background: linear-gradient(90deg, rgba(49, 85, 255, 0.075), rgba(86, 52, 216, 0.04));
  }

  .froo-menu--primary .sub-menu {
    position: static;
    visibility: visible;
    min-width: 0;
    margin: 0 0 5px 10px;
    padding: 2px 0 2px 10px;
    border: 0;
    border-left: 1px solid rgba(49, 85, 255, 0.17);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .froo-menu--primary .sub-menu a {
    min-height: 38px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 700;
  }

  .froo-mobile-nav__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 18px 12px;
    padding: 11px 12px;
    border: 1px solid rgba(49, 85, 255, 0.12);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(49, 85, 255, 0.065), rgba(86, 52, 216, 0.035));
    color: var(--froo-navy);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
  }

  .froo-mobile-nav__contact small {
    display: block;
    margin-bottom: 3px;
    color: var(--froo-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .froo-mobile-nav__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 10px;
    background: #fff;
    color: var(--froo-blue);
    box-shadow: 0 7px 15px rgba(49, 85, 255, 0.1);
  }

  .froo-mobile-nav__contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .froo-header__cta {
    min-height: 50px;
    margin: 0 18px 18px;
    justify-content: space-between;
  }
}

@media (max-width: 782px) {
  .admin-bar .froo-shell--header-sticky {
    top: 46px;
  }

  .admin-bar .froo-header__navigation,
  .admin-bar .froo-nav-backdrop {
    top: 46px;
  }

  .admin-bar .froo-header__navigation {
    height: calc(100dvh - 46px);
  }
}

@media (max-width: 767px) {
  .froo-header__inner,
  .froo-footer__inner {
    width: min(100% - 28px, var(--froo-max-width));
  }

  .froo-footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 25px;
    padding: 34px 0 27px;
  }

  .froo-footer__grid > * {
    grid-column: auto;
    min-width: 0;
  }

  .froo-footer__description {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.68;
  }

  .froo-footer__menu-column h2,
  .froo-footer__contact-column h2 {
    margin-bottom: 12px;
  }

  .froo-menu--footer {
    gap: 8px;
  }

  .froo-footer__bottom {
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }

  .froo-footer__bottom p {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .froo-nav-toggle__label {
    display: none;
  }

  .froo-nav-toggle {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .froo-header__navigation {
    width: min(94vw, 385px);
  }

}

/* ========================================================================== 
   Header v7 — multi-level navigation inspired by a full-service agency header.
   This block intentionally overrides only the header styles above.
   ========================================================================== */
.froo-shell--header {
  --froo-header-notice-height: 36px;
  --froo-header-main-height: 74px;
  --froo-header-assist-height: 45px;
}

.froo-shell--header .froo-site-header {
  overflow: visible;
  border-bottom: 1px solid rgba(24, 44, 102, 0.09);
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 37, 85, 0.055);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.froo-header-notice {
  height: var(--froo-header-notice-height);
  background: linear-gradient(96deg, #3155ff 0%, #5634d8 55%, #4320bc 100%);
  color: #fff;
}

.froo-header-notice__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--froo-max-width));
  height: 100%;
  margin-inline: auto;
  gap: 28px;
}

.froo-header-notice__message,
.froo-header-notice__utilities,
.froo-header-notice__phone {
  display: flex;
  align-items: center;
}

.froo-header-notice__message {
  min-width: 0;
  gap: 12px;
}

.froo-header-notice__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}

.froo-header-notice__button:hover,
.froo-header-notice__button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-1px);
}

.froo-header-notice p {
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.froo-header-notice__utilities {
  flex: 0 0 auto;
  gap: 0;
}

.froo-header-notice__utilities > a {
  position: relative;
  padding-inline: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color 160ms ease;
}

.froo-header-notice__utilities > a + a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.24);
  content: '';
  transform: translateY(-50%);
}

.froo-header-notice__utilities > a:hover,
.froo-header-notice__utilities > a:focus-visible {
  color: #fff;
}

.froo-header-notice__phone {
  gap: 4px;
}

.froo-header-notice__phone strong {
  font-weight: 850;
}

.froo-header-notice__phone span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.froo-header-main {
  background: #fff;
}

.froo-shell--header .froo-header__inner {
  min-height: var(--froo-header-main-height);
  gap: 28px;
}

.froo-shell--header .froo-brand--header .froo-brand__logo {
  height: 43px;
  max-width: 190px;
}

.froo-shell--header .froo-header__navigation {
  flex: 1 1 auto;
  gap: 24px;
}

.froo-shell--header .froo-primary-nav {
  margin-left: auto;
}

.froo-shell--header .froo-menu--primary {
  gap: clamp(14px, 1.7vw, 26px);
}

.froo-shell--header .froo-menu--primary a {
  min-height: 46px;
  font-size: 12.5px;
  font-weight: 750;
}

.froo-shell--header .froo-menu--primary > .menu-item > a::before {
  bottom: 0;
}

.froo-shell--header .froo-menu--primary .sub-menu {
  top: calc(100% + 10px);
  min-width: 265px;
  padding: 11px;
  border-radius: 12px;
}

.froo-shell--header .froo-menu--primary .sub-menu a {
  min-height: 39px;
  font-size: 12.5px;
}

.froo-shell--header .froo-header__cta {
  min-height: 44px;
  padding: 0 7px 0 17px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
}

.froo-shell--header .froo-header__cta-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
}

.froo-header-assist {
  border-top: 1px solid rgba(24, 44, 102, 0.075);
  background: #fff;
}

.froo-header-assist__inner {
  display: flex;
  align-items: center;
  width: min(100% - 40px, var(--froo-max-width));
  min-height: var(--froo-header-assist-height);
  margin-inline: auto;
  overflow: hidden;
}

.froo-header-assist__inner > strong {
  display: inline-flex;
  align-items: center;
  min-height: var(--froo-header-assist-height);
  padding-right: 22px;
  color: #9aa2b6;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.froo-header-assist__inner > a {
  display: inline-flex;
  align-items: center;
  min-height: var(--froo-header-assist-height);
  gap: 8px;
  padding-inline: 17px;
  border-left: 1px solid rgba(24, 44, 102, 0.075);
  color: #667087;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.froo-header-assist__inner > a:hover,
.froo-header-assist__inner > a:focus-visible {
  background: rgba(49, 85, 255, 0.045);
  color: var(--froo-blue);
}

.froo-header-assist__inner > a > span {
  color: #8c96aa;
}

.froo-header-assist__inner svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.65;
}

.froo-mobile-nav__utilities,
.froo-submenu-toggle {
  display: none;
}

@media (max-width: 1160px) {
  .froo-header-notice__inner,
  .froo-shell--header .froo-header__inner,
  .froo-header-assist__inner {
    width: min(100% - 32px, var(--froo-max-width));
  }

  .froo-header-notice__utilities > a {
    padding-inline: 8px;
    font-size: 10px;
  }

  .froo-shell--header .froo-header__navigation {
    gap: 17px;
  }

  .froo-shell--header .froo-menu--primary {
    gap: 15px;
  }

  .froo-shell--header .froo-menu--primary a {
    font-size: 11.5px;
  }

  .froo-header-assist__inner > strong {
    padding-right: 14px;
  }

  .froo-header-assist__inner > a {
    gap: 6px;
    padding-inline: 11px;
    font-size: 10.5px;
  }
}

@media (max-width: 1023px) {
  .froo-shell--header {
    --froo-header-notice-height: 44px;
    --froo-header-main-height: 72px;
  }

  .froo-header-notice__inner {
    justify-content: center;
    width: min(100% - 24px, var(--froo-max-width));
    text-align: center;
  }

  .froo-header-notice__button,
  .froo-header-notice__utilities {
    display: none;
  }

  .froo-header-notice__message {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .froo-header-notice p {
    width: 100%;
    font-size: 11.5px;
    line-height: 1.25;
  }

  .froo-shell--header .froo-header__inner {
    width: min(100% - 28px, var(--froo-max-width));
    min-height: var(--froo-header-main-height);
  }

  .froo-shell--header .froo-brand--header .froo-brand__logo {
    height: 39px;
    max-width: 175px;
  }

  .froo-shell--header .froo-nav-toggle {
    display: inline-flex;
  }

  .froo-shell--header .froo-nav-backdrop {
    top: 0;
    height: 100dvh;
  }

  .froo-shell--header .froo-header__navigation {
    top: 0;
    bottom: auto;
    width: min(100vw, 470px);
    height: 100dvh;
    gap: 0;
    overflow-y: auto;
    border-left: 1px solid rgba(24, 44, 102, 0.08);
    box-shadow: -18px 0 52px rgba(7, 19, 56, 0.2);
  }

  .froo-shell--header .froo-site-header--has-notice .froo-header__navigation,
  .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    top: var(--froo-header-notice-height);
    height: calc(100dvh - var(--froo-header-notice-height));
  }

  .froo-shell--header .froo-mobile-nav__top {
    display: flex;
    min-height: 76px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(24, 44, 102, 0.09);
  }

  .froo-shell--header .froo-brand--mobile-drawer .froo-brand__logo {
    height: 40px;
    max-width: 178px;
  }

  .froo-shell--header .froo-mobile-nav__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .froo-shell--header .froo-mobile-nav__intro,
  .froo-shell--header .froo-mobile-nav__contact,
  .froo-header-assist {
    display: none;
  }

  .froo-shell--header .froo-primary-nav {
    flex: 0 0 auto;
    padding: 0;
    overflow: visible;
  }

  .froo-shell--header .froo-menu--primary {
    display: block;
  }

  .froo-shell--header .froo-menu--primary > .menu-item {
    position: relative;
    border-bottom: 1px solid rgba(24, 44, 102, 0.095);
  }

  .froo-shell--header .froo-menu--primary > .menu-item > a {
    min-height: 68px;
    padding: 0 58px 0 24px;
    border-radius: 0;
    color: var(--froo-navy);
    font-size: 17px;
    font-weight: 520;
  }

  .froo-shell--header .froo-menu--primary > .menu-item > a::after,
  .froo-shell--header .froo-menu--primary > .menu-item > a::before {
    display: none;
  }

  .froo-shell--header .froo-menu--primary > .current-menu-item > a,
  .froo-shell--header .froo-menu--primary > .current-menu-ancestor > a,
  .froo-shell--header .froo-menu--primary > .menu-item > a:hover,
  .froo-shell--header .froo-menu--primary > .menu-item > a:focus-visible {
    background: rgba(49, 85, 255, 0.075);
    color: var(--froo-navy);
  }

  .froo-shell--header .froo-submenu-toggle {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 68px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    color: #7a849b;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  .froo-shell--header .froo-submenu-toggle span {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 180ms ease;
  }

  .froo-shell--header .is-submenu-open > .froo-submenu-toggle {
    color: var(--froo-blue);
  }

  .froo-shell--header .is-submenu-open > .froo-submenu-toggle span {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .froo-shell--header .froo-menu--primary .sub-menu {
    position: static;
    visibility: hidden;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: rgba(49, 85, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(49, 85, 255, 0.08), inset 0 -1px 0 rgba(49, 85, 255, 0.06);
    opacity: 0;
    transform: none;
    transition: max-height 280ms ease, opacity 180ms ease, visibility 280ms ease;
  }

  .froo-shell--header .froo-menu--primary .is-submenu-open > .sub-menu {
    visibility: visible;
    max-height: 900px;
    padding: 14px 24px 17px;
    opacity: 1;
  }

  .froo-shell--header .froo-menu--primary .sub-menu a {
    min-height: 43px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #202d50;
    font-size: 14px;
    font-weight: 620;
  }

  .froo-shell--header .froo-menu--primary .sub-menu a:hover,
  .froo-shell--header .froo-menu--primary .sub-menu a:focus-visible,
  .froo-shell--header .froo-menu--primary .sub-menu .current-menu-item > a {
    background: transparent;
    color: var(--froo-blue);
  }

  .froo-shell--header .froo-header__cta {
    min-height: 54px;
    margin: 22px 20px 18px;
    padding: 0 12px 0 22px;
    border-radius: 999px;
    font-size: 14px;
  }

  .froo-shell--header .froo-header__cta-icon {
    width: 34px;
    height: 34px;
  }

  .froo-mobile-nav__utilities {
    display: block;
    margin-top: auto;
    padding: 18px 22px 24px;
    border-top: 1px solid rgba(24, 44, 102, 0.09);
  }

  .froo-mobile-nav__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin-bottom: 28px;
  }

  .froo-mobile-nav__links a {
    color: var(--froo-navy);
    font-size: 14px;
    font-weight: 680;
  }

  .froo-mobile-nav__offer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    color: var(--froo-navy);
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
  }

  .froo-mobile-nav__offer strong {
    font-weight: 850;
  }

  .froo-mobile-nav__offer span {
    color: var(--froo-muted);
    font-weight: 600;
  }
}

@media (max-width: 782px) {
  .admin-bar .froo-shell--header .froo-header__navigation,
  .admin-bar .froo-shell--header .froo-nav-backdrop {
    top: 46px;
    height: calc(100dvh - 46px);
  }

  .admin-bar .froo-shell--header .froo-site-header--has-notice .froo-header__navigation,
  .admin-bar .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    top: calc(46px + var(--froo-header-notice-height));
    height: calc(100dvh - 46px - var(--froo-header-notice-height));
  }
}

@media (max-width: 420px) {
  .froo-shell--header .froo-nav-toggle__label {
    display: none;
  }

  .froo-shell--header .froo-nav-toggle {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .froo-shell--header .froo-header__navigation {
    width: 100vw;
  }

  .froo-shell--header .froo-menu--primary > .menu-item > a {
    min-height: 64px;
    padding-left: 20px;
    font-size: 16px;
  }

  .froo-shell--header .froo-submenu-toggle {
    height: 64px;
  }

  .froo-shell--header .froo-menu--primary .is-submenu-open > .sub-menu {
    padding-inline: 20px;
  }

  .froo-shell--header .froo-header__cta {
    margin-inline: 18px;
  }

  .froo-mobile-nav__utilities {
    padding-inline: 20px;
  }
}


/* ========================================================================== 
   Header v8 — typography consistency and stable mobile drawer.
   Final overrides intentionally win over legacy mobile rules retained above.
   ========================================================================== */
html,
body,
button,
input,
select,
textarea {
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.froo-shell,
.froo-shell button,
.froo-shell input,
.froo-shell select,
.froo-shell textarea {
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.froo-header-notice__button,
.froo-header-notice p,
.froo-header-notice__utilities > a,
.froo-shell--header .froo-menu--primary a,
.froo-shell--header .froo-header__cta,
.froo-header-assist__inner > strong,
.froo-header-assist__inner > a,
.froo-mobile-nav__links a,
.froo-mobile-nav__offer {
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

/* Desktop typography closer to the clean agency-navigation reference. */
@media (min-width: 1024px) {
  .froo-header-notice__button {
    font-weight: 700;
  }

  .froo-header-notice p,
  .froo-header-notice__utilities > a {
    font-weight: 600;
  }

  .froo-header-notice__phone strong {
    font-weight: 700;
  }

  .froo-shell--header .froo-menu--primary a {
    font-weight: 600;
  }

  .froo-shell--header .froo-header__cta {
    font-size: 11px;
    font-weight: 700;
  }

  .froo-header-assist__inner > strong {
    font-weight: 700;
  }

  .froo-header-assist__inner > a {
    font-weight: 500;
  }
}

@media (max-width: 1023px) {
  body.froo-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .froo-shell--header {
    --froo-header-notice-height: 44px;
    --froo-header-main-height: 70px;
  }

  .froo-shell--header .froo-header-notice {
    height: var(--froo-header-notice-height);
  }

  .froo-shell--header .froo-header-notice__inner {
    width: min(100% - 24px, var(--froo-max-width));
  }

  .froo-shell--header .froo-header-notice p {
    display: block;
    overflow: hidden;
    width: 100%;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .froo-shell--header .froo-header__inner {
    width: min(100% - 28px, var(--froo-max-width));
    min-height: var(--froo-header-main-height);
    gap: 18px;
  }

  .froo-shell--header .froo-brand--header .froo-brand__logo {
    height: 38px;
    max-width: 168px;
  }

  .froo-shell--header .froo-nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    color: var(--froo-navy);
    font-size: 12px;
    font-weight: 700;
    -webkit-appearance: none;
    appearance: none;
  }

  .froo-shell--header .froo-nav-toggle:hover,
  .froo-shell--header .froo-nav-toggle:focus,
  .froo-shell--header .froo-nav-toggle:focus-visible,
  .froo-shell--header .froo-nav-toggle:active {
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
  }

  .froo-shell--header .froo-nav-backdrop {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    visibility: hidden;
    width: 100vw;
    height: 100dvh;
    padding: 0;
    border: 0;
    background: rgba(7, 19, 56, 0.52);
    opacity: 0;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .froo-shell--header .froo-site-header--menu-open .froo-nav-backdrop {
    visibility: visible;
    opacity: 1;
  }

  .froo-shell--header .froo-header__navigation {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    display: flex;
    visibility: hidden;
    width: min(100vw, 480px);
    height: 100dvh;
    min-width: 0;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-left: 1px solid rgba(24, 44, 102, 0.09);
    border-radius: 0;
    background: #fff;
    box-shadow: -18px 0 52px rgba(7, 19, 56, 0.2);
    opacity: 0;
    transform: translateX(104%);
    transition: opacity 220ms ease, transform 260ms ease, visibility 260ms ease;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .froo-shell--header .froo-header__navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .froo-shell--header .froo-site-header--has-notice .froo-header__navigation,
  .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    top: var(--froo-header-notice-height);
    height: calc(100dvh - var(--froo-header-notice-height));
  }

  .froo-shell--header .froo-mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(24, 44, 102, 0.1);
    background: #fff;
  }

  .froo-shell--header .froo-brand--mobile-drawer .froo-brand__logo {
    height: 40px;
    max-width: 178px;
  }

  .froo-shell--header .froo-mobile-nav__close {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    color: var(--froo-navy);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  .froo-shell--header .froo-mobile-nav__close:hover,
  .froo-shell--header .froo-mobile-nav__close:focus,
  .froo-shell--header .froo-mobile-nav__close:focus-visible,
  .froo-shell--header .froo-mobile-nav__close:active {
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
  }

  .froo-shell--header .froo-primary-nav {
    display: block;
    width: 100%;
    min-height: 0;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .froo-shell--header .froo-menu--primary {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .froo-shell--header .froo-menu--primary > .menu-item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(24, 44, 102, 0.1);
  }

  .froo-shell--header .froo-menu--primary > .menu-item > a {
    display: flex;
    width: 100%;
    min-height: 68px;
    align-items: center;
    padding: 0 64px 0 24px;
    border-radius: 0;
    background: #fff;
    color: var(--froo-navy);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.2;
  }

  .froo-shell--header .froo-menu--primary > .menu-item:not(.menu-item-has-children) > a {
    padding-right: 24px;
  }

  .froo-shell--header .froo-menu--primary > .menu-item > a::before,
  .froo-shell--header .froo-menu--primary > .menu-item > a::after {
    display: none;
  }

  .froo-shell--header .froo-menu--primary > .current-menu-item > a,
  .froo-shell--header .froo-menu--primary > .current-menu-ancestor > a,
  .froo-shell--header .froo-menu--primary > .menu-item.is-submenu-open > a,
  .froo-shell--header .froo-menu--primary > .menu-item > a:hover,
  .froo-shell--header .froo-menu--primary > .menu-item > a:focus-visible {
    background: rgba(49, 85, 255, 0.075);
    color: var(--froo-navy);
  }

  .froo-shell--header .froo-submenu-toggle {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 68px;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    color: #778198;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  .froo-shell--header .froo-submenu-toggle:hover,
  .froo-shell--header .froo-submenu-toggle:focus,
  .froo-shell--header .froo-submenu-toggle:focus-visible,
  .froo-shell--header .froo-submenu-toggle:active {
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
  }

  .froo-shell--header .froo-submenu-toggle span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 180ms ease;
  }

  .froo-shell--header .is-submenu-open > .froo-submenu-toggle {
    color: var(--froo-blue);
  }

  .froo-shell--header .is-submenu-open > .froo-submenu-toggle span {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .froo-shell--header .froo-menu--primary .sub-menu {
    position: static;
    display: block;
    visibility: hidden;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 24px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: rgba(49, 85, 255, 0.052);
    box-shadow: inset 0 1px 0 rgba(49, 85, 255, 0.08), inset 0 -1px 0 rgba(49, 85, 255, 0.06);
    list-style: none;
    opacity: 0;
    transform: none;
    transition: max-height 280ms ease, opacity 180ms ease, visibility 280ms ease, padding 280ms ease;
  }

  .froo-shell--header .froo-menu--primary .is-submenu-open > .sub-menu {
    visibility: visible;
    max-height: 1200px;
    padding-top: 14px;
    padding-bottom: 16px;
    opacity: 1;
  }

  .froo-shell--header .froo-menu--primary .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
  }

  .froo-shell--header .froo-menu--primary .sub-menu a {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #202d50;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
  }

  .froo-shell--header .froo-menu--primary .sub-menu a:hover,
  .froo-shell--header .froo-menu--primary .sub-menu a:focus-visible,
  .froo-shell--header .froo-menu--primary .sub-menu .current-menu-item > a {
    background: transparent;
    color: var(--froo-blue);
  }

  .froo-shell--header .froo-header__cta {
    display: flex;
    width: auto;
    min-height: 54px;
    flex: 0 0 auto;
    justify-content: space-between;
    margin: 22px 20px 18px;
    padding: 0 11px 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
  }

  .froo-shell--header .froo-header__cta-icon {
    width: 34px;
    height: 34px;
  }

  .froo-shell--header .froo-mobile-nav__utilities {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 18px 22px 24px;
    border-top: 1px solid rgba(24, 44, 102, 0.1);
    background: #fff;
  }

  .froo-shell--header .froo-mobile-nav__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    margin-bottom: 26px;
  }

  .froo-shell--header .froo-mobile-nav__links a {
    color: var(--froo-navy);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
  }

  .froo-shell--header .froo-mobile-nav__offer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    color: var(--froo-navy);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
  }

  .froo-shell--header .froo-mobile-nav__offer strong {
    font-weight: 700;
  }

  .froo-shell--header .froo-mobile-nav__offer span {
    color: var(--froo-muted);
    font-weight: 500;
  }

  .froo-shell--header .froo-header-assist {
    display: none;
  }
}

@media (max-width: 782px) {
  .admin-bar .froo-shell--header .froo-header__navigation,
  .admin-bar .froo-shell--header .froo-nav-backdrop {
    top: 46px;
    height: calc(100dvh - 46px);
  }

  .admin-bar .froo-shell--header .froo-site-header--has-notice .froo-header__navigation,
  .admin-bar .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    top: calc(46px + var(--froo-header-notice-height));
    height: calc(100dvh - 46px - var(--froo-header-notice-height));
  }
}

@media (max-width: 480px) {
  .froo-shell--header .froo-nav-toggle__label {
    display: none;
  }

  .froo-shell--header .froo-header__navigation {
    width: 100vw;
  }

  .froo-shell--header .froo-menu--primary > .menu-item > a {
    min-height: 64px;
    padding-left: 20px;
    font-size: 16px;
  }

  .froo-shell--header .froo-submenu-toggle {
    height: 64px;
  }

  .froo-shell--header .froo-menu--primary .sub-menu {
    padding-right: 20px;
    padding-left: 20px;
  }

  .froo-shell--header .froo-mobile-nav__top,
  .froo-shell--header .froo-mobile-nav__utilities {
    padding-right: 20px;
    padding-left: 20px;
  }

  .froo-shell--header .froo-header__cta {
    margin-right: 18px;
    margin-left: 18px;
  }
}

/* ========================================================================== 
   Header v9 — compact mobile top drawer and dark modal backdrop.
   This final override keeps the desktop header untouched.
   ========================================================================== */
@media (max-width: 1023px) {
  body.froo-menu-open {
    overflow: hidden !important;
    overscroll-behavior: none;
    touch-action: none;
  }

  .froo-shell--header .froo-nav-toggle {
    width: auto !important;
    min-width: 0;
    padding: 0 2px;
    gap: 8px;
  }

  .froo-shell--header .froo-nav-toggle__label {
    display: inline-block !important;
    color: var(--froo-navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
  }

  .froo-shell--header .froo-nav-backdrop,
  .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(1, 7, 28, 0.84);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .froo-shell--header .froo-header__navigation {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    visibility: hidden;
    width: 100vw;
    height: auto;
    max-height: 100dvh;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-bottom: 1px solid rgba(24, 44, 102, 0.12);
    background: #fff;
    box-shadow: 0 22px 52px rgba(1, 8, 34, 0.3);
    opacity: 0;
    transform: translateY(-104%);
    transition: opacity 190ms ease, transform 280ms cubic-bezier(0.22, 0.75, 0.24, 1), visibility 280ms ease;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .froo-shell--header .froo-site-header--has-notice .froo-header__navigation {
    top: var(--froo-header-notice-height);
    height: auto;
    max-height: calc(100dvh - var(--froo-header-notice-height));
  }

  .froo-shell--header .froo-header__navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .froo-shell--header .froo-mobile-nav__top {
    min-height: 76px;
    flex: 0 0 auto;
    padding: 0 22px;
  }

  .froo-shell--header .froo-primary-nav {
    flex: 0 0 auto;
  }

  .froo-shell--header .froo-header__cta {
    min-height: 54px;
    flex: 0 0 auto;
    margin: 18px 20px 14px;
  }

  .froo-shell--header .froo-mobile-nav__utilities {
    display: block;
    width: 100%;
    flex: 0 0 auto;
    margin: 0;
    padding: 0 22px 19px;
    border-top: 0;
    background: #fff;
  }

  .froo-shell--header .froo-mobile-nav__links {
    display: none !important;
  }

  .froo-shell--header .froo-mobile-nav__offer {
    display: flex;
    justify-content: center;
    padding-top: 2px;
    color: var(--froo-navy);
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
  }
}

@media (max-width: 782px) {
  .admin-bar .froo-shell--header .froo-header__navigation {
    top: 46px;
    max-height: calc(100dvh - 46px);
  }

  .admin-bar .froo-shell--header .froo-site-header--has-notice .froo-header__navigation {
    top: calc(46px + var(--froo-header-notice-height));
    max-height: calc(100dvh - 46px - var(--froo-header-notice-height));
  }

  .admin-bar .froo-shell--header .froo-nav-backdrop,
  .admin-bar .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    top: 46px;
    height: calc(100dvh - 46px);
  }
}

@media (max-width: 480px) {
  .froo-shell--header .froo-nav-toggle__label {
    display: inline-block !important;
  }

  .froo-shell--header .froo-mobile-nav__top {
    min-height: 74px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .froo-shell--header .froo-header__cta {
    margin: 16px 18px 13px;
  }

  .froo-shell--header .froo-mobile-nav__utilities {
    padding-right: 20px;
    padding-bottom: 17px;
    padding-left: 20px;
  }
}

/* ========================================================================== 
   Header v10 — Verseo-inspired mobile top drawer refinement.
   Keeps the desktop header untouched and replaces the previous mobile drawer
   behaviour with a compact, scroll-safe accordion panel.
   ========================================================================== */
@media (max-width: 1023px) {
  html.froo-menu-open,
  body.froo-menu-open {
    overflow: hidden !important;
    overscroll-behavior: none !important;
    touch-action: none;
  }

  .froo-shell--header .froo-header__navigation,
  .froo-shell--header .froo-header__navigation *,
  .froo-shell--header .froo-nav-toggle,
  .froo-shell--header .froo-nav-toggle * {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  }

  .froo-shell--header .froo-nav-toggle {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 2px !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--froo-navy);
    -webkit-appearance: none;
    appearance: none;
  }

  .froo-shell--header .froo-nav-toggle__label {
    display: inline-block !important;
    color: var(--froo-navy);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .froo-shell--header .froo-nav-toggle__icon {
    display: grid;
    gap: 4px;
  }

  .froo-shell--header .froo-nav-toggle__icon span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
  }

  .froo-shell--header .froo-nav-backdrop,
  .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    position: fixed !important;
    z-index: 1000;
    top: 0 !important;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    visibility: hidden;
    width: 100vw;
    height: 100dvh !important;
    padding: 0;
    border: 0;
    background: rgba(1, 6, 25, 0.86) !important;
    opacity: 0;
    transition: opacity 210ms ease, visibility 210ms ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .froo-shell--header .froo-site-header--menu-open .froo-nav-backdrop {
    visibility: visible;
    opacity: 1;
  }

  .froo-shell--header .froo-header__navigation,
  .froo-shell--header .froo-site-header--has-notice .froo-header__navigation {
    position: fixed !important;
    z-index: 1001;
    top: var(--froo-header-notice-height) !important;
    right: 0;
    bottom: auto !important;
    left: 0;
    display: flex !important;
    visibility: hidden;
    width: 100vw !important;
    height: auto !important;
    max-width: none !important;
    max-height: calc(100dvh - var(--froo-header-notice-height)) !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0 !important;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0 !important;
    border-bottom: 1px solid rgba(18, 32, 75, 0.12) !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: 0 24px 58px rgba(1, 6, 25, 0.3) !important;
    opacity: 0;
    transform: translate3d(0, -108%, 0) !important;
    transition: opacity 190ms ease, transform 290ms cubic-bezier(0.22, 0.75, 0.24, 1), visibility 290ms ease !important;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .froo-shell--header .froo-header__navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
  }

  .froo-shell--header .froo-mobile-nav__top {
    display: flex !important;
    min-height: 82px !important;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px !important;
    border-bottom: 1px solid rgba(22, 39, 87, 0.1);
    background: #fff;
  }

  .froo-shell--header .froo-brand--mobile-drawer .froo-brand__logo {
    width: auto;
    height: 39px !important;
    max-width: 184px !important;
    object-fit: contain;
  }

  .froo-shell--header .froo-mobile-nav__close {
    position: relative;
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--froo-navy);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  .froo-shell--header .froo-mobile-nav__close::before,
  .froo-shell--header .froo-mobile-nav__close::after {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
  }

  .froo-shell--header .froo-primary-nav {
    display: block;
    width: 100%;
    min-height: 0;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .froo-shell--header .froo-menu--primary {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .froo-shell--header .froo-menu--primary > .menu-item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(20, 39, 91, 0.1);
  }

  .froo-shell--header .froo-menu--primary > .menu-item > a {
    display: flex !important;
    width: 100%;
    min-height: 65px !important;
    align-items: center;
    padding: 0 70px 0 24px !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #17213b !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.2 !important;
  }

  .froo-shell--header .froo-menu--primary > .menu-item:not(.menu-item-has-children) > a {
    padding-right: 24px !important;
  }

  .froo-shell--header .froo-menu--primary > .menu-item > a::before,
  .froo-shell--header .froo-menu--primary > .menu-item > a::after {
    display: none !important;
  }

  .froo-shell--header .froo-menu--primary > .current-menu-item > a,
  .froo-shell--header .froo-menu--primary > .current-menu-ancestor > a,
  .froo-shell--header .froo-menu--primary > .menu-item.is-submenu-open > a,
  .froo-shell--header .froo-menu--primary > .menu-item > a:hover,
  .froo-shell--header .froo-menu--primary > .menu-item > a:focus-visible {
    background: #f0f4ff !important;
    color: #17213b !important;
  }

  .froo-shell--header .froo-submenu-toggle {
    position: absolute;
    z-index: 4;
    top: 0;
    right: 7px;
    display: inline-flex !important;
    width: 58px;
    height: 65px !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #7f899d;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  .froo-shell--header .froo-submenu-toggle span {
    display: block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 170ms ease, color 170ms ease;
  }

  .froo-shell--header .is-submenu-open > .froo-submenu-toggle {
    color: var(--froo-blue);
  }

  .froo-shell--header .is-submenu-open > .froo-submenu-toggle span {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .froo-shell--header .froo-menu--primary .sub-menu {
    position: static !important;
    display: block !important;
    visibility: hidden !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 24px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #f6f8ff !important;
    box-shadow: inset 0 1px 0 rgba(49, 85, 255, 0.08), inset 0 -1px 0 rgba(49, 85, 255, 0.07) !important;
    list-style: none;
    opacity: 0 !important;
    transform: none !important;
    transition: max-height 260ms ease, opacity 170ms ease, visibility 260ms ease, padding 260ms ease !important;
  }

  .froo-shell--header .froo-menu--primary .sub-menu::before {
    display: block;
    padding: 18px 0 10px;
    border-bottom: 1px solid rgba(49, 85, 255, 0.12);
    color: #7641a8;
    content: 'NASZE USŁUGI';
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
  }

  .froo-shell--header .froo-menu--primary .is-submenu-open > .sub-menu {
    visibility: visible !important;
    max-height: 680px !important;
    padding-bottom: 12px !important;
    opacity: 1 !important;
  }

  .froo-shell--header .froo-menu--primary .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
  }

  .froo-shell--header .froo-menu--primary .sub-menu a {
    display: flex !important;
    width: 100%;
    min-height: 44px !important;
    align-items: center;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #202b46 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    letter-spacing: -0.015em !important;
    line-height: 1.25 !important;
  }

  .froo-shell--header .froo-menu--primary .sub-menu a:hover,
  .froo-shell--header .froo-menu--primary .sub-menu a:focus-visible,
  .froo-shell--header .froo-menu--primary .sub-menu .current-menu-item > a {
    color: var(--froo-blue) !important;
  }

  .froo-shell--header .froo-header__cta {
    display: flex !important;
    width: auto !important;
    min-height: 56px !important;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    margin: 18px 20px 11px !important;
    padding: 0 11px 0 22px !important;
    border-radius: 999px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
  }

  .froo-shell--header .froo-header__cta-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 999px !important;
  }

  .froo-shell--header .froo-mobile-nav__utilities {
    display: block !important;
    width: 100%;
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 0 22px 18px !important;
    border-top: 0 !important;
    background: #fff !important;
  }

  .froo-shell--header .froo-mobile-nav__links {
    display: none !important;
  }

  .froo-shell--header .froo-mobile-nav__offer {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: 1px;
    color: #17213b !important;
    font-size: 12.5px !important;
    font-weight: 400 !important;
    letter-spacing: -0.012em;
    line-height: 1.4;
    text-align: center;
  }

  .froo-shell--header .froo-mobile-nav__offer strong {
    font-weight: 700 !important;
  }

  .froo-shell--header .froo-mobile-nav__offer span {
    color: #68738e !important;
    font-weight: 400 !important;
  }

  .froo-shell--header .froo-header-assist {
    display: none !important;
  }
}

@media (max-width: 782px) {
  .admin-bar .froo-shell--header .froo-header__navigation,
  .admin-bar .froo-shell--header .froo-site-header--has-notice .froo-header__navigation {
    top: calc(46px + var(--froo-header-notice-height)) !important;
    max-height: calc(100dvh - 46px - var(--froo-header-notice-height)) !important;
  }

  .admin-bar .froo-shell--header .froo-nav-backdrop,
  .admin-bar .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    top: 46px !important;
    height: calc(100dvh - 46px) !important;
  }
}

@media (max-width: 480px) {
  .froo-shell--header .froo-nav-toggle__label {
    display: inline-block !important;
  }

  .froo-shell--header .froo-mobile-nav__top {
    min-height: 78px !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .froo-shell--header .froo-brand--mobile-drawer .froo-brand__logo {
    height: 37px !important;
    max-width: 174px !important;
  }

  .froo-shell--header .froo-menu--primary > .menu-item > a {
    min-height: 62px !important;
    padding-left: 20px !important;
    font-size: 16.5px !important;
  }

  .froo-shell--header .froo-submenu-toggle {
    height: 62px !important;
  }

  .froo-shell--header .froo-menu--primary .sub-menu {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .froo-shell--header .froo-header__cta {
    min-height: 54px !important;
    margin-right: 18px !important;
    margin-left: 18px !important;
  }

  .froo-shell--header .froo-mobile-nav__utilities {
    padding-right: 18px !important;
    padding-bottom: 17px !important;
    padding-left: 18px !important;
  }
}

/* ========================================================================== 
   Header v11 — persistent mobile header with inline close control.
   Keeps the real header visible while the navigation drawer opens underneath.
   ========================================================================== */
@media (max-width: 1023px) {
  /* Keep the real notification bar and main header visually above the drawer. */
  .froo-shell--header .froo-header-notice,
  .froo-shell--header .froo-header-main {
    position: relative;
    z-index: 1004;
  }

  .froo-shell--header .froo-header-main {
    border-bottom: 1px solid rgba(18, 32, 75, 0.1);
    background: #fff;
  }

  /* The drawer must begin below the real header instead of rendering a second logo row. */
  .froo-shell--header .froo-mobile-nav__top {
    display: none !important;
  }

  .froo-shell--header .froo-header__navigation {
    z-index: 1002;
    top: var(--froo-header-main-height) !important;
    max-height: calc(100dvh - var(--froo-header-main-height)) !important;
    border-bottom: 1px solid rgba(18, 32, 75, 0.1) !important;
    box-shadow: 0 16px 34px rgba(1, 6, 25, 0.14) !important;
  }

  .froo-shell--header .froo-site-header--has-notice .froo-header__navigation {
    top: calc(var(--froo-header-notice-height) + var(--froo-header-main-height)) !important;
    max-height: calc(100dvh - var(--froo-header-notice-height) - var(--froo-header-main-height)) !important;
  }

  .froo-shell--header .froo-nav-backdrop {
    z-index: 1000;
    top: var(--froo-header-main-height) !important;
    height: calc(100dvh - var(--froo-header-main-height)) !important;
    background: rgba(1, 6, 25, 0.88) !important;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    top: calc(var(--froo-header-notice-height) + var(--froo-header-main-height)) !important;
    height: calc(100dvh - var(--froo-header-notice-height) - var(--froo-header-main-height)) !important;
  }

  /* Closed state: text label + hamburger. Open state: inline close button in the same place. */
  .froo-shell--header .froo-nav-toggle {
    position: relative;
    z-index: 1005;
    gap: 8px;
    min-height: 44px;
    padding: 0 1px !important;
    color: #111a34;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  }

  .froo-shell--header .froo-nav-toggle__label {
    display: inline-block !important;
    color: #111a34;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1;
  }

  .froo-shell--header .froo-site-header--menu-open .froo-nav-toggle {
    width: 44px !important;
    min-width: 44px !important;
    justify-content: center;
    padding: 0 !important;
  }

  .froo-shell--header .froo-site-header--menu-open .froo-nav-toggle__label {
    display: none !important;
  }

  .froo-shell--header .froo-nav-toggle__icon {
    display: grid;
    gap: 4px;
  }

  .froo-shell--header .froo-nav-toggle__icon span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 160ms ease;
  }

  /* Cleaner navigation typography: lighter, less condensed and closer to the reference. */
  .froo-shell--header .froo-menu--primary > .menu-item > a {
    min-height: 64px !important;
    padding: 0 68px 0 24px !important;
    color: #19233b !important;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.25 !important;
  }

  .froo-shell--header .froo-menu--primary > .menu-item:not(.menu-item-has-children) > a {
    padding-right: 24px !important;
  }

  .froo-shell--header .froo-submenu-toggle {
    height: 64px !important;
  }

  .froo-shell--header .froo-menu--primary .sub-menu::before {
    padding-top: 17px;
    color: #6b45bf;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
  }

  .froo-shell--header .froo-menu--primary .sub-menu a {
    min-height: 42px !important;
    color: #202b46 !important;
    font-size: 14.5px !important;
    font-weight: 400 !important;
    letter-spacing: -0.012em !important;
    line-height: 1.35 !important;
  }

  /* Flat CTA inside the opened mobile navigation: no shadow or hover lift. */
  .froo-shell--header .froo-header__navigation .froo-header__cta,
  .froo-shell--header .froo-header__navigation .froo-header__cta:hover,
  .froo-shell--header .froo-header__navigation .froo-header__cta:focus,
  .froo-shell--header .froo-header__navigation .froo-header__cta:focus-visible,
  .froo-shell--header .froo-header__navigation .froo-header__cta:active {
    min-height: 54px !important;
    margin: 18px 20px 11px !important;
    padding: 0 10px 0 22px !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    letter-spacing: -0.012em !important;
  }

  .froo-shell--header .froo-mobile-nav__offer {
    color: #19233b !important;
    font-size: 12.5px !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.45 !important;
  }

  .froo-shell--header .froo-mobile-nav__offer strong {
    font-weight: 700 !important;
  }
}

@media (max-width: 782px) {
  .admin-bar .froo-shell--header .froo-header__navigation {
    top: calc(46px + var(--froo-header-main-height)) !important;
    max-height: calc(100dvh - 46px - var(--froo-header-main-height)) !important;
  }

  .admin-bar .froo-shell--header .froo-site-header--has-notice .froo-header__navigation {
    top: calc(46px + var(--froo-header-notice-height) + var(--froo-header-main-height)) !important;
    max-height: calc(100dvh - 46px - var(--froo-header-notice-height) - var(--froo-header-main-height)) !important;
  }

  .admin-bar .froo-shell--header .froo-nav-backdrop {
    top: calc(46px + var(--froo-header-main-height)) !important;
    height: calc(100dvh - 46px - var(--froo-header-main-height)) !important;
  }

  .admin-bar .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    top: calc(46px + var(--froo-header-notice-height) + var(--froo-header-main-height)) !important;
    height: calc(100dvh - 46px - var(--froo-header-notice-height) - var(--froo-header-main-height)) !important;
  }
}

@media (max-width: 480px) {
  .froo-shell--header .froo-menu--primary > .menu-item > a {
    min-height: 61px !important;
    padding-left: 20px !important;
    font-size: 16.5px !important;
  }

  .froo-shell--header .froo-submenu-toggle {
    height: 61px !important;
  }

  .froo-shell--header .froo-header__navigation .froo-header__cta,
  .froo-shell--header .froo-header__navigation .froo-header__cta:hover,
  .froo-shell--header .froo-header__navigation .froo-header__cta:focus,
  .froo-shell--header .froo-header__navigation .froo-header__cta:focus-visible,
  .froo-shell--header .froo-header__navigation .froo-header__cta:active {
    margin-right: 18px !important;
    margin-left: 18px !important;
  }
}


/* ==========================================================================
   Header v12 — stable sticky mobile drawer.
   While the mobile menu is open, the complete sticky header is pinned to the
   viewport. This prevents the real header from moving upward together with
   the locked page on iOS Safari.
   ========================================================================== */
@media (max-width: 1023px) {
  html.froo-menu-open,
  body.froo-menu-open {
    overflow: hidden !important;
    overscroll-behavior: none !important;
  }

  .froo-shell--header.froo-shell--menu-fixed {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 2147483000 !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .froo-shell--header.froo-shell--menu-fixed .froo-site-header {
    width: 100% !important;
  }

  .froo-shell--header.froo-shell--menu-fixed .froo-header-notice,
  .froo-shell--header.froo-shell--menu-fixed .froo-header-main {
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 782px) {
  body.admin-bar .froo-shell--header.froo-shell--menu-fixed {
    top: 46px !important;
  }
}


/* ==========================================================================
   Header v13 — rodzic „Nasze usługi” działa wyłącznie jako rozwijane menu.
   ========================================================================== */
.froo-shell--header .froo-menu-item--services-parent > a {
  cursor: pointer;
}

@media (min-width: 1024px) {
  .froo-shell--header .froo-menu--primary > .menu-item.is-submenu-open > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================================================
   Header v19 — płynny hamburger mobile, kompaktowa typografia i brak cieni.
   Menu wysuwa się spokojnie od góry. Wygląd wierszy jest bardziej minimalistyczny:
   małe litery wersalikowe, czytelne separatory i płaski header bez cienia pod logo.
   ========================================================================== */
@media (max-width: 1023px) {
  /* Płaski header: bez cienia pod logo i bez cienia pod rozwiniętym panelem. */
  .froo-shell--header .froo-site-header,
  .froo-shell--header .froo-header-main,
  .froo-shell--header .froo-header__navigation,
  .froo-shell--header .froo-site-header--has-notice .froo-header__navigation {
    box-shadow: none !important;
  }

  .froo-shell--header .froo-header-main {
    border-bottom: 1px solid rgba(17, 30, 66, 0.085) !important;
  }

  /* Płynniejsze wysuwanie menu od góry. */
  .froo-shell--header .froo-header__navigation,
  .froo-shell--header .froo-site-header--has-notice .froo-header__navigation {
    opacity: 0;
    transform: translate3d(0, -104%, 0) !important;
    transition:
      transform 560ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 360ms ease,
      visibility 560ms ease !important;
    will-change: transform, opacity;
  }

  .froo-shell--header .froo-header__navigation.is-open {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
  }

  .froo-shell--header .froo-nav-backdrop,
  .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    transition: opacity 360ms ease, visibility 360ms ease !important;
  }

  /* Kompaktowa typografia menu inspirowana przesłanym przykładem. */
  .froo-shell--header .froo-header__navigation,
  .froo-shell--header .froo-header__navigation *,
  .froo-shell--header .froo-menu--primary > .menu-item > a,
  .froo-shell--header .froo-menu--primary .sub-menu a,
  .froo-shell--header .froo-header__navigation .froo-header__cta {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif !important;
  }

  .froo-shell--header .froo-menu--primary > .menu-item > a {
    min-height: 52px !important;
    padding: 0 58px 0 16px !important;
    background: #fff !important;
    color: #101a36 !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    letter-spacing: 0.012em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
  }

  .froo-shell--header .froo-menu--primary > .menu-item:not(.menu-item-has-children) > a {
    padding-right: 16px !important;
  }

  .froo-shell--header .froo-menu--primary > .menu-item {
    border-bottom: 1px solid rgba(17, 30, 66, 0.075) !important;
  }

  .froo-shell--header .froo-menu--primary > .current-menu-item > a,
  .froo-shell--header .froo-menu--primary > .current-menu-ancestor > a,
  .froo-shell--header .froo-menu--primary > .menu-item.is-submenu-open > a,
  .froo-shell--header .froo-menu--primary > .menu-item > a:hover,
  .froo-shell--header .froo-menu--primary > .menu-item > a:focus-visible {
    background: #fff !important;
    color: #3155ff !important;
  }

  .froo-shell--header .froo-submenu-toggle {
    right: 2px !important;
    width: 48px !important;
    height: 52px !important;
    color: #748099 !important;
  }

  .froo-shell--header .froo-submenu-toggle span {
    width: 6px !important;
    height: 6px !important;
  }

  .froo-shell--header .froo-menu--primary .sub-menu {
    padding-right: 16px !important;
    padding-left: 16px !important;
    background: #fafbff !important;
    box-shadow: none !important;
  }

  .froo-shell--header .froo-menu--primary .sub-menu::before {
    padding: 14px 0 8px !important;
    color: #5367ff !important;
    font-size: 9.5px !important;
    font-weight: 750 !important;
    letter-spacing: 0.15em !important;
  }

  .froo-shell--header .froo-menu--primary .sub-menu a {
    min-height: 40px !important;
    color: #1a2540 !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.014em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
  }

  .froo-shell--header .froo-header__navigation .froo-header__cta,
  .froo-shell--header .froo-header__navigation .froo-header__cta:hover,
  .froo-shell--header .froo-header__navigation .froo-header__cta:focus,
  .froo-shell--header .froo-header__navigation .froo-header__cta:focus-visible,
  .froo-shell--header .froo-header__navigation .froo-header__cta:active {
    min-height: 44px !important;
    margin: 11px 12px 9px !important;
    padding: 0 10px 0 17px !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
    font-size: 11px !important;
    font-weight: 750 !important;
    letter-spacing: 0.016em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  .froo-shell--header .froo-header__cta-icon {
    width: 29px !important;
    height: 29px !important;
  }

  .froo-shell--header .froo-mobile-nav__utilities {
    padding-right: 12px !important;
    padding-bottom: 13px !important;
    padding-left: 12px !important;
  }

  .froo-shell--header .froo-mobile-nav__offer {
    font-size: 10.5px !important;
    line-height: 1.45 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .froo-shell--header .froo-header__navigation,
  .froo-shell--header .froo-site-header--has-notice .froo-header__navigation,
  .froo-shell--header .froo-nav-backdrop,
  .froo-shell--header .froo-site-header--has-notice .froo-nav-backdrop {
    transition-duration: 1ms !important;
  }
}


/* ==========================================================================
   Header v20 — delikatnie większa typografia hamburgera na mobile.
   ========================================================================== */
