.client-program-header {
  position: relative;
  overflow: hidden;
  padding: 2.1rem 2rem 1.55rem;
  background: linear-gradient(135deg, #0e2647 0%, #1a3a5c 60%, #2a5070 100%);
  color: #ffffff;
  text-align: left;
}

.client-program-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(254, 202, 29, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.client-program-header__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.client-program-header__brand {
  display: block;
  width: max-content;
  margin-bottom: 0.5rem;
  color: #feca1d;
  font: 700 0.75rem/1.3 'Poppins', sans-serif;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.client-program-header__title {
  margin: 0;
  color: #ffffff;
  font: 700 1.8rem/1.3 'Lora', serif;
  text-align: left;
}

.client-program-header__title-link {
  color: inherit;
  text-decoration: none;
}

.client-program-header__brand:focus-visible,
.client-program-header__title-link:focus-visible {
  outline: 2px solid #feca1d;
  outline-offset: 3px;
  border-radius: 2px;
}

.client-program-header__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.client-program-header__shortcuts {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.client-program-header__shortcut,
.client-program-header__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.9);
  font: 500 0.78rem/1.3 'Poppins', sans-serif;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.client-program-header__shortcut {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.client-program-header__shortcut:hover,
.client-program-header__tab:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.client-program-header__shortcut:focus-visible,
.client-program-header__tab:focus-visible {
  outline: 2px solid #feca1d;
  outline-offset: 2px;
}

.client-program-header__tabs {
  display: inline-flex;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.client-program-header__tab {
  flex: 0 0 112px;
  width: 112px;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.client-program-header__tab:last-child { border-right: 0; }

.client-program-header__tab[aria-current='page'] {
  background: rgba(255, 255, 255, 0.94);
  color: #0e2647;
  font-weight: 700;
}

.client-program-header__new-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.16);
}

.client-program-header__label-mobile { display: none; }

@media (max-width: 640px) {
  .client-program-header { padding: 1.75rem 1rem 1.3rem; }
  .client-program-header__inner { padding: 0; }
  .client-program-header__title { font-size: 1.5rem; }
  .client-program-header__row { flex-wrap: wrap; gap: 0.65rem; }
  .client-program-header__shortcuts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
  }
  .client-program-header__shortcut { min-width: 0; padding: 0.5rem 0.35rem; }
  .client-program-header__tabs { width: 100%; margin-left: 0; }
  .client-program-header__tab {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding: 0 0.3rem;
  }
  .client-program-header__label-full { display: none; }
  .client-program-header__label-mobile { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  .client-program-header__shortcut,
  .client-program-header__tab { transition: none; }
}
