/* Psiko Seç — site */
:root {
  --pko-font: "Poppins", system-ui, -apple-system, sans-serif;
  --pko-topbar-bg: var(--pko-primary-dark);
  --pko-topbar-fg: var(--pko-white);
  --pko-accent: var(--pko-primary);
}

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

body {
  margin: 0;
  font-family: var(--pko-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--pko-text);
  background: var(--pko-body-bg);
}

.pko-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pko-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

/* —— Topbar —— */
.pko-topbar {
  position: relative;
  isolation: isolate;
  height: 45px;
  color: var(--pko-topbar-fg);
  font-size: 0.875rem;
  background-color: var(--pko-topbar-bg);
  background-image: linear-gradient(
    180deg,
    color-mix(in srgb, var(--pko-topbar-fg) 10%, var(--pko-topbar-bg)) 0%,
    var(--pko-topbar-bg) 45%,
    color-mix(in srgb, #000 14%, var(--pko-topbar-bg)) 100%
  );
  border-bottom: 2px solid var(--pko-topbar-accent, var(--pko-primary));
  z-index: 50;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--pko-topbar-fg) 14%, transparent),
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 6px 16px rgba(0, 0, 0, 0.12),
    0 14px 32px rgba(0, 0, 0, 0.1),
    0 0 24px color-mix(in srgb, var(--pko-primary) 18%, transparent);
}

.pko-topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    102deg,
    transparent 0%,
    color-mix(in srgb, var(--pko-topbar-fg) 5%, transparent) 42%,
    transparent 58%,
    color-mix(in srgb, var(--pko-topbar-fg) 3%, transparent) 100%
  );
  opacity: 0.85;
}

.pko-topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--pko-primary) 55%, transparent) 20%,
    var(--pko-primary) 50%,
    color-mix(in srgb, var(--pko-primary) 55%, transparent) 80%,
    transparent 100%
  );
  opacity: 0.65;
}

.pko-topbar__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.pko-topbar__brand {
  justify-self: start;
  min-width: 0;
}

/* Beyaz akan alt çizgi (hover) */
.pko-topbar__hover-line {
  position: relative;
  display: inline-block;
}

.pko-topbar__hover-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--pko-topbar-hover-line, var(--pko-topbar-fg, #fff));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 1px;
}

.pko-topbar__hover-line:hover::after,
.pko-topbar__hover-line:focus-visible::after {
  transform: scaleX(1);
}

.pko-topbar__title {
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  cursor: default;
  transition: color 0.2s ease;
}

.pko-topbar__title:hover {
  color: var(--pko-topbar-text-hover, var(--pko-magenta));
}

.pko-topbar__title strong,
.pko-topbar__title b {
  font-weight: 700;
}

.pko-topbar__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pko-topbar__title a:hover {
  color: var(--pko-topbar-text-hover, var(--pko-magenta));
}

.pko-topbar__contact {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.pko-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity 0.2s ease, color 0.2s ease;
  padding-bottom: 2px;
}

.pko-topbar__link:hover,
.pko-topbar__link:focus-visible {
  opacity: 1;
  color: var(--pko-topbar-text-hover, var(--pko-magenta));
}

.pko-topbar__link:hover .pko-topbar__link-text,
.pko-topbar__link:focus-visible .pko-topbar__link-text {
  color: inherit;
}

.pko-topbar__link:hover .pko-topbar__svg--contact,
.pko-topbar__link:focus-visible .pko-topbar__svg--contact {
  color: inherit;
}

.pko-topbar__link:hover .pko-topbar__hover-line::after,
.pko-topbar__link:focus-visible .pko-topbar__hover-line::after,
.pko-topbar__cache-btn:hover .pko-topbar__hover-line::after,
.pko-topbar__cache-btn:focus-visible .pko-topbar__hover-line::after {
  transform: scaleX(1);
}

.pko-topbar__link-text {
  position: relative;
}

.pko-topbar__svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  display: block;
  shape-rendering: geometricPrecision;
}

.pko-topbar__svg--contact {
  width: 1.05rem;
  height: 1.05rem;
  opacity: 0.92;
}

.pko-topbar__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pko-topbar__social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pko-topbar__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: var(--pko-topbar-social-icon, var(--pko-magenta));
  background: color-mix(in srgb, var(--pko-topbar-social-icon, var(--pko-magenta)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--pko-topbar-social-border, var(--pko-magenta)) 45%, transparent);
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pko-topbar__social-link:hover,
.pko-topbar__social-link:focus-visible {
  background: var(--pko-topbar-social-hover-bg, var(--pko-magenta));
  color: var(--pko-topbar-social-icon-hover, var(--pko-black));
  border-color: var(--pko-topbar-social-hover-bg, var(--pko-magenta));
  transform: translateY(-2px);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--pko-topbar-social-hover-bg, var(--pko-magenta)) 45%, transparent);
}

.pko-topbar__social-link .pko-topbar__svg {
  width: 1.2rem;
  height: 1.2rem;
}

.pko-topbar__cache-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pko-topbar__cache-btn:hover,
.pko-topbar__cache-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--pko-topbar-text-hover, var(--pko-magenta));
}

.pko-topbar__cache-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.pko-topbar__cache-btn.is-success {
  background: var(--pko-magenta);
  color: var(--pko-black);
}

/* —— Sticky wrapper (header + menubar birlikte yapışır) —— */
.pko-stickyhead {
  position: sticky;
  top: 0;
  z-index: 45;
  background: var(--pko-white);
  overflow: visible;
  box-shadow:
    0 1px 0 rgba(var(--pko-black-rgb), 0.04),
    0 8px 24px rgba(var(--pko-black-rgb), 0.07);
}

/* —— Header —— */
.pko-header {
  font-family: var(--pko-font);
  font-weight: 400;
  background: var(--pko-white);
  border-bottom: 1px solid rgba(var(--pko-black-rgb), 0.08);
  overflow: visible;
}

.pko-header button,
.pko-header input,
.pko-header select,
.pko-header textarea {
  font-family: inherit;
  font-weight: inherit;
}

.pko-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
}

.pko-header__logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pko-magenta);
  letter-spacing: -0.02em;
}

.pko-header__logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.pko-header__logo img {
  display: block;
  width: auto;
  height: var(--pko-header-logo-h, 52px);
  max-width: min(var(--pko-header-logo-max-w, 200px), 40vw);
  object-fit: contain;
}

.pko-header__search {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 520px;
  margin: 0 auto;
}

.pko-header__search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.pko-header__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(var(--pko-black-rgb), 0.45);
  pointer-events: none;
  display: flex;
}

.pko-header__search input {
  width: 100%;
  margin: 0;
  padding: 0.7rem 1.25rem 0.7rem 2.75rem;
  border: 1px solid rgba(var(--pko-black-rgb), 0.12);
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  color: var(--pko-text);
  background: #f8f9fb;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.pko-header__search input::placeholder {
  text-align: center;
  color: rgba(var(--pko-black-rgb), 0.45);
}

.pko-header__search input:focus {
  outline: none;
  text-align: left;
  background: var(--pko-white);
  border-color: var(--pko-magenta);
  box-shadow: 0 0 0 3px rgba(var(--pko-magenta-rgb), 0.15);
}

.pko-header__search input:not(:placeholder-shown) {
  text-align: left;
}

.pko-header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  overflow: visible;
}

.pko-header__account {
  display: flex;
  align-items: center;
  gap: 0.5rem 0.65rem;
  overflow: visible;
}

.pko-header__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--pko-text);
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.pko-header__link:hover {
  color: var(--pko-magenta);
  background: rgba(var(--pko-magenta-rgb), 0.06);
}

.pko-header__account .pko-header__link:hover {
  background: rgba(26, 49, 79, 0.1);
}

.pko-header__link--primary {
  color: var(--pko-magenta);
}

.pko-header__profile {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 11rem;
  padding: 0.35rem 0.65rem 0.35rem 0.4rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--pko-text);
  font-weight: 400;
  font-size: 0.875rem;
  border: 1px solid rgba(var(--pko-black-rgb), 0.1);
  background: #f8f9fb;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pko-header__profile:hover {
  border-color: var(--pko-magenta);
  color: var(--pko-magenta);
  background: rgba(var(--pko-magenta-rgb), 0.06);
}

.pko-header__account .pko-header__profile:hover {
  background: rgba(26, 49, 79, 0.1);
}

.pko-header__profile--admin {
  border-color: rgba(31, 97, 172, 0.25);
  background: rgba(31, 97, 172, 0.06);
}

.pko-header__profile--admin .pko-header__profile-icon {
  color: var(--pko-primary);
}

.pko-header__profile--admin:hover {
  border-color: var(--pko-primary);
  color: var(--pko-primary);
  background: rgba(31, 97, 172, 0.1);
}

.pko-header__profile-icon {
  display: flex;
  color: var(--pko-magenta);
}

.pko-header__profile-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pko-header__profile-menu {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* Tetik ile menü arasında hover kopmasın */
.pko-header__profile-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.5rem;
}

.pko-header__profile-trigger {
  position: relative;
  z-index: 2;
  cursor: pointer;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

.pko-header__profile-chevron {
  display: flex;
  flex-shrink: 0;
  margin-left: 0.1rem;
  color: rgba(var(--pko-black-rgb), 0.45);
  transition: transform 0.2s ease, color 0.2s ease;
}

.pko-header__profile-menu:hover .pko-header__profile-chevron,
.pko-header__profile-menu:focus-within .pko-header__profile-chevron,
.pko-header__profile-menu.is-open .pko-header__profile-chevron {
  transform: rotate(180deg);
  color: var(--pko-magenta);
}

.pko-header__profile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 500;
  min-width: 13rem;
  padding: 0.4rem 0;
  background: var(--pko-white);
  border: 1px solid rgba(var(--pko-black-rgb), 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(var(--pko-black-rgb), 0.18);
}

.pko-header__profile-menu:hover .pko-header__profile-dropdown,
.pko-header__profile-menu:focus-within .pko-header__profile-dropdown,
.pko-header__profile-menu.is-open .pko-header__profile-dropdown {
  display: block;
}

.pko-header__profile-dropdown-item {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pko-text);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.pko-header__profile-dropdown-item:hover,
.pko-header__profile-dropdown-item:focus-visible {
  background: rgba(var(--pko-magenta-rgb), 0.08);
  color: var(--pko-magenta-dark, #a83279);
}

.pko-header__profile-dropdown-item--logout {
  margin-top: 0.25rem;
  border-top: 1px solid rgba(var(--pko-black-rgb), 0.08);
  font-weight: 600;
  color: #1a314f;
}

.pko-header__profile-dropdown-item--logout:hover,
.pko-header__profile-dropdown-item--logout:focus-visible {
  background: #1a314f;
  color: #fff;
}

.pko-header__admin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0 0.75rem 0 0.65rem;
  border-radius: 8px;
  color: var(--pko-white);
  background: linear-gradient(180deg, var(--pko-primary-hover) 0%, var(--pko-primary) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 10px rgba(31, 97, 172, 0.35);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.pko-header__admin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.pko-header__admin-label {
  font-weight: 400;
  line-height: 1;
}

.pko-header__admin:hover {
  background: linear-gradient(180deg, var(--pko-primary) 0%, var(--pko-primary-dark) 100%);
  box-shadow: 0 4px 14px rgba(31, 97, 172, 0.45);
  transform: translateY(-1px);
}

.pko-header__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pko-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.pko-header__btn--consultant {
  color: var(--pko-btn-consultant-color, var(--pko-text));
  background: var(--pko-btn-consultant-bg, var(--pko-white));
  border: 1px solid var(--pko-btn-consultant-border, rgba(var(--pko-black-rgb), 0.18));
}

.pko-header__btn--consultant:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.pko-header__btn--appointment {
  color: var(--pko-btn-appointment-color, var(--pko-black));
  background: var(--pko-btn-appointment-bg, var(--pko-magenta));
  border: 1px solid var(--pko-btn-appointment-border, var(--pko-magenta));
  box-shadow: 0 4px 14px color-mix(in srgb, var(--pko-btn-appointment-bg, var(--pko-magenta)) 40%, transparent);
}

.pko-header__btn--appointment:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.pko-hero--left {
  text-align: left;
}

.pko-hero--left p,
.pko-hero--left ul {
  margin-left: 0;
}

.pko-profile-meta {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
  color: rgba(var(--pko-black-rgb), 0.75);
}

.pko-profile-meta li {
  margin-bottom: 0.35rem;
}

.pko-hero a {
  color: var(--pko-magenta);
  font-weight: 600;
}

/* —— Main —— */
.pko-main {
  flex: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  box-sizing: border-box;
}

/* —— Footer (beyaz, gölgeli, kurumsal) —— */
.pko-footer {
  position: relative;
  margin-top: auto;
  color: var(--pko-text);
  background: var(--pko-white);
  border-top: 1px solid rgba(var(--pko-black-rgb), 0.06);
  box-shadow:
    0 -1px 0 rgba(var(--pko-black-rgb), 0.04),
    0 -8px 24px rgba(var(--pko-black-rgb), 0.06),
    0 -20px 48px rgba(var(--pko-black-rgb), 0.04);
}

.pko-footer::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 14px;
  background: linear-gradient(90deg, transparent, #ad1e1e, transparent);
  opacity: 0.85;
  pointer-events: none;
}

.pko-footer__main {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.pko-footer__inner {
  display: grid;
  grid-template-columns: minmax(140px, auto) 1fr minmax(180px, auto);
  align-items: center;
  gap: 2rem 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.25rem 1.5rem;
  box-sizing: border-box;
}

.pko-footer__brand {
  min-width: 0;
}

.pko-footer__logo-link {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.pko-footer__logo-link:hover {
  opacity: 0.85;
}

.pko-footer__logo {
  display: block;
  height: auto;
  max-height: 2.75rem;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
}

.pko-footer__logo-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pko-black);
}

.pko-footer__nav {
  justify-self: center;
  min-width: 0;
}

.pko-footer__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pko-footer__menu-item {
  display: flex;
  align-items: center;
}

.pko-footer__menu-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 0.85rem;
  margin: 0 0.85rem;
  background: rgba(var(--pko-black-rgb), 0.12);
  flex-shrink: 0;
}

.pko-footer__menu-link {
  color: rgba(var(--pko-black-rgb), 0.72);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.pko-footer__menu-link:hover,
.pko-footer__menu-link:focus-visible {
  color: var(--pko-magenta);
}

.pko-footer__menu-link.is-active {
  color: var(--pko-magenta);
  font-weight: 600;
}

.pko-footer__social-wrap {
  justify-self: end;
}

.pko-footer__social-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.pko-footer__bottom {
  background: #182b44;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.pko-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem 1rem;
  box-sizing: border-box;
  width: 100%;
}

.pko-footer__bottom-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  min-width: 0;
  flex: 1 1 auto;
  text-align: left;
}

.pko-footer__bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  min-width: 0;
  flex: 0 1 auto;
  margin-left: auto;
  text-align: right;
}

.pko-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(var(--pko-black-rgb), 0.5);
}

.pko-footer__developer-credit {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(var(--pko-black-rgb), 0.48);
}

.pko-footer__developer-credit a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pko-footer__developer-credit a:hover,
.pko-footer__developer-credit a:focus-visible {
  color: var(--pko-magenta);
  text-decoration: underline;
}

.pko-footer__bottom-text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
}

.pko-footer__custom {
  font-size: 0.8125rem;
  color: rgba(var(--pko-black-rgb), 0.55);
  line-height: 1.5;
  text-align: inherit;
}

.pko-footer__custom a {
  color: var(--pko-magenta);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pko-footer__custom a:hover {
  color: var(--pko-black);
}

.pko-footer__custom p {
  margin: 0;
}

.pko-footer__follow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--pko-black-rgb), 0.45);
  white-space: nowrap;
}

.pko-footer__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pko-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  color: #1a314f;
  background: var(--pko-white);
  border: 1px solid rgba(var(--pko-black-rgb), 0.1);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(var(--pko-black-rgb), 0.06);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pko-footer__social-link:hover,
.pko-footer__social-link:focus-visible {
  background: var(--pko-footer-social-hover-bg, var(--pko-magenta));
  color: var(--pko-footer-social-icon-hover, var(--pko-white));
  border-color: var(--pko-footer-social-hover-bg, var(--pko-magenta));
  box-shadow: 0 4px 14px rgba(var(--pko-magenta-rgb), 0.25);
  transform: translateY(-1px);
}

.pko-footer__social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.pko-hero {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--pko-white);
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(var(--pko-black-rgb), 0.06);
  border: 1px solid rgba(var(--pko-magenta-rgb), 0.12);
}

.pko-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--pko-magenta);
}

.pko-hero p {
  margin: 0;
  color: var(--pko-black);
  opacity: 0.75;
  max-width: 36rem;
  margin-inline: auto;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .pko-header__cta .pko-header__btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 900px) {
  .pko-consultant-search--header {
    display: none !important;
  }

  .pko-header__inner {
    flex-wrap: nowrap;
    gap: 0.5rem 0.65rem;
  }

  .pko-header__logo {
    order: 0;
  }

  .pko-header__actions {
    order: 1;
    margin-left: auto;
  }

  .pko-topbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem 0.5rem;
    padding: 0.45rem 0.65rem;
  }

  .pko-topbar__brand {
    flex: 1 1 100%;
    text-align: center;
  }

  .pko-topbar__contact {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem 0.65rem;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pko-topbar__contact::-webkit-scrollbar {
    display: none;
  }

  .pko-topbar__link {
    flex-shrink: 0;
    gap: 0.3rem;
    padding-bottom: 0;
  }

  .pko-topbar__link-text {
    font-size: 0.6875rem;
    white-space: nowrap;
  }

  .pko-topbar__svg--contact {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
  }

  .pko-topbar__actions {
    flex: 1 1 100%;
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .pko-topbar__social {
    display: none;
  }

  .pko-topbar__title {
    white-space: normal;
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .pko-topbar__cache-label {
    display: none;
  }
}

@media (max-width: 640px) {
  .pko-header__actions {
    gap: 0.3rem 0.35rem;
  }

  .pko-header__account {
    gap: 0.15rem 0.2rem;
  }

  .pko-header__link {
    font-size: 0.75rem;
    padding: 0.3rem 0.35rem;
  }

  .pko-header__profile-name {
    max-width: 5.5rem;
  }

  .pko-header__cta {
    gap: 0.2rem;
  }

  .pko-header__cta .pko-header__btn {
    padding: 0.4rem 0.55rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .pko-header__inner {
    padding: 0.65rem 1rem;
  }

  .pko-header__actions {
    gap: 0.2rem 0.25rem;
  }

  .pko-header__account {
    gap: 0.1rem 0.15rem;
  }

  .pko-header__link {
    padding: 0.25rem 0.3rem;
    font-size: 0.7rem;
  }

  .pko-header__cta {
    gap: 0.15rem;
  }

  .pko-header__cta .pko-header__btn {
    padding: 0.35rem 0.5rem;
    font-size: 0.6875rem;
  }

  .pko-header__logo img {
    height: 44px;
  }

  .pko-header__btn--consultant {
    display: none;
  }

  .pko-header__admin-label {
    display: none;
  }

  .pko-header__admin {
    padding: 0 0.55rem;
  }

  .pko-topbar__contact {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.35rem 0.5rem;
  }

  .pko-topbar__link-text {
    font-size: 0.625rem;
  }

  .pko-topbar__title {
    font-size: 0.7rem;
  }
}

/* —— Menü bar —— */
.pko-menubar {
  background: var(--pko-white);
  border-bottom: 1px solid rgba(var(--pko-black-rgb), 0.08);
  box-shadow: 0 2px 8px rgba(var(--pko-black-rgb), 0.04);
}

.pko-menubar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.pko-menubar__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pko-menubar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pko-menubar-text, var(--pko-text));
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.pko-menubar__link:hover {
  color: var(--pko-menubar-hover, var(--pko-magenta));
  background: color-mix(in srgb, var(--pko-menubar-hover, var(--pko-magenta)) 6%, transparent);
}

.pko-menubar__link.is-active {
  color: var(--pko-menubar-active, var(--pko-magenta));
  border-bottom-color: var(--pko-menubar-active, var(--pko-magenta));
  font-weight: 600;
}

.pko-menubar__icon {
  display: flex;
  opacity: 0.85;
}

.pko-menubar__item {
  position: relative;
}

.pko-menubar__item--has-sub .pko-menubar__link--toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  width: auto;
}

.pko-menubar__caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.15rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.65;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.pko-menubar__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  min-width: 12rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--pko-white);
  border: 1px solid rgba(var(--pko-black-rgb), 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(var(--pko-black-rgb), 0.12);
}

.pko-menubar__item--has-sub:hover .pko-menubar__submenu,
.pko-menubar__item--has-sub:focus-within .pko-menubar__submenu {
  display: block;
}

.pko-menubar__sublink {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pko-menubar-text, var(--pko-text));
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.pko-menubar__sublink:hover,
.pko-menubar__sublink.is-active {
  color: var(--pko-menubar-hover, var(--pko-magenta));
  background: color-mix(in srgb, var(--pko-menubar-hover, var(--pko-magenta)) 6%, transparent);
}

.pko-menubar__sublink.is-active {
  color: var(--pko-menubar-active, var(--pko-magenta));
  font-weight: 600;
}

/* —— CMS sayfa içeriği —— */
.pko-page,
.pko-page--404 {
  background: var(--pko-white);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  box-shadow: 0 2px 20px rgba(var(--pko-black-rgb), 0.06);
  border: 1px solid rgba(var(--pko-magenta-rgb), 0.1);
}

.pko-page__head h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--pko-magenta);
}

.pko-cms {
  line-height: 1.7;
  color: var(--pko-text);
}

.pko-cms h2,
.pko-cms h3 {
  color: var(--pko-black);
  margin-top: 1.5rem;
}

.pko-cms img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.pko-cms iframe {
  max-width: 100%;
  border: 0;
  border-radius: 8px;
}

.pko-cms a {
  color: var(--pko-magenta);
}

/* —— İletişim —— */
.pko-contact__hero {
  margin-bottom: 2rem;
}

.pko-contact__hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--pko-magenta);
}

.pko-contact__intro {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(var(--pko-black-rgb), 0.7);
  max-width: 40rem;
}

.pko-contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 2rem;
  align-items: start;
}

.pko-contact__info {
  position: relative;
  background: var(--pko-white);
  border-radius: 16px;
  padding: 0;
  border: 1px solid rgba(var(--pko-black-rgb), 0.07);
  box-shadow:
    0 8px 32px rgba(var(--pko-black-rgb), 0.06),
    0 2px 8px rgba(var(--pko-magenta-rgb), 0.04);
  overflow: hidden;
}

.pko-contact__info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--pko-magenta) 0%,
    color-mix(in srgb, var(--pko-magenta) 40%, var(--pko-black)) 100%
  );
}

.pko-contact__info-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 1.25rem 1.65rem;
  background: linear-gradient(
    135deg,
    rgba(var(--pko-magenta-rgb), 0.08) 0%,
    rgba(var(--pko-magenta-rgb), 0.02) 55%,
    transparent 100%
  );
  border-bottom: 1px solid rgba(var(--pko-black-rgb), 0.06);
}

.pko-contact__info-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--pko-magenta);
  color: var(--pko-black);
  box-shadow: 0 4px 14px rgba(var(--pko-magenta-rgb), 0.35);
}

.pko-contact__info-badge .pko-contact__svg {
  width: 1.35rem;
  height: 1.35rem;
}

.pko-contact__info-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pko-black);
  letter-spacing: -0.02em;
}

.pko-contact__info-sub {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(var(--pko-black-rgb), 0.58);
}

.pko-contact__items {
  padding: 0.35rem 1.25rem 1.35rem 1.4rem;
}

.pko-contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0.65rem;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.pko-contact__item:hover {
  background: rgba(var(--pko-magenta-rgb), 0.04);
}

.pko-contact__item + .pko-contact__item {
  border-top: 1px solid rgba(var(--pko-black-rgb), 0.06);
  margin-top: 0.15rem;
  padding-top: 1.15rem;
}

.pko-contact__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(var(--pko-magenta-rgb), 0.14) 0%,
    rgba(var(--pko-magenta-rgb), 0.06) 100%
  );
  color: var(--pko-magenta);
  border: 1px solid rgba(var(--pko-magenta-rgb), 0.2);
  box-shadow: 0 2px 8px rgba(var(--pko-magenta-rgb), 0.1);
}

.pko-contact__svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.pko-contact__svg--inline {
  width: 0.95rem;
  height: 0.95rem;
  vertical-align: -0.15em;
  margin-left: 0.2rem;
}

.pko-contact__item-body {
  min-width: 0;
  flex: 1;
  padding-top: 0.15rem;
}

.pko-contact__item-label {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(var(--pko-black-rgb), 0.45);
}

.pko-contact__item-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--pko-text);
}

.pko-contact__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pko-contact__list li + li {
  margin-top: 0.35rem;
}

.pko-contact__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--pko-text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.pko-contact__list a:hover {
  color: var(--pko-magenta);
  transform: translateX(2px);
}

.pko-contact__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-top: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pko-magenta);
  text-decoration: none;
  padding: 0.35rem 0.75rem 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(var(--pko-magenta-rgb), 0.08);
  border: 1px solid rgba(var(--pko-magenta-rgb), 0.2);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pko-contact__map-link:hover {
  background: var(--pko-magenta);
  color: var(--pko-black);
  box-shadow: 0 4px 12px rgba(var(--pko-magenta-rgb), 0.3);
}

.pko-contact__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pko-contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--pko-magenta);
  background: rgba(var(--pko-magenta-rgb), 0.1);
  border: 1px solid rgba(var(--pko-magenta-rgb), 0.22);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pko-contact__social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.pko-contact__social-link:hover {
  background: var(--pko-magenta);
  color: var(--pko-black);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(var(--pko-magenta-rgb), 0.35);
}

.pko-contact__map {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(var(--pko-black-rgb), 0.08);
  box-shadow: 0 4px 16px rgba(var(--pko-black-rgb), 0.06);
}

.pko-contact__map iframe {
  display: block;
  width: 100%;
  min-height: 280px;
}

.pko-contact__form-wrap {
  background: var(--pko-white);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid rgba(var(--pko-black-rgb), 0.08);
  box-shadow: 0 4px 20px rgba(var(--pko-black-rgb), 0.05);
}

.pko-contact__form-wrap h2 {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  color: var(--pko-black);
}

.pko-contact__form .pko-form-group {
  margin-bottom: 1rem;
}

.pko-contact__form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.pko-contact__form input:not([type="checkbox"]):not([type="radio"]),
.pko-contact__form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: #ffffff !important;
  color: #1a2b3d !important;
  border: 1px solid #b8c4d4 !important;
  border-radius: 8px;
  font: inherit;
  box-sizing: border-box;
}

.pko-contact__form textarea {
  display: block;
  resize: vertical;
  min-height: 160px;
  line-height: 1.5;
  background: #ffffff !important;
  color: #1a2b3d !important;
  border: 2px solid #9aabbf !important;
}

.pko-contact__form textarea::placeholder {
  color: #6b7c8f;
}

.pko-contact__form input:not([type="checkbox"]):not([type="radio"]):focus,
.pko-contact__form textarea:focus {
  outline: none;
  border-color: #213d64;
  box-shadow: 0 0 0 3px rgba(33, 61, 100, 0.18);
}

/* KVKK onay kutusu */
.pko-contact__form .pko-form-group--check {
  margin-top: 0.25rem;
}

.pko-contact__form .pko-form-group--check label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #1a2b3d;
  cursor: pointer;
}

.pko-contact__form .pko-form-group--check input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  margin: 0.15rem 0 0;
  padding: 0;
  border: 1px solid #9aabbf !important;
  border-radius: 4px;
  background: #ffffff !important;
  accent-color: #213d64;
  flex-shrink: 0;
  cursor: pointer;
  box-sizing: border-box;
}

.pko-contact__form .pko-form-group--check a {
  color: #213d64;
  font-weight: 600;
  text-decoration: underline;
}

.pko-contact__form .pko-form-group--check a:hover {
  color: #2d5282;
}

.pko-contact__form textarea:focus {
  border-width: 2px;
}

.pko-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pko-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
}

.pko-btn--primary {
  background: var(--pko-magenta);
  color: var(--pko-black);
  box-shadow: 0 4px 14px rgba(var(--pko-magenta-rgb), 0.35);
}

.pko-btn--primary:hover {
  filter: brightness(1.05);
}

.pko-alert {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.pko-alert--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.pko-alert--error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.pko-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .pko-stickyhead {
    z-index: 60;
  }

  .pko-contact__grid {
    grid-template-columns: 1fr;
  }

  .pko-menubar {
    position: relative;
    z-index: 2;
    overflow: visible;
  }

  .pko-menubar__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pko-menubar:has(.is-open) .pko-menubar__inner {
    overflow: visible;
  }

  .pko-menubar__list {
    overflow: visible;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .pko-menubar:has(.is-open) .pko-menubar__list {
    flex-wrap: wrap;
  }

  .pko-menubar__link {
    white-space: nowrap;
    padding: 0.75rem 0.85rem;
  }

  .pko-menubar__item--has-sub:hover .pko-menubar__submenu {
    display: none;
  }

  .pko-menubar__item--has-sub.is-open .pko-menubar__submenu {
    display: block;
  }

  .pko-menubar__item--has-sub.is-open {
    flex: 1 1 100%;
    width: 100%;
    order: 99;
  }

  .pko-menubar__item--has-sub.is-open .pko-menubar__submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: color-mix(in srgb, var(--pko-menubar-hover, var(--pko-magenta)) 4%, var(--pko-white));
    border-top: 1px solid rgba(var(--pko-black-rgb), 0.08);
  }

  .pko-menubar__item--has-sub.is-open .pko-menubar__caret {
    transform: rotate(180deg);
  }
}

@media (max-width: 640px) {
  .pko-form-row {
    grid-template-columns: 1fr;
  }

  .pko-page {
    padding: 1.25rem 1rem;
  }

  .pko-footer__inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 1.5rem;
    padding: 1.75rem 1.15rem;
  }

  .pko-footer__nav {
    justify-self: stretch;
    width: 100%;
  }

  .pko-footer__menu {
    justify-content: flex-start;
    gap: 0.35rem 0;
  }

  .pko-footer__menu-item:not(:last-child)::after {
    margin: 0 0.65rem;
  }

  .pko-footer__social-wrap {
    justify-self: stretch;
    width: 100%;
  }

  .pko-footer__social-panel {
    align-items: flex-start;
    width: 100%;
  }

  .pko-footer__bottom-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .pko-footer__bottom-left,
  .pko-footer__bottom-right {
    align-items: flex-start;
    margin-left: 0;
    text-align: left;
    width: 100%;
  }

  .pko-footer__custom {
    text-align: left;
  }
}
