.elementor-10047 .elementor-element.elementor-element-afe20a0{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );line-height:var( --e-global-typography-secondary-line-height );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );line-height:var( --e-global-typography-secondary-line-height );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-10047 .elementor-element.elementor-element-afe20a0{--content-width:100%;}}@media(max-width:1024px){.elementor-widget-html .eael-protected-content-message{font-size:var( --e-global-typography-secondary-font-size );line-height:var( --e-global-typography-secondary-line-height );}.elementor-widget-html .protected-content-error-msg{font-size:var( --e-global-typography-secondary-font-size );line-height:var( --e-global-typography-secondary-line-height );}}@media(max-width:767px){.elementor-widget-html .eael-protected-content-message{font-size:var( --e-global-typography-secondary-font-size );line-height:var( --e-global-typography-secondary-line-height );}.elementor-widget-html .protected-content-error-msg{font-size:var( --e-global-typography-secondary-font-size );line-height:var( --e-global-typography-secondary-line-height );}}/* Start custom CSS for html, class: .elementor-element-a98fcdd */.psymed-header {
  --accent: #f8f855;
  --bg: #111;
  --ink: #ececec;
  --muted: #b7bcc4;
  --panel: #1a1a1a;
  --line: #2a2a2a;
  background: #141414;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  position: relative;
  z-index: 1000;
}
.psymed-header * {
  box-sizing: border-box;
}
.psymed-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
}

/* brand */
.psymed-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.psymed-brand img {
  height: 40px;
  width: auto;
  display: block;
}

/* right side wraps links + cta */
.psymed-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* primary links */
.psymed-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 26px;
}
.psymed-links > li {
  position: relative;
}
.psymed-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s ease;
}
.psymed-links a:hover,
.psymed-links a:focus-visible,
.psymed-links a[aria-current="page"] {
  color: var(--accent);
  outline: none;
}

/* dropdown caret */
.psymed-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}
.psymed-has-sub:hover .psymed-caret,
.psymed-has-sub:focus-within .psymed-caret {
  transform: rotate(-135deg) translateY(-1px);
}

/* submenu panel */
.psymed-sub {
  position: absolute;
  top: calc(100% + 12px);
  left: -14px;
  min-width: 264px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  margin: 0;
  list-style: none;
  box-shadow: 0 20px 44px -20px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.psymed-has-sub:hover .psymed-sub,
.psymed-has-sub:focus-within .psymed-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* hover bridge so the gap doesn't drop the menu */
.psymed-has-sub::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.psymed-sub li {
  margin: 0;
}
.psymed-sub a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  position: relative;
  transition: background 0.15s ease, color 0.15s ease, padding 0.15s ease;
}
.psymed-sub a:hover,
.psymed-sub a:focus-visible {
  background: rgba(248, 248, 85, 0.08);
  color: var(--accent);
  padding-left: 16px;
}
.psymed-sub a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: width 0.15s ease;
}
.psymed-sub a:hover::before,
.psymed-sub a:focus-visible::before {
  width: 6px;
}

/* CTA pill */
.psymed-cta {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  overflow: hidden;
}
.psymed-cta a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  display: inline-flex;
  align-items: center;
  transition: background 0.18s ease, color 0.18s ease;
}
.psymed-contact {
  color: var(--ink);
}
.psymed-contact:hover,
.psymed-contact:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}
.psymed-register {
  background: var(--accent);
  color: #111;
}
.psymed-register:hover,
.psymed-register:focus-visible {
  background: #fff;
  outline: none;
}

/* mobile toggle (checkbox hack — keyboard operable) */
.psymed-toggle {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.psymed-burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.psymed-burger span,
.psymed-burger span::before,
.psymed-burger span::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.psymed-burger span::before {
  position: absolute;
  top: -7px;
}
.psymed-burger span::after {
  position: absolute;
  top: 7px;
}
.psymed-toggle:focus-visible + .psymed-burger {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.psymed-toggle:checked + .psymed-burger span {
  background: transparent;
}
.psymed-toggle:checked + .psymed-burger span::before {
  transform: translateY(7px) rotate(45deg);
}
.psymed-toggle:checked + .psymed-burger span::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- responsive ---------- */
/* tablet: keep the full horizontal bar, just tighten spacing so it fits */
@media (max-width: 960px) and (min-width: 768px) {
  .psymed-inner {
    gap: 16px;
    padding: 12px 18px;
  }
  .psymed-menu {
    gap: 18px;
  }
  .psymed-links {
    gap: 18px;
  }
  .psymed-links a {
    font-size: 14px;
  }
  .psymed-cta a {
    padding: 8px 15px;
    font-size: 13px;
  }
}

/* mobile only (<=767px): hamburger */
@media (max-width: 767px) {
  .psymed-burger {
    display: inline-flex;
  }
  .psymed-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 10px 16px 20px;
    display: none;
  }
  .psymed-toggle:checked ~ .psymed-menu {
    display: flex;
  }
  .psymed-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .psymed-links > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .psymed-links > li > a {
    padding: 14px 4px;
    font-size: 16px;
  }
  .psymed-caret {
    margin-left: auto;
  }
  /* submenu shown inline & open on mobile (still crawlable, no JS needed) */
  .psymed-sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 8px 8px;
    min-width: 0;
  }
  .psymed-has-sub::after {
    display: none;
  }
  .psymed-sub a {
    padding: 11px 10px;
  }
  .psymed-cta {
    margin-top: 16px;
    align-self: flex-start;
  }
}/* End custom CSS */