/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-cta {
  background: var(--color-yellow);
  color: var(--color-navy);
  box-shadow: 0 4px 14px rgba(254, 186, 71, 0.35);
}

.btn-cta:hover {
  background: var(--color-gold-dark);
  color: var(--bg-white);
  box-shadow: 0 6px 18px rgba(217, 140, 33, 0.35);
}

.btn-primary {
  background: var(--color-navy);
  color: var(--bg-white);
}

.btn-primary:hover {
  background: var(--color-teal-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}

.btn-outline:hover {
  background: var(--color-navy);
  color: var(--bg-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--bg-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: var(--bg-white);
  color: var(--color-navy);
}

.btn-pill {
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
}

.btn-ghost {
  background: var(--bg-white);
  color: var(--color-navy);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-ghost-light .btn-play {
  background: rgba(255, 255, 255, 0.95);
}

.btn-ghost-light .btn-play::after {
  border-color: transparent transparent transparent var(--color-navy);
}

.btn-play {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.btn-play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--bg-white);
  margin-left: 2px;
}

/* ——— Smile mark ——— */
.smile-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-navy);
  flex-shrink: 0;
}

.smile-mark svg {
  width: 22px;
  height: 22px;
}

.smile-mark--cyan {
  background: var(--color-cyan);
}

.smile-mark--rose {
  background: var(--color-rose);
}

.smile-mark--yellow {
  background: var(--color-yellow);
}

.smile-mark--yellow svg path {
  stroke: var(--color-navy) !important;
}

.smile-mark--sm {
  width: 32px;
  height: 32px;
}

.smile-mark--sm svg {
  width: 16px;
  height: 16px;
}

/* ——— Top header ——— */
.top-header {
  background: rgba(37, 43, 65, 0.88);
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-xs);
}

.top-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 40px;
  padding-block: 0.45rem;
}

.top-header__left,
.top-header__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.top-header__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-style: italic;
}

.top-header__item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.top-header a {
  color: inherit;
  transition: color var(--transition);
}

.top-header a:hover {
  color: var(--color-yellow);
}

/* ——— Header ——— */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  overflow: visible;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 1;
  background: var(--bg-white);
  height: var(--header-height);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
  overflow: visible;
}

.site-header-wrap.is-scrolled .site-header {
  box-shadow: var(--shadow-header);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-5);
  background: transparent;
  border: none;
  border-radius: 0;
  /* .container ile aynı yatay padding — padding:0 header'ı 32px daha geniş gösteriyordu */
  padding-block: 0;
  padding-inline: 1rem;
  box-shadow: none;
  backdrop-filter: none;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 36px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.15rem;
}

.site-header__cta .btn-cta {
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.85rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

button.site-nav__link {
  appearance: none;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.site-nav__item.has-mega.is-open > .site-nav__link {
  color: var(--color-cyan);
  background: var(--bg-cyan);
}

.site-nav__chevron {
  width: 10px;
  height: 10px;
  transition: transform var(--transition);
}

.site-nav__item.has-mega.is-open .site-nav__chevron {
  transform: rotate(180deg);
}

.site-header__cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-navy);
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

body.is-menu-open .nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.is-menu-open .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ——— Mega menu ——— */
.site-nav__item {
  position: static;
}

.site-nav__item.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(50% + (var(--header-height) / 2) + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(1040px, calc(100vw - 2rem));
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(37, 43, 65, 0.08);
  box-shadow:
    0 24px 60px rgba(37, 43, 65, 0.14),
    0 4px 14px rgba(37, 43, 65, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
  z-index: var(--z-mega);
}

/* Hover köprüsü: header ile panel arası */
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 100%;
  height: calc(var(--header-height) / 2);
}

.site-nav__item.has-mega.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.78fr) minmax(0, 1.7fr);
  min-height: 280px;
}

.mega-menu__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.35rem;
  background:
    linear-gradient(165deg, rgba(106, 168, 199, 0.22) 0%, transparent 45%),
    linear-gradient(180deg, #252b41 0%, #323a56 100%);
  color: #fff;
}

.mega-menu__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cyan-light);
}

.mega-menu__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}

.mega-menu__aside-text {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.mega-menu__aside-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  width: fit-content;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-size: 0.84rem;
  font-weight: var(--fw-semibold, 600);
  text-decoration: none;
  transition: gap 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.mega-menu__aside-cta:hover {
  gap: 0.6rem;
  transform: translateY(-1px);
  background: #ffc65f;
}

.mega-menu__aside-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.mega-menu__main {
  padding: 1rem;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(106, 168, 199, 0.08), transparent 55%),
    #fff;
}

.mega-menu__header {
  display: none;
}

.mega-menu__title-sub {
  display: none;
}

.mega-menu__all {
  display: none;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  height: 100%;
}

.mega-menu__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.mega-menu__item::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: auto;
  flex-shrink: 0;
  border-right: 1.7px solid rgba(37, 43, 65, 0.25);
  border-bottom: 1.7px solid rgba(37, 43, 65, 0.25);
  transform: rotate(-45deg) translateX(-2px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.mega-menu__item:hover {
  background: #f5f8fb;
  border-color: rgba(106, 168, 199, 0.22);
  box-shadow: 0 8px 20px rgba(37, 43, 65, 0.05);
  transform: translateY(-1px);
}

.mega-menu__item:hover::after {
  opacity: 1;
  transform: rotate(-45deg) translateX(0);
  border-color: var(--color-cyan);
}

.mega-menu__item:hover .mega-menu__icon {
  transform: scale(1.05);
}

.mega-menu__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(106, 168, 199, 0.16);
  color: var(--color-cyan);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mega-menu__icon svg {
  width: 20px;
  height: 20px;
}

.mega-menu__icon--cyan,
.mega-menu__icon--rose,
.mega-menu__icon--yellow,
.mega-menu__icon--navy {
  background: rgba(106, 168, 199, 0.16);
  color: var(--color-cyan);
}

.mega-menu__item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: var(--fw-semibold, 600);
  color: var(--color-navy);
  margin-bottom: 0.12rem;
  letter-spacing: -0.01em;
}

.mega-menu__item .mega-menu__text {
  display: block;
  min-width: 0;
}

.mega-menu__item .mega-menu__desc {
  display: block;
  font-size: 0.75rem;
  color: rgba(37, 43, 65, 0.55);
  font-style: normal;
  line-height: 1.35;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(37, 43, 65, 0.4);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-overlay.is-visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* ——— Cards ——— */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-3);
}

.card__title {
  font-size: var(--fs-lg);
  margin: 0;
}

.card__title a {
  color: inherit;
  text-decoration: none;
}

.card__title a:hover {
  color: var(--color-cyan, #2bb8c4);
}

.card__text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-style: italic;
  flex: 1;
}

.card__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card__link:hover {
  color: var(--color-navy);
}

.treatment-card {
  text-align: left;
}

.treatment-card__icon {
  margin-bottom: var(--space-2);
}

.doctor-card .placeholder-media {
  border-radius: 0;
}

.blog-card__meta {
  font-size: var(--fs-xs);
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ——— Forms ——— */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
}

.form__label .req {
  color: var(--color-rose);
}

.form__control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form__control:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(106, 168, 199, 0.2);
}

.form__control.is-invalid {
  border-color: var(--color-rose);
}

.form__control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(174, 128, 121, 0.2);
}

.form__hint {
  font-size: var(--fs-xs);
  color: var(--color-rose);
  display: none;
}

.form__group.has-error .form__hint {
  display: block;
}

.form__success {
  display: none;
  padding: var(--space-4);
  background: var(--bg-cyan);
  border-radius: var(--radius-md);
  color: var(--color-teal-dark);
  font-size: var(--fs-sm);
}

.form__success.is-visible {
  display: block;
}

textarea.form__control {
  min-height: 120px;
  resize: vertical;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.35rem;
  margin-top: auto;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--color-yellow);
}

.site-footer__contact-bar {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: 1.5rem 2rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 3.5vw, 2.75rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__contact-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: #fff;
}

.site-footer__contact-text {
  margin: 0;
  max-width: 48ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.site-footer__c-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: inherit;
  text-decoration: none;
  transition:
    background var(--transition),
    border-color var(--transition);
}

a.site-footer__c-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  color: inherit;
}

a.site-footer__c-card:hover .site-footer__c-value {
  color: var(--color-yellow);
}

.site-footer__c-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(106, 168, 199, 0.16);
  color: var(--color-cyan-light);
}

.site-footer__c-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.site-footer__c-label {
  font-size: 0.68rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__c-value {
  font-size: 0.92rem;
  font-weight: var(--fw-medium);
  color: #fff;
  word-break: break-word;
  transition: color var(--transition);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1fr 1.35fr 0.95fr;
  gap: 2rem 1.5rem;
  margin-bottom: clamp(2.25rem, 4vw, 3rem);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.site-footer__logo img {
  display: block;
  height: auto;
  width: min(104px, 34vw);
}

.site-footer__about {
  margin: 0;
  max-width: 28ch;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__social {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.site-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__social-link:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-navy);
}

.site-footer__heading {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.88rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__clinics {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer__clinics > .site-footer__heading {
  margin-bottom: 1rem;
}

.site-footer__clinic {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: left;
}

.site-footer__clinic + .site-footer__clinic {
  margin-top: 1.15rem;
}

.site-footer__clinic strong {
  display: block;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  text-align: left;
}

.site-footer__clinic p {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__clinic-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  margin-top: 0.1rem;
  padding: 0;
}

.site-footer__clinic-phones a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.4;
}

.site-footer__clinic-phones span {
  color: rgba(255, 255, 255, 0.45);
  font-weight: var(--fw-medium);
  margin-right: 0.2rem;
}

.site-footer__badge {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.site-footer__health-logo {
  display: block;
  width: min(220px, 55vw);
  height: auto;
}

.site-footer__newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.1fr);
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 1.5rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.15rem;
}

.site-footer__newsletter-copy h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: #fff;
}

.site-footer__newsletter-copy p {
  margin: 0;
  max-width: 56ch;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer__newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.site-footer__newsletter-row input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
}

.site-footer__newsletter-row input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__newsletter-row input[type="email"]:focus {
  outline: none;
  border-color: rgba(254, 186, 71, 0.55);
}

.site-footer__newsletter-btn {
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 0;
  border-radius: 12px;
  background: var(--color-yellow);
  color: var(--color-navy);
  font: inherit;
  font-size: 0.92rem;
  font-weight: var(--fw-bold);
  cursor: pointer;
  white-space: nowrap;
  transition: filter var(--transition), transform var(--transition);
}

.site-footer__newsletter-btn:hover {
  filter: brightness(1.05);
}

.site-footer__newsletter-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.site-footer__newsletter-check input {
  margin-top: 0.15rem;
  accent-color: var(--color-yellow);
}

.site-footer__newsletter-check a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.35rem;
  font-size: 0.8rem;
}

.site-footer__bottom-left,
.site-footer__bottom-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__sep {
  opacity: 0.35;
}

.site-footer__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__rating strong {
  color: #fff;
  font-weight: var(--fw-bold);
}

/* ——— Page hero (inner pages) — full-bleed görsel ——— */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(11rem, 26vh, 15rem);
  display: flex;
  align-items: flex-end;
  padding: 0;
  margin-bottom: 0;
  background: var(--color-navy);
}

.page-hero::before {
  content: none;
}

.page-hero--cyan,
.page-hero--rose,
.page-hero--cream,
.page-hero--lavender {
  background: var(--color-navy);
}

/* Header altı — page hero ile içerik arası */
.site-main > .page-hero + section.section {
  padding-top: 30px;
}

.site-main > .page-hero + section:not(.section) {
  padding-top: 30px;
}

.site-main > .page-hero + section.about-spotlight {
  padding-top: 30px;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  border-radius: 0;
  max-height: none;
  aspect-ratio: auto;
  background: var(--color-navy);
  box-shadow: none;
  overflow: hidden;
}

.page-hero__media picture {
  display: block;
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* çerçeveleme görselin içine işlendi (3:1 şerit) */
  object-position: center center;
}

.page-hero__media-badge {
  display: none;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(37, 43, 65, 0.78) 0%,
      rgba(30, 58, 76, 0.55) 48%,
      rgba(106, 168, 199, 0.22) 100%
    ),
    linear-gradient(to top, rgba(37, 43, 65, 0.55) 0%, transparent 55%);
}

.page-hero__aside {
  display: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  padding-block: clamp(1.75rem, 4vh, 2.5rem) clamp(1.5rem, 3.5vh, 2.15rem);
}

.page-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 40rem;
  min-width: 0;
}

.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding: 0.4rem 0.85rem;
  list-style: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-yellow);
}

.page-hero__breadcrumb [aria-current="page"] {
  color: var(--color-yellow);
  font-weight: var(--fw-bold);
}

.page-hero__breadcrumb-sep {
  width: 1.15rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  flex-shrink: 0;
}

.page-hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-family);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}

.page-hero__accent {
  display: inline;
  color: var(--color-yellow);
  position: relative;
}

.page-hero__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 6%;
  bottom: 0.06em;
  height: 0.18em;
  background: rgba(254, 186, 71, 0.4);
  border-radius: 999px;
  z-index: -1;
}

.page-hero__desc {
  margin: 0;
  max-width: 34rem;
  font-size: var(--fs-md);
  font-style: normal;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero__desc:empty {
  display: none;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-5);
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 9.5rem;
    align-items: flex-end;
  }

  .page-hero__inner {
    padding-block: 1.25rem 1.15rem;
  }

  .page-hero__breadcrumb {
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.7rem;
    font-size: 0.7rem;
    gap: 0.35rem;
    max-width: 100%;
  }

  .page-hero__title {
    margin: 0 0 0.55rem;
    font-size: clamp(1.45rem, 7vw, 1.95rem);
    line-height: 1.18;
  }

  .page-hero__desc {
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: none;
  }

  .page-hero__media img {
    object-position: center 35%;
  }
}

/* ——— Gallery filter ——— */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.gallery-filters__btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  background: var(--bg-white);
  border: 1.5px solid var(--color-border);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.gallery-filters__btn:hover,
.gallery-filters__btn.is-active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--bg-white);
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #ebe4dc;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.gallery-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
}

.gallery-card--landscape img {
  aspect-ratio: 4 / 3;
}

.gallery-card--portrait img {
  aspect-ratio: 576 / 1024;
  object-position: center top;
}

.gallery-card__zoom {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 22px rgba(37, 43, 65, 0.16);
  pointer-events: none;
}

.gallery-item.is-hidden {
  display: none;
}

.ba-lightbox--wide .ba-lightbox__dialog {
  width: min(100%, 960px);
}

/* ——— Steps ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  counter-reset: step;
}

.steps__item {
  position: relative;
  padding: var(--space-5);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.steps__item::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
}

/* ——— Feature list ——— */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-style: italic;
  color: var(--color-text-muted);
}

.feature-list__item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ——— Values / stats ——— */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.stat-item {
  text-align: center;
  padding: var(--space-5);
}

.stat-item__value {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

.site-nav__drawer-top {
  display: none;
}

.site-nav__close {
  display: none;
}

/* ——— Responsive nav ——— */
@media (max-width: 960px) {
  .top-header {
    display: none;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: calc(var(--z-mega) + 2);
  }

  .site-header {
    padding: 0;
  }

  .site-header__inner {
    border-radius: 0;
    padding-block: 0;
    padding-inline: 1rem;
  }

  .site-header__cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: 87%;
    max-width: 87vw;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0 0 env(safe-area-inset-bottom, 0);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(105%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: var(--z-mega);
    box-shadow: -12px 0 40px rgba(37, 43, 65, 0.18);
  }

  body.is-menu-open .site-nav {
    transform: translateX(0);
  }

  .site-nav__drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 2;
    flex-shrink: 0;
    min-height: 56px;
    padding: 0.75rem 1rem 0.75rem 1.15rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav__drawer-label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .site-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: -0.35rem -0.35rem -0.35rem 0;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--color-navy);
    cursor: pointer;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
  }

  .site-nav__list > li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav__item,
  .site-nav__item.has-mega {
    position: static;
    display: block;
    width: 100%;
  }

  .site-nav__link {
    padding: 1rem 1.15rem;
    font-size: var(--fs-base);
    justify-content: space-between;
    border-bottom: none;
    border-radius: 0;
    width: 100%;
  }

  .mega-menu {
    position: static;
    transform: none !important;
    top: auto;
    left: auto;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: #f6f8fb;
    transition: max-height 0.3s ease;
  }

  .mega-menu::before {
    display: none;
  }

  .mega-menu__layout {
    display: block;
    grid-template-columns: none;
    min-height: 0;
  }

  .mega-menu__aside {
    display: none;
  }

  .mega-menu__main {
    padding: 0.35rem 0.65rem 0.75rem;
    background: none;
  }

  .mega-menu__header {
    display: none;
  }

  .mega-menu__all {
    display: none;
  }

  .mega-menu__grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 0;
  }

  .mega-menu__item {
    padding: 0.85rem 0.65rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(37, 43, 65, 0.06);
  }

  .mega-menu__item:last-child {
    border-bottom: 0;
  }

  .mega-menu__item::after {
    display: none;
  }

  .mega-menu__desc {
    display: none;
  }

  .site-nav__item.has-mega.is-open .mega-menu {
    max-height: 80vh;
    transform: none !important;
  }

  .site-nav__mobile-cta {
    display: block;
    margin: var(--space-5) 1.15rem var(--space-6);
  }

  .site-nav__mobile-cta .btn {
    width: 100%;
  }

  .nav-overlay {
    z-index: var(--z-overlay);
  }
}

@media (min-width: 961px) {
  .site-nav__mobile-cta {
    display: none;
  }
}

@media (max-width: 1100px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.75rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__contact-bar {
    grid-template-columns: 1fr;
  }

  .site-footer__newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form__row {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .site-footer__contact-bar {
    grid-template-columns: 1fr;
  }

  .site-footer__contact-cards {
    grid-template-columns: 1fr;
  }

  .site-footer__newsletter {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__clinics {
    grid-column: 1 / -1;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .top-header__right {
    gap: var(--space-2);
  }

  .top-header__item {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand,
  .site-footer__clinics {
    grid-column: auto;
  }

  .site-footer__newsletter-row {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  .site-footer__bottom-left,
  .site-footer__bottom-right {
    justify-content: center;
  }

  .site-footer__sep {
    display: none;
  }
}

/* ——— Why Us media / dual center peek ——— */
.why-us__media {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-right: auto;
  margin-left: 0;
  padding: 0.5rem 0 1rem;
  align-self: center;
  overflow: visible;
}

.why-us__peek {
  position: relative;
  width: 100%;
  z-index: 1;
}

.why-us__peek-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1.05;
  min-height: 380px;
}

.why-us__card {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border-radius: 62% 38% 48% 52% / 48% 42% 58% 52%;
  overflow: visible;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
  transform-origin: center center;
}

.why-us__card.is-active {
  z-index: 3;
  transform: translateX(-6%) scale(1);
  opacity: 1;
  filter: none;
  pointer-events: auto;
}

.why-us__card.is-next {
  z-index: 2;
  transform: translateX(42%) scale(0.78);
  opacity: 0.95;
  filter: saturate(0.9);
  pointer-events: auto;
  cursor: pointer;
}

.why-us__frame {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  background: linear-gradient(155deg, #1e3a4c 0%, #252b41 55%, #3f2723 100%);
  box-shadow:
    0 24px 60px rgba(37, 43, 65, 0.12),
    0 0 0 10px rgba(255, 255, 255, 0.65);
  transition: box-shadow 0.45s ease;
}

.why-us__frame--mecidiyekoy {
  background:
    linear-gradient(155deg, rgba(30, 58, 76, 0.35), rgba(37, 43, 65, 0.25)),
    url("../images/mecidiyekoy-poster.jpg") center / cover no-repeat;
}

.why-us__frame--esenyurt {
  background:
    linear-gradient(155deg, rgba(63, 39, 35, 0.35), rgba(37, 43, 65, 0.25)),
    url("../images/esenyurt-poster.jpg") center / cover no-repeat;
}

.why-us__card.is-active .why-us__frame {
  box-shadow:
    0 24px 60px rgba(37, 43, 65, 0.14),
    0 0 0 10px rgba(255, 255, 255, 0.7);
}

.why-us__card.is-next .why-us__frame {
  box-shadow:
    0 16px 40px rgba(37, 43, 65, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.5);
}

.why-us__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.14);
  transform-origin: center center;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-us__card.is-playing .why-us__video {
  opacity: 1;
}

.why-us__poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: linear-gradient(160deg, rgba(37, 43, 65, 0.38), rgba(30, 58, 76, 0.18));
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.why-us__card.is-playing .why-us__poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.why-us__poster-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-us__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(254, 186, 71, 0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}

.why-us__card.is-active .why-us__play {
  animation: why-us-play-pulse 2.6s ease-in-out infinite;
}

.why-us__card.is-next .why-us__play {
  width: 44px;
  height: 44px;
  opacity: 0.9;
}

.why-us__play-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--color-navy);
}

.why-us__card.is-next .why-us__play-icon {
  border-width: 6px 0 6px 10px;
}

@keyframes why-us-play-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(254, 186, 71, 0.4); }
  50% {
    box-shadow:
      0 10px 28px rgba(254, 186, 71, 0.4),
      0 0 0 12px rgba(254, 186, 71, 0.12);
  }
}

.why-us__loc {
  position: absolute;
  z-index: 5;
  left: 8%;
  bottom: 10%;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 43, 65, 0.08);
  box-shadow: var(--shadow-md);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  letter-spacing: 0.03em;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.why-us__card.is-active .why-us__loc {
  opacity: 1;
  transform: translateY(0);
}

.why-us__card.is-next .why-us__loc {
  left: auto;
  right: 6%;
  bottom: 14%;
  opacity: 1;
  font-size: 0.7rem;
  padding: 0.4rem 0.75rem;
}

/* ——— Why Us center info panel ——— */
.why-us__centers {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: clamp(7.5rem, 14vw, 12rem);
  align-items: center;
  width: 100%;
}

.why-us__info {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: none;
  min-height: 20rem;
  padding-left: 0;
  justify-self: stretch;
}

.why-us__panel {
  display: none;
  flex-direction: column;
  gap: clamp(1.35rem, 2.2vw, 1.85rem);
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
}

.why-us__panel.is-active {
  display: flex;
  opacity: 1;
  transform: none;
  animation: why-us-panel-in 0.45s ease both;
}

@keyframes why-us-panel-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.why-us__panel-head {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  max-width: none;
}

.why-us__panel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.why-us__panel-eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--color-yellow);
}

.why-us__panel-title {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  color: var(--color-navy);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.why-us__panel-text {
  margin: 0;
  width: 100%;
  max-width: none;
  color: var(--color-text-muted);
  font-size: var(--fs-md);
  line-height: 1.7;
}

.why-us__panel-scale {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  margin-top: 0.35rem;
  padding: 1rem;
  border: none;
  border-radius: 20px;
  background: var(--bg-lavender);
}

.why-us__scale-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.75rem;
  border: none;
  border-radius: 14px;
  background: transparent;
  transition: background 0.2s ease;
}

.why-us__scale-item:hover {
  background: rgba(255, 255, 255, 0.65);
}

.why-us__scale-item:last-child,
.why-us__scale-item:not(:first-child) {
  border-right: none;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.why-us__scale-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  background: var(--bg-white);
  border: none;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
}

.why-us__scale-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.why-us__scale-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.why-us__scale-item strong {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.why-us__scale-item span {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  max-width: none;
}

.why-us__panel-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: 0.25rem;
}

.why-us__panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.why-us__panel-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-lavender);
  border: none;
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  letter-spacing: 0.01em;
}

.why-us__doctors {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  padding: 0.35rem 0.4rem;
  border-radius: 999px;
  background: var(--bg-white);
  border: 1px solid rgba(37, 43, 65, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--color-navy);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.why-us__doctors:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  color: var(--color-navy);
}

.why-us__doctors-avatars {
  display: flex;
  align-items: center;
}

.why-us__doctors-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  background: #dfe6f0;
  margin-left: -10px;
  flex-shrink: 0;
  overflow: hidden;
}

.why-us__doctors-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.why-us__doctors-avatar:first-child {
  margin-left: 0;
}

.why-us__doctors-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  white-space: nowrap;
  padding-right: 0.25rem;
}

.why-us__doctors-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid rgba(37, 43, 65, 0.08);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  flex-shrink: 0;
  margin-left: 0.15rem;
}

.why-us__doctors:hover .why-us__doctors-arrow {
  color: var(--color-navy);
  border-color: var(--color-cyan-light);
}

@media (max-width: 960px) {
  .why-us__centers {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .why-us__media {
    order: -1;
    max-width: min(420px, 94%);
    margin-inline: 0;
    padding: 0.35rem 12% 0.85rem 0;
    justify-self: start;
  }

  .why-us__info {
    order: 0;
  }

  .why-us__peek-stage {
    min-height: 340px;
  }

  .why-us__card.is-active {
    transform: translateX(-4%) scale(1);
  }

  .why-us__card.is-next {
    transform: translateX(38%) scale(0.76);
  }

  .why-us__panel-scale {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
    padding: 0.75rem;
  }

  .why-us__scale-item {
    padding: 0.55rem 0.65rem;
  }

  .why-us__scale-item:nth-child(2),
  .why-us__scale-item:nth-child(n + 3),
  .why-us__scale-item:nth-child(3) {
    border-right: 0;
    padding: 0.55rem 0.65rem;
  }
}

@media (max-width: 640px) {
  .why-us__media {
    max-width: min(380px, 92%);
    padding-right: 14%;
  }

  .why-us__peek-stage {
    aspect-ratio: 1.05;
    min-height: 310px;
  }

  .why-us__card.is-active {
    transform: translateX(0) scale(1);
  }

  .why-us__card.is-next {
    transform: translateX(32%) scale(0.74);
  }

  .why-us__card.is-active .why-us__frame {
    box-shadow:
      0 20px 48px rgba(37, 43, 65, 0.14),
      0 0 0 8px rgba(255, 255, 255, 0.7);
  }

  .why-us__loc {
    left: 10%;
    bottom: 10%;
  }

  .why-us__card.is-active .why-us__loc {
    left: 10%;
    right: auto;
    transform: none;
  }

  .why-us__card.is-next .why-us__loc {
    left: auto;
    right: 8%;
    bottom: 14%;
    opacity: 0.9;
    transform: none;
  }

  .why-us__panel-scale {
    grid-template-columns: 1fr 1fr;
  }

  .why-us__panel-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-us__play,
  .why-us__card {
    animation: none !important;
    transition: none !important;
  }
}
