/* Page-specific refinements */

.treatment-detail {
  background: #f7f9fc;
}

.treatment-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.treatment-detail__panel {
  background: #fff;
  border: 1px solid rgba(37, 43, 65, 0.08);
  border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  box-shadow: 0 10px 30px rgba(37, 43, 65, 0.05);
}

.treatment-detail__main .content-block p {
  margin: 0 0 1.15rem;
  font-size: 1.04rem;
  font-style: normal;
  line-height: 1.75;
  color: rgba(37, 43, 65, 0.78);
}

.treatment-detail__main .content-block p:last-child {
  margin-bottom: 0;
}

.treatment-detail__heading {
  margin: 2.25rem 0 1.1rem;
  font-size: clamp(1.3rem, 2.1vw, 1.6rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.treatment-detail__panel .feature-list {
  gap: 0.75rem;
}

.treatment-detail__panel .feature-list__item {
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(37, 43, 65, 0.72);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #f7f9fc;
}

.treatment-detail__panel .feature-list__item::before {
  margin-top: 0.4rem;
  background: var(--color-yellow);
}

.treatment-faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.treatment-detail__aside {
  position: sticky;
  top: calc(var(--header-height) + 1.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.treatment-detail__video {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #1c2030;
  box-shadow: 0 12px 30px rgba(37, 43, 65, 0.12);
  aspect-ratio: 16 / 10;
}

.treatment-detail__video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1c2030;
}

.treatment-detail__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(to top, rgba(14, 17, 28, 0.45), rgba(14, 17, 28, 0.12));
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.treatment-detail__play-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--color-yellow);
  box-shadow: 0 10px 28px rgba(254, 186, 71, 0.4);
  position: relative;
  animation: treatment-play-pulse 2.2s ease-in-out infinite;
}

.treatment-detail__play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent var(--color-navy);
}

.treatment-detail__play-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(254, 186, 71, 0.55);
  animation: treatment-play-ring 2.2s ease-out infinite;
}

.treatment-detail__play:hover .treatment-detail__play-icon {
  animation: none;
  transform: scale(1.06);
}

.treatment-detail__play:hover .treatment-detail__play-icon::after {
  animation: none;
  opacity: 0.85;
}

.treatment-detail__video.is-playing .treatment-detail__play {
  opacity: 0;
  pointer-events: none;
}

.treatment-detail__video-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-detail__video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.treatment-detail__more-videos {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 43, 65, 0.12);
  background: #fff;
  color: var(--color-navy);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.treatment-detail__more-videos:hover {
  background: rgba(106, 168, 199, 0.12);
  border-color: rgba(106, 168, 199, 0.45);
}

.treatment-detail__more-videos span[aria-hidden="true"] {
  font-size: 1rem;
  line-height: 1;
}

.treatment-videos {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  padding: clamp(1.4rem, 2.8vw, 2rem);
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(37, 43, 65, 0.08);
  box-shadow: 0 10px 30px rgba(37, 43, 65, 0.05);
  scroll-margin-top: 6rem;
}

.treatment-videos__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(37, 43, 65, 0.08);
}

.treatment-videos__head .section-label {
  margin-bottom: 0.45rem;
}

.treatment-videos__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.treatment-videos__lead {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(37, 43, 65, 0.62);
}

.treatment-videos__lead span {
  color: var(--color-navy);
  font-weight: 600;
}

.treatment-videos__count {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(106, 168, 199, 0.14);
  color: var(--color-navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.treatment-videos__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.treatment-videos__item {
  margin: 0;
}

.treatment-videos__item .treatment-detail__video,
.treatment-videos__item .treatment-detail__video[data-yt-short="1"] {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: none;
  margin-inline: 0;
  border-radius: 14px;
  box-shadow: none;
  overflow: hidden;
  background: #1c2030;
}

.treatment-videos__item .treatment-detail__video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.treatment-videos__item .treatment-detail__video[data-yt-short="1"] .treatment-detail__video-poster {
  object-position: center 18%;
}

.treatment-videos__item .treatment-detail__play {
  background: linear-gradient(to top, rgba(14, 17, 28, 0.5), rgba(14, 17, 28, 0.08));
}

.treatment-videos__item .treatment-detail__play-icon {
  width: 42px;
  height: 42px;
}

.treatment-videos__item .treatment-detail__play-icon::before {
  border-width: 6px 0 6px 10px;
}

@media (max-width: 900px) {
  .treatment-videos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .treatment-videos {
    padding: 1.1rem;
  }

  .treatment-videos__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .treatment-videos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

/* YouTube lightbox */
body.has-yt-lightbox {
  overflow: hidden;
}

.yt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.yt-lightbox[hidden] {
  display: none !important;
}

.yt-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 17, 28, 0.72);
  backdrop-filter: blur(4px);
}

.yt-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.yt-lightbox__frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.yt-lightbox__frame-wrap.is-short {
  width: min(360px, 100%);
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 640px);
}

.yt-lightbox__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-lightbox__close {
  position: absolute;
  top: -0.35rem;
  right: -0.15rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--color-navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.yt-lightbox__open {
  align-self: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@keyframes treatment-play-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

@keyframes treatment-play-ring {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.18);
    opacity: 0.2;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .treatment-detail__play-icon,
  .treatment-detail__play-icon::after {
    animation: none;
  }
}

.treatment-detail__contact {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: rgba(37, 43, 65, 0.7);
  border-radius: 22px;
  padding: 1.35rem 1.25rem 1.35rem;
  border: 1px solid rgba(37, 43, 65, 0.08);
  box-shadow: 0 14px 34px rgba(37, 43, 65, 0.08);
}

.treatment-detail__contact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-yellow);
}

.treatment-detail__contact-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
}

.treatment-detail__contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(106, 168, 199, 0.14);
  color: var(--color-cyan);
}

.treatment-detail__contact-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.treatment-detail__contact h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--color-navy);
  line-height: 1.25;
}

.treatment-detail__contact > p {
  margin: 0 0 1.1rem;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(37, 43, 65, 0.58);
}

.treatment-detail__contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.treatment-detail__action {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.7rem;
  border-radius: 14px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.treatment-detail__action-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.treatment-detail__action-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.treatment-detail__action strong {
  font-size: 0.88rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.treatment-detail__action span {
  font-size: 0.7rem;
  font-weight: var(--fw-medium);
}

.treatment-detail__action--call {
  background: rgba(106, 168, 199, 0.12);
  color: var(--color-navy);
}

.treatment-detail__action--call .treatment-detail__action-icon {
  background: rgba(106, 168, 199, 0.22);
  color: var(--color-cyan);
}

.treatment-detail__action--call span {
  color: rgba(37, 43, 65, 0.5);
}

.treatment-detail__action--call:hover {
  background: var(--color-cyan);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(106, 168, 199, 0.28);
}

.treatment-detail__action--call:hover .treatment-detail__action-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.treatment-detail__action--call:hover span {
  color: rgba(255, 255, 255, 0.8);
}

.treatment-detail__action--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #128c47;
}

.treatment-detail__action--wa .treatment-detail__action-icon {
  background: rgba(37, 211, 102, 0.2);
  color: #128c47;
}

.treatment-detail__action--wa span {
  color: rgba(18, 140, 71, 0.65);
}

.treatment-detail__action--wa:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.28);
}

.treatment-detail__action--wa:hover .treatment-detail__action-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.treatment-detail__action--wa:hover span {
  color: rgba(255, 255, 255, 0.85);
}

.treatment-detail__cta {
  width: 100%;
}

.treatment-detail__links {
  background: #fff;
  border: 1px solid rgba(37, 43, 65, 0.08);
  border-radius: 18px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 8px 24px rgba(37, 43, 65, 0.05);
}

.treatment-detail__links h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: var(--color-navy);
}

.treatment-detail__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.treatment-detail__links a {
  display: block;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(37, 43, 65, 0.06);
  color: rgba(37, 43, 65, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.treatment-detail__links li:last-child a {
  border-bottom: 0;
}

.treatment-detail__links a:hover {
  color: var(--color-cyan);
}

@media (max-width: 960px) {
  .treatment-detail__layout {
    grid-template-columns: 1fr;
  }

  .treatment-detail__aside {
    position: static;
    order: -1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .treatment-detail__main {
    order: 0;
  }

  .treatment-detail__links {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .treatment-detail__aside {
    display: flex;
    flex-direction: column;
  }
}

.doctors-grid .card__body {
  text-align: center;
}

.doctors-grid .card__title {
  font-size: var(--fs-md);
}

.doctors-page {
  background: #fff;
}

.doctors-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.doctor-slide--grid {
  flex: none;
  width: 100%;
  aspect-ratio: 3 / 4.05;
  scroll-snap-align: unset;
}

.doctor-slide--grid:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.doctor-slide--grid:hover .doctor-slide__media img {
  transform: scale(1.06);
}

@media (max-width: 960px) {
  .doctors-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
  }
}

@media (max-width: 560px) {
  .doctors-page__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }
}

.about-values {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
}

.randevu-panel {
  max-width: 720px;
  margin-inline: auto;
  background: var(--bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-sm);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-info-list__item strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  font-style: normal;
}

.contact-info-list__item p {
  font-style: italic;
  color: var(--color-text-muted);
  margin: 0;
}

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

  .treatment-detail__aside {
    position: static;
  }

  .randevu-panel {
    padding: var(--space-5);
  }
}

/* ——— Why Us / Journey Stage (home) ——— */
.why-us {
  position: relative;
  padding: clamp(4.5rem, 7.5vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  background: linear-gradient(
    to bottom,
    var(--bg-white) 0%,
    #fafafa 40%,
    var(--bg-white) 100%
  );
  overflow-x: clip;
  overflow-y: visible;
}

.why-us__glow {
  display: none;
}

.why-us__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 7vw, 5.5rem);
}

.why-us__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 56rem;
  width: 100%;
  margin-inline: auto;
  padding: 0;
}

.why-us__brand-label {
  display: block;
  margin: 0 0 var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--color-yellow);
  text-transform: none;
}

.why-us__route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: var(--space-2) 0 0;
  padding: 0.55rem 1.15rem;
  font-size: 0.68rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(37, 43, 65, 0.06);
  border-radius: 999px;
}

.why-us__route-sep {
  width: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-yellow));
  transform-origin: left center;
  transform: scaleX(0);
}

.why-us.is-inview .why-us__route-sep {
  animation: why-us-route-draw 0.8s ease forwards;
}

.why-us.is-inview .why-us__route-sep:nth-child(4) {
  animation-delay: 0.2s;
}

.why-us__route-end {
  color: var(--color-navy);
  font-weight: var(--fw-bold);
}

@keyframes why-us-route-draw {
  to { transform: scaleX(1); }
}

.why-us__title {
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  color: var(--color-navy);
  max-width: none;
  width: 100%;
  letter-spacing: -0.02em;
  font-weight: var(--fw-bold);
}

.why-us__title-line {
  display: inline;
}

.why-us__title-accent {
  display: inline;
  color: var(--color-cyan);
  font-weight: var(--fw-medium);
}

.why-us__title-line::after {
  content: " ";
}

.why-us__lead {
  margin: 0 auto var(--space-5);
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.7;
  max-width: 52ch;
}

.why-us [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.why-us [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .why-us [data-reveal],
  .why-us__route-sep,
  .why-us__media,
  .why-us__play,
  .why-us__panel {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .why-us__route-sep {
    transform: scaleX(1) !important;
  }
}

/* Highlight strip (why-us bottom) */
.why-us__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.why-highlight {
  --hl-bg: linear-gradient(165deg, #ffffff 0%, var(--bg-lavender) 100%);
  --hl-ink: var(--color-navy);
  --hl-muted: rgba(37, 43, 65, 0.62);
  --hl-num: rgba(37, 43, 65, 0.08);
  --hl-link: var(--color-cyan);
  --hl-icon-bg: rgba(106, 168, 199, 0.12);
  --hl-icon: var(--color-cyan);
  --hl-border: rgba(37, 43, 65, 0.06);
  --hl-shadow: 0 10px 28px rgba(37, 43, 65, 0.05);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.35rem;
  min-height: 210px;
  padding: 1.45rem 1.4rem 1.25rem;
  border-radius: 22px;
  background: var(--hl-bg);
  border: 1px solid var(--hl-border);
  box-shadow: var(--hl-shadow);
  color: var(--hl-ink);
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.why-highlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-cyan), transparent 85%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(37, 43, 65, 0.1);
  border-color: rgba(106, 168, 199, 0.28);
}

.why-highlight:hover::before {
  opacity: 1;
}

.why-highlight--accent {
  --hl-bg: linear-gradient(155deg, #2c334d 0%, var(--color-navy) 48%, #1a2034 100%);
  --hl-ink: #ffffff;
  --hl-muted: rgba(255, 255, 255, 0.7);
  --hl-num: rgba(255, 255, 255, 0.08);
  --hl-link: var(--color-cyan-light);
  --hl-icon-bg: rgba(178, 214, 231, 0.14);
  --hl-icon: var(--color-cyan-light);
  --hl-border: transparent;
  --hl-shadow: 0 16px 36px rgba(37, 43, 65, 0.22);
}

.why-highlight--accent::before {
  background: linear-gradient(180deg, var(--color-yellow), transparent 85%);
}

.why-highlight--accent::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 168, 199, 0.22), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.why-highlight--accent:hover {
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(37, 43, 65, 0.3);
}

.why-highlight__num {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  z-index: 0;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--hl-num);
  pointer-events: none;
  user-select: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}

.why-highlight:hover .why-highlight__num {
  transform: translate(-4px, 2px) scale(1.04);
}

.why-highlight__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-right: 2.5rem;
}

.why-highlight__title {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  font-weight: var(--fw-bold);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--hl-ink);
}

.why-highlight--accent .why-highlight__title {
  color: #ffffff;
}

.why-highlight__text {
  margin: 0;
  max-width: 32ch;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.55;
  color: var(--hl-muted);
}

.why-highlight--accent .why-highlight__text {
  color: rgba(255, 255, 255, 0.78);
}

.why-highlight__foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.why-highlight__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.01em;
  color: var(--hl-link);
}

.why-highlight__link svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-highlight:hover .why-highlight__link svg {
  transform: translate(2px, -2px);
}

.why-highlight__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--hl-icon-bg);
  color: var(--hl-icon);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.why-highlight__icon svg {
  width: 18px;
  height: 18px;
}

.why-highlight:hover .why-highlight__icon {
  transform: scale(1.06) rotate(-4deg);
}

.why-us__highlights .why-highlight:nth-child(1) { transition-delay: 0ms; }
.why-us__highlights .why-highlight:nth-child(2) { transition-delay: 40ms; }
.why-us__highlights .why-highlight:nth-child(3) { transition-delay: 80ms; }

@media (max-width: 900px) {
  .why-us__highlights {
    grid-template-columns: 1fr;
  }

  .why-highlight {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-highlight,
  .why-highlight__num,
  .why-highlight__link svg,
  .why-highlight__icon {
    transition: none !important;
  }

  .why-highlight:hover {
    transform: none;
  }
}

/* ——— Treatments mosaic (home) ——— */
.treatments {
  position: relative;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: var(--bg-white);
  overflow: hidden;
}

.treatments__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.treatments__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 0.25rem;
}

.treatments__brand-label {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.treatments__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1.5px solid rgba(37, 43, 65, 0.14);
  background: var(--bg-white);
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 43, 65, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.treatments__all-btn span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.treatments__all-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-cyan);
  background: var(--color-navy);
  color: var(--bg-white);
  box-shadow: 0 14px 30px rgba(37, 43, 65, 0.14);
}

.treatments__all-btn:hover span {
  transform: translateX(3px);
}

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

.treatments__tile {
  --tile-delay: 0ms;
  --tile-solid: var(--color-navy);
  --tile-solid-2: #1f2335;
  --tile-overlay-1: rgba(12, 18, 32, 0.82);
  --tile-overlay-2: rgba(24, 36, 58, 0.58);
  --tile-overlay-3: rgba(18, 26, 44, 0.2);
  --tile-overlay-dot: var(--color-yellow);
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1 / 1.2;
  color: var(--bg-white);
  isolation: isolate;
  box-shadow: 0 12px 32px rgba(37, 43, 65, 0.1);
  opacity: 0;
  transform: translateY(24px);
  transform-style: preserve-3d;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  transition-delay: var(--tile-delay);
}

.treatments__tile.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.treatments__tile:nth-child(1) { --tile-delay: 0ms; }
.treatments__tile:nth-child(2) { --tile-delay: 60ms; }
.treatments__tile:nth-child(3) { --tile-delay: 120ms; }
.treatments__tile:nth-child(4) { --tile-delay: 180ms; }
.treatments__tile:nth-child(5) { --tile-delay: 240ms; }
.treatments__tile:nth-child(6) { --tile-delay: 300ms; }

/* Mavi / Sarı sıra — sadece hover arka yüz */
.treatments__tile:nth-child(odd) {
  --tile-solid: #5a9cb8;
  --tile-solid-2: #3d7f9a;
  --tile-overlay-1: rgba(20, 22, 28, 0.78);
  --tile-overlay-2: rgba(28, 30, 36, 0.42);
  --tile-overlay-3: rgba(40, 42, 48, 0.08);
  --tile-overlay-dot: var(--color-cyan-light);
  --tile-text: #ffffff;
  --tile-text-muted: rgba(255, 255, 255, 0.9);
  --tile-accent: var(--color-yellow);
  --tile-panel: rgba(255, 255, 255, 0.12);
  --tile-panel-border: rgba(255, 255, 255, 0.16);
  --tile-btn-ghost-bg: rgba(255, 255, 255, 0.12);
  --tile-btn-ghost-border: rgba(255, 255, 255, 0.24);
  --tile-btn-ghost-text: #ffffff;
}

.treatments__tile:nth-child(even) {
  --tile-solid: #e09a2a;
  --tile-solid-2: #c47e16;
  --tile-overlay-1: rgba(20, 22, 28, 0.78);
  --tile-overlay-2: rgba(28, 30, 36, 0.42);
  --tile-overlay-3: rgba(40, 42, 48, 0.08);
  --tile-overlay-dot: #ffe1ae;
  --tile-text: #ffffff;
  --tile-text-muted: rgba(255, 255, 255, 0.92);
  --tile-accent: #ffffff;
  --tile-panel: rgba(255, 255, 255, 0.12);
  --tile-panel-border: rgba(255, 255, 255, 0.16);
  --tile-btn-ghost-bg: rgba(255, 255, 255, 0.14);
  --tile-btn-ghost-border: rgba(255, 255, 255, 0.28);
  --tile-btn-ghost-text: #ffffff;
}

.treatments__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #f0f0f0;
  transition: opacity 0.35s ease;
}

.treatments__media > img:not(.treatments__badge) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.treatments__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  width: clamp(42px, 12%, 58px);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top left;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s ease;
}

.treatments__overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(
    to top,
    var(--tile-overlay-1) 0%,
    var(--tile-overlay-2) 52%,
    var(--tile-overlay-3) 82%,
    transparent 100%
  );
  transition: opacity 0.35s ease, transform 0.4s ease;
}

.treatments__name {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(7px);
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--bg-white);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.treatments__name::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--tile-overlay-dot);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}

.treatments__back {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1.9rem 1.5rem 1.45rem 1.55rem;
  background: linear-gradient(155deg, var(--tile-solid) 0%, var(--tile-solid-2) 100%);
  color: var(--tile-text);
  opacity: 0;
  transform: rotateX(-9deg) scale(0.96);
  transition: opacity 0.38s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.treatments__back::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%);
  pointer-events: none;
}

.treatments__back h3 {
  position: relative;
  margin: 0;
  padding-bottom: 0.7rem;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--tile-text);
}

.treatments__back h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.75rem;
  height: 2.5px;
  border-radius: 999px;
  background: var(--tile-accent);
}

.treatments__back p {
  position: relative;
  margin: 0;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: var(--fw-regular);
  line-height: 1.58;
  letter-spacing: 0.01em;
  color: var(--tile-text-muted);
  max-width: 33ch;
}

.treatments__points {
  position: relative;
  margin: 0.35rem 0 0;
  padding: 0.9rem 0 0.2rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.treatments__points li {
  position: relative;
  padding-left: 1.2rem;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: var(--fw-medium);
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: var(--tile-text);
}

.treatments__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--tile-accent);
}

.treatments__back::after {
  content: none;
}

.treatments__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.55rem;
  width: 100%;
}

.treatments__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease,
    background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.treatments__btn--primary {
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
  color: var(--bg-white);
  box-shadow: 0 12px 28px rgba(37, 43, 65, 0.22);
}

.treatments__tile:nth-child(even) .treatments__btn--primary {
  background: var(--color-navy);
  color: var(--bg-white);
}

.treatments__tile:nth-child(odd) .treatments__btn--primary {
  background: var(--color-yellow);
  color: var(--color-navy);
  box-shadow: 0 12px 28px rgba(254, 186, 71, 0.26);
}

.treatments__btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 48%,
    transparent 66%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.treatments__btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--tile-btn-ghost-bg);
  border: 1px solid var(--tile-btn-ghost-border);
  color: var(--tile-btn-ghost-text);
  cursor: pointer;
  margin-left: auto;
}

.treatments__btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 36px rgba(37, 43, 65, 0.28);
}

.treatments__tile:nth-child(odd) .treatments__btn--primary:hover {
  background: #ffc65c;
  box-shadow: 0 18px 42px rgba(254, 186, 71, 0.45);
}

.treatments__btn--primary:hover::after {
  transform: translateX(120%);
}

.treatments__btn--primary:active {
  transform: translateY(-1px) scale(0.99);
}

.treatments__btn--ghost:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  filter: brightness(1.06);
}

.treatments__flip-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  color: #ffffff;
  opacity: 1;
  animation: treatments-flip-float 2.6s ease-in-out infinite;
  transition: opacity 0.35s ease, transform 0.45s ease;
  pointer-events: none;
}

.treatments__flip-icon svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  stroke: #ffffff;
}

.treatments__flip-icon path {
  stroke: #ffffff;
}

@keyframes treatments-flip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.treatments__tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 54px rgba(37, 43, 65, 0.2);
  z-index: 2;
}

.treatments__tile:hover .treatments__media > img:not(.treatments__badge) {
  transform: scale(1.08);
  opacity: 0;
}

.treatments__tile:hover .treatments__badge {
  opacity: 0;
  transform: translateY(-8px);
}

.treatments__tile:hover .treatments__flip-icon {
  opacity: 0;
  transform: translateY(-6px) rotate(-180deg) scale(0.92);
  animation: none;
}

.treatments__tile:hover .treatments__overlay {
  opacity: 0;
  transform: translateY(0);
}

.treatments__tile:hover .treatments__name {
  opacity: 0;
  transform: translateY(4px);
}

.treatments__tile:hover .treatments__back {
  opacity: 1;
  transform: rotateX(0deg) scale(1);
  pointer-events: auto;
}

@media (max-width: 960px) {
  .treatments__mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .treatments__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .treatments__mosaic {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .treatments__tile {
    aspect-ratio: 16 / 13;
    border-radius: 18px;
  }

  .treatments__overlay {
    padding: 1rem 1rem 1.05rem;
  }

  .treatments__back {
    padding: 1.45rem 1.15rem 1.2rem;
    gap: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .treatments__tile,
  .treatments__media > img:not(.treatments__badge),
  .treatments__overlay,
  .treatments__back,
  .treatments__flip-icon,
  .treatments__badge {
    animation: none !important;
    transition: none !important;
  }

  .treatments__tile {
    opacity: 1;
    transform: none;
  }

  .treatments__back {
    transform: none;
  }
}

/* ——— Doctors slider (home) ——— */
.doctors {
  position: relative;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: var(--bg-white);
  overflow: hidden;
}

.doctors__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.doctors__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 0.25rem;
}

.doctors__title {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.doctors__tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.doctors__nav {
  display: inline-flex;
  gap: 0.5rem;
}

.doctors__nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid rgba(37, 43, 65, 0.14);
  background: var(--bg-white);
  color: var(--color-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 8px 22px rgba(37, 43, 65, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.doctors__nav-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-cyan);
  background: var(--color-navy);
  color: var(--bg-white);
  box-shadow: 0 14px 30px rgba(37, 43, 65, 0.14);
}

.doctors__nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  box-shadow: none;
  background: var(--bg-white);
  border-color: rgba(37, 43, 65, 0.12);
  color: var(--color-navy);
}

.doctors__viewport {
  overflow: hidden;
  width: 100%;
}

.doctors__track {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.15rem;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
}

.doctors__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.doctors__track::-webkit-scrollbar {
  display: none;
}

.doctor-slide {
  --doctors-peek: 3.25rem;
  position: relative;
  flex: 0 0 calc((100% - 1.8rem - var(--doctors-peek)) / 3);
  aspect-ratio: 3 / 4.05;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #1c2030;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  isolation: isolate;
  transition: box-shadow 0.35s ease;
}

.doctors__track:not(.is-dragging) .doctor-slide:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.doctor-slide__num {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 2;
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  user-select: none;
}

.doctor-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2a3148;
  overflow: hidden;
}

.doctor-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transform: scale(1.02);
  transform-origin: center top;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.doctor-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 17, 28, 0.78) 0%,
    rgba(20, 24, 36, 0.26) 34%,
    transparent 64%
  );
  pointer-events: none;
}

.doctors__track:not(.is-dragging) .doctor-slide:hover .doctor-slide__media img {
  transform: scale(1.06);
}

.doctor-slide__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  padding: 1.1rem 1.15rem 1.2rem;
  box-sizing: border-box;
}

.doctor-slide__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(254, 186, 71, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.doctor-slide__name {
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #ffffff;
  word-break: break-word;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.doctors__progress {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.35rem;
}

.doctors__progress-track {
  position: relative;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: rgba(37, 43, 65, 0.1);
  overflow: hidden;
}

.doctors__progress-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 35%;
  border-radius: inherit;
  background: var(--color-navy);
  transition: left 0.2s ease, width 0.2s ease;
}

.doctors__viewport:has(.is-dragging) + .doctors__progress .doctors__progress-thumb {
  transition: none;
}

@media (max-width: 900px) {
  .doctor-slide {
    --doctors-peek: 2.75rem;
    flex-basis: calc((100% - 0.9rem - var(--doctors-peek)) / 2);
  }
}

@media (max-width: 720px) {
  .doctors__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .doctors__tools {
    width: 100%;
    justify-content: space-between;
  }

  .doctor-slide {
    --doctors-peek: 1.5rem;
    flex-basis: calc((100% - 0.9rem - var(--doctors-peek)) / 2);
    border-radius: 16px;
  }

  .doctor-slide__name {
    font-size: 0.92rem;
  }

  .doctor-slide__tag {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .doctors__track {
    scroll-behavior: auto;
  }

  .doctor-slide,
  .doctor-slide__media img,
  .doctor-slide__media::after {
    transition: none;
  }

  .doctors__track:not(.is-dragging) .doctor-slide:hover .doctor-slide__media img {
    transform: scale(1.02);
  }
}

/* ——— Patient reviews (home) ——— */
.reviews {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--bg-white);
  overflow: hidden;
}

.reviews__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.reviews__atmosphere::before {
  content: "catch the smile";
  position: absolute;
  right: -2%;
  top: 8%;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  color: rgba(37, 43, 65, 0.03);
  white-space: nowrap;
  transform: rotate(-8deg);
  pointer-events: none;
}

.reviews__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.reviews__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
}

.reviews__brand-label {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.reviews__tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

.reviews__write {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-end;
  margin-top: auto;
  padding: 0.78rem 1.15rem;
  border-radius: 12px;
  border: 1.5px solid rgba(37, 43, 65, 0.14);
  background: var(--bg-white);
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 43, 65, 0.05);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.reviews__write span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.reviews__write:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 43, 65, 0.14);
}

.reviews__write:hover span {
  transform: translateX(3px);
}

.reviews__stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.45fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.reviews__spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: 28px;
  background: linear-gradient(
    to bottom,
    #f7f9fc 0%,
    #f7f9fc 72%,
    var(--bg-cyan) 100%
  );
  color: var(--color-navy);
  overflow: hidden;
  isolation: isolate;
  min-height: 100%;
  border: 1px solid rgba(37, 43, 65, 0.06);
  box-shadow: none;
}

.reviews__spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 43, 65, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 43, 65, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 70%,
    rgba(0, 0, 0, 0.45) 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 70%,
    rgba(0, 0, 0, 0.45) 88%,
    transparent 100%
  );
}

.reviews__spotlight::after {
  content: "“";
  position: absolute;
  right: 1.1rem;
  top: 0.4rem;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: rgba(37, 43, 65, 0.06);
  z-index: 0;
}

.reviews__route,
.reviews__title,
.reviews__score,
.reviews__write {
  position: relative;
  z-index: 1;
}

.reviews__route {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 43, 65, 0.1);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  color: var(--color-navy);
}

.reviews__route-sep {
  width: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 43, 65, 0.35), transparent);
}

.reviews__route-end {
  color: var(--color-cyan);
  font-weight: var(--fw-bold);
}

.reviews__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-family);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.reviews__title-script {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--color-yellow);
  letter-spacing: 0.01em;
}

.reviews__score {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.35rem 0 0;
  padding: 0;
  border: 0;
}

.reviews__score-num {
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-navy);
}

.reviews__score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.reviews__score-meta strong {
  color: var(--color-navy);
  font-weight: var(--fw-medium);
}

.reviews__stars {
  color: var(--color-yellow);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  line-height: 1;
}

.reviews__nav {
  display: inline-flex;
  gap: 0.5rem;
}

.reviews__nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid rgba(37, 43, 65, 0.14);
  background: var(--bg-white);
  color: var(--color-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.reviews__nav-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-cyan);
  background: var(--color-navy);
  color: var(--bg-white);
  box-shadow: 0 14px 30px rgba(37, 43, 65, 0.14);
}

.reviews__nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  box-shadow: none;
  background: var(--bg-white);
  border-color: rgba(37, 43, 65, 0.12);
  color: var(--color-navy);
}

.reviews__viewport {
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.reviews__track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
  padding: 0.15rem 0.1rem 0.35rem;
  width: 100%;
  min-height: 100%;
}

.reviews__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.review-panel {
  --reviews-peek: 4.5rem;
  position: relative;
  flex: 0 0 calc((100% - 1rem - var(--reviews-peek)) / 2);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-height: 100%;
  height: auto;
  padding: 1.7rem 1.55rem 1.7rem;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(37, 43, 65, 0.08);
  box-shadow: none;
  scroll-snap-align: start;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease;
}

.reviews__track:not(.is-dragging) .review-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 168, 199, 0.35);
}

.review-panel__index {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(37, 43, 65, 0.06);
  z-index: 0;
}

.review-panel__chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(106, 168, 199, 0.12);
  color: var(--color-teal-dark);
  font-size: 0.74rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
}

.review-panel__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  flex: 1 1 auto;
}

.review-panel__quote p {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--color-navy);
}

.review-panel__quote p::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 0;
  color: var(--color-rose);
  margin-right: 0.15rem;
  vertical-align: -0.3em;
}

.review-panel__foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(37, 43, 65, 0.08);
}

.review-panel__avatar {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--color-rose-light), var(--color-cyan-light));
  color: var(--color-navy);
  font-size: 1rem;
  font-weight: var(--fw-bold);
}

.review-panel__meta {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  flex: 1;
}

.review-panel__meta strong {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--color-navy);
}

.review-panel__meta span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.review-panel__stars {
  color: var(--color-yellow);
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}

/* Panel variants */
.review-panel--navy {
  background: linear-gradient(
    to bottom,
    #f7f9fc 0%,
    #f7f9fc 72%,
    var(--bg-cyan) 100%
  );
  border-color: rgba(37, 43, 65, 0.08);
  color: var(--color-navy);
  box-shadow: none;
}

.review-panel--navy .review-panel__index {
  color: rgba(37, 43, 65, 0.06);
}

.review-panel--navy .review-panel__chip {
  background: rgba(106, 168, 199, 0.14);
  color: var(--color-teal-dark);
}

.review-panel--navy .review-panel__quote p {
  color: var(--color-navy);
}

.review-panel--navy .review-panel__quote p::before {
  color: var(--color-rose);
}

.review-panel--navy .review-panel__foot {
  border-top-color: rgba(37, 43, 65, 0.08);
}

.review-panel--navy .review-panel__avatar {
  background: linear-gradient(145deg, var(--color-rose-light), var(--color-cyan-light));
  color: var(--color-navy);
}

.review-panel--navy .review-panel__meta strong {
  color: var(--color-navy);
}

.review-panel--navy .review-panel__meta span {
  color: var(--color-text-muted);
}

.review-panel--rose {
  background: #fff;
}

.review-panel--rose .review-panel__chip {
  background: rgba(174, 128, 121, 0.14);
  color: var(--color-brown-dark);
}

.review-panel--cyan {
  background: #fff;
}

.reviews__progress {
  display: flex;
  justify-content: flex-end;
}

.reviews__progress-track {
  position: relative;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: rgba(37, 43, 65, 0.08);
  overflow: hidden;
}

.reviews__progress-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 35%;
  border-radius: inherit;
  background: var(--color-navy);
  transition: left 0.2s ease, width 0.2s ease;
}

.reviews__viewport:has(.is-dragging) + .reviews__progress .reviews__progress-thumb {
  transition: none;
}

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

  .reviews__spotlight {
    min-height: 0;
  }

  .reviews__viewport,
  .reviews__track {
    min-height: 0;
    height: auto;
  }

  .review-panel {
    --reviews-peek: 3rem;
    flex-basis: calc((100% - 1rem - var(--reviews-peek)) / 2);
    min-height: 0;
    align-self: flex-start;
  }
}

@media (max-width: 720px) {
  .reviews__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews__tools {
    width: 100%;
    justify-content: flex-end;
    margin-left: 0;
  }

  .review-panel {
    --reviews-peek: 2.25rem;
    flex-basis: calc(86% - var(--reviews-peek));
    min-height: 0;
    border-radius: 22px;
  }

  .reviews__track:not(.is-dragging) .review-panel:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews__track {
    scroll-behavior: auto;
  }

  .review-panel {
    transition: none;
  }

  .reviews__track:not(.is-dragging) .review-panel:hover {
    transform: none;
  }
}

/* ——— Öncesi & Sonrası ——— */
.ba {
  position: relative;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: var(--bg-white);
  overflow: hidden;
}

.ba__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.ba__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 0.25rem;
}

.ba__heading {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.ba__title {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.ba__lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.45;
  color: rgba(37, 43, 65, 0.62);
}

.ba__tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ba__nav {
  display: inline-flex;
  gap: 0.5rem;
}

.ba__nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid rgba(37, 43, 65, 0.14);
  background: var(--bg-white);
  color: var(--color-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 8px 22px rgba(37, 43, 65, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.ba__nav-btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-cyan);
  background: var(--color-navy);
  color: var(--bg-white);
  box-shadow: 0 14px 30px rgba(37, 43, 65, 0.14);
}

.ba__nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  box-shadow: none;
  background: var(--bg-white);
  border-color: rgba(37, 43, 65, 0.12);
  color: var(--color-navy);
}

.ba__viewport {
  overflow: hidden;
  width: 100%;
}

.ba__track {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.15rem;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
}

.ba__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.ba__track::-webkit-scrollbar {
  display: none;
}

.ba-card {
  --ba-peek: 2.75rem;
  position: relative;
  flex: 0 0 calc((100% - 2.7rem - var(--ba-peek)) / 4);
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #ebe4dc;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  cursor: grab;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.ba__track:not(.is-dragging) .ba-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.ba-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 576 / 1024;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  -webkit-user-drag: none;
}

.ba-card__zoom {
  position: absolute;
  left: 0.7rem;
  right: auto;
  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;
  animation: ba-zoom-float 2.4s ease-in-out infinite;
}

.ba-card__zoom svg {
  display: block;
  width: 17px;
  height: 17px;
}

.ba-card__zoom::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  animation: ba-zoom-ring 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ba-zoom-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

@keyframes ba-zoom-ring {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.15;
    transform: scale(1.12);
  }
}

/* Before / After lightbox */
.ba-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.ba-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ba-lightbox[hidden] {
  display: none !important;
}

.ba-lightbox:not([hidden]) {
  display: grid;
}

.ba-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 17, 28, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.ba-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: min(90vh, 920px);
  margin: 0;
  transform: translateY(18px) scale(0.92);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.ba-lightbox.is-open .ba-lightbox__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ba-lightbox.is-closing .ba-lightbox__dialog {
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  transition-duration: 0.28s;
}

.ba-lightbox__figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ebe4dc;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.ba-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(88vh, 900px);
  object-fit: contain;
  object-position: center top;
}

.ba-lightbox__close,
.ba-lightbox__nav {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.ba-lightbox__close:hover,
.ba-lightbox__nav:hover {
  background: var(--color-navy);
  color: #fff;
  transform: translateY(-2px);
}

.ba-lightbox__close {
  top: -0.65rem;
  right: -0.65rem;
}

.ba-lightbox__nav--prev {
  left: calc(-46px - 0.85rem);
  top: 50%;
  transform: translateY(-50%);
}

.ba-lightbox__nav--next {
  right: calc(-46px - 0.85rem);
  top: 50%;
  transform: translateY(-50%);
}

.ba-lightbox__nav--prev:hover,
.ba-lightbox__nav--next:hover {
  transform: translateY(calc(-50% - 2px));
}

.ba-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-navy);
}

body.is-ba-lightbox-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .ba-lightbox {
    padding: 1rem 0.75rem 1.25rem;
  }

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

  .ba-lightbox__close {
    top: -0.4rem;
    right: 0;
  }

  .ba-lightbox__nav--prev,
  .ba-lightbox__nav--next {
    top: auto;
    bottom: -3.4rem;
    transform: none;
  }

  .ba-lightbox__nav--prev {
    left: calc(50% - 3.1rem);
  }

  .ba-lightbox__nav--next {
    right: calc(50% - 3.1rem);
  }

  .ba-lightbox__nav--prev:hover,
  .ba-lightbox__nav--next:hover {
    transform: translateY(-2px);
  }

  .ba-lightbox__nav:disabled {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ba-lightbox,
  .ba-lightbox__dialog {
    transition: none;
  }

  .ba-lightbox.is-open .ba-lightbox__dialog {
    transform: none;
  }
}

.ba__progress {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.35rem;
}

.ba__progress-track {
  position: relative;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: rgba(37, 43, 65, 0.1);
  overflow: hidden;
}

.ba__progress-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 35%;
  border-radius: inherit;
  background: var(--color-navy);
  transition: left 0.2s ease, width 0.2s ease;
}

.ba__viewport:has(.is-dragging) + .ba__progress .ba__progress-thumb {
  transition: none;
}

@media (max-width: 1100px) {
  .ba-card {
    --ba-peek: 2.5rem;
    flex-basis: calc((100% - 1.8rem - var(--ba-peek)) / 3);
  }
}

@media (max-width: 900px) {
  .ba-card {
    --ba-peek: 2.5rem;
    flex-basis: calc((100% - 0.9rem - var(--ba-peek)) / 2);
  }
}

@media (max-width: 720px) {
  .ba__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .ba__tools {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .ba-card {
    --ba-peek: 2.25rem;
    flex-basis: calc(72% - var(--ba-peek));
    border-radius: 18px;
  }

  .ba-card__zoom {
    width: 36px;
    height: 36px;
    left: 0.55rem;
    right: auto;
    bottom: 0.55rem;
  }

  .ba__track:not(.is-dragging) .ba-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ba__track {
    scroll-behavior: auto;
  }

  .ba-card {
    transition: none;
  }

  .ba-card__zoom,
  .ba-card__zoom::before {
    animation: none;
  }

  .ba__track:not(.is-dragging) .ba-card:hover {
    transform: none;
  }
}

/* ——— FAQ (home) ——— */
.faq {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #f8f9fc;
  overflow: hidden;
}

.faq__atmosphere {
  display: none;
}

.faq__inner {
  position: relative;
  z-index: 1;
}

.faq__stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.35fr);
  gap: clamp(1.35rem, 3vw, 2.35rem);
  align-items: stretch;
}

.faq__spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.45rem, 2.8vw, 2rem);
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(37, 43, 65, 0.06);
  overflow: hidden;
  isolation: isolate;
  min-height: 100%;
  color: var(--color-navy);
}

.faq__spotlight::before,
.faq__spotlight::after {
  content: none;
  display: none;
}

.faq__route,
.faq__title,
.faq__lead,
.faq-chat {
  position: relative;
  z-index: 1;
}

.faq__route {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 43, 65, 0.1);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
  font-weight: var(--fw-medium);
  color: var(--color-navy);
}

.faq__route-sep {
  width: 1.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 43, 65, 0.35), transparent);
}

.faq__route-end {
  color: var(--color-cyan);
  font-weight: var(--fw-bold);
}

.faq__title {
  margin: 0.15rem 0 0;
  font-family: var(--font-family);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  white-space: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.faq__lead {
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(37, 43, 65, 0.62);
}

.faq__agent {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.faq__agent img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px rgba(106, 168, 199, 0.45);
}

.faq__cta-online {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  color: rgba(37, 43, 65, 0.55);
  line-height: 1;
}

.faq__cta-online::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #3ecf8e;
  box-shadow: 0 0 0 3px rgba(62, 207, 142, 0.2);
}

.faq-chat {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-self: stretch;
  width: 100%;
  max-width: 320px;
  margin-top: auto;
  padding: 0.85rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(37, 43, 65, 0.07);
  box-shadow: 0 12px 32px rgba(37, 43, 65, 0.06);
}

.faq-chat__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.faq-chat__head-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.faq-chat__head-copy strong {
  font-size: 0.9rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--color-navy);
  line-height: 1.25;
}

.faq-chat__thread {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 4.5rem;
  max-height: 9rem;
  overflow-y: auto;
  padding: 0.15rem 0.1rem;
}

.faq-chat__bubble {
  max-width: 92%;
  padding: 0.65rem 0.85rem;
  border-radius: 16px;
  font-size: 0.84rem;
  line-height: 1.45;
  word-break: break-word;
}

.faq-chat__bubble--in {
  align-self: flex-start;
  background: #f3f6fa;
  color: rgba(37, 43, 65, 0.78);
  border-bottom-left-radius: 6px;
}

.faq-chat__bubble--out {
  align-self: flex-end;
  background: rgba(37, 211, 102, 0.14);
  color: #0b5c4a;
  border-bottom-right-radius: 6px;
}

.faq-chat__composer {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.35rem 0.35rem 0.85rem;
  border-radius: 999px;
  background: #f8f9fc;
  border: 1px solid rgba(37, 43, 65, 0.08);
}

.faq-chat__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  font-size: 0.86rem;
  color: var(--color-navy);
  padding: 0.55rem 0;
}

.faq-chat__input::placeholder {
  color: rgba(37, 43, 65, 0.4);
}

.faq-chat__send {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.28);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-chat__send:hover {
  background: #1ebe57;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.34);
}

.faq-chat__send:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.faq__panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(37, 43, 65, 0.07);
  box-shadow: 0 18px 48px rgba(37, 43, 65, 0.06);
  min-height: 100%;
}

.faq__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.35rem;
}

.faq__panel-label {
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.faq__panel-count {
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  color: rgba(37, 43, 65, 0.45);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--bg-lavender);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.faq-item {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f7f9fc 100%);
  border: 1px solid rgba(37, 43, 65, 0.07);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.faq-item[open] {
  background: #fff;
  border-color: rgba(106, 168, 199, 0.4);
  box-shadow: 0 14px 34px rgba(37, 43, 65, 0.08);
}

.faq-item[open]::before {
  background: var(--color-yellow);
}

.faq-item__q {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  cursor: pointer;
  user-select: none;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__num {
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  color: rgba(37, 43, 65, 0.28);
  min-width: 1.5rem;
}

.faq-item[open] .faq-item__num {
  color: var(--color-cyan);
}

.faq-item__label {
  font-size: clamp(0.96rem, 1.15vw, 1.06rem);
  font-weight: var(--fw-medium);
  line-height: 1.35;
  color: var(--color-navy);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1.5px solid rgba(37, 43, 65, 0.1);
  background: #fff;
  position: relative;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s ease,
    box-shadow 0.3s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-navy);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.faq-item__icon::before {
  width: 12px;
  height: 1.8px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1.8px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__icon {
  background: var(--color-navy);
  border-color: var(--color-navy);
  box-shadow: 0 8px 18px rgba(37, 43, 65, 0.18);
  transform: rotate(90deg);
}

.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after {
  background: #fff;
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
}

.faq-item__a {
  padding: 0 1.15rem 1.2rem 3.35rem;
}

.faq-item__a p {
  margin: 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(37, 43, 65, 0.06);
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(37, 43, 65, 0.68);
}

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

  .faq-chat {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .faq-item__a {
    padding-left: 1.15rem;
  }

  .faq__spotlight,
  .faq__panel {
    border-radius: 22px;
    padding: 1.15rem;
  }

  .faq__title {
    white-space: normal;
    font-size: clamp(1.55rem, 6vw, 1.85rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__icon,
  .faq-chat__send {
    transition: none;
  }

  .faq-chat__send:hover {
    transform: none;
  }
}

/* ——— Blog (home) ——— */
.home-blog {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #f8f9fc;
}

.home-blog__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.75rem);
}

.home-blog__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-blog__heading {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.home-blog__title {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.home-blog__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(37, 43, 65, 0.58);
}

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.blog-tile {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(37, 43, 65, 0.08);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(37, 43, 65, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.blog-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 168, 199, 0.32);
  box-shadow: 0 20px 44px rgba(37, 43, 65, 0.12);
}

.blog-tile__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-tile__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #1c2030;
}

.blog-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-tile:hover .blog-tile__media img {
  transform: scale(1.06);
}

.blog-tile__cat {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-navy);
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
}

.blog-tile__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.2rem 1.2rem 1.35rem;
  flex: 1;
}

.blog-tile__date {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(37, 43, 65, 0.48);
}

.blog-tile__title {
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.blog-tile__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(37, 43, 65, 0.62);
  flex: 1;
}

.blog-tile__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: var(--fw-medium);
  color: var(--color-cyan);
}

.blog-tile__more i {
  display: inline-block;
  transition: transform 0.25s ease;
  font-style: normal;
}

.blog-tile:hover .blog-tile__more i {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .home-blog__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .home-blog__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .home-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .home-blog__grid .blog-tile:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-tile,
  .blog-tile__media img {
    transition: none;
  }

  .blog-tile:hover {
    transform: none;
  }

  .blog-tile:hover .blog-tile__media img {
    transform: none;
  }
}

/* ——— Locations (home) ——— */
.locations {
  padding: clamp(4.75rem, 8vw, 7.5rem) 0;
  background: #fff;
}

.locations__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}

.locations__map {
  position: relative;
  min-width: 0;
}

.locations__map-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #edf0f4;
}

.locations__map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.08) contrast(1.02);
}

.locations__map-card {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  z-index: 2;
  width: min(calc(100% - 2.5rem), 280px);
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(20, 28, 45, 0.14);
}

.locations__map-card.is-hidden {
  display: none;
}

.locations__map-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.locations__map-open {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.84rem;
  font-weight: var(--fw-medium);
  color: var(--color-cyan);
  text-decoration: none;
  white-space: nowrap;
}

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

.locations__map-close {
  width: 26px;
  height: 26px;
  border: 0;
  padding: 0;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: transparent;
  color: rgba(37, 43, 65, 0.4);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.locations__map-close:hover {
  color: var(--color-navy);
  background: #f3f5f8;
}

.locations__map-card-block {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.locations__map-card-block + .locations__map-card-block {
  margin-top: 0.9rem;
}

.locations__map-card-block span {
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  color: rgba(37, 43, 65, 0.45);
}

.locations__map-card-block p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  line-height: 1.45;
  color: var(--color-navy);
}

.locations__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.locations__intro {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.locations__title {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(1.9rem, 3.1vw, 2.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.locations__lead {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(37, 43, 65, 0.55);
}

.locations__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem 1.35rem 1.4rem 1.45rem;
  border-radius: 20px;
  background: #f5f6f8;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.location-card:hover {
  background: #f0f2f5;
}

.location-card.is-active {
  background: #fff;
  border-color: rgba(37, 43, 65, 0.08);
  box-shadow: 0 10px 30px rgba(37, 43, 65, 0.07);
}

.location-card__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.location-card__name {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.18rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.location-card__flag {
  flex-shrink: 0;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.location-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
}

.location-card__row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: start;
  column-gap: 0.65rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(37, 43, 65, 0.62);
  text-decoration: none;
}

a.location-card__row {
  color: var(--color-navy);
}

a.location-card__row:hover {
  color: var(--color-cyan);
}

.location-card__icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(106, 168, 199, 0.12);
  color: var(--color-cyan);
}

.location-card__icon svg {
  display: block;
}

.location-card__phones {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}

.location-card__phones em {
  font-style: normal;
  font-weight: var(--fw-medium);
  color: rgba(37, 43, 65, 0.45);
  margin-right: 0.25rem;
}

.location-card__dir {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(106, 168, 199, 0.12);
  font-size: 0.84rem;
  font-weight: var(--fw-medium);
  color: var(--color-cyan);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.location-card__dir:hover {
  background: var(--color-cyan);
  color: #fff;
}

.location-card__media {
  position: relative;
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
}

.location-card__thumb {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  overflow: hidden;
  background: #dde3ea;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(37, 43, 65, 0.12);
}

.location-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card__ring {
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  border: 1.5px solid rgba(106, 168, 199, 0.45);
  pointer-events: none;
  animation: location-ring-wave 2.8s ease-out infinite;
}

.location-card__ring--2 {
  inset: 4px;
  border-color: rgba(254, 186, 71, 0.4);
  animation-delay: 0.55s;
}

.location-card__ring--3 {
  inset: -2px;
  border-color: rgba(106, 168, 199, 0.28);
  animation-delay: 1.1s;
}

@keyframes location-ring-wave {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.08);
    opacity: 0.25;
  }
  100% {
    transform: scale(1.16);
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .locations__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .locations__map-frame {
    aspect-ratio: 16 / 11;
    border-radius: 20px;
  }
}

@media (max-width: 560px) {
  .location-card {
    padding: 1.25rem 1.15rem;
    gap: 0.85rem;
  }

  .location-card__media {
    width: 96px;
    height: 96px;
  }

  .location-card__thumb {
    width: 70px;
    height: 70px;
  }

  .locations__map-card {
    left: 0.85rem;
    top: 0.85rem;
    width: calc(100% - 1.7rem);
    padding: 0.95rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-card {
    transition: none;
  }

  .location-card__ring {
    animation: none;
    opacity: 0.45;
    transform: none;
  }
}

/* ——— Contact (home) ——— */
.home-contact {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #fff;
  overflow: hidden;
}

.home-contact::before {
  content: none;
  display: none;
}

.home-contact::after {
  content: none;
  display: none;
}

.home-contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.home-contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-navy);
}

.home-contact__title {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.home-contact__lead {
  margin: 0 0 0.75rem;
  max-width: 52ch;
  font-family: var(--font-family);
  font-size: 1.02rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: rgba(37, 43, 65, 0.62);
}

.home-contact__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.home-contact__card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: #f8f9fc;
  border: 1px solid rgba(37, 43, 65, 0.06);
}

.home-contact__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(106, 168, 199, 0.14);
  color: var(--color-cyan);
}

.home-contact__card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.82rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  color: rgba(37, 43, 65, 0.5);
}

.home-contact__card span,
.home-contact__card a {
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--color-navy);
  text-decoration: none;
}

.home-contact__card a:hover {
  color: var(--color-cyan);
}

.home-contact__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(37, 43, 65, 0.08);
  box-shadow: 0 16px 40px rgba(37, 43, 65, 0.08);
}

.home-contact__form-top h3 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.home-contact__form-top p {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: rgba(37, 43, 65, 0.55);
}

.home-contact__form .form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.home-contact__form .form__control {
  border-radius: 12px;
  border-color: rgba(37, 43, 65, 0.12);
  background: #f7f9fc;
}

.home-contact__form .form__control:focus {
  background: #fff;
}

.home-contact__submit {
  align-self: flex-start;
  margin-top: 0.35rem;
  min-width: 140px;
}

@media (max-width: 900px) {
  .home-contact__inner {
    grid-template-columns: 1fr;
  }

  .home-contact__cards {
    grid-template-columns: 1fr;
  }
}

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

/* ——— About page ——— */
.about-spotlight {
  background: #fff;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.about-spotlight__top {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.2fr) minmax(180px, 0.55fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.about-spotlight__media {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #ebe4dc;
  max-height: 320px;
}

.about-spotlight__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}

.about-spotlight__badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem 0.45rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(37, 43, 65, 0.12);
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  color: var(--color-navy);
}

.about-spotlight__avatars {
  display: flex;
}

.about-spotlight__avatars span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -6px;
  background:
    linear-gradient(135deg, var(--color-cyan-light), var(--color-lavender));
}

.about-spotlight__avatars span:first-child {
  margin-left: 0;
}

.about-spotlight__avatars span:nth-child(2) {
  background: linear-gradient(135deg, var(--color-peach), var(--color-rose-light));
}

.about-spotlight__avatars span:nth-child(3) {
  background: linear-gradient(135deg, #dfe6f5, var(--color-cyan));
}

.about-spotlight__avatars span:nth-child(4) {
  background: linear-gradient(135deg, var(--color-yellow), var(--color-peach));
}

.about-spotlight__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.about-spotlight__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.about-spotlight__title-line {
  display: block;
}

.about-spotlight__title-line span {
  color: var(--color-cyan);
}

.about-spotlight__copy > p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(37, 43, 65, 0.7);
}

.about-spotlight__stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: #f7f9fc;
  border: 1px solid rgba(37, 43, 65, 0.06);
}

.about-stat--accent {
  background: linear-gradient(145deg, #eaf5fa, #f4fbfc);
  border-color: rgba(106, 168, 199, 0.2);
}

.about-stat__text {
  min-width: 0;
}

.about-stat__text strong {
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  line-height: 1;
  color: var(--color-navy);
  letter-spacing: -0.03em;
}

.about-stat__text span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.86rem;
  color: rgba(37, 43, 65, 0.6);
}

.about-stat__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  background: rgba(106, 168, 199, 0.14);
}

.about-stat__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.about-spotlight__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-identity {
  background: #fff;
  border-top: 1px solid rgba(37, 43, 65, 0.06);
  border-bottom: 1px solid rgba(37, 43, 65, 0.06);
}

.about-identity__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}

.about-identity__aside {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.about-identity__aside h2 {
  margin: 0.5rem 0 0.85rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.about-identity__aside > p {
  margin: 0 0 1.25rem;
  color: rgba(37, 43, 65, 0.62);
  line-height: 1.65;
}

.about-identity__media {
  margin: 1.5rem 0 0;
  border-radius: 20px;
  overflow: hidden;
  background: #ebe4dc;
  position: relative;
  flex: 1 1 auto;
  min-height: 200px;
}

.about-identity__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-identity__stream {
  display: flex;
  flex-direction: column;
}

.about-identity__block {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.15rem 1.5rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(37, 43, 65, 0.1);
}

.about-identity__block:first-child {
  padding-top: 0;
}

.about-identity__block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-identity__index {
  font-size: 0.85rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  color: var(--color-cyan);
  padding-top: 0.35rem;
}

.about-identity__content {
  position: relative;
  padding-left: 1.15rem;
  border-left: 3px solid var(--color-yellow);
}

.about-identity__content h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--color-navy);
}

.about-identity__content p {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(37, 43, 65, 0.7);
}

.about-identity__content p:last-child {
  margin-bottom: 0;
}

.about-clinic {
  background: #fff;
  padding-top: clamp(3.25rem, 6vw, 4.75rem);
}

.about-clinic__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.about-clinic__copy h2 {
  margin: 0.55rem 0 1rem;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  color: var(--color-navy);
}

.about-clinic__copy > p {
  margin: 0 0 0.95rem;
  line-height: 1.75;
  color: rgba(37, 43, 65, 0.72);
}

.about-clinic__quote {
  margin: 1.35rem 0 0;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--color-yellow);
  border-radius: 0 16px 16px 0;
  background: #f7f9fc;
}

.about-clinic__quote strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-navy);
  font-size: 1.05rem;
}

.about-clinic__quote p {
  margin: 0;
  color: rgba(37, 43, 65, 0.65);
  line-height: 1.65;
}

.about-clinic__gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}

.about-clinic__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  background: #ebe4dc;
}

.about-clinic__gallery img:first-child {
  grid-row: 1 / -1;
  min-height: 320px;
}

@media (max-width: 1040px) {
  .about-spotlight__top {
    grid-template-columns: 1fr 1fr;
  }

  .about-spotlight__stats {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .about-stat {
    flex: 1;
  }
}

@media (max-width: 900px) {
  .about-spotlight__highlights,
  .about-clinic__layout,
  .about-identity__inner {
    grid-template-columns: 1fr;
  }

  .about-identity__aside {
    position: static;
  }

  .about-identity__media {
    min-height: 200px;
    flex: none;
    aspect-ratio: 16 / 10;
  }

  .about-identity__media img {
    max-height: none;
  }

  .about-clinic__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .about-clinic__gallery img:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 240px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .about-spotlight__top {
    grid-template-columns: 1fr;
  }

  .about-spotlight__stats {
    flex-direction: column;
  }

  .about-spotlight__media,
  .about-spotlight__media img {
    max-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .about-spotlight__highlights {
    grid-template-columns: 1fr;
  }
}

/* ——— Contact page ——— */
.contact-page {
  background: #fff;
  padding-top: clamp(2rem, 4vw, 3rem);
}

.contact-page__channels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-page__channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  background: #f7f9fc;
  border: 1px solid rgba(37, 43, 65, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a.contact-page__channel:hover {
  transform: translateY(-2px);
  border-color: rgba(106, 168, 199, 0.35);
  box-shadow: 0 12px 28px rgba(37, 43, 65, 0.07);
}

.contact-page__channel--static {
  cursor: default;
}

.contact-page__channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  background: rgba(106, 168, 199, 0.16);
}

.contact-page__channel-icon--wa {
  color: #1f8f5f;
  background: rgba(31, 143, 95, 0.12);
}

.contact-page__channel-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.contact-page__channel-body {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.contact-page__channel-body strong {
  font-size: 0.95rem;
  color: var(--color-navy);
  line-height: 1.25;
}

.contact-page__channel-body span {
  font-size: 0.8rem;
  color: rgba(37, 43, 65, 0.58);
  line-height: 1.35;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.contact-page__form-panel {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(106, 168, 199, 0.1) 0%, transparent 42%),
    #f7f9fc;
  border: 1px solid rgba(37, 43, 65, 0.07);
}

.contact-page__form-panel h2,
.contact-page__clinics > h2 {
  margin: 0.45rem 0 0.7rem;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.contact-page__form-panel > p,
.contact-page__clinics > p {
  margin: 0 0 1.35rem;
  color: rgba(37, 43, 65, 0.62);
  line-height: 1.65;
}

.contact-page__form .form__control {
  background: #fff;
  border-color: rgba(37, 43, 65, 0.1);
}

.contact-page__form .btn {
  margin-top: 0.35rem;
}

.contact-page__clinics {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-clinic {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.95rem;
  margin-bottom: 0.85rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(37, 43, 65, 0.08);
  box-shadow: 0 10px 28px rgba(37, 43, 65, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-clinic:hover {
  border-color: rgba(106, 168, 199, 0.3);
  box-shadow: 0 12px 30px rgba(37, 43, 65, 0.07);
}

.contact-clinic.is-active {
  border-color: rgba(106, 168, 199, 0.45);
  box-shadow:
    0 12px 30px rgba(37, 43, 65, 0.08),
    0 0 0 2px rgba(106, 168, 199, 0.18);
}

.contact-clinic__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #ebe4dc;
}

.contact-clinic__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-clinic__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--color-navy);
}

.contact-clinic__body > p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(37, 43, 65, 0.62);
}

.contact-clinic__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.contact-clinic__actions .btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
}

.contact-clinic__dir {
  font-size: 0.88rem;
  font-weight: var(--fw-medium);
  color: var(--color-cyan);
  text-decoration: none;
  white-space: nowrap;
}

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

.contact-page__map {
  margin-top: 0.5rem;
  border-radius: 22px;
  overflow: hidden;
  background: #e8edf3;
  border: 1px solid rgba(37, 43, 65, 0.08);
  min-height: 240px;
}

.contact-page__map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

@media (max-width: 960px) {
  .contact-page__channels {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-page__channels {
    grid-template-columns: 1fr;
  }

  .contact-clinic {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}
