.epoptic-header-widget {
  --epoptic-header-bg: #b44631;
  --epoptic-text-light: #fefefe;
  --epoptic-text-dark: #252220;
  --epoptic-text-muted: #5c544f;
  --epoptic-card-bg: rgba(255, 255, 255, 0.97);
  --epoptic-card-shadow: 0 24px 60px rgba(37, 34, 32, 0.16);
  --epoptic-border-radius: 0 0 22px 22px;
  --epoptic-pill-radius: 999px;
  --epoptic-horizontal-space: 54px;
  --epoptic-dropdown-width: min(100vw - 40px, 420px);
  --epoptic-cta-bg: #ffffff;
  --epoptic-cta-text: #252220;
  --epoptic-cta-icon-bg: #2a2725;
  --epoptic-cta-icon-color: #fefefe;
  --epoptic-compact-nav: #252220;
  --epoptic-compact-brand: #fefefe;
  --epoptic-compact-border: #fefefe;
  --epoptic-compact-icon-color: #fefefe;
  --epoptic-compact-cta-size: 34px;
  --epoptic-compact-logo-width: 118px;
  --epoptic-bar-min-height: 112px;
  --epoptic-compact-bar-min-height: 102px;
  --epoptic-dropdown-text: #252220;
  --epoptic-dropdown-icon: #55705f;
  --epoptic-header-duration: 520ms;
  --epoptic-header-ease: cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-bottom: -2px;
  font-family: "Manrope", sans-serif;
  color: var(--epoptic-text-dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
}

.unibox-epoptic-header-host {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  overflow: visible !important;
}

.unibox-epoptic-header-widget-container {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  overflow: visible !important;
}

.unibox-epoptic-header-next-host {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

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

.epoptic-header-widget__bar {
  width: 100%;
  min-height: var(--epoptic-bar-min-height, 112px);
  padding: 24px var(--epoptic-horizontal-space) 30px;
  background: var(--epoptic-header-bg);
  border-radius: var(--epoptic-border-radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  transition:
    padding var(--epoptic-header-duration) var(--epoptic-header-ease),
    min-height var(--epoptic-header-duration) var(--epoptic-header-ease),
    border-radius var(--epoptic-header-duration) var(--epoptic-header-ease),
    box-shadow var(--epoptic-header-duration) var(--epoptic-header-ease),
    background-color var(--epoptic-header-duration) var(--epoptic-header-ease);
  will-change: min-height, padding;
}

.epoptic-header-widget.is-compact .epoptic-header-widget__bar {
  min-height: var(--epoptic-compact-bar-min-height, 102px);
  padding-top: 18px;
  padding-bottom: 18px;
  align-items: center;
  border-radius: var(--epoptic-border-radius);
  box-shadow: 0 14px 34px rgba(37, 34, 32, 0.12);
}

.epoptic-header-widget__brand {
  color: var(--epoptic-text-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: gap var(--epoptic-header-duration) var(--epoptic-header-ease);
}

.epoptic-header-widget__brand-image {
  width: 180px;
  height: auto;
  display: block;
  transform-origin: left center;
  transition:
    width var(--epoptic-header-duration) var(--epoptic-header-ease),
    transform var(--epoptic-header-duration) var(--epoptic-header-ease),
    opacity 260ms ease-out;
  will-change: width;
}

.epoptic-header-widget__brand-mark {
  width: 18px;
  height: 22px;
  display: inline-block;
  margin-top: 4px;
  position: relative;
  transition:
    transform var(--epoptic-header-duration) var(--epoptic-header-ease),
    margin-top var(--epoptic-header-duration) var(--epoptic-header-ease);
}

.epoptic-header-widget__brand-mark::before,
.epoptic-header-widget__brand-mark::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 999px;
}

.epoptic-header-widget__brand-mark::before {
  width: 2px;
  height: 17px;
  left: 8px;
  top: 0;
  transform: rotate(48deg);
  transform-origin: center;
}

.epoptic-header-widget__brand-mark::after {
  width: 2px;
  height: 9px;
  left: 13px;
  top: -2px;
  transform: rotate(90deg);
}

.epoptic-header-widget__brand-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.epoptic-header-widget__brand-text strong {
  font-size: 34px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0;
  transition:
    font-size var(--epoptic-header-duration) var(--epoptic-header-ease),
    line-height var(--epoptic-header-duration) var(--epoptic-header-ease);
}

.epoptic-header-widget__brand-text small {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
  max-height: 24px;
  transition:
    max-height 300ms ease-out,
    opacity 300ms ease-out,
    transform 300ms ease-out,
    margin 300ms ease-out;
}

.epoptic-header-widget.is-compact .epoptic-header-widget__brand-mark {
  margin-top: 2px;
  transform: scale(0.82);
}

.epoptic-header-widget.is-compact .epoptic-header-widget__brand {
  color: var(--epoptic-compact-brand);
}

.epoptic-header-widget.is-compact .epoptic-header-widget__brand-image {
  width: var(--epoptic-compact-logo-width, 118px) !important;
  transform: none;
  transform-origin: left center;
}

.epoptic-header-widget.is-compact .epoptic-header-widget__brand-text strong {
  font-size: 30px;
  line-height: 1;
}

.epoptic-header-widget.is-compact .epoptic-header-widget__brand-text small {
  max-height: 14px;
  opacity: 1;
  transform: none;
  overflow: visible;
  margin: 0;
  font-size: 10px;
  line-height: 1.15;
}

.epoptic-header-widget__nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  transition: gap var(--epoptic-header-duration) var(--epoptic-header-ease);
}

.epoptic-header-widget__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  transition: gap var(--epoptic-header-duration) var(--epoptic-header-ease);
}

.epoptic-header-widget.is-compact .epoptic-header-widget__nav {
  gap: clamp(34px, 3.2vw, 58px);
}

.epoptic-header-widget.is-compact .epoptic-header-widget__nav-wrap {
  gap: 26px;
}

.epoptic-header-widget__menu-item {
  position: relative;
}

.epoptic-header-widget__menu-button,
.epoptic-header-widget__nav-link {
  color: var(--epoptic-text-light);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 18px;
  transition:
    color 300ms ease-out,
    opacity 300ms ease-out,
    font-size var(--epoptic-header-duration) var(--epoptic-header-ease),
    line-height var(--epoptic-header-duration) var(--epoptic-header-ease),
    letter-spacing var(--epoptic-header-duration) var(--epoptic-header-ease),
    min-height var(--epoptic-header-duration) var(--epoptic-header-ease);
  will-change: font-size;
}

.epoptic-header-widget.is-compact .epoptic-header-widget__menu-button,
.epoptic-header-widget.is-compact .epoptic-header-widget__nav-link {
  color: var(--epoptic-text-light);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.epoptic-header-widget.is-compact .epoptic-header-widget__menu-button:hover,
.epoptic-header-widget.is-compact .epoptic-header-widget__menu-button:focus,
.epoptic-header-widget.is-compact .epoptic-header-widget__menu-button:focus-visible,
.epoptic-header-widget.is-compact .epoptic-header-widget__nav-link:hover,
.epoptic-header-widget.is-compact .epoptic-header-widget__nav-link:focus,
.epoptic-header-widget.is-compact .epoptic-header-widget__nav-link:focus-visible {
  color: var(--epoptic-text-light);
}

.epoptic-header-widget__menu-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font: inherit;
  border-radius: 999px;
  transition:
    color 300ms ease-out,
    background-color 300ms ease-out,
    padding var(--epoptic-header-duration) var(--epoptic-header-ease),
    min-height var(--epoptic-header-duration) var(--epoptic-header-ease),
    box-shadow 300ms ease-out;
}

.epoptic-header-widget__menu-item--services .epoptic-header-widget__menu-button,
.epoptic-header-widget__menu-item--services .epoptic-header-widget__menu-button:focus,
.epoptic-header-widget__menu-item--services .epoptic-header-widget__menu-button:active,
.epoptic-header-widget__menu-item--services .epoptic-header-widget__menu-button:focus-visible {
  background: transparent;
  color: var(--epoptic-text-light);
  text-decoration: none;
}

.epoptic-header-widget__menu-item--services .epoptic-header-widget__menu-button:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.epoptic-header-widget__menu-item.is-open .epoptic-header-widget__menu-button {
  background: #ffffff;
  color: var(--epoptic-text-dark);
  min-height: 42px;
  padding: 0 18px 0 20px;
  box-shadow: 0 10px 30px rgba(37, 34, 32, 0.08);
}

.epoptic-header-widget__menu-item.is-open .epoptic-header-widget__menu-button:hover,
.epoptic-header-widget__menu-item.is-open .epoptic-header-widget__menu-button:focus,
.epoptic-header-widget__menu-item.is-open .epoptic-header-widget__menu-button:active,
.epoptic-header-widget__menu-item.is-open .epoptic-header-widget__menu-button:focus-visible {
  background: #ffffff;
  color: var(--epoptic-text-dark);
  text-decoration: none;
}

.epoptic-header-widget__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.epoptic-header-widget__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.epoptic-header-widget__icon i {
  font-size: 14px;
}

.epoptic-header-widget__chevron {
  transition: transform 300ms ease-out;
}

.epoptic-header-widget__menu-button[aria-expanded="true"] .epoptic-header-widget__chevron {
  transform: rotate(180deg);
}

.epoptic-header-widget__cta {
  min-height: 44px;
  height: 44px;
  padding: 3px 3px 3px 26px;
  border-radius: var(--epoptic-pill-radius);
  background: var(--epoptic-cta-bg);
  color: var(--epoptic-cta-text);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  font-size: 11px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0;
  max-width: 228px;
  min-width: 228px;
  width: 228px;
  transition:
    transform var(--epoptic-header-duration) var(--epoptic-header-ease),
    background-color 300ms ease-out,
    color 300ms ease-out,
    border-color 300ms ease-out,
    width var(--epoptic-header-duration) var(--epoptic-header-ease),
    max-width var(--epoptic-header-duration) var(--epoptic-header-ease),
    min-width var(--epoptic-header-duration) var(--epoptic-header-ease),
    min-height var(--epoptic-header-duration) var(--epoptic-header-ease),
    height var(--epoptic-header-duration) var(--epoptic-header-ease),
    padding var(--epoptic-header-duration) var(--epoptic-header-ease),
    gap var(--epoptic-header-duration) var(--epoptic-header-ease);
  overflow: hidden;
  flex-shrink: 0;
  will-change: width, padding;
}

.epoptic-header-widget__cta:hover {
  transform: translateY(-1px);
}

.epoptic-header-widget__cta-label {
  width: 148px;
  max-width: 148px;
  white-space: normal;
  text-align: left;
  display: block;
  flex: 0 0 148px;
  overflow-wrap: normal;
  hyphens: none;
  color: var(--epoptic-cta-text);
  font-size: 11px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0;
  transition:
    opacity 260ms ease-out,
    max-width var(--epoptic-header-duration) var(--epoptic-header-ease),
    transform var(--epoptic-header-duration) var(--epoptic-header-ease);
  will-change: max-width, opacity;
}

.epoptic-header-widget__cta-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--epoptic-cta-icon-bg);
  color: var(--epoptic-cta-icon-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition:
    background-color 300ms ease-out,
    color 300ms ease-out,
    border-color 300ms ease-out,
    width var(--epoptic-header-duration) var(--epoptic-header-ease),
    height var(--epoptic-header-duration) var(--epoptic-header-ease),
    border-radius 300ms ease-out,
    transform var(--epoptic-header-duration) var(--epoptic-header-ease);
}

.epoptic-header-widget__cta-icon-normal,
.epoptic-header-widget__cta-icon-compact {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 260ms ease-out,
    transform var(--epoptic-header-duration) var(--epoptic-header-ease);
}

.epoptic-header-widget__cta-icon-normal svg,
.epoptic-header-widget__cta-icon-normal i {
  width: 17px;
  height: 17px;
  font-size: 17px;
}

.epoptic-header-widget__cta-icon-normal {
  opacity: 1;
  transform: scale(1);
}

.epoptic-header-widget__cta-icon-compact {
  opacity: 0;
  transform: scale(0.7);
}

.epoptic-header-widget.is-compact .epoptic-header-widget__cta {
  min-width: 36px !important;
  width: 36px !important;
  max-width: 36px !important;
  min-height: 36px;
  height: 36px;
  padding: 0;
  gap: 0;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--epoptic-compact-border);
  color: var(--epoptic-compact-brand);
}

.epoptic-header-widget.is-compact .epoptic-header-widget__cta-label {
  opacity: 0;
  max-width: 0;
  transform: translateX(10px);
  overflow: hidden;
}

.epoptic-header-widget.is-compact .epoptic-header-widget__cta-icon {
  width: 100%;
  height: 100%;
  background: transparent;
  color: var(--epoptic-compact-icon-color);
  transform: translateZ(0);
}

.epoptic-header-widget.is-compact .epoptic-header-widget__cta-icon-normal {
  opacity: 0;
  transform: scale(0.72);
}

.epoptic-header-widget.is-compact .epoptic-header-widget__cta-icon-compact {
  opacity: 1;
  transform: scale(1);
}

.epoptic-header-widget.is-compact .epoptic-header-widget__cta-icon-compact svg,
.epoptic-header-widget.is-compact .epoptic-header-widget__cta-icon-compact i {
  color: var(--epoptic-compact-icon-color);
  fill: currentColor;
}

.epoptic-header-widget__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  width: var(--epoptic-dropdown-width);
  padding: 24px 22px;
  background: var(--epoptic-card-bg);
  border-radius: 28px;
  box-shadow: var(--epoptic-card-shadow);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transform-origin: top left;
  transition:
    opacity 300ms ease-out,
    transform 300ms ease-out,
    visibility 300ms ease-out;
}

.epoptic-header-widget__menu-item.is-open .epoptic-header-widget__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.epoptic-header-widget__dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--epoptic-dropdown-text);
  text-decoration: none;
  padding: 16px 4px;
}

.epoptic-header-widget__dropdown-item + .epoptic-header-widget__dropdown-item {
  border-top: 1px solid rgba(37, 34, 32, 0.08);
}

.epoptic-header-widget__dropdown-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.epoptic-header-widget__dropdown-copy strong {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0;
  white-space: pre-line;
}

.epoptic-header-widget__dropdown-copy small {
  font-size: 12px;
  line-height: 1.45;
  color: var(--epoptic-text-muted);
  white-space: pre-line;
}

.epoptic-header-widget__dropdown-arrow {
  color: var(--epoptic-dropdown-icon);
  transition: transform 300ms ease-out;
}

.epoptic-header-widget__dropdown-item:hover .epoptic-header-widget__dropdown-arrow {
  transform: translateX(4px);
}

.epoptic-header-widget__mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
}

.epoptic-header-widget .epoptic-header-widget__mobile-toggle:hover,
.epoptic-header-widget .epoptic-header-widget__mobile-toggle:focus,
.epoptic-header-widget .epoptic-header-widget__mobile-toggle:focus-visible,
.epoptic-header-widget .epoptic-header-widget__mobile-toggle:active {
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--epoptic-text-light) !important;
  text-decoration: none;
}

.epoptic-header-widget__mobile-toggle-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--epoptic-text-light);
  transition: opacity 300ms ease-out, transform 300ms ease-out;
}

.epoptic-header-widget__mobile-toggle-icon--open {
  opacity: 1;
  transform: scale(1);
}

.epoptic-header-widget__mobile-toggle-icon--close {
  opacity: 0;
  transform: scale(0.72);
}

@media (max-width: 1180px) {
  .epoptic-header-widget {
    --epoptic-horizontal-space: 34px;
  }

  .epoptic-header-widget__bar {
    padding-top: 22px;
    padding-bottom: 24px;
    gap: 18px;
  }

  .epoptic-header-widget__brand-text strong {
    font-size: 31px;
  }

  .epoptic-header-widget__brand-text small {
    font-size: 16px;
  }

  .epoptic-header-widget__nav {
    gap: 22px;
  }

  .epoptic-header-widget__nav-wrap {
    gap: 16px;
  }

  .epoptic-header-widget__cta {
    max-width: 210px;
    min-width: 210px;
    width: 210px;
    padding-left: 20px;
  }
}

@media (max-width: 1024px) {
  .epoptic-header-widget {
    --epoptic-horizontal-space: 24px;
  }

  .epoptic-header-widget__bar {
    padding-top: 18px;
    padding-bottom: 20px;
    gap: 16px;
  }

  .epoptic-header-widget__nav-wrap {
    gap: 12px;
  }

  .epoptic-header-widget__nav {
    gap: 18px;
  }

  .epoptic-header-widget__brand-text strong {
    font-size: 28px;
  }

  .epoptic-header-widget__brand-text small {
    font-size: 15px;
  }

  .epoptic-header-widget__menu-button,
  .epoptic-header-widget__nav-link {
    font-size: 12px;
    letter-spacing: 0;
  }

  .epoptic-header-widget__cta {
    min-height: 44px;
    padding-left: 18px;
    gap: 12px;
    max-width: 196px;
    min-width: 196px;
    width: 196px;
  }

  .epoptic-header-widget__cta-icon {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 860px) {
  .epoptic-header-widget {
    top: 0;
  }

  .epoptic-header-widget__bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 20px;
    gap: 14px 12px;
    border-radius: 0;
  }

  .epoptic-header-widget__brand {
    min-width: 0;
  }

  .epoptic-header-widget__brand-text {
    min-width: 0;
  }

  .epoptic-header-widget__nav-wrap {
    display: contents;
  }

  .epoptic-header-widget__mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 3;
  }

  .epoptic-header-widget.is-mobile-open .epoptic-header-widget__mobile-toggle-icon--open {
    opacity: 0;
    transform: scale(0.72);
  }

  .epoptic-header-widget.is-mobile-open .epoptic-header-widget__mobile-toggle-icon--close {
    opacity: 1;
    transform: scale(1);
  }

  .epoptic-header-widget__nav {
    position: static;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(158, 54, 40, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(26, 16, 12, 0.24);
    backdrop-filter: blur(16px);
    transition:
      max-height 360ms ease-out,
      opacity 260ms ease-out,
      transform 360ms ease-out,
      padding 360ms ease-out;
  }

  .epoptic-header-widget.is-mobile-open .epoptic-header-widget__nav {
    max-height: 80vh;
    opacity: 1;
    padding: 10px 0;
    transform: translateY(0);
  }

  .epoptic-header-widget__menu-button,
  .epoptic-header-widget__nav-link {
    min-height: 54px;
    width: 100%;
    padding: 0 18px;
    justify-content: space-between;
    color: var(--epoptic-text-light);
    font-size: 14px;
    letter-spacing: 0;
    border-radius: 0;
  }

  .epoptic-header-widget__menu-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
  }

  .epoptic-header-widget__chevron {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    margin-right: -8px;
    border-radius: 50%;
    transition:
      background-color 220ms ease-out,
      color 220ms ease-out,
      transform 300ms ease-out;
  }

  .epoptic-header-widget__menu-item.is-open .epoptic-header-widget__menu-button {
    width: calc(100% - 20px);
    min-height: 50px;
    margin: 0 10px;
    padding: 0 18px 0 18px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--epoptic-text-dark);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(26, 16, 12, 0.14);
  }

  .epoptic-header-widget__menu-item.is-open .epoptic-header-widget__chevron {
    background: rgba(180, 70, 49, 0.1);
    color: var(--epoptic-text-dark);
  }

  .epoptic-header-widget.is-compact .epoptic-header-widget__menu-button,
  .epoptic-header-widget.is-compact .epoptic-header-widget__nav-link {
    color: var(--epoptic-text-light);
  }

  .epoptic-header-widget__menu-item--services {
    width: 100%;
  }

  .epoptic-header-widget__dropdown {
    position: static;
    width: calc(100% - 20px);
    margin: 8px 10px 12px;
    top: auto;
    left: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 18px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: none;
    backdrop-filter: none;
  }

  .epoptic-header-widget__menu-item.is-open .epoptic-header-widget__dropdown {
    display: block;
  }

  .epoptic-header-widget__dropdown-item {
    padding: 14px 2px;
  }

  .epoptic-header-widget__dropdown-copy strong {
    font-size: 14px;
  }

  .epoptic-header-widget__dropdown-copy small {
    font-size: 11px;
  }

  .epoptic-header-widget__cta {
    display: none;
    position: static;
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    max-width: none;
    margin-top: 10px;
    padding: 10px 10px 10px 16px;
    justify-content: space-between;
    min-height: 46px;
    font-size: 11px;
    line-height: 1.2;
    transition:
      opacity 300ms ease-out,
      transform 300ms ease-out,
      background-color 300ms ease-out,
      color 300ms ease-out;
  }

  .epoptic-header-widget.is-mobile-open .epoptic-header-widget__cta {
    display: inline-flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .epoptic-header-widget.is-mobile-open .epoptic-header-widget__nav + .epoptic-header-widget__cta,
  .epoptic-header-widget.is-compact .epoptic-header-widget__cta {
    width: 100%;
    min-width: 100%;
    max-width: none;
    height: auto;
    min-height: 44px;
    padding: 8px 8px 8px 16px;
    gap: 12px;
    background: var(--epoptic-cta-bg);
    border: 0;
    color: var(--epoptic-cta-text);
    justify-content: space-between;
  }

  .epoptic-header-widget.is-compact .epoptic-header-widget__cta-label {
    opacity: 1;
    max-width: none;
    transform: none;
    overflow: visible;
  }

  .epoptic-header-widget.is-compact .epoptic-header-widget__cta-icon {
    width: 32px;
    height: 32px;
    background: var(--epoptic-cta-icon-bg);
    color: var(--epoptic-cta-icon-color);
  }

  .epoptic-header-widget.is-compact .epoptic-header-widget__cta-icon-normal {
    opacity: 1;
    transform: scale(1);
  }

  .epoptic-header-widget.is-compact .epoptic-header-widget__cta-icon-compact {
    opacity: 0;
    transform: scale(0.7);
  }
}

@media (max-width: 640px) {
  .epoptic-header-widget__bar {
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 18px;
    padding-bottom: 20px;
    border-radius: 0;
  }

  .epoptic-header-widget__brand-text strong {
    font-size: 22px;
  }

  .epoptic-header-widget__brand-text small {
    font-size: 11px;
    max-width: 156px;
  }

  .epoptic-header-widget__brand-image {
    width: 124px;
  }

  .epoptic-header-widget__mobile-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .epoptic-header-widget__menu-button,
  .epoptic-header-widget__nav-link {
    min-height: 50px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .epoptic-header-widget__dropdown {
    width: calc(100% - 16px);
    margin-left: 8px;
    margin-right: 8px;
    padding: 10px 14px;
  }

  .epoptic-header-widget__dropdown-item {
    gap: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .epoptic-header-widget__cta {
    min-height: 42px;
    padding-left: 14px;
    font-size: 10px;
  }

  .epoptic-header-widget__cta-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 860px) {
  .epoptic-header-widget--hide-cta-mobile .epoptic-header-widget__cta {
    display: none !important;
  }
}
