/* ========================================
   DOC Ağız ve Diş Sağlığı – Homepage styles
   Stiller yalnızca bu dosyada; index.html içine inline CSS yazılmaz.
   ======================================== */

:root {
  --navy: #0e3166;
  --navy-deep: #031521;
  --navy-mid: #094f89;
  --navy-soft: #27556c;
  --orange: #ff730f;
  --orange-soft: #e67952;
  --copper: #c4845a;
  --copper-deep: #a86b42;
  --copper-soft: #e8c4a8;
  --text: #1a2332;
  --text-muted: #5d7486;
  --border: #e8eef2;
  --bg-soft: #f7fafc;
  --white: #ffffff;
  --shadow-sm: 0 4px 18px rgba(7, 27, 44, 0.08);
  --shadow-md: 0 10px 40px rgba(7, 27, 44, 0.12);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-body: "Outfit", "Manrope", sans-serif;
  --font-display: "Outfit", sans-serif;
  --font-hero: "Ovo", serif;
  --heading: #070807;
  --header-h: 88px;
  --container: 1280px;
  --slider-gap: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

body.nav-locked {
  overflow: hidden;
}

img,
iframe,
video {
  max-width: 100%;
}

iframe {
  display: block;
}

img,
video {
  height: auto;
  display: block;
}

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

a[aria-disabled="true"] {
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.container-sore {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
  min-width: 0;
}

/* ---------- Buttons ---------- */
.btn-sore {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

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

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

.btn-sore-primary:hover {
  background: var(--navy-mid);
  color: var(--white);
}

.btn-sore-copper {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

.btn-sore-copper:hover {
  background: var(--copper-deep);
  color: var(--white);
}

.btn-sore-outline {
  background: transparent;
  border-color: rgba(14, 49, 102, 0.25);
  color: var(--navy);
}

.btn-sore-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.btn-arrow-sq {
  border-radius: 8px;
  width: 26px;
  height: 26px;
}

.btn-consult {
  border: 1px solid rgba(14, 49, 102, 0.2);
  background: var(--white);
  color: var(--navy);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-consult:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-consult-hero {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-consult-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-consult-copper {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
  border-radius: 10px;
  min-width: 170px;
  height: 50px;
  padding: 0 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.btn-consult-copper:hover {
  background: var(--copper-deep);
  border-color: var(--copper-deep);
  color: var(--white);
}

.lang-switch--header {
  display: flex;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.site-header .lang-switch--header a {
  color: var(--white);
  padding: 0.2rem 0.35rem;
}

.lang-switch--header a.is-active,
.lang-switch--header a:hover {
  color: var(--white);
}

.site-header.is-sticky .lang-switch--header a {
  color: var(--text-muted);
}

.site-header.is-sticky .lang-switch--header a.is-active,
.site-header.is-sticky .lang-switch--header a:hover {
  color: var(--navy);
}

/* ---------- Section helpers ---------- */
.section {
  padding: 2.75rem 0 2.25rem;
}

.section-soft {
  background: var(--bg-soft);
}

#tedaviler .container-sore,
#yorumlar .container-sore,
#neden-doc .container-sore,
#sonuclar .container-sore,
#randevu .container-sore,
#ekip .container-sore,
#icerikler .container-sore,
#sss .container-sore {
  width: calc(100% - 2 * clamp(1.25rem, 4.2vw, 5rem));
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.section-head__text {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
}

.section-head__text + .btn-sore {
  flex: 0 0 auto;
  align-self: flex-end;
}

.section-head h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  margin-bottom: 0.65rem;
  color: var(--heading);
  white-space: normal;
  line-height: 1.2;
}

.section-head p {
  margin-bottom: 0;
  font-size: 1rem;
  max-width: 54ch;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--navy-mid);
  font-weight: 600;
  font-size: 0.92rem;
}

.link-more:hover {
  color: var(--orange);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.35rem 0 0.5rem;
  transition: all 0.3s ease;
}

.site-header .container-sore {
  width: calc(100% - 2 * clamp(1.25rem, 4.2vw, 5rem));
  max-width: none;
  overflow: visible;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  background: transparent;
  padding: 0.85rem 0;
}

.site-header.is-sticky .nav-shell {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 0.45rem 0.75rem 0.45rem 1rem;
  border-radius: 14px;
}

.site-header.is-sticky .nav-menu {
  background: transparent;
}

.site-header.is-sticky .nav-menu a {
  color: var(--navy);
}

.site-header.is-sticky .nav-menu > li > a:hover {
  color: var(--navy-mid);
  background: transparent;
}

.site-header.is-sticky .brand-logo-white {
  display: none;
}

.site-header.is-sticky .btn-consult-hero {
  background: var(--white);
  border-color: rgba(14, 49, 102, 0.2);
  color: var(--navy);
}

.site-header.is-sticky .btn-consult-copper {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  position: relative;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.brand img {
  height: 65px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-sticky .brand-logo-dark {
  display: block;
  background: #0a0a0a;
  border-radius: 6px;
  padding: 0.2rem 0.45rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.temos-badge {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.site-header .nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.55rem;
  border-radius: 0;
  white-space: nowrap;
  background: transparent;
}

.site-header .nav-menu > li > a:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
}

.nav-menu .chevron {
  font-size: 0.65rem;
  opacity: 0.75;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 60;
}

.nav-menu > li:hover > .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.dropdown-panel a span {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.dropdown-panel a:hover {
  background: var(--bg-soft);
}

.site-header .nav-menu > li.nav-item--treatments {
  position: static;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.site-header .treatments-mega {
  left: 50%;
  right: auto;
  top: calc(100% - 0.55rem);
  width: min(1020px, calc(100vw - 48px));
  min-width: 0;
  padding: 0.7rem 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateX(-50%) translateY(8px);
  z-index: 70;
}

.site-header .nav-menu > li:hover > .treatments-mega,
.site-header .nav-menu > li.is-mega-open > .treatments-mega,
.site-header .nav-menu > li:focus-within > .treatments-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-header .treatments-mega__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 232px;
  gap: 1.05rem;
  align-items: stretch;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 var(--copper);
  overflow: hidden;
}

.site-header .treatments-mega__main {
  min-width: 0;
}

.site-header .treatments-mega__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.85rem;
  min-height: 38px;
  margin-bottom: 0.65rem;
}

.site-header .treatments-mega__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.55rem;
  min-width: 0;
}

.site-header .treatments-mega__eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
}

.site-header .treatments-mega__lead {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.site-header .treatments-mega__all {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.2rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-mid);
  white-space: nowrap;
}

.site-header .treatments-mega__all:hover {
  color: var(--copper);
  background: transparent;
}

.site-header .treatments-mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(7, minmax(44px, auto));
  grid-auto-flow: column;
  gap: 0.45rem 0.7rem;
}

.site-header .treatments-mega__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.32rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-header .treatments-mega__mark {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

.site-header .treatments-mega__chevron {
  margin-left: 0;
  flex-shrink: 0;
  font-size: 0.62rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.site-header .treatments-mega__link:hover {
  background: rgba(196, 132, 90, 0.06);
  border-color: var(--copper-soft);
  color: var(--navy);
}

.site-header .treatments-mega__cta {
  position: relative;
  min-width: 0;
  border-radius: 15px;
  overflow: hidden;
  isolation: isolate;
}

.site-header .treatments-mega__cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.site-header .treatments-mega__cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.22rem;
  padding: 0.85rem 0.85rem 0.9rem;
  background: linear-gradient(180deg, rgba(3, 21, 33, 0.04) 0%, rgba(14, 49, 102, 0.38) 52%, rgba(3, 21, 33, 0.78) 100%);
  color: var(--white);
}

.site-header .treatments-mega__cta-kicker {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-soft);
}

.site-header .treatments-mega__cta-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.site-header .treatments-mega__cta-text {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.site-header .treatments-mega__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  align-self: flex-start;
  min-height: 32px;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: var(--copper);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.site-header .treatments-mega__cta-btn:hover {
  background: var(--copper-deep);
  color: var(--white);
}

.site-header.is-sticky .nav-menu .treatments-mega__all,
.site-header.is-sticky .nav-menu .treatments-mega__link {
  color: var(--navy);
}

.site-header.is-sticky .nav-menu .treatments-mega__cta-btn {
  color: var(--white);
}

@media (min-width: 1200px) and (max-width: 1279px) {
  .site-header .treatments-mega {
    width: min(1020px, calc(100vw - 48px));
  }

  .site-header .treatments-mega__panel {
    grid-template-columns: minmax(0, 1fr) 208px;
    gap: 0.95rem;
    padding: 1.05rem 1.1rem;
  }

  .site-header .treatments-mega__link {
    font-size: 0.78rem;
    padding: 0.3rem 0.7rem;
  }
}

@media (min-width: 1200px) and (max-height: 720px) {
  .site-header .treatments-mega__panel {
    max-height: min(420px, calc(100vh - 96px));
    overflow-x: hidden;
    overflow-y: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .treatments-mega,
  .site-header .treatments-mega__link,
  .site-header .treatments-mega__cta-btn {
    transition: none;
  }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.25rem;
}

.site-header.is-sticky .nav-toggle {
  background: var(--bg-soft);
  color: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  /* Görsel oranı (klinik-slider.jpg ≈ 1807×870): 100vh zorlaması cover crop/zoom üretmesin */
  width: 100%;
  max-width: 100%;
  min-height: 640px;
  height: auto;
  max-height: none;
  aspect-ratio: 1807 / 870;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--white);
  padding: 0 0 2.5rem;
  overflow: visible;
  background: #031521;
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img,
.hero__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      96deg,
      rgba(6, 22, 48, 0.86) 0%,
      rgba(6, 22, 48, 0.58) 28%,
      rgba(6, 22, 48, 0.22) 52%,
      rgba(6, 22, 48, 0.06) 64%,
      rgba(6, 22, 48, 0) 78%
    ),
    linear-gradient(
      180deg,
      rgba(3, 21, 33, 0.18) 0%,
      rgba(3, 21, 33, 0.04) 40%,
      rgba(3, 21, 33, 0.22) 100%
    );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: calc(100% - 2 * clamp(1.25rem, 4.2vw, 5rem));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  padding-top: clamp(6.5rem, 17vw, 14rem);
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  min-height: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 40rem;
  padding-bottom: 1.5rem;
  margin-top: 0;
  margin-bottom: auto;
}

.hero__copies {
  width: 100%;
  margin-bottom: auto;
}

.hero__copies > .hero__content {
  display: none;
  margin-bottom: 0;
}

.hero__copies > .hero__content.is-active {
  display: flex;
}

.hero__controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  z-index: 4;
}

.hero__nav {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero__nav:hover,
.hero__nav:focus-visible {
  background: rgba(255, 255, 255, 0.28);
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero__dot.is-active {
  width: 22px;
  background: var(--copper);
}

.hero__eyebrow {
  display: inline-block;
  color: var(--copper);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.15rem, 3.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #ffffff;
  max-width: none;
  margin: 0 0 1.15rem;
}

.hero__word {
  display: inline;
  margin-inline-end: 0.22em;
  color: #f4ece2;
}

.hero__word:last-child {
  margin-inline-end: 0;
}

.hero__lead {
  margin: 0 0 1.65rem;
  max-width: 38ch;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.7rem;
}

.hero__btn-primary {
  border-radius: 10px;
  min-width: 170px;
  height: 50px;
  padding: 0 1.35rem;
  gap: 0.55rem;
  justify-content: center;
}

.hero__btn-primary i {
  font-size: 1rem;
  line-height: 1;
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero__link:hover {
  color: var(--copper-soft);
  border-bottom-color: var(--copper-soft);
}

.hero__link i {
  font-size: 0.9rem;
}

.feature-bar {
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 8px 24px rgba(7, 27, 44, 0.1);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: min(1320px, 100%);
  min-width: 0;
  margin: 0 auto -2.5rem;
  align-self: center;
}

.feature-bar__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  min-width: 0;
  padding: 1.15rem 1rem;
  border-right: 1px solid #e5eaf0;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  text-align: left;
}

.feature-bar__item:last-child {
  border-right: 0;
}

.feature-bar__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-bar__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.feature-bar__text-short {
  display: none;
}

#sanal-gezinti {
  padding-top: 3.5rem;
}

/* ---------- Cards / sliders ---------- */
.slider-wrap {
  position: relative;
  padding: 0 2.5rem;
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}

.card-track {
  display: flex;
  gap: var(--slider-gap);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.25rem 0 0.75rem;
}

.card-track::-webkit-scrollbar {
  display: none;
}

.treat-card,
.result-card,
.article-card {
  flex: 0 0 calc((100% - (2 * var(--slider-gap))) / 3);
  min-width: 0;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.treat-card:hover,
.result-card:hover,
.article-card:hover {
  box-shadow: var(--shadow-sm);
}

.treat-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.treat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treat-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.treat-card__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.treat-card h3,
.treat-hub .treat-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  color: var(--heading);
}

.treat-card p {
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.slider-nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  color: #6b7c8a;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.slider-nav--prev {
  left: 0.35rem;
}

.slider-nav--next {
  right: 0.35rem;
}

.slider-nav:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.slider-nav:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c9d5de;
  padding: 0;
}

.slider-dots button.is-active {
  background: var(--navy);
  width: 22px;
  border-radius: 6px;
}

/* ---------- Results ---------- */
.result-card {
  display: grid;
  gap: 0.85rem;
  background: transparent;
  border: 0;
  overflow: visible;
  padding: 0;
}

.result-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.result-card__bekijk {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
}

.result-card__details {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.1rem 1.15rem;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.result-card__title-row {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 0.75rem;
  align-items: center;
}

.result-card__title-row h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  color: var(--heading);
  font-weight: 600;
}

.result-card__title-row h3 a {
  color: inherit;
}

.result-card__technique {
  justify-self: end;
  text-align: right;
  font-size: 0.72rem;
  font-weight: 600;
  color: #111;
  line-height: 1.25;
}

.result-card__divider {
  width: 100%;
  height: 1px;
  background: #eeeeee;
}

.result-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.result-meta-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5c7890;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.result-meta-value {
  color: var(--navy-mid);
  font-weight: 700;
  font-size: 0.92rem;
}

/* ---------- 360° Tour discover ---------- */
.tour-discover {
  width: calc(100% - 2 * clamp(1.25rem, 4.2vw, 5rem));
  margin-inline: auto;
}

.tour-discover__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 1.75rem 4rem;
  align-items: center;
}

.tour-discover__intro {
  grid-column: 2;
  grid-row: 1;
}

.tour-discover__media {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-width: 0;
}

.tour-discover__aside {
  grid-column: 2;
  grid-row: 2;
}

.tour-discover__eyebrow {
  display: inline-block;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.tour-discover__intro h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  color: var(--heading);
  margin-bottom: 0.9rem;
  line-height: 1.15;
}

.tour-discover__intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.tour-discover__points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.tour-discover__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
}

.tour-discover__points i {
  color: var(--copper);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.tour-discover__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.tour-panel__frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  min-height: 520px;
}

.tour-panel__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.tour-panel__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
  background: transparent;
}

.tour-hint {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  margin: 0;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 2rem);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(3, 21, 33, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
}

/* ---------- Clinics 2-up ---------- */
.clinics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.clinics-grid .result-card {
  width: 100%;
  flex: none;
}

/* ---------- Clinics (Kliniklerimiz) - premium minimal scope ---------- */
#klinikler .container-sore {
  width: calc(100% - 2 * clamp(1.25rem, 4.2vw, 5rem));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  padding: 2.25rem 1.75rem;
}

#klinikler .section-head {
  margin-bottom: 1.2rem;
}

#klinikler .clinics-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.55rem;
}

#klinikler .clinics-grid {
  gap: 1rem;
}

#klinikler .result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 0;
  gap: 0;
}

#klinikler .result-card__media {
  border: 0;
  border-radius: 0;
  background: transparent;
  aspect-ratio: 16 / 10;
}

#klinikler .result-card__media img {
  object-position: center 34%;
  transition: none;
}

#klinikler .result-card--ovacik .result-card__media img {
  object-position: center 44%;
}

#klinikler .result-card__details {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.9rem 1.05rem 0.65rem;
  gap: 0.55rem;
}

#klinikler .result-card__title-row {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: baseline;
}

#klinikler .result-card__title-row h3 {
  font-size: 1.1rem;
  margin: 0;
}

#klinikler .result-card__technique {
  justify-self: end;
  text-align: right;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

#klinikler .result-card__divider {
  display: none;
}

#klinikler .result-card__stats {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.6rem 0.9rem;
}

#klinikler .result-meta-label {
  margin-bottom: 0.15rem;
}

#klinikler .result-meta-value {
  font-size: 0.88rem;
}

#klinikler .clinic-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 0 1.05rem 1rem;
}

#klinikler .clinic-actions .btn-sore {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
}

#klinikler .result-card--ovacik .clinic-actions {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 991px) {
  #klinikler .container-sore {
    padding: 2.25rem 1.25rem;
  }

  #klinikler .result-card__title-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  #klinikler .result-card__technique {
    justify-self: start;
    text-align: left;
  }

  #klinikler .result-card__stats {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  #klinikler .clinic-actions {
    grid-template-columns: 1fr;
    padding: 0 1.15rem 1.15rem;
  }

  #klinikler .result-card__details {
    padding: 1.05rem 1.15rem 0.85rem;
  }
}

@media (max-width: 767px) {
  #klinikler .container-sore {
    padding: 2rem 1rem;
    border-radius: 22px;
  }
}

/* ---------- Referans bannerları ---------- */
.reviews-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.reviews-banner {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.reviews-banner:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.reviews-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.why-grid__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
}

.why-grid__media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.why-grid h2 {
  color: var(--heading);
}

.why-grid__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.why-grid__intro {
  max-width: none;
  margin-bottom: 1.1rem;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1rem 0;
}

.why-feature {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem;
  background: var(--white);
}

.why-feature__icon {
  width: 34px;
  height: 34px;
  border: 1px solid #c5d8e6;
  border-radius: 8px;
  color: var(--navy-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 1rem;
  flex-shrink: 0;
}

.why-feature__text {
  min-width: 0;
}

.why-feature h3 {
  font-size: 0.94rem;
  margin-bottom: 0.25rem;
  color: var(--heading);
}

.why-feature p {
  font-size: 0.82rem;
  margin: 0;
}

.why-note {
  font-size: 0.9rem;
  margin: 0;
}

.why-note a {
  color: var(--navy-mid);
  font-weight: 700;
}

/* ---------- Sonuçlar / before-after ---------- */
#sonuclar .results-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.6rem;
}

#sonuclar.section {
  padding: 2.6rem 0 2.2rem;
  overflow-x: hidden;
}

#sonuclar .section-head {
  margin-bottom: 1.45rem;
}

#sonuclar .section-head h2 {
  color: var(--navy-deep);
}

#sonuclar .section-head p {
  max-width: 48ch;
}

#sonuclar .results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

#sonuclar .results-card {
  border-radius: 18px;
  border: 1px solid rgba(7, 27, 44, 0.06);
  box-shadow: 0 10px 28px rgba(7, 27, 44, 0.08);
  background: var(--white);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#sonuclar .ba-compare {
  aspect-ratio: 4 / 3;
  background: #eef2f5;
}

#sonuclar .ba-compare__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sonuclar .ba-compare__divider {
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(7, 27, 44, 0.1);
}

#sonuclar .ba-compare__divider::after {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 2px solid var(--copper);
  box-shadow: 0 6px 16px rgba(3, 21, 33, 0.18);
}

#sonuclar .ba-compare__divider::before {
  color: var(--navy);
  font-size: 1.05rem;
}

#sonuclar .results-card__labels {
  padding: 0.55rem 1rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

@media (min-width: 992px) {
  #sonuclar .results-grid:not(.results-grid--single) {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  #sonuclar .results-grid--single {
    max-width: min(100%, 920px);
  }
}

#ekip.section {
  padding: 2.25rem 0 2rem;
}

#ekip .section-head {
  margin-bottom: 1.2rem;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.results-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.ba-compare {
  --compare-position: 50%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2f5;
}

.ba-compare__layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-compare__layer--after {
  background: repeating-linear-gradient(
    -45deg,
    #e8eef2,
    #e8eef2 10px,
    #f4f7f9 10px,
    #f4f7f9 20px
  );
}

.ba-compare__layer--before {
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
  background: repeating-linear-gradient(
    45deg,
    #dce4ea,
    #dce4ea 10px,
    #e7eef3 10px,
    #e7eef3 20px
  );
}

.ba-compare__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-compare__ph {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #7a8b99;
  border: 1px dashed #b7c4ce;
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.ba-compare__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 4;
  box-shadow: 0 0 0 1px rgba(7, 27, 44, 0.12);
}

.ba-compare__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--copper);
  box-shadow: 0 6px 18px rgba(3, 21, 33, 0.2);
  transform: translate(-50%, -50%);
}

.ba-compare__divider::before {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -52%);
}

.ba-compare__range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  background: transparent;
}

.results-card__labels {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 1rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Randevu / ön görüşme ---------- */
.booking-panel {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url("../assets/doc-hakkimizda.png");
  background-size: cover;
  background-position: 58% 32%;
  background-repeat: no-repeat;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  padding: 2.75rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 2.25rem;
  align-items: center;
}

.booking-panel--contact {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 1.5rem;
  background-image: none;
  background: var(--navy);
}

.booking-panel--contact::before {
  content: none;
}

.booking-panel--contact .booking-form {
  transform: none;
  height: 100%;
}

.booking-panel__map {
  position: relative;
  z-index: 1;
  min-height: 0;
  height: 100%;
  display: flex;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(3, 21, 33, 0.22);
}

.booking-panel__map iframe {
  display: block;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.booking-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(8, 28, 58, 0.92) 0%,
    rgba(14, 49, 102, 0.82) 36%,
    rgba(14, 49, 102, 0.48) 68%,
    rgba(14, 49, 102, 0.28) 100%
  );
  pointer-events: none;
}

.booking-panel::after {
  content: none;
}

.booking-copy {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0.35rem 0.5rem 0 0;
}

.booking-copy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-bottom: 0.85rem;
}

.booking-copy__eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--copper);
}

.booking-copy h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 3.15rem);
  line-height: 1.12;
  max-width: 13ch;
  margin-bottom: 0.9rem;
}

.booking-copy > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: 0;
}

.booking-benefits {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.booking-benefits li {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-benefits li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-benefits__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid rgba(232, 196, 168, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-soft);
  font-size: 0.92rem;
  margin-top: 0.15rem;
}

.booking-benefits__num {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--copper-soft);
  margin-bottom: 0.2rem;
}

.booking-benefits strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.booking-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.45;
}

.booking-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.booking-trust i {
  color: var(--copper-soft);
  margin-right: 0.3rem;
}

.booking-form {
  position: relative;
  z-index: 1;
  background: #fbfaf7;
  border: 1px solid rgba(232, 196, 168, 0.35);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(3, 21, 33, 0.22);
  padding: 1.65rem 1.55rem 1.4rem;
  display: grid;
  gap: 1.15rem;
  transform: translateY(-6px);
}

.booking-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.55rem;
  width: 40px;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
}

.booking-form__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.35rem;
}

.booking-form__head h3 {
  font-size: 1.05rem;
  margin: 0 0 0.3rem;
  color: var(--heading);
}

.booking-form__head p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.booking-form__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--copper);
  padding-top: 0.2rem;
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.booking-field {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.booking-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--heading);
}

.booking-req {
  color: var(--copper);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 56px;
  border: 1px solid #eadfd4;
  border-radius: 13px;
  background: #f4f1ec;
  padding: 0.7rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
}

.booking-field__control {
  position: relative;
}

.booking-field__control i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa6b0;
  font-size: 0.95rem;
  pointer-events: none;
}

.booking-field__control input,
.booking-field__control textarea {
  padding-left: 2.45rem;
}

.booking-field__control--area i {
  top: 1.05rem;
  transform: none;
}

.booking-field textarea {
  min-height: 132px;
  resize: vertical;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: #9aa6b0;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: 2px solid rgba(196, 132, 90, 0.35);
  outline-offset: 1px;
  border-color: var(--copper);
  background: #fff;
}

.booking-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.booking-check input {
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--navy);
  border-radius: 4px;
}

.booking-check a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

.booking-form__submit {
  width: 100%;
  justify-content: space-between;
  min-height: 56px;
  border-radius: 13px;
  padding: 0.7rem 0.85rem 0.7rem 1.2rem;
  box-shadow: 0 6px 16px rgba(168, 107, 66, 0.22);
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-card__body {
  padding: 0.8rem 0.9rem 0.9rem;
}

.team-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.team-card p {
  font-size: 0.78rem;
  margin: 0;
}

/* ---------- Hekimlerimiz ---------- */
.doc-open {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 3rem;
  align-items: center;
}

#ozgur-yuruk {
  scroll-margin-top: 6.75rem;
}

.doc-open__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.doc-open__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 18%;
}

.doc-open__copy h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  color: var(--heading);
  margin-bottom: 1.05rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.doc-open__copy p {
  margin: 0 0 1.05rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.doc-open__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.85rem;
  margin: 0.15rem 0 0.75rem;
}

.doc-open__meta strong {
  font-size: 1.15rem;
  color: var(--heading);
}

.doc-open__meta span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--copper);
}

.doc-open__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0;
  margin: 0 0 1.35rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.doc-open__facts li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
}

.doc-open__facts li + li {
  margin-left: 1.15rem;
  padding-left: 1.15rem;
  border-left: 1px solid var(--copper-soft);
}

.doc-open__facts strong {
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

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

.doc-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  scroll-margin-top: 6.75rem;
  color: inherit;
}

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

.doc-card__media {
  overflow: hidden;
  background: var(--bg-soft);
}

.doc-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform 0.45s ease;
}

.doc-card:hover .doc-card__media img {
  transform: scale(1.04);
}

.doc-card__body {
  padding: 1.15rem 1.2rem 1.25rem;
  border-top: 3px solid var(--copper);
}

.doc-card h3 {
  font-size: 1.05rem;
  color: var(--heading);
  margin-bottom: 0.2rem;
}

.doc-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.doc-card__body a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--copper);
}

.doc-card__body a:hover {
  color: var(--copper-deep);
}

.doc-card__body a i {
  font-size: 0.72rem;
}

/* ---------- Klinik detay ---------- */
.cl-open {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.cl-open__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cl-open__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 50%;
}

.cl-open__copy h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  color: var(--heading);
  margin-bottom: 1.05rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cl-open__copy p {
  margin: 0 0 1.05rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.cl-open__copy p:last-child {
  margin-bottom: 0;
}

.cl-info {
  background: var(--white);
  border: 1px solid rgba(14, 49, 102, 0.06);
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(14, 49, 102, 0.07);
  padding: 1.75rem 1.9rem 1.6rem;
}

.cl-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin: 0;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cl-facts li {
  display: grid;
  align-content: start;
  gap: 0.3rem;
}

.cl-facts i {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 0.2rem;
  border-radius: 50%;
  background: rgba(196, 132, 90, 0.12);
  color: var(--copper);
  font-size: 0.95rem;
}

.cl-facts strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
}

.cl-facts span,
.cl-facts a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

.cl-facts a:hover {
  color: var(--copper);
}

.cl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.cl-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(14, 49, 102, 0.06);
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(14, 49, 102, 0.07);
}

.cl-service {
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: inherit;
  transition: background 0.2s ease;
}

.cl-service:nth-child(3),
.cl-service:nth-child(6) {
  border-bottom: 0;
}

.cl-service:nth-child(n + 4) {
  border-left: 1px solid var(--border);
}

.cl-service:hover {
  background: rgba(14, 49, 102, 0.035);
}

.cl-service__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--copper);
}

.cl-service span:not(.cl-service__num) {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.cl-service i {
  color: var(--copper);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.cl-service:hover i {
  transform: translateX(4px);
}

.cl-docs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.cl-docs--solo {
  grid-template-columns: minmax(0, 180px);
}

.cl-docs .doc-card {
  border-radius: 16px;
}

.cl-docs .doc-card__media img {
  aspect-ratio: 4 / 5;
  object-position: 50% 18%;
}

.cl-docs .doc-card__body {
  padding: 0.7rem 0.8rem 0.8rem;
  border-top-width: 2px;
}

.cl-docs .doc-card h3 {
  font-size: 0.88rem;
  margin-bottom: 0.12rem;
}

.cl-docs .doc-card p {
  font-size: 0.75rem;
  line-height: 1.35;
}

@media (max-width: 1199px) {
  .cl-docs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .cl-docs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cl-docs--solo {
    grid-template-columns: minmax(0, 180px);
  }

  .cl-info {
    padding: 1.35rem 1.25rem 1.25rem;
  }

  .cl-map iframe {
    min-height: 300px;
  }

  .cl-services {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .cl-service:nth-child(n + 4) {
    border-left: 0;
  }

  .cl-service:nth-child(3) {
    border-bottom: 1px solid var(--border);
  }

  .cl-service:last-child {
    border-bottom: 0;
  }
}

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

.cl-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: minmax(180px, 22vw) minmax(180px, 22vw);
  gap: 0.75rem;
}

.cl-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.cl-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cl-gallery figure:first-child {
  grid-row: 1 / span 2;
}

.cl-gallery--two {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(240px, 32vw);
}

.cl-gallery--two figure:first-child {
  grid-row: auto;
}

.cl-map {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: center;
}

.cl-map__copy h2 {
  margin-bottom: 0.75rem;
}

.cl-map__copy p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  line-height: 1.7;
}

.cl-map__frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(14, 49, 102, 0.08);
  box-shadow: 0 16px 42px rgba(14, 49, 102, 0.12);
  background: var(--white);
}

.cl-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.cl-tour .tour-panel__frame {
  min-height: 420px;
}

.cl-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.35rem 1.6rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cl-switch p {
  margin: 0;
  color: var(--text-muted);
}

.cl-switch strong {
  display: block;
  color: var(--heading);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.clinic-box h3 a {
  color: inherit;
}

.clinic-box h3 a:hover {
  color: var(--copper-soft);
}

.ct-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.15rem;
}

.ct-card {
  --ct-card-bg: #fff;
  display: grid;
  grid-template-columns: minmax(5.25rem, 22%) minmax(0, 1fr);
  align-items: stretch;
  min-height: 10.25rem;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--ct-card-bg);
  border: 1px solid rgba(14, 49, 102, 0.06);
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(14, 49, 102, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  color: inherit;
}

a.ct-card:hover,
.ct-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(14, 49, 102, 0.11);
}

.ct-card__icon {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding-right: 0.55rem;
  background: var(--navy);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
}

.ct-card__icon i {
  position: relative;
  z-index: 2;
  transform: translateX(-0.2rem);
}

.ct-card__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.05rem;
  z-index: 1;
  width: 4.1rem;
  height: 168%;
  border-radius: 50%;
  background: var(--ct-card-bg);
  transform: translateY(-50%);
  pointer-events: none;
}

.ct-card--copper .ct-card__icon {
  background: var(--copper);
}

.ct-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
  padding: 1.45rem 1.45rem 1.45rem 1.15rem;
  background: var(--ct-card-bg);
}

.ct-card strong {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 0.55rem;
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--copper);
}

.ct-card strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--copper);
}

.ct-card__text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--navy);
}

.ct-card a {
  color: var(--navy);
  font-weight: 500;
}

.ct-card a:hover {
  color: var(--copper);
}

.ct-card__wa {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.4rem;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--copper) !important;
  transition: color 0.2s ease, gap 0.2s ease;
}

.ct-card__wa:hover {
  color: var(--copper-deep) !important;
  gap: 0.58rem;
}

@media (max-width: 991px) {
  .ct-card {
    min-height: 9.25rem;
    grid-template-columns: minmax(5rem, 22%) minmax(0, 1fr);
  }

  .ct-card__icon {
    font-size: 1.55rem;
  }

  .ct-card__body {
    padding: 1.3rem 1.25rem 1.3rem 1rem;
  }
}

.ct-clinics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.ct-clinic {
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.ct-clinic__media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.ct-clinic__body {
  padding: 1.25rem 1.3rem 1.2rem;
}

.ct-clinic h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: var(--heading);
}

.ct-clinic p {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.ct-clinic p i {
  color: var(--copper);
  margin-right: 0.4rem;
}

.ct-clinic a {
  color: var(--navy);
  font-weight: 600;
}

.ct-clinic a:hover {
  color: var(--copper);
}

.ct-clinic__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--copper) !important;
}

/* ---------- Articles / Blog ---------- */
.blog-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.55rem;
}

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

.articles-grid .article-card {
  flex: none;
  width: 100%;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.article-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__img--temos {
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #f4f8f5, #e8f2ec);
  padding: 1.5rem;
}

.article-card__img--temos img {
  width: auto;
  max-height: 140px;
  object-fit: contain;
}

.article-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.article-cat {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.45rem;
}

.article-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
  color: var(--heading);
  line-height: 1.35;
}

.blog-card__excerpt {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

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

a.blog-card:hover {
  transform: translateY(-3px);
}

.section--blog {
  padding-top: 2.75rem;
}

.blog-crumb {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.blog-crumb a {
  color: var(--navy);
  font-weight: 600;
}

.blog-crumb a:hover {
  color: var(--copper);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 2.5rem;
  align-items: start;
}

.blog-post {
  min-width: 0;
}

.blog-post h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  color: var(--heading);
  margin: 0 0 1.35rem;
  line-height: 1.18;
}

.blog-post__media {
  width: 100%;
  max-width: none;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blog-post__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post__summary {
  width: 100%;
  background: rgba(14, 49, 102, 0.04);
  border-left: 4px solid var(--navy);
  padding: 2rem;
  border-radius: 0 1rem 1rem 0;
  margin-bottom: 2rem;
}

.blog-post__summary-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}

.blog-post__lead,
.blog-post .blog-post__lead {
  font-size: 1.125rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.8;
  color: #334155;
  margin: 0;
}

.blog-post h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--heading);
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
  scroll-margin-top: 6.5rem;
}

.blog-post p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.05rem;
}

.blog-post ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-post ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.blog-post ul i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--navy);
}

.blog-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6.25rem;
}

.blog-aside__card {
  background: #fff;
  border: 1px solid rgba(241, 245, 249, 0.6);
  border-radius: 1.5rem;
  padding: 1.2rem 1.3rem 1.25rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.blog-aside__label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.blog-aside__name {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.35;
}

.blog-aside__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-aside__toc {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.blog-aside__toc a {
  position: relative;
  padding-left: 0.9rem;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none;
}

.blog-aside__toc a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
}

.blog-aside__toc a:hover {
  color: var(--navy);
}

.blog-aside__toc a.is-active {
  color: var(--navy);
  font-weight: 700;
}

.blog-aside__toc a.is-active::before {
  background: var(--copper);
}

.blog-aside__card--cta {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}

.blog-aside__form-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1rem;
}

.blog-aside__fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-aside__fields input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #334155;
}

.blog-aside__fields input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(14, 49, 102, 0.2);
}

.blog-aside__book {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
  text-align: center;
  background: var(--navy);
  color: #fff;
  border: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.blog-aside__book:hover {
  background: var(--navy-deep);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-related {
  margin-top: 0.25rem;
}

.blog-related > h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  color: var(--heading);
  margin: 0 0 1.35rem;
}

@media (max-width: 991px) {
  .section--blog {
    padding-top: 2.75rem;
  }

  .page-hero--blog {
    min-height: 0;
    padding: 6.75rem 0 4rem;
  }

  .blog-post__summary {
    padding: 1.5rem;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-aside {
    position: static;
  }

  .blog-post h2 {
    scroll-margin-top: 5.5rem;
  }
}

/* ---------- KVKK aydınlatma ---------- */
.kvkk-article {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.kvkk-section {
  padding: 1.75rem 1.85rem 1.7rem;
  background: var(--white);
  border: 1px solid rgba(14, 49, 102, 0.06);
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(14, 49, 102, 0.07);
}

.kvkk-section__num {
  display: block;
  width: fit-content;
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--copper);
  position: relative;
}

.kvkk-section__num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.25rem;
  height: 2px;
  background: var(--copper);
}

.kvkk-section h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  color: var(--heading);
  margin: 0 0 1rem;
  line-height: 1.3;
  scroll-margin-top: 6.5rem;
}

.kvkk-section h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 1.5rem 0 0.7rem;
  line-height: 1.4;
}

.kvkk-section p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.kvkk-section p:last-child {
  margin-bottom: 0;
}

.kvkk-section ul {
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.kvkk-section ul:last-child {
  margin-bottom: 0;
}

.kvkk-section ul li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.kvkk-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

.kvkk-apply {
  margin-top: 1.5rem;
  padding: 1.35rem 1.4rem 1.3rem;
  background: rgba(14, 49, 102, 0.035);
  border: 1px solid rgba(14, 49, 102, 0.08);
  border-radius: 18px;
}

.kvkk-apply strong {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--navy);
  font-size: 1rem;
}

.kvkk-apply ul {
  margin: 0;
  gap: 0.7rem;
}

.kvkk-apply ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-left: 0;
  color: var(--navy);
  font-weight: 500;
}

.kvkk-apply ul li::before {
  display: none;
}

.kvkk-apply i {
  color: var(--copper);
  margin-top: 0.15rem;
}

.kvkk-apply a {
  color: var(--navy);
  font-weight: 600;
}

.kvkk-apply a:hover {
  color: var(--copper);
}

@media (max-width: 991px) {
  .kvkk-section {
    padding: 1.35rem 1.25rem 1.3rem;
  }

  .kvkk-section h2 {
    scroll-margin-top: 5.5rem;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
  width: 100%;
  max-width: none;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 0.95rem 1.1rem;
  font-weight: 700;
  color: var(--heading);
  font-size: 0.95rem;
  line-height: 1.35;
}

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

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8f1f8;
  color: var(--navy-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 500;
}

.faq-item[open] summary {
  color: var(--heading);
}

.faq-item[open] .faq-toggle::before {
  content: "−";
}

.faq-toggle::before {
  content: "+";
}

.faq-item p {
  padding: 0 1.1rem 1rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.75rem;
  margin-top: 1rem;
  border-radius: 28px 28px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.15fr 1fr 1.1fr;
  gap: 2.5rem 2rem;
  margin-bottom: 3rem;
}

.site-footer h4 {
  color: var(--orange);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.1rem;
  font-weight: 700;
}

.footer-brand h4 {
  margin-top: 1.25rem;
}

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

.footer-brand img {
  height: 44px;
  margin-bottom: 0.35rem;
  background: #0a0a0a;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact__block {
  margin-bottom: 1.35rem;
}

.footer-contact strong {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.footer-contact strong i {
  color: var(--orange);
  font-size: 0.95rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.7rem 1.05rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.92rem;
}

.whatsapp-fab:hover {
  color: var(--white);
  background: var(--navy-mid);
}

.whatsapp-fab i {
  color: #25d366;
  font-size: 1.25rem;
}

/* ---------- Mobile menu ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(3, 21, 33, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__panel {
  position: absolute;
  inset: 0.75rem;
  width: auto;
  height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  background: #fbfaf7;
  border: 1px solid rgba(232, 196, 168, 0.35);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(3, 21, 33, 0.22);
  padding: 1rem 1.1rem 1.15rem;
  overflow: hidden;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 0;
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(14, 49, 102, 0.08);
}

.mobile-nav__brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.mobile-nav__brand img {
  height: 42px;
  width: auto;
  max-width: min(180px, 58vw);
  object-fit: contain;
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(3, 21, 33, 0.06);
}

.mobile-nav__close:hover,
.mobile-nav__close:focus-visible {
  background: #fbfaf7;
  border-color: rgba(232, 196, 168, 0.45);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.1rem 0.1rem 0.35rem;
}

.mobile-nav__link,
.mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
  overflow-wrap: anywhere;
  box-shadow: 0 6px 18px rgba(3, 21, 33, 0.07);
}

.mobile-nav__toggle {
  cursor: pointer;
}

.mobile-nav__toggle i {
  flex-shrink: 0;
  margin-left: 0.75rem;
  font-size: 0.82rem;
  color: var(--navy);
  transition: transform 0.25s ease;
}

.mobile-nav__group.is-open .mobile-nav__toggle i {
  transform: rotate(180deg);
}

.mobile-nav__link.is-current,
.mobile-nav__toggle.is-current {
  color: var(--navy);
}

.mobile-nav__group.is-open .mobile-nav__toggle {
  background: transparent;
}

.mobile-nav__foot {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.95rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(14, 49, 102, 0.08);
}

.mobile-nav__link--cta {
  width: 100%;
  max-width: none;
  align-self: stretch;
  margin: 0;
  background: var(--copper);
  border: 0;
  color: var(--white);
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(168, 107, 66, 0.28);
}

.mobile-nav__link--cta:hover,
.mobile-nav__link--cta:focus-visible {
  background: var(--copper-deep);
  color: var(--white);
}

.mobile-nav__langs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.mobile-nav__langs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.mobile-nav__langs a.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.mobile-nav__group {
  min-width: 0;
  border-radius: 999px;
  border: 0;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(3, 21, 33, 0.07);
}

.mobile-nav__group.is-open {
  border-radius: 28px;
  border: 1px solid rgba(232, 196, 168, 0.45);
}

.mobile-nav__group .mobile-nav__toggle {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mobile-nav__sub {
  display: grid;
  grid-template-rows: 0fr;
  min-width: 0;
  visibility: hidden;
  transition: grid-template-rows 0.28s ease;
}

.mobile-nav__group.is-open .mobile-nav__sub {
  grid-template-rows: 1fr;
  visibility: visible;
}

.mobile-nav__sub-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.mobile-nav__group.is-open .mobile-nav__sub-inner {
  padding: 0 1.15rem 0.95rem;
  gap: 0.75rem;
}

.mobile-nav__sublink {
  display: block;
  min-width: 0;
  padding: 0;
  border-left: 0;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.mobile-nav__sublink.is-current {
  color: var(--copper);
}

/* ---------- Inner pages / Hakkımızda ---------- */
.page-inner .site-header {
  position: absolute;
}

.page-inner .site-header.is-sticky {
  position: fixed;
}

.page-inner .site-header.is-sticky .nav-menu > li > a.is-current {
  color: var(--copper);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 8.5rem 0 3.25rem;
  background: #031521;
}

.page-hero--blog {
  background: var(--navy);
  min-height: 0;
  padding: 8.5rem 0 5rem;
}

.page-hero--blog .page-hero__media img {
  filter: blur(40px);
  transform: scale(1.1);
}

.page-hero--blog .page-hero__overlay {
  background: rgba(15, 23, 42, 0.85);
}

.page-hero--blog .page-hero__inner {
  z-index: 10;
}

.page-hero--blog h1 {
  margin-bottom: 0;
  max-width: 48rem;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      96deg,
      rgba(6, 22, 48, 0.88) 0%,
      rgba(6, 22, 48, 0.62) 42%,
      rgba(6, 22, 48, 0.28) 100%
    ),
    linear-gradient(180deg, rgba(3, 21, 33, 0.2) 0%, rgba(3, 21, 33, 0.35) 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.15rem, 4vw, 3.25rem);
  margin-bottom: 0.65rem;
  color: var(--white);
}

.page-hero__lead {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.55;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.85rem;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.page-hero .breadcrumb a:hover {
  color: var(--copper-soft);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 3rem;
  align-items: start;
}

.about-intro .hero__eyebrow {
  margin-bottom: 0.75rem;
}

.about-intro h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  color: var(--heading);
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.about-prose p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  color: var(--text-muted);
}

.about-sign {
  font-weight: 600;
  color: var(--navy) !important;
  font-style: italic;
  margin-top: 0.35rem;
}

.about-split__media {
  position: sticky;
  top: 7.5rem;
}

.about-split__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-split--equal {
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.about-split--equal .about-split__media {
  position: static;
  height: 100%;
  min-height: 0;
  display: flex;
}

.about-split--equal .about-split__media img {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.6rem 1.5rem;
}

.about-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
  color: var(--heading);
}

.about-card p {
  margin-bottom: 0;
  line-height: 1.7;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-values li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.about-values i {
  color: var(--copper);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-values-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid #f1f5f9;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.about-values-grid li:hover {
  box-shadow: var(--shadow-md);
}

.about-values-grid__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 132, 90, 0.12);
  color: var(--copper);
}

.about-values-grid__icon i {
  font-size: 1.05rem;
  margin: 0;
}

.about-values-grid p {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.7;
}

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

.about-gallery a {
  display: block;
  min-width: 0;
}

.about-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
}

.about-gallery img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-gallery a:hover img {
  transform: scale(1.05);
}

/* ---------- Kalite Yönetimi ---------- */
.quality-chart-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.75rem;
  align-items: center;
}

.quality-chart-split__copy h2 {
  margin-bottom: 0.85rem;
}

.quality-chart-split__copy p {
  color: var(--text-muted);
  margin-bottom: 0.95rem;
}

.quality-chart-split__points {
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
  gap: 0.7rem;
}

.quality-chart-split__points span {
  font-weight: 500;
  color: var(--text-muted);
}

.quality-chart-split__points strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--navy);
  font-weight: 700;
}

.quality-chart {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.quality-chart img {
  width: 100%;
  height: auto;
  max-height: min(520px, 62vh);
  object-fit: contain;
  display: block;
}

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

.quality-principle {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.4rem 1.25rem 1.25rem;
}

.quality-principle__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(196, 132, 90, 0.14);
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.quality-principle h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.quality-principle p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.quality-policy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.75rem;
  align-items: stretch;
}

.quality-policy__media {
  min-width: 0;
  display: grid;
}

.quality-policy__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.quality-policy__copy h2 {
  margin-bottom: 0.85rem;
}

.quality-policy__list {
  grid-template-columns: 1fr;
  margin-top: 1.15rem;
}

.quality-policy__list li {
  font-weight: 500;
}

.quality-ethics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quality-ethic {
  display: flex;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
}

.quality-ethic span {
  font-weight: 700;
  color: var(--copper);
  font-size: 0.92rem;
  flex-shrink: 0;
}

.quality-ethic h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.quality-ethic p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.quality-notes {
  margin-top: 0.25rem;
}

.quality-rights {
  margin-bottom: 1.5rem;
}

.quality-duty {
  margin-top: 0.25rem;
}

.quality-duty p + p {
  margin-top: 0.85rem;
}

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

.quality-road {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.quality-road header {
  padding: 1.15rem 1.25rem 1rem;
  color: var(--white);
}

.quality-road--short header { background: var(--copper); }
.quality-road--mid header { background: var(--navy); }
.quality-road--long header { background: var(--copper-deep); }

.quality-road header span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.quality-road header h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.15rem;
}

.quality-road > div {
  padding: 1.2rem 1.25rem 1.35rem;
}

.quality-road h4 {
  font-size: 0.95rem;
  margin: 1rem 0 0.3rem;
}

.quality-road h4:first-child {
  margin-top: 0;
}

.quality-road p {
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
}

.quality-road ul {
  margin: 0 0 0.35rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.quality-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.quality-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  font-size: 0.88rem;
}

.quality-table th,
.quality-table td {
  padding: 0.85rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.quality-table th {
  background: var(--copper);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quality-table td:nth-child(2) {
  color: var(--copper);
  font-weight: 700;
  white-space: nowrap;
}

.quality-table__legend {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
}

.risk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.82rem;
}

.risk-badge--low {
  background: #e8f6ee;
  color: #1f7a45;
}

.risk-badge--mid {
  background: #fff4d6;
  color: #9a6b00;
}

.quality-swot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
}

.quality-swot .about-values {
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.quality-swot .about-card h2 {
  margin-bottom: 1rem;
}

.quality-sustain {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.quality-sustain h2 {
  margin-bottom: 0.85rem;
}

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

.quality-sustain__grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.quality-sustain__grid i {
  color: var(--copper);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---------- Hasta Hakları ---------- */
.rights-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.rights-band--flip .rights-band__media {
  order: -1;
}

.rights-band__copy h2 {
  margin-bottom: 0.75rem;
}

.rights-band__copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.rights-band__media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rights-card {
  display: flex;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.rights-card__num {
  font-weight: 700;
  color: var(--copper);
  font-size: 0.92rem;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.rights-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.rights-card h3 i {
  color: var(--copper);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.rights-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---------- Uluslararası Hastalar ---------- */
.intl-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.intl-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem 1.25rem 1.25rem;
}

.intl-step span {
  display: inline-block;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}

.intl-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.intl-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---------- Tedaviler hub ---------- */
.treat-hub {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.treat-hub .treat-card {
  flex: none;
  width: 100%;
  scroll-snap-align: unset;
  scroll-margin-top: 7.5rem;
}

/* ---------- Tedavi detay ---------- */
.treat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 2.75rem;
  align-items: start;
}

.treat-prose__media {
  margin-bottom: 1.85rem;
}

.treat-prose__media img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.treat-prose h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: var(--heading);
  margin: 2rem 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.treat-prose h2:first-of-type {
  margin-top: 0;
}

.treat-prose p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.treat-prose ul {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.treat-prose li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.treat-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

.treat-prose .faq-list {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.treat-prose .faq-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.treat-prose .faq-item ul {
  margin: 0 1.1rem 1rem;
  padding: 0;
}

.treat-side {
  position: sticky;
  top: 7.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.treat-side__box,
.clinic-box {
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem 1.3rem;
}

.treat-side__box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.treat-side h3 {
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
  color: var(--heading);
}

.treat-side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.treat-side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}

.treat-side-nav a:last-child {
  border-bottom: 0;
}

.treat-side-nav a:hover {
  color: var(--copper);
}

.treat-side-nav a i {
  font-size: 0.85rem;
  color: var(--copper);
}

.clinic-box {
  background: var(--copper);
  color: #fff;
}

.clinic-box h3 {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 0.45rem;
}

.clinic-box p {
  margin: 0 0 0.3rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #fff;
}

.clinic-box p:last-child {
  margin-bottom: 0;
}

.clinic-box a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.clinic-box a:hover {
  color: var(--copper-soft);
}

.clinic-box i {
  margin-right: 0.35rem;
}

.td-clinics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
  align-items: start;
}

.td-clinics .clinic-box {
  padding: 0.9rem 1.05rem 0.95rem;
}

.td-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.td-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper);
}

.td-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

/* ---------- Tedavi iç sayfa: 3/9 layout ---------- */
.td-page {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.td-layout {
  display: grid;
  grid-template-columns: minmax(240px, 3fr) minmax(0, 9fr);
  gap: 2.5rem;
  align-items: start;
}

.td-sidebar {
  grid-column: 1;
  min-width: 0;
}

.td-block--lead {
  min-width: 0;
}

.td-sidebar__sticky {
  position: sticky;
  top: 6rem;
}

.td-main {
  grid-column: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 0;
  padding-top: 0;
}

.td-block {
  min-width: 0;
}

.td-block--soft {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.td-block--split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 1.75rem;
  align-items: center;
}

.td-block--split-reverse {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.td-block--split-reverse .td-split__media {
  order: -1;
}

.td-block > .td-split__media img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 11 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.td-block .td-nedir {
  margin-top: 1.5rem;
}

.td-block .section-head {
  margin-bottom: 1.25rem;
}

.td-block .td-clinics {
  margin-top: 1.25rem;
}

.td-main .td-split {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 2.5rem;
  align-items: center;
}

.td-main .td-split--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.td-main .td-split--reverse > * {
  min-width: 0;
}

.td-main .td-split--reverse .td-split__media {
  order: 0;
}

.td-split:has(.td-others-wrap),
.td-split--intro {
  grid-template-columns: minmax(240px, 3fr) minmax(0, 9fr);
  gap: 2.25rem;
  align-items: start;
}

.td-split--reverse {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 2.5rem;
  align-items: center;
}

.td-split h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  color: var(--heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.td-split p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.td-split p:last-child {
  margin-bottom: 0;
}

.td-split__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.td-split--intro .td-split__media {
  margin-bottom: 0;
  min-height: 0;
}

.td-split--intro .td-split__media img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 11 / 5;
  object-fit: cover;
}

.td-split--reverse .td-split__media {
  order: 0;
}

.td-split--reverse .td-split__media img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

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

.td-split--intro .td-nedir {
  margin-top: 0;
}

.td-check {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.td-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.td-check i {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 132, 90, 0.14);
  color: var(--copper);
  font-size: 0.85rem;
  margin-top: 0.05rem;
}

.td-check--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  width: 100%;
}

.td-block--prep {
  width: 100%;
  min-width: 0;
}

.td-block--prep h2,
.td-block--method h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  color: var(--heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.td-block--method h2 {
  margin-bottom: 0;
}

.td-block--prep > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.td-block--prep .btn-sore {
  margin-top: 1.35rem;
}

.td-block--method {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: 1.75rem;
  background: #fbfcfd;
  border: 1px solid #eef2f6;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.td-block--method .td-eyebrow {
  margin-bottom: 0;
}

.td-method__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: #3d4f5f;
  margin: 0;
}

.td-method__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.td-method__details li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: flex-start;
}

.td-method__details i {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 132, 90, 0.14);
  color: var(--copper);
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.td-method__details strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.td-method__details span {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.td-split .btn-sore {
  margin-top: 1.35rem;
}

.td-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.td-benefit {
  background: linear-gradient(to bottom right, #ffffff, #f7fafc);
  border: 1px solid #eef2f6;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.td-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 132, 90, 0.35);
}

.td-benefit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4845a, #a86b42);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.td-benefit h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
  color: var(--heading);
}

.td-benefit p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.td-results {
  max-width: none;
}

.td-ba h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  color: var(--heading);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.td-ba .results-grid {
  width: 100%;
  max-width: none;
}

.td-route {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.75rem;
  align-items: start;
}

.td-route__steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.td-route .faq-item summary {
  font-size: 0.95rem;
}

.td-route__media img {
  width: 100%;
  min-height: 380px;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.td-phase {
  background: #fbfcfd;
  border: 1px solid #eef2f6;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(7, 27, 44, 0.04);
  padding: 1.5rem;
}

.td-phase i {
  color: var(--copper);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  display: block;
}

.td-phase strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.td-phase span {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.td-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  margin-bottom: 1.25rem;
}

.td-tabs button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

.td-tabs button.is-active {
  background: var(--navy);
  color: var(--white);
}

.td-tab-panels .faq-list {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  gap: 0.75rem;
}

.td-tab-panels .faq-item ul {
  margin: 0 1.1rem 1rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.td-tab-panels h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  margin-bottom: 1rem;
  color: var(--heading);
}

.td-nedir {
  margin-top: 2.25rem;
}

.td-nedir h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  color: var(--heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.td-nedir p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.td-others-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.td-others-wrap__head {
  padding: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.td-others-wrap .td-eyebrow {
  margin-bottom: 0.4rem;
}

.td-others-wrap h3 {
  font-size: 1.2rem;
  color: var(--heading);
  margin: 0;
}

.td-others {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem 0.75rem;
}

.td-others a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: transparent;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--navy);
}

.td-others a:hover {
  background: transparent;
  color: var(--navy);
}

.td-others a i {
  font-size: 0.75rem;
  color: inherit;
  transition: transform 0.2s;
}

.td-others a:hover i {
  transform: translateX(4px);
}

.td-others a.is-current {
  background: rgba(14, 49, 102, 0.05);
  border-color: rgba(14, 49, 102, 0.2);
  font-weight: 700;
  color: var(--navy);
}

.td-others-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: var(--copper);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
}

.td-others-cta:hover {
  background: var(--copper-deep);
  color: var(--white);
}

.blog-aside .booking-form--stack {
  margin-top: 0;
  background: #fff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.blog-aside .booking-form--stack::before {
  background: var(--navy);
}

.blog-aside .booking-form__tag {
  color: var(--navy);
}

.blog-aside .booking-form--stack .booking-field input {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #334155;
}

.blog-aside .booking-form--stack .booking-field input:focus {
  background: #fff;
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(14, 49, 102, 0.2);
  outline: none;
}

.blog-aside .booking-form--stack .btn-sore-copper {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.blog-aside .booking-form--stack .btn-sore-copper:hover {
  background: var(--navy-deep);
  color: #fff;
}

.blog-aside .booking-form--stack .btn-arrow {
  background: rgba(255, 255, 255, 0.2);
}

.booking-form--stack {
  margin-top: 1.35rem;
  transform: none;
  padding: 1.15rem 1.1rem 1rem;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid rgba(14, 49, 102, 0.1);
  box-shadow: 0 12px 32px rgba(14, 49, 102, 0.08);
}

.booking-form--stack::before {
  left: 1.1rem;
}

.booking-form--stack .booking-form__row {
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.booking-form--stack .booking-form__head {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding-top: 0.2rem;
}

.booking-form--stack .booking-form__head h3 {
  font-size: 0.98rem;
  margin: 0 0 0.15rem;
  color: var(--navy);
}

.booking-form--stack .booking-form__head p {
  font-size: 0.74rem;
}

.booking-form--stack .booking-field {
  gap: 0.28rem;
}

.booking-form--stack .booking-field label {
  font-size: 0.72rem;
  color: var(--navy);
}

.booking-form--stack .booking-field input,
.booking-form--stack .booking-field select,
.booking-form--stack .booking-field textarea {
  min-height: 44px;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(14, 49, 102, 0.14);
  color: var(--navy);
}

.booking-form--stack .booking-field__control input,
.booking-form--stack .booking-field__control textarea {
  padding-left: 2.35rem;
}

.booking-form--stack .booking-field__control i {
  color: rgba(14, 49, 102, 0.45);
  left: 0.8rem;
  font-size: 0.88rem;
}

.booking-form--stack .booking-field__control--area i {
  top: 0.85rem;
}

.booking-form--stack .booking-field textarea {
  min-height: 72px;
}

.booking-form--stack .booking-field input:focus,
.booking-form--stack .booking-field select:focus,
.booking-form--stack .booking-field textarea:focus {
  background: var(--white);
  border-color: var(--copper);
  outline-color: rgba(196, 132, 90, 0.28);
}

.booking-form--stack .booking-form__submit {
  min-height: 44px;
}

.booking-form--stack .booking-check {
  font-size: 0.72rem;
  gap: 0.4rem;
}

.booking-form--stack .btn-sore {
  width: 100%;
  margin-top: 0;
  justify-content: center;
}

#sss h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  margin-bottom: 1.25rem;
  color: var(--heading);
}

#sss .faq-list {
  width: 100%;
}

#sss .faq-item ul {
  margin: 0 1.1rem 1rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.td-main .faq-item {
  background: var(--white);
  border: 1px solid #eef2f6;
  border-radius: 1rem;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.td-main .faq-item:hover {
  border-color: rgba(196, 132, 90, 0.35);
}

.td-main .faq-item summary {
  padding: 1.25rem 1.5rem;
  min-height: 64px;
  transition: color 0.3s ease;
}

.td-main .faq-item:hover summary {
  color: var(--navy);
}

.td-main .faq-item p {
  padding: 0 1.5rem 1.25rem;
}

.td-main .faq-item ul {
  margin: 0 1.5rem 1rem;
}

.td-main .faq-toggle {
  background: #f7fafc;
  color: var(--copper);
  border: 1px solid #eef2f6;
  transition: transform 0.3s ease;
}

.td-main .faq-toggle::before {
  content: "\F282";
  font-family: "bootstrap-icons" !important;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1;
}

.td-main .faq-item[open] .faq-toggle {
  transform: rotate(180deg);
}

.td-main .faq-item[open] .faq-toggle::before {
  content: "\F282";
}

.page-inner .btn-sore-primary .btn-arrow,
.page-inner .btn-sore-outline .btn-arrow {
  background: var(--copper);
}

/* ---------- Responsive ---------- */
@media (min-width: 1200px) and (max-width: 1399px) {
  .nav-shell {
    gap: 0.75rem;
  }

  .site-header .nav-menu > li > a {
    padding: 0.4rem 0.4rem;
    font-size: 0.84rem;
  }

  .brand img {
    height: 56px;
  }

  .btn-consult-copper {
    min-width: 150px;
    height: 46px;
  }

  .temos-badge {
    height: 42px;
  }
}

@media (max-width: 1199px) {
  .nav-menu {
    display: none;
  }

  .site-header .treatments-mega {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .temos-badge {
    display: none;
  }

  .lang-switch--header {
    display: none;
  }

  .feature-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 14px;
    margin-bottom: -1.5rem;
    min-height: 0;
    transform: none;
  }

  .feature-bar__item:nth-child(3) {
    border-right: 0;
  }

  .feature-bar__item:nth-child(n + 4) {
    border-top: 1px solid var(--border);
  }

  .site-header {
    padding-top: 1rem;
  }

  .clinics-grid,
  .tour-discover__grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .tour-discover__grid {
    align-items: stretch;
    gap: 1.5rem;
  }

  .tour-discover__intro {
    grid-column: 1;
    grid-row: 1;
  }

  .tour-discover__media {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
  }

  .tour-discover__aside {
    grid-column: 1;
    grid-row: 3;
  }

  .tour-panel__frame {
    min-height: 380px;
  }

  .treat-card,
  .result-card,
  .article-card {
    flex-basis: calc((100% - var(--slider-gap)) / 2);
  }

  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid,
  .doc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .about-gallery,
  .quality-principles,
  .quality-roadmap,
  .treat-hub,
  .intl-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand img {
    height: 52px;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 2.25rem 0 1.75rem;
  }

  .hero__content,
  .tour-discover__grid,
  .why-grid,
  .results-grid,
  .booking-panel,
  .articles-grid,
  .clinics-grid,
  .reviews-banners,
  .treat-layout,
  .td-layout,
  .td-block--split,
  .td-block--split-reverse,
  .td-split,
  .td-route,
  .doc-open,
  .cl-open,
  .cl-map,
  .cl-facts,
  .cl-services,
  .ct-cards,
  .ct-clinics,
  .td-clinics {
    grid-template-columns: 1fr;
  }

  .booking-panel__map iframe {
    min-height: 280px;
  }

  .booking-panel--contact .booking-form {
    order: -1;
  }

  .td-split:has(.td-others-wrap),
  .td-split--intro {
    grid-template-columns: 1fr;
  }

  .td-split--intro .td-intro-main {
    order: -1;
  }

  .td-nedir {
    margin-top: 1.75rem;
  }

  .td-split--intro .td-split__media img {
    aspect-ratio: 11 / 5;
    min-height: 0;
  }

  .doc-open__media {
    max-width: 280px;
  }

  .cl-gallery,
  .cl-gallery--two {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .cl-gallery figure:first-child {
    grid-row: auto;
  }

  .cl-open__media img {
    aspect-ratio: 16 / 10;
  }

  .treat-side {
    position: static;
  }

  .td-sidebar,
  .td-main {
    grid-column: auto;
    grid-row: auto;
  }

  .td-main {
    order: -1;
  }

  .td-check--grid {
    grid-template-columns: 1fr;
  }

  .td-method__lead {
    font-size: 1rem;
  }

  .td-block--method {
    padding: 1.5rem;
  }

  .td-method__details {
    grid-template-columns: 1fr;
  }

  .td-main .td-split--reverse {
    grid-template-columns: 1fr;
  }

  .td-sidebar__sticky {
    position: static;
  }

  .td-main .booking-panel {
    grid-template-columns: 1fr;
  }

  .td-block--split-reverse .td-split__media {
    order: -1;
  }

  .td-split--reverse .td-split__media {
    order: 0;
  }

  .td-split__media img,
  .td-route__media img {
    min-height: 260px;
    max-height: 340px;
  }

  .td-split--intro .td-split__media img,
  .td-split--reverse .td-split__media img,
  .td-block > .td-split__media img {
    min-height: 0;
    max-height: none;
  }

  .td-benefits,
  .td-phases {
    grid-template-columns: 1fr 1fr;
  }

  .tour-discover__intro p {
    max-width: none;
  }

  .tour-panel__frame {
    min-height: 360px;
  }

  .tour-hint {
    font-size: 0.72rem;
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .hero {
    min-height: 620px;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .hero__inner {
    padding-top: 7.25rem;
  }

  .hero__slide img,
  .hero__slide video {
    object-position: 55% 40%;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(24px, 6.4vw, 32px);
    line-height: 1.12;
  }

  .hero__lead {
    max-width: none;
    font-size: 15px;
  }

  .hero__content {
    max-width: none;
  }

  .hero__actions {
    gap: 1.25rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .section-head__text + .btn-sore {
    align-self: stretch;
    width: 100%;
    justify-content: space-between;
  }

  .section-head h2 {
    white-space: normal;
  }

  .about-mv,
  .about-values,
  .about-split,
  .quality-policy,
  .quality-chart-split,
  .quality-roadmap,
  .quality-sustain,
  .rights-band {
    grid-template-columns: 1fr;
  }

  .rights-band__media {
    order: -1;
  }

  .rights-band__media img {
    height: 220px;
  }

  .quality-chart img {
    max-height: 380px;
  }

  .quality-principles {
    grid-template-columns: 1fr 1fr;
  }

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

  .treat-hub {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-split {
    gap: 1.75rem;
  }

  .about-split__media {
    position: static;
    order: -1;
  }

  .about-split__media img {
    min-height: 280px;
  }

  .about-split--equal .about-split__media img {
    min-height: 280px;
  }

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

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

  .quality-policy__media img {
    min-height: 280px;
  }

  .why-grid__media,
  .why-grid__media img {
    min-height: 360px;
  }

  .why-grid__intro {
    max-width: 66ch;
  }

  .result-card__title-row {
    grid-template-columns: 1fr;
  }

  .result-card__technique {
    justify-self: start;
    text-align: left;
  }

  .booking-panel {
    padding: 1.5rem;
    background-position: 55% 36%;
  }

  .booking-panel::before {
    background: linear-gradient(
      180deg,
      rgba(8, 28, 58, 0.9) 0%,
      rgba(14, 49, 102, 0.82) 55%,
      rgba(14, 49, 102, 0.72) 100%
    );
  }

  .booking-copy h2 {
    max-width: none;
  }

  .booking-form {
    transform: none;
    padding: 1.35rem 1.2rem 1.2rem;
  }

  .booking-form__head {
    flex-direction: column;
    gap: 0.45rem;
  }

  .booking-form__row {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .doc-grid,
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero {
    min-height: 340px;
    padding: 7.25rem 0 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(1.85rem, 6vw, 2.45rem);
  }

  .page-hero__lead {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .container-sore,
  .hero__inner,
  .site-header .container-sore,
  .tour-discover,
  #tedaviler .container-sore,
  #yorumlar .container-sore,
  #neden-doc .container-sore,
  #sonuclar .container-sore,
  #randevu .container-sore,
  #ekip .container-sore,
  #icerikler .container-sore,
  #sss .container-sore {
    width: calc(100% - 3rem);
  }

  .section,
  .td-page {
    padding: 2rem 0 1.6rem;
  }

  #sonuclar.section,
  #ekip.section {
    padding: 1.85rem 0 1.55rem;
  }

  #sonuclar .section-head,
  #ekip .section-head {
    margin-bottom: 0.9rem;
  }

  #sonuclar .results-grid {
    gap: 0.8rem;
  }

  #sonuclar .ba-compare {
    aspect-ratio: 4 / 3;
  }

  .ba-compare__divider::after {
    width: 38px;
    height: 38px;
  }

  .ba-compare__divider::before {
    font-size: 1.05rem;
  }

  .booking-panel {
    padding: 1.25rem;
    border-radius: 22px;
    background-position: 48% 38%;
  }

  .booking-form {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .feature-bar {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    width: min(100%, 22rem);
    border-radius: 16px;
    margin: 0 auto -3.25rem;
    padding: 0.75rem;
    background: var(--white);
    min-height: 0;
    transform: translateY(28%);
    overflow: visible;
    z-index: 5;
    box-shadow: var(--shadow-md);
  }

  .feature-bar__item {
    padding: 0.55rem 0.6rem;
    gap: 0.45rem;
    font-size: 0.72rem;
    line-height: 1.25;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    min-height: 0;
    align-items: center;
  }

  .feature-bar__icon,
  .feature-bar__icon svg {
    width: 16px;
    height: 16px;
  }

  .feature-bar__text-full {
    display: none;
  }

  .feature-bar__text-short {
    display: inline;
  }

  .feature-bar__item:nth-child(odd),
  .feature-bar__item:nth-child(n + 4),
  .feature-bar__item:last-child {
    border-right: 1px solid var(--border);
    grid-column: auto;
  }

  .feature-bar__item:last-child {
    display: none;
  }

  .tour-panel__frame {
    width: 100%;
    min-height: 360px;
    aspect-ratio: 4 / 3;
  }

  .tour-discover__actions {
    width: 100%;
  }

  .tour-discover__actions .btn-sore {
    flex: 1 1 auto;
    justify-content: center;
  }

  .hero__slide img,
  .hero__slide video {
    object-position: 48% 38%;
  }

  .hero {
    min-height: 520px;
    padding-bottom: 1.25rem;
  }

  #sanal-gezinti {
    padding-top: 4.5rem;
  }

  .hero__inner {
    padding-top: 6.75rem;
  }

  .hero__content {
    padding-bottom: 0.85rem;
  }

  .hero__title {
    font-size: clamp(1.75rem, 7.2vw, 2.15rem);
    margin-bottom: 1.2rem;
  }

  .hero__lead {
    margin-bottom: 1.85rem;
    line-height: 1.6;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .hero__btn-primary {
    width: auto;
    min-width: 0;
    align-self: flex-start;
    height: 42px;
    padding: 0 1.1rem;
    font-size: 0.88rem;
  }

  .hero__link {
    display: none;
  }

  .treat-card,
  .result-card,
  .article-card {
    flex-basis: min(85vw, 100%);
  }

  #tedaviler .treat-card {
    flex-basis: calc(100% - 1.1rem);
  }

  #tedaviler .section-head {
    margin-bottom: 0.75rem;
  }

  #tedaviler .slider-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  #tedaviler .card-track {
    padding-bottom: 0.3rem;
  }

  #tedaviler .slider-dots {
    margin-top: 0.5rem;
    margin-bottom: 0;
  }

  #tedaviler.section {
    padding-bottom: 1.15rem;
  }

  .treat-card__img {
    aspect-ratio: 16 / 9;
  }

  .treat-card__body {
    padding: 0.65rem 0.8rem 0.75rem;
  }

  .treat-card__label {
    display: none;
  }

  .treat-card h3,
  .treat-hub .treat-card h2 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .treat-card p {
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
  }

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

  .slider-wrap {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .slider-nav--prev {
    left: 0.25rem;
  }

  .slider-nav--next {
    right: 0.25rem;
  }

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

  .ct-clinic {
    grid-template-columns: 1fr;
  }

  .ct-clinic__media img {
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }

  .team-grid,
  .doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-gallery,
  .cl-gallery--two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    top: 0;
    padding-top: 1rem;
  }

  .nav-shell {
    gap: 0.75rem;
  }

  .nav-actions {
    display: none;
  }

  .site-footer {
    padding: 2.75rem 0 1.35rem;
  }

  .page-hero {
    min-height: 320px;
    padding: 6.75rem 0 2.25rem;
  }

  .page-hero--blog {
    min-height: 0;
    padding: 6.75rem 0 4rem;
  }

  .about-card {
    padding: 1.35rem 1.2rem 1.2rem;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-principles,
  .intl-steps,
  .treat-hub,
  .td-benefits,
  .td-phases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-ethics,
  .quality-swot,
  .quality-sustain__grid,
  .rights-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 48px;
  }
}

@media (max-width: 575px) {
  .container-sore,
  .hero__inner,
  .site-header .container-sore,
  .tour-discover,
  #tedaviler .container-sore,
  #yorumlar .container-sore,
  #neden-doc .container-sore,
  #sonuclar .container-sore,
  #randevu .container-sore,
  #ekip .container-sore,
  #icerikler .container-sore,
  #sss .container-sore {
    width: calc(100% - 2rem);
  }

  .section {
    padding: 1.75rem 0 1.4rem;
  }

  .brand img {
    height: 42px;
  }

  .hero {
    min-height: 520px;
  }

  .hero__title {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero__btn-primary {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    min-height: 280px;
    padding: 6.25rem 0 1.85rem;
  }

  .page-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .page-hero__lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .team-grid,
  .doc-grid,
  .about-values-grid,
  .about-gallery,
  .quality-principles,
  .intl-steps,
  .treat-hub,
  .td-benefits,
  .td-phases,
  .cl-gallery,
  .cl-gallery--two {
    grid-template-columns: 1fr;
  }

  .cl-docs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .btn-sore,
  .btn-consult-copper {
    white-space: normal;
    min-width: 0;
  }

  .whatsapp-fab {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
  }

  .kvkk-section,
  .booking-check,
  .footer-contact p {
    overflow-wrap: anywhere;
  }

  .quality-chart img {
    max-height: 280px;
  }

  .site-footer {
    padding: 2.5rem 0 1.25rem;
    border-radius: 20px 20px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
