/* Ayazdent — tipografi: Inter + içerik ölçeği */
:root {
  --ayaz-navy: #111827; /* başlık rengi */
  --ayaz-blue: #2563EB;
  --ayaz-bright: #60A5FA;
  --ayaz-sky: #F1F5F9;
  --ayaz-ice: #F8FAFC;
  --ayaz-white: #ffffff;
  --ayaz-ink: #2B2B2B; /* metin rengi */
  --ayaz-muted: #64748B;
  --ayaz-border: #E2E8F0;
  --ayaz-radius: 18px;
  --ayaz-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  --vt-primary: var(--ayaz-blue);
  --vt-dark: var(--ayaz-navy);
  --vt-navy: var(--ayaz-navy);
  --vt-accent: var(--ayaz-blue);
  --vt-accent-dark: var(--ayaz-navy);
  --vt-blue: var(--ayaz-blue);
  --vt-bg-light: var(--ayaz-ice);
  --vt-border: var(--ayaz-border);
  --vt-muted: var(--ayaz-muted);
  --vt-radius: var(--ayaz-radius);
  --vt-shadow-md: var(--ayaz-shadow);
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-head: "Inter", system-ui, -apple-system, sans-serif;
  --font-brand: "Cinzel", "Times New Roman", serif;
  --vt-font-body: var(--font-body);
  --vt-font-head: var(--font-head);
  --text-h1: 46px;
  --text-h2: 34px;
  --text-h3: 28px;
  --text-p: 18px;
  --text-p-mobile: 17px;
  --text-lh: 1.8;
  --content-measure: 810px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-p);
  font-weight: 400;
  color: var(--ayaz-ink);
  background: linear-gradient(180deg, var(--ayaz-ice) 0%, var(--ayaz-white) 42%, #F1F5F9 100%);
  line-height: var(--text-lh);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .hero-title, .section-title {
  font-family: var(--font-head);
  color: var(--ayaz-navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
h1 { font-size: var(--text-h1); font-weight: 700; }
h2 { font-size: var(--text-h2); font-weight: 700; }
h3 { font-size: var(--text-h3); font-weight: 600; }
p { font-size: var(--text-p); font-weight: 400; line-height: var(--text-lh); }

@media (max-width: 767px) {
  body { font-size: var(--text-p-mobile); }
  p { font-size: var(--text-p-mobile); }
  h1 { font-size: clamp(30px, 8vw, 40px); }
  h2 { font-size: clamp(26px, 6.5vw, 32px); }
  h3 { font-size: clamp(22px, 5.5vw, 26px); }
}

a { color: var(--ayaz-blue); text-decoration: none; }
a:hover { color: var(--ayaz-navy); }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }

/* Top bar / header — premium ink glass */
.site-topbar {
  background: linear-gradient(90deg, #020617 0%, #0B1220 50%, #071028 100%);
  color: rgba(226, 232, 240, .78);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 9px 0;
  border-bottom: 1px solid rgba(148, 163, 184, .12);
}
.site-topbar .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; }
.site-topbar a { color: #F8FAFC; }
.site-topbar a:hover { color: var(--ayaz-bright); }
.site-topbar i { color: var(--ayaz-bright); margin-right: 4px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, .94) 0%, rgba(7, 16, 36, .9) 100%);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(148, 163, 184, .14);
  box-shadow: 0 10px 40px rgba(2, 6, 23, .28);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  min-height: 88px;
}
.brand-logo {
  display: inline-flex; align-items: center;
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.brand-logo:hover { transform: translateY(-1px); }
.brand-logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: height .28s ease;
}
.brand-logo-img--light { display: none; }
/* Koyu header: beyaz logo (varsa) */
.site-header.has-light-logo .brand-logo-img--dark { display: none; }
.site-header.has-light-logo .brand-logo-img--light { display: block; }
.brand-word {
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.25rem, 5.8vw, 1.65rem);
  line-height: 1;
  letter-spacing: .06em;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(147, 197, 253, .95);
  text-stroke: 1.4px rgba(147, 197, 253, .95);
  white-space: nowrap;
  user-select: none;
}
.brand-word::before {
  content: none;
}

.main-nav { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.main-nav > li { position: relative; }
/* Alt menüye geçişte hover kopmasın diye görünmez köprü */
.main-nav > li.has-sub::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 16px;
  z-index: 51;
}
.main-nav > li > a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 16px; border-radius: 12px;
  color: rgba(241, 245, 249, .88);
  font-family: var(--font-head);
  font-weight: 600; font-size: 16px; letter-spacing: .01em;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.main-nav > li > a .menu-ico {
  font-size: 17px; line-height: 1; flex-shrink: 0;
  color: var(--ayaz-bright);
  opacity: .9;
  transition: color .2s ease, opacity .2s ease;
}
.main-nav > li > a .menu-caret {
  font-size: 12px; color: rgba(148, 163, 184, .85); margin-left: 2px;
  transition: transform .2s ease, color .2s ease;
}
.main-nav > li > a:hover,
.main-nav > li:hover > a,
.main-nav > li.open > a {
  background: rgba(37, 99, 235, .16);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(96, 165, 250, .22);
}
.main-nav > li > a:hover .menu-ico,
.main-nav > li:hover > a .menu-ico,
.main-nav > li.open > a .menu-ico { color: #93C5FD; opacity: 1; }
.main-nav > li > a:hover .menu-caret,
.main-nav > li:hover > a .menu-caret,
.main-nav > li.open > a .menu-caret { color: #93C5FD; }

.submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 280px; z-index: 52;
  width: max-content;
  max-width: min(360px, 92vw);
  background: linear-gradient(180deg, #0F172A 0%, #0B1220 100%);
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 16px;
  box-shadow: 0 22px 48px rgba(2, 6, 23, .45), 0 0 0 1px rgba(37, 99, 235, .08);
  padding: 10px; display: none; list-style: none; margin: 0;
  backdrop-filter: blur(16px);
  overflow: visible;
}
.main-nav > li:hover > .submenu,
.main-nav > li.open > .submenu { display: block; }
.main-nav > li.open > a .menu-caret { transform: rotate(180deg); }
.menu-caret { transition: transform .2s ease; }
.submenu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 11px;
  color: rgba(226, 232, 240, .9) !important;
  font-weight: 500; font-size: 15.5px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.submenu a > span {
  flex: 0 1 auto;
  white-space: nowrap;
}
.submenu a .menu-ico {
  font-size: 17px; line-height: 1; flex-shrink: 0; width: 22px; text-align: center;
  color: var(--ayaz-bright);
}
.submenu a:hover {
  background: rgba(37, 99, 235, .18);
  color: #fff !important;
}
.submenu a:hover .menu-ico { color: #93C5FD; }
.submenu > li { position: relative; }
.submenu > li > a { justify-content: flex-start; }
.submenu > li > a .menu-caret--nested {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 12px;
  opacity: .75;
  transform: none;
  transition: transform .2s ease, color .2s ease, opacity .2s ease;
}
.submenu > li:hover > a .menu-caret--nested,
.submenu > li.open > a .menu-caret--nested {
  color: #93C5FD;
  opacity: 1;
}
/* Yan flyout: boşluksuz köprü + yüksek z-index (hover kopmaz) */
.submenu--nested {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0;
  min-width: 280px;
  width: max-content;
  max-width: min(360px, 92vw);
  z-index: 60;
  display: none;
}
.submenu > li.has-sub::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  width: 12px;
  height: 100%;
}
.submenu > li:hover > .submenu--nested,
.submenu > li.open > .submenu--nested { display: block; }
.submenu--nested a {
  padding: 12px 16px;
  font-size: 15px;
  white-space: nowrap;
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(15, 23, 42, .55);
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 999px;
  padding: 4px;
}
.lang-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0 !important;
  border-radius: 50%;
  text-decoration: none !important;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  opacity: .78;
}
.lang-switch__item:hover {
  opacity: 1;
  background: rgba(37, 99, 235, .22);
  transform: translateY(-1px);
}
.lang-switch__item.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .35), 0 6px 14px rgba(15, 23, 42, .25);
}
.lang-flag {
  display: block;
  width: 22px;
  height: 16px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .18);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Türkiye */
.lang-flag--tr {
  background-color: #E30A17;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'%3E%3Crect width='30' height='20' fill='%23E30A17'/%3E%3Ccircle cx='12.2' cy='10' r='5.2' fill='%23fff'/%3E%3Ccircle cx='13.6' cy='10' r='4.1' fill='%23E30A17'/%3E%3Cpolygon fill='%23fff' points='18.2,10 20.8,11.1 19.6,8.4 20.8,5.7 18.2,6.8 15.6,5.7 16.8,8.4 15.6,11.1'/%3E%3C/svg%3E");
}
/* İngiltere (English) */
.lang-flag--gb {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Crect width='60' height='40' fill='%23012169'/%3E%3Cpath d='M0 0L60 40M60 0L0 40' stroke='%23fff' stroke-width='8'/%3E%3Cpath d='M0 0L60 40M60 0L0 40' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30 0V40M0 20H60' stroke='%23fff' stroke-width='12'/%3E%3Cpath d='M30 0V40M0 20H60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E");
}
/* Almanya */
.lang-flag--de {
  background-image: linear-gradient(to bottom, #000 0 33.33%, #DD0000 33.33% 66.66%, #FFCE00 66.66% 100%);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px; font-weight: 700; border: 0; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 48%, #3B82F6 100%);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(37, 99, 235, .32);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 100%);
  box-shadow: 0 14px 32px rgba(37, 99, 235, .4);
  color: #fff !important;
}
.header-actions .btn-primary {
  padding: 13px 18px;
  font-size: 14.5px;
  letter-spacing: .01em;
}
.btn-outline { background: #fff; color: var(--ayaz-blue) !important; border: 1px solid var(--ayaz-border); }
.btn-lg { padding: 14px 22px; }

.mobile-toggle {
  display: none; background: rgba(37, 99, 235, .14);
  border: 1px solid rgba(96, 165, 250, .28);
  border-radius: 12px; width: 42px; height: 42px;
  align-items: center; justify-content: center;
  font-size: 20px; color: #F8FAFC; cursor: pointer;
}

/* Ana sayfa: hero üzerinde yüzen ink-glass menü → scroll'da sabit beyaz */
body.is-homepage .site-topbar { display: none; }
body.is-homepage .site-header--home {
  position: absolute;
  inset: 16px 0 auto;
  z-index: 60;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background .28s ease, box-shadow .28s ease, inset .28s ease;
}
body.is-homepage .site-header--home .header-inner {
  min-height: 0;
  padding: 12px 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(2, 6, 23, .88) 0%, rgba(15, 23, 42, .78) 55%, rgba(7, 19, 40, .82) 100%);
  border: 1px solid rgba(96, 165, 250, .22);
  box-shadow:
    0 18px 48px rgba(2, 6, 23, .5),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, border-radius .28s ease, padding .28s ease;
}
body.is-homepage .site-header--home .brand-logo {
  display: inline-flex; align-items: center;
  padding: 2px 6px;
  background: rgba(255, 255, 255, .96);
  border-radius: 12px;
}
body.is-homepage .site-header--home.has-light-logo .brand-logo {
  padding: 0;
  background: transparent;
}
body.is-homepage .site-header--home .brand-logo-img { height: 50px; }
body.is-homepage .site-header--home .mobile-toggle { color: #F8FAFC; }

/* Scroll sonrası: sabit beyaz header + koyu menü */
body.is-homepage .site-header--home.is-scrolled {
  position: fixed;
  inset: 0 0 auto;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--ayaz-border);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
}
body.is-homepage .site-header--home.is-scrolled .header-inner {
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 10px 0;
  min-height: 78px;
}
body.is-homepage .site-header--home.is-scrolled .brand-logo {
  background: transparent;
  padding: 0;
}
body.is-homepage .site-header--home.is-scrolled .brand-logo-img {
  height: 38px;
  max-width: 160px;
  object-fit: contain;
}
body.is-homepage .site-header--home.is-scrolled .brand-logo-img--dark { display: block; }
body.is-homepage .site-header--home.is-scrolled .brand-logo-img--light { display: none; }
body.is-homepage .site-header--home.is-scrolled .main-nav > li > a {
  color: var(--ayaz-ink);
}
body.is-homepage .site-header--home.is-scrolled .main-nav > li > a .menu-ico {
  color: var(--ayaz-blue);
}
body.is-homepage .site-header--home.is-scrolled .main-nav > li > a .menu-caret {
  color: var(--ayaz-muted);
}
body.is-homepage .site-header--home.is-scrolled .main-nav > li > a:hover,
body.is-homepage .site-header--home.is-scrolled .main-nav > li:hover > a,
body.is-homepage .site-header--home.is-scrolled .main-nav > li.open > a {
  background: var(--ayaz-sky);
  color: var(--ayaz-navy);
  box-shadow: none;
}
body.is-homepage .site-header--home.is-scrolled .main-nav > li > a:hover .menu-ico,
body.is-homepage .site-header--home.is-scrolled .main-nav > li:hover > a .menu-ico,
body.is-homepage .site-header--home.is-scrolled .main-nav > li.open > a .menu-ico {
  color: var(--ayaz-navy);
}
body.is-homepage .site-header--home.is-scrolled .submenu {
  background: #fff;
  border: 1px solid var(--ayaz-border);
  box-shadow: var(--ayaz-shadow);
}
body.is-homepage .site-header--home.is-scrolled .submenu a {
  color: var(--ayaz-ink) !important;
}
body.is-homepage .site-header--home.is-scrolled .submenu a:hover {
  background: var(--ayaz-sky);
  color: var(--ayaz-navy) !important;
}
body.is-homepage .site-header--home.is-scrolled .lang-switch {
  background: var(--ayaz-sky);
  border-color: var(--ayaz-border);
}
body.is-homepage .site-header--home.is-scrolled .lang-switch__item:hover {
  background: rgba(37, 99, 235, .10);
}
body.is-homepage .site-header--home.is-scrolled .lang-switch__item.is-active {
  background: rgba(37, 99, 235, .12);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, .35), 0 4px 12px rgba(37, 99, 235, .18);
}
body.is-homepage .site-header--home.is-scrolled .mobile-toggle {
  color: var(--ayaz-navy);
  background: var(--ayaz-sky);
  border-color: var(--ayaz-border);
}
body.is-homepage .site-header--home.is-scrolled .main-nav.is-open {
  background: #fff;
  border: 1px solid var(--ayaz-border);
  box-shadow: var(--ayaz-shadow);
}
body.is-homepage .site-header--home.is-scrolled .main-nav.is-open > li > a {
  color: var(--ayaz-ink);
}

/* Premium hero: dark editorial canvas, giant watermark, framed portrait */
.hero-ayaz {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(1100px 520px at 82% 8%, rgba(37, 99, 235, .22), transparent 62%),
    linear-gradient(160deg, #020617 0%, #071328 52%, #0A1B36 100%);
  color: #fff;
}
.hero-ayaz-glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-ayaz-glow--one { width: 460px; height: 460px; left: -160px; bottom: -220px; background: rgba(37, 99, 235, .28); }
.hero-ayaz-glow--two { width: 380px; height: 380px; right: 8%; top: -180px; background: rgba(96, 165, 250, .20); }
.hero-ayaz-word {
  position: absolute; z-index: 0; left: 50%; top: 100%;
  transform: translate3d(-50%, -82%, 0);
  font-family: var(--font-brand); font-size: clamp(7rem, 18vw, 16rem); font-weight: 600;
  line-height: 1; letter-spacing: .1em; color: transparent; white-space: nowrap;
  -webkit-text-stroke: 1px rgba(148, 197, 253, .9);
  opacity: .14;
  pointer-events: none; user-select: none;
  backface-visibility: hidden;
  will-change: transform, opacity;
  animation: heroWordIntro 1.1s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes heroWordIntro {
  0%   { transform: translate3d(-50%, calc(-50% - 46vh), 0) scale(1.06); opacity: 1; }
  45%  { transform: translate3d(-50%, calc(-50% - 46vh), 0) scale(1); opacity: .85; }
  58%  { transform: translate3d(-50%, calc(-50% - 46vh), 0) scale(1); opacity: .85; }
  100% { transform: translate3d(-50%, -82%, 0) scale(1); opacity: .14; }
}
.hero-ayaz-inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.18fr);
  align-items: center; gap: clamp(24px, 4vw, 56px);
  width: min(1180px, calc(100% - 64px)); margin-inline: auto;
  padding: clamp(140px, 15vw, 176px) 0 clamp(72px, 9vw, 110px);
}
.hero-ayaz-kicker {
  display: inline-flex; align-items: center; gap: 12px; margin: 0 0 22px;
  padding: 9px 16px; border: 1px solid rgba(148, 197, 253, .28); border-radius: 999px;
  background: rgba(37, 99, 235, .12); color: #93C5FD;
  font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
}
.hero-ayaz-kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ayaz-bright); box-shadow: 0 0 12px rgba(96, 165, 250, .9); }
.hero-ayaz-title {
  display: flex; flex-wrap: nowrap; align-items: baseline; gap: 0 .32em;
  margin: 0; font-family: var(--font-brand);
  font-size: clamp(1.45rem, 3.4vw, 2.95rem);
  font-weight: 600; line-height: 1.08; letter-spacing: .08em; text-transform: uppercase; color: #fff;
  white-space: nowrap;
}
.hero-ayaz-w { display: inline-flex; flex: 0 0 auto; }
.hero-ayaz-w i {
  display: inline-block; font-style: normal; opacity: 0;
  transform: translateY(.5em) rotateX(60deg); filter: blur(6px);
  animation: heroLetter .7s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero-ayaz-w:first-child i:nth-child(1) { animation-delay: .80s; }
.hero-ayaz-w:first-child i:nth-child(2) { animation-delay: .88s; }
.hero-ayaz-w:first-child i:nth-child(3) { animation-delay: .96s; }
.hero-ayaz-w:first-child i:nth-child(4) { animation-delay: 1.04s; }
.hero-ayaz-w:first-child i:nth-child(5) { animation-delay: 1.12s; }
.hero-ayaz-w:last-child i:nth-child(1) { animation-delay: 1.20s; }
.hero-ayaz-w:last-child i:nth-child(2) { animation-delay: 1.28s; }
.hero-ayaz-w:last-child i:nth-child(3) { animation-delay: 1.36s; }
.hero-ayaz-w:last-child i:nth-child(4) { animation-delay: 1.44s; }
.hero-ayaz-w--shimmer i {
  background: linear-gradient(100deg, #2563EB 0%, #60A5FA 28%, #DBEAFE 50%, #60A5FA 72%, #2563EB 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    heroLetter .7s cubic-bezier(.2, .7, .2, 1) forwards,
    heroShimmer 5.5s linear 2s infinite;
}
.hero-ayaz-w--shimmer i:nth-child(1) { animation-delay: 1.20s, 2s; }
.hero-ayaz-w--shimmer i:nth-child(2) { animation-delay: 1.28s, 2.08s; }
.hero-ayaz-w--shimmer i:nth-child(3) { animation-delay: 1.36s, 2.16s; }
.hero-ayaz-w--shimmer i:nth-child(4) { animation-delay: 1.44s, 2.24s; }
@keyframes heroLetter {
  to { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}
@keyframes heroShimmer {
  0% { background-position: 0% 0; }
  100% { background-position: -220% 0; }
}
.hero-ayaz-sub {
  display: flex; flex-wrap: nowrap; align-items: center; gap: 14px; margin: 18px 0 0;
  color: rgba(226, 232, 240, .85); font-size: clamp(.88rem, 1.35vw, 1.12rem); font-weight: 500; letter-spacing: .02em;
  white-space: nowrap;
}
.hero-ayaz-sub strong { color: var(--ayaz-bright); font-weight: 700; }
.hero-ayaz-sub::after { content: ""; flex: 0 0 54px; height: 1px; background: linear-gradient(90deg, rgba(96,165,250,.8), transparent); }
.hero-ayaz-text { max-width: 470px; margin: 20px 0 0; color: rgba(226, 232, 240, .78); font-size: 1.02rem; line-height: 1.8; }
.hero-ayaz-copy > .hero-ayaz-kicker { animation: heroRise .8s cubic-bezier(.2,.7,.2,1) .70s both; }
.hero-ayaz-sub { animation: heroRise .8s cubic-bezier(.2,.7,.2,1) 1.22s both; }
.hero-ayaz-text { animation: heroRise .8s cubic-bezier(.2,.7,.2,1) 1.32s both; }
.hero-ayaz-actions { animation: heroRise .8s cubic-bezier(.2,.7,.2,1) 1.42s both; }
.hero-ayaz-marks { animation: heroRise .8s cubic-bezier(.2,.7,.2,1) 1.52s both; }
.hero-ayaz-visual { animation: heroRise 1s cubic-bezier(.2,.7,.2,1) .95s both; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ayaz-w i, .hero-ayaz-w--shimmer i, .hero-ayaz-copy > .hero-ayaz-kicker, .hero-ayaz-sub,
  .hero-ayaz-text, .hero-ayaz-actions, .hero-ayaz-marks, .hero-ayaz-visual { animation: none; opacity: 1; transform: none; filter: none; }
  .hero-ayaz-w--shimmer i {
    background: none; color: var(--ayaz-bright);
    -webkit-background-clip: border-box; background-clip: border-box;
  }
  .hero-ayaz-word { animation: none; transform: translate3d(-50%, -82%, 0); opacity: .14; will-change: auto; }
}
.hero-ayaz-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-ayaz-actions a {
  display: inline-flex; align-items: center; gap: 12px; padding: 15px 22px; border-radius: 10px;
  font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hero-ayaz-actions a:hover { transform: translateY(-2px); }
.hero-ayaz-primary { background: var(--ayaz-blue); color: #fff; box-shadow: 0 14px 32px rgba(37, 99, 235, .35); }
.hero-ayaz-primary:hover { background: #1D4ED8; color: #fff; box-shadow: 0 18px 38px rgba(37, 99, 235, .45); }
.hero-ayaz-ghost { border: 1px solid rgba(255, 255, 255, .30); color: #fff; }
.hero-ayaz-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .10); color: #fff; }
.hero-ayaz-marks { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 34px 0 0; padding: 0; list-style: none; }
.hero-ayaz-marks li { display: inline-flex; align-items: center; gap: 9px; color: rgba(226, 232, 240, .72); font-size: .82rem; font-weight: 600; }
.hero-ayaz-marks i { color: var(--ayaz-bright); font-size: .95rem; }
.hero-ayaz-visual {
  position: relative; justify-self: end; width: min(660px, 100%); padding: 10px 10px 18px;
}
.hero-ayaz-visual::before {
  content: ""; position: absolute; inset: 18px 0 0 18px; z-index: 0; border-radius: 30px;
  background: linear-gradient(145deg, rgba(37, 99, 235, .42), rgba(96, 165, 250, .08));
  box-shadow: 0 28px 60px rgba(37, 99, 235, .22);
}
.hero-ayaz-frame {
  position: relative; z-index: 1; overflow: hidden; border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: #0a1628;
  box-shadow:
    0 36px 88px rgba(2, 6, 23, .58),
    0 0 0 1px rgba(148, 197, 253, .14),
    inset 0 1px 0 rgba(255, 255, 255, .14);
  transform: translateY(-2px);
  transition: transform .45s cubic-bezier(.2, .7, .2, 1), box-shadow .45s ease;
}
.hero-ayaz-visual:hover .hero-ayaz-frame {
  transform: translateY(-6px);
  box-shadow:
    0 44px 100px rgba(2, 6, 23, .62),
    0 0 0 1px rgba(148, 197, 253, .28),
    0 0 48px rgba(37, 99, 235, .18),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}
.hero-ayaz-frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, transparent 28%, transparent 76%, rgba(2, 6, 23, .18) 100%);
}
.hero-ayaz-frame img,
.hero-ayaz-frame picture,
.hero-ayaz-frame picture img {
  display: block; width: 100%; aspect-ratio: 1024 / 585; object-fit: cover; object-position: center 38%;
}
/* Asya Medya tarzı dalgalı slider bitişi */
.hero-ayaz-wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}
.hero-ayaz-wave svg {
  display: block;
  width: 100%;
  height: clamp(48px, 8vw, 96px);
}

/* Erce-style treatment cards under slider */
.home-treatments {
  position: relative;
  z-index: 4;
  background: #fff;
  padding: 10px 0 4px;
}
.home-treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: min(1680px, calc(100% - 16px));
  margin: 0 auto;
}
.home-treatment-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  color: #fff;
  isolation: isolate;
}
.home-treatment-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform .5s ease;
}
.home-treatment-card:hover .home-treatment-photo { transform: scale(1.06); }
.home-treatment-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  color: var(--ayaz-navy);
  z-index: 1;
  pointer-events: none;
}
.home-treatment-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
.home-treatment-label {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  text-align: right;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  color: #fff;
}
.home-intro-section { padding-top: 56px; padding-bottom: 24px; }
.home-intro-section > .container {
  width: min(1280px, calc(100% - 32px));
}

.section { padding: 72px 0; }
.home-faq-section {
  padding-top: 28px;
  padding-bottom: 56px;
}
.home-dentist-guide-section {
  padding-top: 36px;
  padding-bottom: 20px;
}
.dentist-guide-card {
  background: #fff;
  border: 1px solid var(--ayaz-border);
  border-radius: var(--ayaz-radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 64, 110, .05);
}
.dentist-guide-card__head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px 20px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .06), rgba(15, 23, 42, .03)),
    #fff;
  border-bottom: 1px solid var(--ayaz-border);
}
.dentist-guide-card__icon { flex: 0 0 auto; }
.dentist-guide-card__copy { min-width: 0; flex: 1; }
.dentist-guide-card__kicker {
  margin: 0 0 8px;
  color: var(--ayaz-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.dentist-guide-card__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  color: var(--ayaz-navy);
  letter-spacing: -.02em;
}
.dentist-guide-card__body {
  padding: 26px 28px 30px;
}
.dentist-guide-card__lead {
  margin: 0 0 24px;
  max-width: 62ch;
  color: var(--ayaz-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.dentist-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.dentist-guide-item {
  position: relative;
  padding: 20px 18px 18px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, .04), transparent 55%),
    #fff;
}
.dentist-guide-item__ico {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(37, 99, 235, .1);
  color: var(--ayaz-blue);
  font-size: 1.15rem;
}
.dentist-guide-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ayaz-navy);
}
.dentist-guide-item p {
  margin: 0;
  color: var(--ayaz-muted);
  font-size: .94rem;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .dentist-guide-card__head,
  .dentist-guide-card__body { padding-left: 20px; padding-right: 20px; }
  .dentist-guide-grid { grid-template-columns: 1fr; }
}
.home-faq-section .section-title {
  margin-bottom: 22px;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ayaz-blue); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; font-size: 12px; margin-bottom: 12px;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  padding: 0 !important;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ayaz-navy);
}
.section-lead { color: var(--ayaz-muted); max-width: 640px; margin: 0 0 36px; }

/* Site geneli 3D ikon rozetleri */
.ayaz-icon-3d {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1rem;
  color: #fff;
  background:
    radial-gradient(120% 90% at 28% 18%, rgba(255,255,255,.55), transparent 42%),
    linear-gradient(145deg, #93C5FD 0%, var(--ayaz-blue) 46%, var(--ayaz-navy) 100%);
    box-shadow:
    0 12px 24px rgba(15, 23, 42, .22),
    0 2px 0 rgba(255,255,255,.35) inset,
    0 -6px 12px rgba(7, 32, 54, .22) inset;
  transform: perspective(420px) rotateX(10deg) rotateY(-6deg);
  transform-style: preserve-3d;
}
.ayaz-icon-3d::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
}
.ayaz-icon-3d i {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  line-height: 1;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .28));
  transform: translateZ(10px);
}
.ayaz-icon-3d--sm {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: .65rem;
  transform: perspective(320px) rotateX(8deg) rotateY(-4deg);
}
.ayaz-icon-3d--sm i { font-size: .95rem; }
.ayaz-icon-3d--lg {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 1.25rem;
}
.ayaz-icon-3d--lg i { font-size: 1.85rem; }
.ayaz-icon-3d--soft {
  background:
    radial-gradient(120% 90% at 28% 18%, rgba(255,255,255,.5), transparent 42%),
    linear-gradient(145deg, #93C5FD 0%, #60A5FA 45%, #2563EB 100%);
}
.ayaz-icon-3d--gold {
  background:
    radial-gradient(120% 90% at 28% 18%, rgba(255,255,255,.55), transparent 42%),
    linear-gradient(145deg, #f0d08a 0%, #d4a24c 48%, #8a6230 100%);
}

/* Premium ince çizgi ikonlar (rozet/3D yok, tek renk vurgu) */
.ayaz-ico-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ayaz-blue);
  font-size: 1.15rem;
  line-height: 1;
  flex: 0 0 auto;
  -webkit-font-smoothing: antialiased;
}
.ayaz-ico-line--sm { font-size: .95rem; }
.ayaz-ico-line--lg { font-size: 1.6rem; }
.section-eyebrow .ayaz-ico-line { font-size: 1.1rem; }

/* Klinik paneli — slider oranında görsel + kurumsal bilgi paneli */
.clinic-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.clinic-panel-visual {
  position: relative;
  padding: 10px 10px 18px;
}
.clinic-panel-visual::before {
  content: "";
  position: absolute;
  inset: 18px 0 0 18px;
  z-index: 0;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(37, 99, 235, .28), rgba(96, 165, 250, .06));
  box-shadow: 0 24px 48px rgba(37, 99, 235, .14);
}
.clinic-panel-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, .08);
  background: #0a1628;
  box-shadow:
    0 28px 64px rgba(15, 23, 42, .16),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}
.clinic-panel-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, transparent 30%, transparent 78%, rgba(2, 6, 23, .12) 100%);
}
.clinic-panel-frame picture,
.clinic-panel-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1024 / 585;
  object-fit: cover;
  object-position: center 40%;
}
.clinic-panel-body {
  position: relative;
  padding: clamp(28px, 3.2vw, 40px) clamp(24px, 3vw, 36px);
  border-radius: 22px;
  background:
    linear-gradient(165deg, #0B1220 0%, #111827 52%, #0F172A 100%);
  border: 1px solid rgba(148, 163, 184, .16);
  box-shadow:
    0 24px 56px rgba(2, 6, 23, .18),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  color: #E2E8F0;
}
.clinic-panel-body::before {
  content: "";
  position: absolute;
  left: 0; top: 28px; bottom: 28px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #60A5FA, #2563EB 55%, transparent);
}
.clinic-panel-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #93C5FD;
}
.clinic-panel-title {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: #F8FAFC;
}
.clinic-panel-text {
  margin: 0 0 22px;
  color: rgba(226, 232, 240, .78);
  font-size: .98rem;
  line-height: 1.75;
}
.clinic-panel-facts {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  border-top: 1px solid rgba(148, 163, 184, .16);
}
.clinic-panel-facts li {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, .12);
}
.clinic-panel-fact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, .95);
  padding-top: 3px;
}
.clinic-panel-fact-value {
  color: #F1F5F9;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
}
a.clinic-panel-fact-value:hover { color: #93C5FD; }
.clinic-panel-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
}
.clinic-panel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  gap: 6px;
  padding: 11px 10px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.clinic-panel-btn i { font-size: .95em; }
.clinic-panel-btn--primary {
  background: linear-gradient(135deg, #1D4ED8, #2563EB 50%, #3B82F6);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(37, 99, 235, .32);
}
.clinic-panel-btn--primary:hover {
  transform: translateY(-1px);
  color: #fff !important;
  box-shadow: 0 16px 32px rgba(37, 99, 235, .4);
}
.clinic-panel-btn--ghost {
  background: transparent;
  color: #E2E8F0 !important;
  border: 1px solid rgba(148, 163, 184, .35);
}
.clinic-panel-btn--ghost:hover {
  border-color: rgba(147, 197, 253, .55);
  color: #fff !important;
  background: rgba(37, 99, 235, .14);
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.treat-card, .doctor-card, .pref-card {
  background: #fff; border: 1px solid var(--ayaz-border); border-radius: var(--ayaz-radius);
  overflow: hidden; box-shadow: 0 10px 28px rgba(7,64,110,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.treat-card:hover, .doctor-card:hover, .pref-card:hover {
  transform: translateY(-4px); box-shadow: var(--ayaz-shadow);
}
.treat-card .media, .doctor-card .media, .pref-card .media {
  aspect-ratio: 16/10;
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(255,255,255,.18), transparent 45%),
    linear-gradient(145deg, #93C5FD 0%, var(--ayaz-blue) 46%, var(--ayaz-navy) 100%);
  display: grid; place-items: center; color: #fff; font-size: 2rem;
}
.treat-card .media .ayaz-icon-3d,
.doctor-card .media .ayaz-icon-3d,
.pref-card .media .ayaz-icon-3d {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(120% 90% at 28% 18%, rgba(255,255,255,.6), transparent 42%),
    linear-gradient(145deg, #93C5FD 0%, #60A5FA 42%, #1E3A8A 100%);
}
.treat-card .media .ayaz-icon-3d i,
.doctor-card .media .ayaz-icon-3d i,
.pref-card .media .ayaz-icon-3d i { font-size: 2rem; }
.treat-card .body, .doctor-card .body, .pref-card .body { padding: 20px; }
.treat-card h3, .doctor-card h3, .pref-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.treat-card p, .doctor-card p, .pref-card p { margin: 0; color: var(--ayaz-muted); font-size: .95rem; }

/* Preferred treatments — EOT-style expanding portrait cards */
.preferred-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #f2f8fc;
  isolation: isolate;
}
/* EOT .shell parity: max 1380px with matching inline padding */
.preferred-shell {
  width: 100%;
  max-width: 1380px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  box-sizing: border-box;
}
.preferred-stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.preferred-heading { max-width: 640px; }
.preferred-heading-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ayaz-navy);
}
.preferred-heading-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ayaz-blue);
}
.preferred-carousel { overflow: hidden; }
.preferred-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  will-change: transform;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
  transform: translate3d(0, 0, 0);
}
.preferred-card {
  position: relative;
  display: block;
  flex: 0 0 100%;
  min-width: 100%;
  height: 32rem;
  min-height: 32rem;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  appearance: none;
  border: 0;
  border-radius: 12px;
  background: #c4c4c4;
  color: #fcffff;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition: opacity .3s ease, transform .3s ease;
}
.preferred-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0) scale(1.001);
}
.preferred-card-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, var(--ayaz-navy), var(--ayaz-blue));
  color: #fff;
  font-size: 3rem;
}
.preferred-card-fallback .ayaz-icon-3d {
  width: 5rem;
  height: 5rem;
  border-radius: 1.4rem;
}
.preferred-card-fallback .ayaz-icon-3d i { font-size: 2.2rem; }
.preferred-card-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 23, 42, .08) 0%, rgba(15, 23, 42, .78) 100%);
  backface-visibility: hidden;
  transform: translateZ(0);
}
.preferred-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 32rem;
  padding: 1.5rem;
  color: #fcffff;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.preferred-card-title {
  margin: 0;
  max-width: 12rem;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fcffff;
  transition: none;
}
.preferred-card-nav-wrap {
  display: flex;
  justify-content: flex-end;
}
.preferred-card-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  color: #fcffff;
  transition: background .2s ease, opacity .2s ease;
}
.preferred-card-nav:hover {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}
.preferred-card-nav svg {
  width: .875rem;
  height: .875rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.preferred-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.25rem;
}
.preferred-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 12px;
  background: var(--ayaz-navy);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.preferred-carousel-btn:hover { background: var(--ayaz-blue); }
.preferred-carousel-btn:active { transform: scale(.96); }
.preferred-carousel-btn svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

@media (min-width: 640px) {
  .preferred-shell { padding-inline: 1.75rem; }
  .preferred-stack { gap: 4rem; }
  .preferred-card-body { padding: 2rem; }
  .preferred-card-title { font-size: 2rem; }
}

@media (min-width: 1024px) {
  .preferred-carousel-track {
    gap: 1.25rem;
    transition: none;
    transform: none !important;
  }
  .preferred-card {
    flex: 1 1 0;
    min-width: 0;
    height: 32rem;
    min-height: 32rem;
    transition: flex-grow .28s cubic-bezier(.22, 1, .36, 1);
  }
  .preferred-card.is-active { flex-grow: 2.2; }
  .preferred-card:not(.is-active) .preferred-card-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    max-width: none;
    transform: rotate(180deg);
  }
  .preferred-card.is-active .preferred-card-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    max-width: 12rem;
    transform: none;
  }
  .preferred-card:not(.is-active) .preferred-card-nav {
    opacity: 0;
    pointer-events: none;
  }
  .preferred-carousel-controls { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .preferred-carousel-track,
  .preferred-card { transition: none; }
}

.seo-topics-section {
  padding-top: 28px;
}
.seo-topics-page-h1 {
  margin: 0 0 22px;
  text-align: center;
  color: var(--ayaz-ink, #0f172a);
  font-family: var(--font-display, var(--font-brand));
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .01em;
  text-transform: none;
}
.seo-topics-section .section-title { margin-bottom: 28px; }
.seo-topics-section .seo-topic:first-child { margin-top: 0; }
.home-why-section {
  padding-top: 28px;
  padding-bottom: 12px;
}
.home-why-card {
  background: #fff;
  border: 1px solid var(--ayaz-border);
  border-radius: var(--ayaz-radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 64, 110, .05);
}
.home-why-card__head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px 20px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .07), rgba(15, 23, 42, .02)),
    #fff;
  border-bottom: 1px solid var(--ayaz-border);
}
.home-why-card__icon { flex: 0 0 auto; }
.home-why-card__copy { min-width: 0; flex: 1; }
.home-why-card__kicker {
  margin: 0 0 8px;
  color: var(--ayaz-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-why-card__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  color: var(--ayaz-navy);
  letter-spacing: -.02em;
}
.home-why-card__body {
  padding: 26px 28px 30px;
}
.home-why-card__lead {
  margin: 0 0 24px;
  max-width: 68ch;
  color: var(--ayaz-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.home-why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.home-why-item {
  position: relative;
  padding: 20px 18px 18px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, .045), transparent 55%),
    #fff;
}
.home-why-item__ico {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(37, 99, 235, .1);
  color: var(--ayaz-blue);
  font-size: 1.15rem;
}
.home-why-item h3,
.home-why-item__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ayaz-navy);
}
.home-why-item p:not(.home-why-item__title) {
  margin: 0;
  color: var(--ayaz-muted);
  font-size: .94rem;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .home-why-card__head,
  .home-why-card__body { padding-left: 20px; padding-right: 20px; }
  .home-why-grid { grid-template-columns: 1fr; }
}
.seo-topic {
  background: #fff;
  border: 1px solid var(--ayaz-border);
  border-radius: var(--ayaz-radius);
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 64, 110, .05);
}
.seo-topic-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px 20px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .06), rgba(15, 23, 42, .03)),
    #fff;
  border-bottom: 1px solid var(--ayaz-border);
}
.seo-topic-head-icon { flex: 0 0 auto; }
.seo-topic-head-media {
  flex: 0 0 auto;
  width: 72px; height: 72px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ayaz-sky);
  border: 1px solid var(--ayaz-border);
}
.seo-topic-head-media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.seo-topic-head-copy { min-width: 0; flex: 1; }
.seo-topic-kicker {
  margin: 0 0 8px;
  color: var(--ayaz-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.seo-topic-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  color: var(--ayaz-navy);
  letter-spacing: -0.02em;
}
.seo-topic-body {
  padding: 8px 28px 24px;
  color: var(--ayaz-ink);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}
.seo-topic-body > *:first-child { margin-top: 16px; }
.seo-topic-body > *:last-child { margin-bottom: 0; }
.seo-topic-body h1,
.seo-topic-body h2,
.seo-topic-body h3,
.seo-topic-body h4 {
  color: var(--ayaz-navy);
  margin: 1.35em 0 .55em;
  line-height: 1.3;
  max-width: none;
}
.seo-topic-body h1 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); font-weight: 700; }
.seo-topic-body h2 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
.seo-topic-body h3 { font-size: clamp(1.12rem, 1.8vw, 1.3rem); font-weight: 600; }
.seo-topic-body h4 { font-size: 1.05rem; font-weight: 600; }
.seo-topic-body p,
.seo-topic-body li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ayaz-ink);
}
.seo-topic-body p { margin: 0 0 1rem; }
.seo-topic-body ul,
.seo-topic-body ol { margin: 0 0 1rem; padding-left: 1.25rem; }
.seo-topic-body img { max-width: 100%; height: auto; border-radius: 14px; }
.seo-topic-body figure.image,
.seo-topic-body .image {
  display: table;
  clear: both;
  text-align: center;
  margin: 1.1rem auto;
  max-width: 100%;
}
.seo-topic-body figure.image > img,
.seo-topic-body .image > img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 14px;
}
.seo-topic-body figure.image_resized,
.seo-topic-body .image_resized {
  max-width: 100%;
  box-sizing: border-box;
}
.seo-topic-body figure.image-style-side,
.seo-topic-body .image-style-side,
.seo-topic-body figure.image-style-align-right,
.seo-topic-body .image-style-align-right {
  float: right;
  clear: none;
  display: block;
  text-align: center;
  margin: .35rem 0 1.1rem 1.4rem;
  max-width: 50%;
}
.seo-topic-body figure.image-style-align-left,
.seo-topic-body .image-style-align-left {
  float: left;
  clear: none;
  display: block;
  text-align: center;
  margin: .35rem 1.4rem 1.1rem 0;
  max-width: 50%;
}
.seo-topic-body figure.image-style-side > img,
.seo-topic-body .image-style-side > img,
.seo-topic-body figure.image-style-align-left > img,
.seo-topic-body .image-style-align-left > img,
.seo-topic-body figure.image-style-align-right > img,
.seo-topic-body .image-style-align-right > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}
.seo-topic-body::after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 767px) {
  .seo-topic-body figure.image-style-side,
  .seo-topic-body .image-style-side,
  .seo-topic-body figure.image-style-align-left,
  .seo-topic-body .image-style-align-left,
  .seo-topic-body figure.image-style-align-right,
  .seo-topic-body .image-style-align-right {
    float: none;
    clear: both;
    display: table;
    margin: 1rem auto;
    max-width: 100%;
    width: 100% !important;
  }
}
.seo-topic-author {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  margin: 8px 28px 28px;
  padding: 18px;
  border: 1px solid var(--ayaz-border);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--ayaz-ice), #fff);
}
.seo-topic-author-media {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ayaz-sky);
  border: 2px solid rgba(37, 99, 235, .16);
}
.seo-topic-author-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.seo-topic-author-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ayaz-blue);
  margin-bottom: 4px;
}
.seo-topic-author-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ayaz-navy);
  margin-bottom: 6px;
}
.seo-topic-author-bio {
  margin: 0;
  color: var(--ayaz-muted);
  font-size: .92rem;
  line-height: 1.65;
}
@media (max-width: 575px) {
  .seo-topic-head {
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px 16px;
  }
  .seo-topic-head-media { width: 56px; height: 56px; border-radius: 12px; }
  .seo-topic-body {
    padding: 4px 18px 20px;
    font-size: 1rem;
  }
  .seo-topic-body p,
  .seo-topic-body li { font-size: 1rem; line-height: 1.65; }
  .seo-topic-body h1 { font-size: 1.35rem; }
  .seo-topic-body h2 { font-size: 1.22rem; }
  .seo-topic-body h3 { font-size: 1.1rem; }
  .seo-topic-title { font-size: 1.28rem; }
  .seo-topics-section .section-title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    line-height: 1.2;
  }
  .seo-topic-author {
    grid-template-columns: 56px 1fr;
    margin: 0 18px 18px;
    gap: 12px;
  }
  .seo-topic-author-media { width: 56px; height: 56px; }
}

.price-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--ayaz-border); border-radius: var(--ayaz-radius); overflow: hidden;
}
.price-table th, .price-table td { padding: 14px 16px; border-bottom: 1px solid var(--ayaz-border); text-align: left; }
.price-table th { background: var(--ayaz-sky); color: var(--ayaz-navy); }
.price-table tr:last-child td { border-bottom: 0; }

.faq-item {
  background: #fff; border: 1px solid var(--ayaz-border); border-radius: 14px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 16px 18px; font-weight: 700; color: var(--ayaz-navy); list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item-q {
  display: inline;
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}
.faq-item p { margin: 0; padding: 0 18px 16px; color: var(--ayaz-muted); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 0 28px;
}
.process-step {
  background: #f1f3f5; border: 1px solid #e3e6ea; border-radius: 14px; padding: 18px;
}
.process-step .num {
  width: 32px; height: 32px; border-radius: 50%; background: #dee2e6; color: #343a40;
  display: grid; place-items: center; font-weight: 800; margin-bottom: 10px; font-size: 13px;
}
.process-step h3 { margin: 0 0 6px; font-size: 1rem; color: #343a40; }
.process-step p { margin: 0; color: #6c757d; font-size: .9rem; }

.site-footer {
  background: var(--ayaz-navy); color: rgba(255,255,255,.82); padding: 56px 0 24px; margin-top: 40px;
}
.site-footer a { color: rgba(255,255,255,.9); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 28px; }
.footer-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: #fff;
  transition: transform .2s ease, filter .2s ease;
}
.footer-social a:hover { transform: translateY(-2px); filter: brightness(1.08); color: #fff; }
.footer-social a.is-whatsapp { background: #25D366; }
.footer-social a.is-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af); }
.footer-social a.is-facebook { background: #1877F2; }
.footer-social a.is-youtube { background: #FF0000; }
.footer-social a.is-x { background: #111; }
.footer-social a.is-linkedin { background: #0A66C2; }
.footer-col h4 { color: #fff; margin: 0 0 14px; font-size: 1rem; }
.footer-links, .footer-contact-list { list-style: none; margin: 0; padding: 0; }
.footer-links li, .footer-contact-list li { margin-bottom: 10px; }
.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-list i {
  background: rgba(37,99,235,.10);
  color: var(--ayaz-bright);
}
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }

.page-intro-title {
  margin: 0 0 28px;
  max-width: var(--content-measure);
  font-family: var(--font-head);
  font-size: var(--text-h1);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ayaz-navy);
  line-height: 1.25;
}
@media (max-width: 767px) {
  .page-intro-title { font-size: clamp(30px, 8vw, 40px); }
}
/* Skip link — klavye erişilebilirliği */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--ayaz-navy);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  transition: top .15s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--ayaz-blue);
  outline-offset: 2px;
}

.breadcrumb { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-size: .9rem; }
.page-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: .88rem;
  color: var(--ayaz-muted, #6b7280);
  margin: 0 0 18px;
}
.page-breadcrumb a { color: inherit; }
.page-breadcrumb a:hover { color: var(--ayaz-blue); }
.page-breadcrumb [aria-current="page"] { color: var(--ayaz-navy); font-weight: 600; }

/* Makale / tedavi / blog — içerik ölçüsü + sağda sidebar */
.section:has(.treatment-layout) > .container,
.container.bd-layout {
  width: min(1290px, calc(100% - 32px));
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
  gap: 40px;
  align-items: start;
}
.treatment-main .mt-article,
.treatment-main .page-intro-title,
.treatment-main .svc-faq-section,
.bd-main .bd-header,
.bd-main .bd-cover,
.bd-main .bd-summary,
.bd-main .bd-toc,
.bd-main .bd-content,
.bd-main .bd-features,
.bd-main .bd-block {
  max-width: var(--content-measure);
}
.sidebar-card {
  background: #fff; border: 1px solid var(--ayaz-border); border-radius: var(--ayaz-radius); padding: 18px; margin-bottom: 18px;
}
.sidebar-card h3 { margin: 0 0 14px; font-size: 1.05rem; }
.side-treat { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.side-treat .thumb {
  width: auto; height: auto; border-radius: 0; background: transparent;
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
}

/* Tedavi detay — blog ile aynı görselli sidebar */
.treatment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
  gap: 40px;
  align-items: start;
}
.treatment-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 110px;
}
.treatment-aside .blog-sidebar { position: static; }

/* Tedavi SSS */
.svc-faq-section {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--ayaz-border);
}
.svc-faq-title {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--ayaz-navy);
  line-height: 1.3;
}
.svc-faq-title i { color: var(--ayaz-blue); font-size: 1.2rem; }
.svc-faq-list { display: flex; flex-direction: column; gap: 10px; }
.svc-faq-item {
  border: 1px solid var(--ayaz-border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.svc-faq-item[open] {
  border-color: rgba(37, 99, 235, .28);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .08);
}
.svc-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ayaz-ink);
  line-height: 1.4;
}
.svc-faq-q::-webkit-details-marker { display: none; }
.svc-faq-q::marker { content: ""; }
.svc-faq-q:hover { color: var(--ayaz-blue); }
.svc-faq-icon {
  flex: 0 0 auto;
  color: var(--ayaz-blue);
  font-size: .95rem;
  transition: transform .25s ease;
}
.svc-faq-item[open] .svc-faq-icon { transform: rotate(180deg); }
.svc-faq-a {
  padding: 0 18px 18px;
  color: var(--ayaz-muted);
  font-size: .98rem;
  line-height: 1.75;
  border-top: 1px solid transparent;
}

/* Blog liste — tam sayfa */
.blog-index-container { width: min(1280px, calc(100% - 32px)); }
.blog-grid--full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-cat-banner {
  background: #f3f6fb;
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ayaz-ink);
}
.blog-cat-banner i { color: var(--ayaz-blue); margin-right: 6px; }
.blog-cat-clear { color: #d52b1e; text-decoration: none; font-size: 13px; }
.blog-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}
.blog-pagination a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--ayaz-border);
  color: var(--ayaz-navy);
  text-decoration: none;
  font-weight: 600;
  transition: all .2s ease;
}
.blog-pagination a:hover { background: var(--ayaz-sky); }
.blog-pagination a.is-active {
  background: var(--ayaz-blue); color: #fff; border-color: var(--ayaz-blue);
}

/* Blog / tedavi sidebar — büyük görsel + yalnızca başlık */
.blog-sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 18px; }
.blog-side-widget {
  background: #fff;
  border: 1px solid var(--ayaz-border);
  border-radius: var(--ayaz-radius);
  padding: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}
.blog-side-widget-title {
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 14px; font-size: 1rem; font-weight: 800;
  color: var(--ayaz-navy); letter-spacing: -.01em;
}
.blog-side-widget-title i { color: var(--ayaz-blue); font-size: 1.05rem; }
.blog-side-cards { display: flex; flex-direction: column; gap: 12px; }
.blog-side-card {
  display: flex; flex-direction: column; gap: 0;
  overflow: hidden; border-radius: 14px; border: 1px solid var(--ayaz-border);
  background: #fff; text-decoration: none; color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.blog-side-card:hover {
  border-color: rgba(37, 99, 235, .30);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .12);
  transform: translateY(-2px);
}
.blog-side-card-media {
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--ayaz-ice);
}
.blog-side-card-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}
/* Dikey görseller: yatay çerçevede ortalanarak crop */
.blog-side-card-media.is-portrait {
  aspect-ratio: 16 / 10;
  background: #0f172a;
}
.blog-side-card-media.is-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.blog-side-card-fallback {
  width: 100%; aspect-ratio: 16 / 9; display: grid; place-items: center;
  color: var(--ayaz-blue); font-size: 1.75rem;
  background: var(--ayaz-sky);
}
.blog-side-card-title {
  padding: 12px 14px 13px;
  font-size: .95rem; font-weight: 700; line-height: 1.35; color: var(--ayaz-ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-side-card:hover .blog-side-card-title { color: var(--ayaz-blue); }

/* EOT-style clean article header: no hero image */
.article-header {
  padding: 54px 0 28px;
  background: #fff;
  border-bottom: 1px solid var(--ayaz-border);
}
.article-header .breadcrumb {
  color: var(--ayaz-muted);
  opacity: 1;
  margin-bottom: 22px;
}
.article-header .breadcrumb a { color: var(--ayaz-muted); }
.article-header .breadcrumb a:hover { color: var(--ayaz-blue); }
.article-header h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  line-height: 1.1;
}
/* ============ SEO Makale / Tedavi içerik formatı (mt-article) ============ */
.mt-article,
.bd-content,
.topic-body {
  font-family: var(--font-body);
  color: var(--ayaz-ink);
  font-size: var(--text-p);
  font-weight: 400;
  line-height: var(--text-lh);
  max-width: var(--content-measure);
}
.mt-article > *:first-child,
.bd-content > *:first-child { margin-top: 0; }
.mt-article h1,
.bd-content h1,
.topic-body h1 {
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--ayaz-navy);
  line-height: 1.25;
  margin: 0 0 1.1rem;
  scroll-margin-top: 90px;
}
.mt-article h2,
.bd-content h2,
.topic-body h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--ayaz-navy);
  line-height: 1.25;
  margin: 2.2rem 0 .9rem;
  scroll-margin-top: 90px;
}
.mt-article h3,
.bd-content h3,
.topic-body h3 {
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--ayaz-navy);
  line-height: 1.3;
  margin: 1.7rem 0 .7rem;
  scroll-margin-top: 90px;
}
.mt-article h4,
.bd-content h4,
.topic-body h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ayaz-navy);
  margin: 1.4rem 0 .6rem;
  scroll-margin-top: 90px;
}
.mt-article p,
.mt-article div,
.bd-content p,
.topic-body p {
  margin: 0 0 1.1rem;
  font-size: var(--text-p);
  font-weight: 400;
  line-height: var(--text-lh);
  color: var(--ayaz-ink);
}
.mt-article a,
.bd-content a,
.topic-body a,
.seo-topic-body a,
.home-why-card a,
.dentist-guide-item a,
.home-faq-section .faq-item p a { color: var(--ayaz-blue); text-decoration: underline; text-underline-offset: 2px; }
.mt-article a:hover,
.bd-content a:hover,
.topic-body a:hover,
.seo-topic-body a:hover,
.home-why-card a:hover,
.dentist-guide-item a:hover,
.home-faq-section .faq-item p a:hover { color: var(--ayaz-navy); }
.mt-article strong,
.bd-content strong,
.topic-body strong { color: var(--ayaz-navy); font-weight: 700; }
.mt-article ul, .mt-article ol,
.bd-content ul, .bd-content ol,
.topic-body ul, .topic-body ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.mt-article li,
.bd-content li,
.topic-body li {
  margin-bottom: .55rem;
  font-size: var(--text-p);
  line-height: var(--text-lh);
}
.mt-article img,
.bd-content img,
.topic-body img { max-width: 100%; height: auto; border-radius: 14px; }
@media (max-width: 767px) {
  .mt-article,
  .bd-content,
  .topic-body,
  .mt-article p,
  .mt-article div,
  .mt-article li,
  .bd-content p,
  .bd-content li,
  .topic-body p,
  .topic-body li { font-size: var(--text-p-mobile); }
  .mt-article h1, .bd-content h1, .topic-body h1 { font-size: clamp(30px, 8vw, 40px); }
  .mt-article h2, .bd-content h2, .topic-body h2 { font-size: clamp(26px, 6.5vw, 32px); }
  .mt-article h3, .bd-content h3, .topic-body h3 { font-size: clamp(22px, 5.5vw, 26px); }
}

/* CKEditor 5 görsel konumları (figure.image / image-style-*) */
.mt-article figure.image,
.mt-article .image,
.bd-content figure.image,
.bd-content .image,
.topic-body figure.image,
.topic-body .image {
  display: table;
  clear: both;
  text-align: center;
  margin: 1.1rem auto;
  max-width: 100%;
}
.mt-article figure.image > img,
.mt-article .image > img,
.bd-content figure.image > img,
.bd-content .image > img,
.topic-body figure.image > img,
.topic-body .image > img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 14px;
}
.mt-article figure.image > figcaption,
.mt-article .image > figcaption,
.bd-content figure.image > figcaption,
.bd-content .image > figcaption,
.topic-body figure.image > figcaption,
.topic-body .image > figcaption {
  display: table-caption;
  caption-side: bottom;
  word-break: break-word;
  padding: .6em 0 0;
  font-size: .88em;
  color: var(--ayaz-muted, #6b7280);
  text-align: center;
}
.mt-article figure.image_resized,
.mt-article .image_resized,
.bd-content figure.image_resized,
.bd-content .image_resized,
.topic-body figure.image_resized,
.topic-body .image_resized {
  max-width: 100%;
  box-sizing: border-box;
}
/*
 * Yan / float (CKEditor “side / wrap”).
 * display:table + clear:both metin sarmayı bozar — float’larda block + clear:none zorunlu.
 * Başlıklarda clear:both KULLANMA: hemen sonraki h2 yazıyı görselin altına iter.
 */
.mt-article figure.image-style-side,
.mt-article .image-style-side,
.bd-content figure.image-style-side,
.bd-content .image-style-side,
.topic-body figure.image-style-side,
.topic-body .image-style-side,
.mt-article figure.image-style-align-right,
.mt-article .image-style-align-right,
.bd-content figure.image-style-align-right,
.bd-content .image-style-align-right,
.topic-body figure.image-style-align-right,
.topic-body .image-style-align-right {
  float: right;
  clear: none;
  display: block;
  text-align: center;
  margin: .35rem 0 1.1rem 1.4rem;
  max-width: 50%;
}
.mt-article figure.image-style-align-left,
.mt-article .image-style-align-left,
.bd-content figure.image-style-align-left,
.bd-content .image-style-align-left,
.topic-body figure.image-style-align-left,
.topic-body .image-style-align-left {
  float: left;
  clear: none;
  display: block;
  text-align: center;
  margin: .35rem 1.4rem 1.1rem 0;
  max-width: 50%;
}
.mt-article figure.image-style-side > img,
.mt-article .image-style-side > img,
.mt-article figure.image-style-align-left > img,
.mt-article .image-style-align-left > img,
.mt-article figure.image-style-align-right > img,
.mt-article .image-style-align-right > img,
.bd-content figure.image-style-side > img,
.bd-content .image-style-side > img,
.bd-content figure.image-style-align-left > img,
.bd-content .image-style-align-left > img,
.bd-content figure.image-style-align-right > img,
.bd-content .image-style-align-right > img,
.topic-body figure.image-style-side > img,
.topic-body .image-style-side > img,
.topic-body figure.image-style-align-left > img,
.topic-body .image-style-align-left > img,
.topic-body figure.image-style-align-right > img,
.topic-body .image-style-align-right > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}
.mt-article figure.image-style-align-center,
.mt-article .image-style-align-center,
.bd-content figure.image-style-align-center,
.bd-content .image-style-align-center,
.topic-body figure.image-style-align-center,
.topic-body .image-style-align-center {
  float: none;
  clear: both;
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.mt-article figure.image-style-block-align-left,
.mt-article .image-style-block-align-left,
.bd-content figure.image-style-block-align-left,
.bd-content .image-style-block-align-left,
.topic-body figure.image-style-block-align-left,
.topic-body .image-style-block-align-left {
  float: none;
  clear: both;
  display: table;
  margin-left: 0;
  margin-right: auto;
}
.mt-article figure.image-style-block-align-right,
.mt-article .image-style-block-align-right,
.bd-content figure.image-style-block-align-right,
.bd-content .image-style-block-align-right,
.topic-body figure.image-style-block-align-right,
.topic-body .image-style-block-align-right {
  float: none;
  clear: both;
  display: table;
  margin-left: auto;
  margin-right: 0;
}
.mt-article::after,
.bd-content::after,
.topic-body::after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 767px) {
  .mt-article figure.image-style-side,
  .mt-article .image-style-side,
  .mt-article figure.image-style-align-left,
  .mt-article .image-style-align-left,
  .mt-article figure.image-style-align-right,
  .mt-article .image-style-align-right,
  .bd-content figure.image-style-side,
  .bd-content .image-style-side,
  .bd-content figure.image-style-align-left,
  .bd-content .image-style-align-left,
  .bd-content figure.image-style-align-right,
  .bd-content .image-style-align-right,
  .topic-body figure.image-style-side,
  .topic-body .image-style-side,
  .topic-body figure.image-style-align-left,
  .topic-body .image-style-align-left,
  .topic-body figure.image-style-align-right,
  .topic-body .image-style-align-right {
    float: none;
    display: block;
    margin: 1rem auto;
    max-width: 100%;
    width: 100% !important;
  }
}

.mt-article .mt-spot, .mt-spot {
  font-size: var(--text-p);
  font-weight: 400;
  line-height: var(--text-lh);
  color: var(--ayaz-ink);
  background: var(--ayaz-sky);
  border-left: 5px solid var(--ayaz-blue);
  padding: 20px 22px;
  border-radius: 12px;
  margin: 0 0 1.4rem;
  max-width: var(--content-measure);
}
.mt-spot strong { color: var(--ayaz-navy); font-weight: 700; }
@media (max-width: 767px) {
  .mt-article .mt-spot, .mt-spot { font-size: var(--text-p-mobile); }
}

.mt-toc,
.bd-toc {
  background: var(--ayaz-ice);
  border: 1px solid var(--ayaz-border);
  border-radius: 14px;
  padding: 0;
  margin: 0 0 1.8rem;
  overflow: hidden;
}
.mt-toc-panel { margin: 0; }
.mt-toc-summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  color: var(--ayaz-ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.mt-toc-summary::-webkit-details-marker { display: none; }
.mt-toc-summary::marker { content: ''; }
.mt-toc-caret {
  font-size: 1rem;
  color: var(--ayaz-ink);
  transition: transform .22s ease;
  flex-shrink: 0;
}
.mt-toc-panel:not([open]) .mt-toc-caret {
  transform: rotate(180deg);
}
.mt-toc-list {
  margin: 0;
  padding: 0 20px 16px 24px;
  border-top: 1px solid var(--ayaz-border);
  padding-top: 12px;
  list-style: none;
}
.mt-toc-list li {
  margin: 6px 0;
  position: relative;
  padding-left: 1.1em;
}
.mt-toc-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ayaz-muted);
  font-weight: 700;
}
.mt-article .mt-toc a,
.mt-toc a,
.bd-toc a {
  color: var(--ayaz-ink);
  text-decoration: none;
}
.mt-article .mt-toc a:hover,
.mt-toc a:hover,
.bd-toc a:hover {
  color: var(--ayaz-ink);
  text-decoration: underline;
}

.mt-note {
  background: #fff8ec; border: 1px solid #f0dcae; border-radius: 12px;
  padding: 18px 20px; margin: 1.4rem 0; color: #6a5324;
}
.mt-note strong { color: #7a5a12; }

.mt-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin: 1.5rem 0; }
.mt-card {
  background: #fff; border: 1px solid var(--ayaz-border); border-radius: 14px;
  padding: 20px; box-shadow: 0 8px 24px rgba(7,64,110,.05);
}
.mt-card h3 { margin-top: 0; }

.mt-list { padding-left: 1.2rem; }
.mt-list li { margin-bottom: .55rem; }

.mt-cta {
  background: linear-gradient(135deg, var(--ayaz-navy), var(--ayaz-blue));
  color: #fff; border-radius: 16px; padding: 30px; margin-top: 2.4rem;
}
.mt-cta h2, .mt-cta h3, .mt-cta p { color: #fff; }
.mt-cta h2 { margin-top: 0; }
.mt-cta a { color: #fff; text-decoration: underline; }

.mt-faq details {
  border: 1px solid var(--ayaz-border); border-radius: 12px;
  padding: 16px 18px; margin-bottom: 12px; background: #fff;
}
.mt-faq summary { font-weight: 700; cursor: pointer; color: var(--ayaz-navy); list-style: none; }
.mt-faq summary::-webkit-details-marker { display: none; }
.mt-faq details[open] summary { margin-bottom: 8px; }
.mt-faq p { margin: 0; color: var(--ayaz-muted); }

/* Anasayfa SEO içerik kartında (TOC gizli, zaten üretilmez) */
.seo-topic .mt-article { color: var(--ayaz-ink); }
.seo-topic .mt-toc { display: none; }

/* ============ Doktor bölümü (EOT tarzı) ============ */
.doctors-heading {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 26px;
}
.doctors-heading .section-eyebrow { margin-bottom: 6px; }
.doctors-heading .section-title { margin-bottom: 6px; }
.doctors-heading .section-lead { margin-bottom: 0; }
.doctors-all-link {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; white-space: nowrap;
  font-weight: 700; color: var(--ayaz-blue); padding: 11px 20px;
  border: 1px solid var(--ayaz-border); border-radius: 999px; background: #fff;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.doctors-all-link:hover { background: var(--ayaz-navy); color: #fff; border-color: var(--ayaz-navy); }
.doctors-all-link i { transition: transform .2s ease; }
.doctors-all-link:hover i { transform: translateX(3px); }

.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Anasayfa: görsel üstü overlay kart */
.docp-card {
  position: relative; min-height: 26rem; border-radius: 20px; overflow: hidden;
  box-shadow: 0 18px 45px rgba(15,23,42,.16); background: var(--ayaz-navy);
  transition: transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
}
.docp-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(15,23,42,.22); }
.docp-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s ease; z-index: 0; }
.docp-card:hover > img { transform: scale(1.04); }
.docp-fallback { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 3rem; background: linear-gradient(145deg, var(--ayaz-navy), var(--ayaz-blue)); z-index: 0; }
/* Yukarıdan aşağı şimşek / shine efekti */
.docp-card::before {
  content: "";
  position: absolute;
  left: -20%;
  top: -140%;
  width: 140%;
  height: 55%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, .08) 35%,
    rgba(255, 255, 255, .42) 50%,
    rgba(255, 255, 255, .08) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewY(-12deg);
  animation: docp-shine 3.6s ease-in-out infinite;
}
.docp-card:nth-child(2)::before { animation-delay: .7s; }
.docp-card:nth-child(3)::before { animation-delay: 1.4s; }
@keyframes docp-shine {
  0% { top: -140%; opacity: 0; }
  12% { opacity: 1; }
  55% { top: 120%; opacity: .85; }
  70%, 100% { top: 140%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .docp-card::before { animation: none; display: none; }
}
.docp-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(16,24,32,0) 42%, rgba(16,24,32,.78) 100%); }
.docp-link { position: absolute; inset: 0; z-index: 3; }
.docp-body {
  position: absolute; inset-inline: 0; bottom: 0; z-index: 4;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  padding: 20px; color: #fff; pointer-events: none;
}
.docp-body h3.doctor-name,
.docp-body .doctor-name { margin: 0; color: #fff; font-size: 1.28rem; font-weight: bold; line-height: 1.2; }
.docp-body p { margin: 6px 0 0; color: rgba(255,255,255,.9); font-size: .95rem; }
.docp-social { pointer-events: auto; }

/* Sosyal medya buton listesi */
.doctor-social-list { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.doctor-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 999px;
  background: rgba(255,255,255,.18); color: #fff;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.doctor-social-link:hover { transform: translateY(-2px); filter: brightness(1.08); color: #fff; }
.doctor-social-link svg { width: 18px; height: 18px; }
.doctor-social-link.is-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
  color: #fff;
}
.doctor-social-link.is-whatsapp { background: #25D366; color: #fff; }
.doctor-social-link.is-facebook { background: #1877F2; color: #fff; }
.doctor-social-link.is-youtube { background: #FF0000; color: #fff; }
.doctor-social-link.is-x { background: #111; color: #fff; }
.doctor-social-link.is-linkedin { background: #0A66C2; color: #fff; }
.doctor-social-link.is-web { background: var(--ayaz-blue); color: #fff; }

/* Tüm Doktorlar sayfası: alt yazılı beyaz kart (3 sütun) */
.docs-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.docl-card {
  display: flex; flex-direction: column; overflow: hidden; height: 100%;
  background: #fff; border: 1px solid var(--ayaz-border); border-radius: 22px;
  box-shadow: 0 14px 40px rgba(36,61,73,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.docl-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(36,61,73,.16); }
.docl-media { aspect-ratio: 4/5; overflow: hidden; background: var(--ayaz-sky); display: block; }
.docl-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s ease; }
.docl-card:hover .docl-media img { transform: scale(1.04); }
.docl-fallback { width: 100%; height: 100%; display: grid; place-items: center; color: #fff; font-size: 3rem; background: linear-gradient(145deg, var(--ayaz-navy), var(--ayaz-blue)); }
.docl-body { display: flex; flex-direction: column; flex: 1; padding: 22px 20px; border-top: 1px solid var(--ayaz-border); }
.docl-body .doctor-name { margin: 0; font-size: 1.25rem; font-weight: bold; color: var(--ayaz-navy); line-height: 1.25; }
.docl-card:hover .docl-body .doctor-name { color: var(--ayaz-blue); }
.docl-body p { margin: 8px 0 0; color: var(--ayaz-muted); font-size: .98rem; }
.docl-foot { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 18px; }
.docl-foot:empty { display: none; }
.docl-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ayaz-blue); }
.docl-more i { transition: transform .2s ease; }
.docl-card:hover .docl-more i { transform: translateX(3px); }
.docl-body .doctor-social-link { box-shadow: 0 4px 12px rgba(15, 23, 42, .12); }
.docl-body .doctor-social-link:hover { filter: brightness(1.06); color: #fff; }

@media (max-width: 991px) {
  .site-topbar { display: none; }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 58px;
    padding: 8px 14px;
  }
  .brand-logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    z-index: 2;
    flex: 0 1 auto;
    min-width: 0;
    background: transparent !important;
    padding: 0 !important;
  }
  .brand-logo:hover { transform: none; }
  .brand-word { display: none !important; }
  .brand-logo-img {
    display: block !important;
    height: 34px;
    width: auto;
    max-width: min(168px, 46vw);
    object-fit: contain;
  }
  /* Koyu header: beyaz logo (genel kuralı bozma) */
  .site-header.has-light-logo .brand-logo-img--dark { display: none !important; }
  .site-header.has-light-logo .brand-logo-img--light { display: block !important; }
  body.is-homepage .site-header--home.is-scrolled .brand-logo-img {
    height: 30px;
    max-width: min(148px, 42vw);
  }
  body.is-homepage .site-header--home.is-scrolled .brand-logo-img--dark { display: block !important; }
  body.is-homepage .site-header--home.is-scrolled .brand-logo-img--light { display: none !important; }
  .header-actions {
    position: static;
    right: auto;
    top: auto;
    transform: none;
    z-index: 3;
    flex: 0 0 auto;
    margin-left: auto;
  }
  .header-phone-btn,
  .mobile-toggle { display: none !important; }
  .header-actions .lang-switch {
    display: inline-flex;
    padding: 3px;
    gap: 2px;
  }
  .lang-switch__item {
    width: 28px;
    height: 28px;
  }
  .lang-flag {
    width: 18px;
    height: 13px;
  }
  .main-nav { display: none; }
  .main-nav > li.has-sub::after { display: none; }
  .card-grid, .footer-grid, .blog-layout, .process-steps, .treatment-layout { grid-template-columns: 1fr; }
  .treatment-aside { position: static; }
  .blog-grid--full {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .blog-index-section .blog-card-img { aspect-ratio: 1 / 1; min-height: 0; height: auto; }
  .blog-index-section .blog-card-body { padding: 8px 6px 10px; }
  .blog-index-section .blog-card-title { font-size: 11px; line-height: 1.3; margin: 0; }
  .blog-index-section .blog-card-excerpt,
  .blog-index-section .blog-card-foot,
  .blog-index-section .blog-card-meta span { display: none; }
  .blog-index-section .blog-card-meta { margin-bottom: 4px; }
  .blog-index-section .blog-card-cat { font-size: 9px; padding: 2px 6px; }
  .blog-index-section .blog-card-badge { font-size: 9px; padding: 3px 6px; }
  .clinic-panel { grid-template-columns: 1fr; gap: 28px; }
  .doctor-grid, .docs-page-grid { grid-template-columns: repeat(2, 1fr); }
  .mt-grid { grid-template-columns: 1fr; }
  .doctors-heading { flex-direction: column; align-items: flex-start; }
  .main-nav.is-open {
    display: flex; flex-direction: column; position: fixed; left: 12px; right: 12px;
    top: auto; bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    max-height: min(70vh, 520px); overflow: auto;
    background: linear-gradient(180deg, #0F172A 0%, #0B1220 100%);
    border: 1px solid rgba(148, 163, 184, .2);
    border-radius: 18px; padding: 12px;
    box-shadow: 0 24px 48px rgba(2, 6, 23, .5);
    z-index: 1300;
  }
  body.is-homepage .main-nav.is-open {
    background: linear-gradient(180deg, rgba(15, 23, 42, .98) 0%, rgba(2, 6, 23, .98) 100%);
  }
  body.is-homepage .site-header--home {
    inset: 8px 12px auto;
  }
  body.is-homepage .site-header--home .header-inner {
    padding: 8px 12px;
    justify-content: space-between;
  }
  body.is-homepage .site-header--home .brand-logo {
    background: transparent;
    padding: 0;
  }
  body.is-homepage .site-header--home .brand-logo-img {
    height: 32px;
    max-width: min(156px, 44vw);
  }
  .main-nav.is-open > li > a { color: rgba(241, 245, 249, .92); }
  .main-nav.is-open > li > a .menu-ico { color: var(--ayaz-bright); }
  .main-nav.is-open > li > a .menu-caret { color: rgba(148, 163, 184, .9); }
  .submenu {
    position: static; display: none; box-shadow: none; border: 0;
    padding-left: 12px; background: transparent; backdrop-filter: none;
    width: auto; max-width: none; min-width: 0;
  }
  .main-nav > li.open > .submenu { display: block; }
  .submenu > li.has-sub::after { display: none; }
  .submenu > li:hover > .submenu--nested { display: none; }
  .submenu > li.open > .submenu--nested { display: block; }
  .submenu--nested {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    width: auto;
    max-width: none;
    margin: 4px 0 8px;
    padding: 4px 0 4px 8px;
    background: rgba(2, 6, 23, .35);
    border: 0;
    box-shadow: none;
  }
  .submenu > li > a .menu-caret--nested { transform: rotate(90deg); }
  .submenu > li.open > a .menu-caret--nested { transform: rotate(-90deg); }
  .submenu a,
  .submenu a > span,
  .submenu--nested a {
    color: rgba(226, 232, 240, .88);
    white-space: normal;
  }
  .home-treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .home-treatment-card { aspect-ratio: 16 / 11; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-index-container { width: calc(100% - 16px); }
  .hero-ayaz-inner { grid-template-columns: 1fr; width: calc(100% - 48px); padding: 100px 0 72px; gap: 44px; }
  .hero-ayaz-visual { justify-self: center; width: min(560px, 100%); }
  .hero-ayaz-word { font-size: clamp(6rem, 22vw, 11rem); }
  .hero-ayaz-sub { font-size: clamp(.84rem, 2.6vw, 1.05rem); }

  /* Footer — kısa mobil görünüm */
  .site-footer { padding: 28px 0 20px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-about {
    display: block;
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 12px;
    opacity: .92;
  }
  .footer-col--services { display: none; }
  .footer-logo { height: 42px; margin-bottom: 10px; }
  .footer-social { display: flex; gap: 10px; margin-top: 8px; }
  .footer-col h4 { font-size: .92rem; margin-bottom: 10px; }
  .footer-links li, .footer-contact-list li { margin-bottom: 6px; font-size: .86rem; }
  .footer-contact-list strong,
  .footer-hours { display: none; }
  .footer-bottom { margin-top: 16px; padding-top: 12px; font-size: .78rem; }
  .footer-bottom-inner { gap: 8px; justify-content: center; text-align: center; }
}

@media (max-width: 575px) {
  .hero-ayaz-inner { width: calc(100% - 32px); padding: 112px 0 64px; gap: 36px; }
  .hero-ayaz-title { font-size: clamp(1.85rem, 9.5vw, 3rem); }
  .hero-ayaz-sub { gap: 10px; font-size: clamp(.78rem, 3.1vw, .95rem); }
  .hero-ayaz-sub::after { flex-basis: 36px; }
  .hero-ayaz-text { margin-top: 20px; font-size: .94rem; }
  .hero-ayaz-actions { gap: 10px; margin-top: 26px; }
  .hero-ayaz-actions a { padding: 13px 16px; font-size: .7rem; }
  .hero-ayaz-marks { gap: 8px 18px; margin-top: 26px; }
  .hero-ayaz-visual { width: calc(100% - 8px); padding: 8px 8px 14px; }
  .home-treatments-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 12px);
    gap: 8px;
  }
  .home-treatment-card { aspect-ratio: 16 / 9; }
  .home-intro-section { padding-top: 40px; }
  .home-intro-section > .container { width: calc(100% - 20px); }
  .clinic-panel-visual { padding: 6px 6px 12px; }
  .clinic-panel-visual::before { inset: 12px 0 0 12px; border-radius: 22px; }
  .clinic-panel-frame { border-radius: 20px; }
  .clinic-panel-body { padding: 24px 20px 26px; }
  .clinic-panel-facts li { grid-template-columns: 72px minmax(0, 1fr); }
  .clinic-panel-actions { flex-direction: column; }
  .clinic-panel-btn { width: 100%; }
  .doctor-grid, .docs-page-grid { grid-template-columns: 1fr; }
  .docp-card { min-height: 22rem; }
}

/* ========== Doktor detay (docd) ========== */
.docd-crumb {
  background: #EEF2F7;
  border-bottom: 1px solid var(--ayaz-border);
  padding: 14px 0;
  font-size: 13.5px;
  color: var(--ayaz-muted);
}
.docd-crumb .container {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.docd-crumb a { color: var(--ayaz-muted); }
.docd-crumb a:hover { color: var(--ayaz-blue); }
.docd-crumb span:last-child { color: var(--ayaz-ink); font-weight: 600; }

.docd-hero {
  padding: 48px 0 36px;
  background:
    radial-gradient(720px 360px at 12% 20%, rgba(96, 165, 250, .14), transparent 70%),
    linear-gradient(180deg, #F8FAFC 0%, #fff 70%);
}
.docd-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) 1.15fr;
  gap: 48px 56px;
  align-items: center;
}
.docd-portrait { position: relative; }
.docd-portrait-blob {
  position: absolute; z-index: 0;
  inset: 8% -6% -4% 10%;
  background:
    radial-gradient(circle at 30% 40%, rgba(147, 197, 253, .55), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(59, 130, 246, .22), transparent 50%);
  border-radius: 48% 52% 45% 55% / 55% 42% 58% 45%;
  filter: blur(2px);
}
.docd-portrait-frame {
  position: relative; z-index: 1;
  border-radius: 48px;
  overflow: hidden;
  background: #E8EEF7;
  box-shadow: 0 28px 60px rgba(15, 23, 42, .14);
  aspect-ratio: 4 / 5;
}
.docd-portrait-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.docd-intro { padding-top: 8px; }
.docd-name {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 750;
  letter-spacing: -.02em;
  color: var(--ayaz-navy);
}
.docd-subtitle {
  margin: 8px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ayaz-blue);
  line-height: 1.35;
}
.docd-bio {
  margin: 18px 0 0;
  color: var(--ayaz-muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 38rem;
}
.docd-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px;
}
.docd-btn-ghost {
  background: #fff !important;
  color: var(--ayaz-blue) !important;
  border: 1.5px solid rgba(37, 99, 235, .35) !important;
  box-shadow: none !important;
}
.docd-btn-ghost:hover {
  background: var(--ayaz-sky) !important;
  color: var(--ayaz-navy) !important;
}
.docd-social {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.docd-social a {
  width: 40px; height: 40px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: none;
  color: #fff;
  transition: transform .2s ease, filter .2s ease;
}
.docd-social a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: #fff;
}
.docd-social a.is-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af); }
.docd-social a.is-whatsapp { background: #25D366; }
.docd-social a.is-facebook { background: #1877F2; }
.docd-social a.is-youtube { background: #FF0000; }
.docd-social a.is-x { background: #111; }
.docd-social a.is-linkedin { background: #0A66C2; }
.docd-social a.is-web { background: var(--ayaz-blue); }
.docd-social svg { width: 17px; height: 17px; }

.docd-ribbon {
  padding: 8px 0 40px;
}
.docd-ribbon-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px 36px;
  align-items: center;
  padding: 28px 34px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0B1B36 0%, #12305A 55%, #0F2748 100%);
  color: #fff;
  box-shadow: 0 22px 48px rgba(15, 23, 42, .22);
}
.docd-quote {
  margin: 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.docd-quote i {
  font-size: 2rem; color: rgba(147, 197, 253, .9); line-height: 1; margin-top: 2px;
}
.docd-quote p {
  margin: 0;
  font-size: 1.12rem; line-height: 1.55; font-weight: 560;
  color: rgba(248, 250, 252, .96);
}
.docd-highlights {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px;
}
.docd-highlights li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 650;
  color: rgba(241, 245, 249, .92);
}
.docd-highlights i {
  width: 34px; height: 34px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(148, 163, 184, .35);
  color: #93C5FD; font-size: 15px; flex-shrink: 0;
}

.docd-career { padding-top: 12px; }
.docd-career-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 24px;
  align-items: start;
}
.docd-panel {
  background: #fff;
  border: 1px solid var(--ayaz-border);
  border-radius: 22px;
  padding: 24px 26px 28px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}
.docd-panel-title {
  margin: 0 0 22px;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--ayaz-navy);
}
.docd-tabs {
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  border-bottom: 1px solid var(--ayaz-border);
  margin-bottom: 22px;
}
.docd-tab {
  appearance: none; background: none; border: 0;
  padding: 10px 2px 12px;
  font-family: var(--font-head);
  font-size: 14.5px; font-weight: 650;
  color: var(--ayaz-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.docd-tab.is-active,
.docd-tab:hover {
  color: var(--ayaz-blue);
  border-bottom-color: var(--ayaz-blue);
}
.docd-tab-panel { display: none; }
.docd-tab-panel.is-active { display: block; }

.docd-timeline {
  list-style: none; margin: 0; padding: 0 0 0 4px;
}
.docd-timeline li {
  display: grid;
  grid-template-columns: 110px 18px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: start;
  position: relative;
  padding-bottom: 22px;
}
.docd-timeline li:not(:last-child) .docd-timeline-dot::after {
  content: "";
  position: absolute;
  left: 50%; top: 14px;
  transform: translateX(-50%);
  width: 2px; height: calc(100% + 10px);
  background: #DBEAFE;
}
.docd-timeline-period {
  font-size: 13px; font-weight: 700; color: var(--ayaz-blue);
  padding-top: 2px;
}
.docd-timeline-dot {
  position: relative;
  width: 12px; height: 12px; margin: 5px auto 0;
  border-radius: 50%;
  background: var(--ayaz-blue);
  box-shadow: 0 0 0 4px #DBEAFE;
}
.docd-timeline-body strong {
  display: block;
  font-size: 15px; color: var(--ayaz-navy);
}
.docd-timeline-body p {
  margin: 6px 0 0;
  font-size: 13.5px; color: var(--ayaz-muted); line-height: 1.55;
}
.docd-history-btn {
  display: inline-flex; margin-top: 8px;
  padding: 11px 18px; border-radius: 999px;
  border: 1.5px solid rgba(37, 99, 235, .35);
  background: #fff; color: var(--ayaz-blue);
  font-weight: 700; font-size: 13.5px; cursor: pointer;
  text-decoration: none;
}
.docd-history-btn:hover { background: var(--ayaz-sky); color: var(--ayaz-navy); }

.docd-edu {
  list-style: none; margin: 0; padding: 0;
}
.docd-edu li {
  display: grid;
  grid-template-columns: 52px 18px minmax(0, 1fr);
  gap: 8px 10px;
  align-items: start;
  padding-bottom: 20px;
  position: relative;
}
.docd-edu li:not(:last-child) .docd-edu-dot::after {
  content: "";
  position: absolute; left: 50%; top: 14px;
  transform: translateX(-50%);
  width: 2px; height: calc(100% + 8px);
  background: repeating-linear-gradient(to bottom, #93C5FD 0 4px, transparent 4px 8px);
}
.docd-edu-year {
  font-size: 13.5px; font-weight: 800; color: var(--ayaz-blue);
  padding-top: 1px;
}
.docd-edu-dot {
  position: relative;
  width: 11px; height: 11px; margin: 5px auto 0;
  border-radius: 50%; background: var(--ayaz-blue);
  box-shadow: 0 0 0 3px #DBEAFE;
}
.docd-edu-title {
  font-size: 14.5px; font-weight: 650; color: var(--ayaz-ink); line-height: 1.45;
}

.docd-expertise { padding-top: 8px; }
.docd-section-title {
  margin: 0 0 28px;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  color: var(--ayaz-navy);
  position: relative;
  display: inline-block;
}
.docd-section-title::after {
  content: "";
  display: block; width: 52px; height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--ayaz-blue);
}
.docd-expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.docd-ex-card {
  display: block;
  background: #fff;
  border: 1.5px solid #BFDBFE;
  border-radius: 18px;
  padding: 26px 22px 24px;
  color: inherit;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.docd-ex-card:hover {
  transform: translateY(-3px);
  border-color: var(--ayaz-blue);
  box-shadow: 0 16px 36px rgba(37, 99, 235, .12);
  color: inherit;
}
a.docd-ex-card--link { cursor: pointer; }
a.docd-ex-card--link:hover h3 { color: var(--ayaz-blue); }
.docd-ex-card i {
  font-size: 1.75rem; color: var(--ayaz-blue);
  display: block; margin-bottom: 14px;
}
.docd-ex-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ayaz-navy);
  transition: color .2s ease;
}
.docd-ex-card p {
  margin: 10px 0 0;
  font-size: 13.5px; color: var(--ayaz-muted); line-height: 1.55;
}
.docd-ex-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: .82rem; font-weight: 700;
  color: var(--ayaz-blue); letter-spacing: .02em;
}
.docd-ex-more i { font-size: .85rem; margin: 0; display: inline; }
a.docd-ex-card--link:hover .docd-ex-more i { transform: translateX(3px); }
.docd-ex-more i { transition: transform .2s ease; }

.docd-cta {
  padding: 12px 0 56px;
}
.docd-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px 28px;
  align-items: center;
  padding: 22px 28px;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(219, 234, 254, .95) 0%, rgba(241, 245, 249, .98) 45%, rgba(226, 232, 240, .9) 100%);
  border: 1px solid #BFDBFE;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}
.docd-cta-photo {
  width: 88px; height: 88px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .12);
}
.docd-cta-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.docd-cta-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 750;
  color: var(--ayaz-navy); line-height: 1.35;
}
.docd-cta-text {
  margin: 6px 0 0;
  font-size: 14px; color: var(--ayaz-muted);
}
.docd-cta-actions {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.docd-cta-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 750; color: var(--ayaz-navy); font-size: 15px;
}
.docd-cta-phone:hover { color: var(--ayaz-blue); }

@media (max-width: 1024px) {
  .docd-hero-grid,
  .docd-ribbon-inner,
  .docd-career-grid { grid-template-columns: 1fr; }
  .docd-expertise-grid { grid-template-columns: 1fr 1fr; }
  .docd-cta-inner { grid-template-columns: 1fr; text-align: left; }
  .docd-cta-actions { align-items: flex-start; }
  .docd-portrait-frame { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .docd-highlights { grid-template-columns: 1fr; }
  .docd-expertise-grid { grid-template-columns: 1fr; }
  .docd-timeline li { grid-template-columns: 90px 16px minmax(0, 1fr); }
  .docd-ribbon-inner { padding: 22px 18px; }
  .docd-actions .btn { width: 100%; justify-content: center; }
}

/* ========== Blog detay (bd) ========== */
.bd-crumb {
  background: #EEF2F7;
  border-bottom: 1px solid var(--ayaz-border);
  padding: 14px 0;
  font-size: 13.5px;
  color: var(--ayaz-muted);
}
.bd-crumb .container { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.bd-crumb a { color: var(--ayaz-muted); }
.bd-crumb a:hover { color: var(--ayaz-blue); }
.bd-crumb span:last-child { color: var(--ayaz-ink); font-weight: 600; }

.bd-page { padding-top: 36px; padding-bottom: 64px; }
.bd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
  gap: 40px;
  align-items: start;
}
.treatment-main,
.bd-main { min-width: 0; max-width: none; }
.bd-title {
  margin: 0;
  max-width: var(--content-measure);
  font-family: var(--font-head);
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--ayaz-navy);
  letter-spacing: -.02em;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .bd-title { font-size: clamp(30px, 8vw, 40px); }
}
.bd-lead {
  margin: 14px 0 0;
  color: var(--ayaz-muted);
  font-size: var(--text-p);
  font-weight: 400;
  line-height: var(--text-lh);
  max-width: var(--content-measure);
}
@media (max-width: 767px) {
  .bd-lead { font-size: var(--text-p-mobile); }
}
.bd-meta {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  font-size: 13.5px; color: var(--ayaz-muted); font-weight: 600;
}
.bd-meta i { color: var(--ayaz-blue); margin-right: 6px; }
.bd-cover {
  margin: 26px 0 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .1);
  background: #E2E8F0;
  aspect-ratio: 16 / 9;
}
.bd-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bd-summary {
  margin: 22px 0 0;
  color: var(--ayaz-ink);
  font-size: 1rem;
  line-height: 1.75;
}

.bd-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.bd-feature {
  background: #fff;
  border: 1px solid var(--ayaz-border);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
}
.bd-feature i {
  font-size: 1.55rem; color: var(--ayaz-blue);
  display: block; margin-bottom: 10px;
}
.bd-feature h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--ayaz-navy);
}
.bd-feature p {
  margin: 8px 0 0;
  font-size: 12.5px; color: var(--ayaz-muted); line-height: 1.45;
}

.bd-toc {
  margin: 28px 0 0;
  border-radius: 16px;
  background: #F1F5F9;
}
.bd-toc-list {
  list-style: none;
  padding-left: 25px;
}
.bd-toc-list li {
  margin: 0 0 8px;
  padding-left: 0;
}
.bd-toc-list li::before { content: none; }
.bd-toc-list a {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-weight: 600;
  font-size: 14.5px;
}
.bd-toc-list a::before {
  content: ">";
  color: var(--ayaz-muted);
  font-weight: 700;
  min-width: 0.9em;
}

.bd-content { margin-top: 28px; }

.bd-block { margin-top: 36px; }
.bd-block > h2 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--ayaz-navy);
  line-height: 1.25;
}
.bd-block > p {
  color: var(--ayaz-ink);
  font-size: var(--text-p);
  font-weight: 400;
  line-height: var(--text-lh);
  margin: 0 0 18px;
}
@media (max-width: 767px) {
  .bd-block > h2 { font-size: clamp(26px, 6.5vw, 32px); }
  .bd-block > p { font-size: var(--text-p-mobile); }
}

.bd-suit {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.bd-suit li {
  text-align: center;
  padding: 14px 10px;
  border-radius: 14px;
  background: #F8FAFC;
  border: 1px solid var(--ayaz-border);
}
.bd-suit i {
  display: block; font-size: 1.5rem; color: var(--ayaz-blue); margin-bottom: 8px;
}
.bd-suit span {
  font-size: 12.5px; font-weight: 650; color: var(--ayaz-ink); line-height: 1.35;
  display: block;
}

/* Süreç akışı: ayrı kart yok, tek çizgili timeline */
.bd-steps {
  --bd-step-line: rgba(40, 120, 183, .28);
  list-style: none;
  margin: 28px 0 0;
  padding: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
}
.bd-steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bd-step-line) 12%, var(--bd-step-line) 88%, transparent);
  pointer-events: none;
}
.bd-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.bd-step:hover { transform: none; }
.bd-step:not(:last-child)::after { display: none; }
.bd-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--ayaz-blue);
  color: var(--ayaz-navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  box-shadow: 0 0 0 8px #fff;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.bd-step:hover .bd-step-num {
  background: linear-gradient(145deg, var(--ayaz-navy), var(--ayaz-blue));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.bd-step-body {
  min-width: 0;
  max-width: 150px;
}
.bd-step-title {
  display: block;
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ayaz-navy);
}
.bd-step-desc {
  margin: 0;
  font-size: .84rem;
  line-height: 1.45;
  color: var(--ayaz-muted);
}

.bd-faq-list { margin-top: 14px; }
.bd-faq-item {
  border: 1px solid var(--ayaz-border);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
}
.bd-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px;
  font-weight: 700; color: var(--ayaz-navy); font-size: 15px;
}
.bd-faq-item summary::-webkit-details-marker { display: none; }
.bd-faq-item summary i { color: var(--ayaz-blue); transition: transform .2s; }
.bd-faq-item[open] summary i { transform: rotate(180deg); }
.bd-faq-a {
  padding: 0 18px 16px;
  color: var(--ayaz-muted); font-size: 14.5px; line-height: 1.65;
}

.bd-author {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px 22px;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--ayaz-border);
  background: #F8FAFC;
}
.bd-author-photo {
  width: 96px; height: 96px; border-radius: 16px; overflow: hidden;
  background: #E2E8F0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: var(--ayaz-blue);
}
.bd-author-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bd-author-label {
  display: block;
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ayaz-blue); margin-bottom: 4px;
}
.bd-author-body h3 { margin: 0; font-family: var(--font-head); font-size: 1.2rem; color: var(--ayaz-navy); }
.bd-author-role { margin: 4px 0 0; font-size: 13.5px; color: var(--ayaz-blue); font-weight: 650; }
.bd-author-bio { margin: 8px 0 0; font-size: 13.5px; color: var(--ayaz-muted); line-height: 1.55; }
.bd-author-social span {
  display: block; font-size: 12px; font-weight: 700; color: var(--ayaz-muted); margin-bottom: 8px;
}
.bd-author-social ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; }
.bd-author-social a {
  width: 36px; height: 36px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #CBD5E1; color: #64748B;
}
.bd-author-social a:hover { border-color: var(--ayaz-blue); color: var(--ayaz-blue); }

/* Sidebar */
.bd-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 100px; }
.bd-side-card {
  background: #fff;
  border: 1px solid var(--ayaz-border);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}
.bd-side-title {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--ayaz-navy);
}
.bd-side-treats { list-style: none; margin: 0; padding: 0; }
.bd-side-treats li + li { margin-top: 12px; }
.bd-side-treat {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 20px;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  color: inherit;
  transition: background .2s;
}
.bd-side-treat:hover { background: #F1F5F9; color: inherit; }
.bd-side-treat-img {
  width: 72px; height: 72px; border-radius: 14px; overflow: hidden;
  background: #E2E8F0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ayaz-blue); font-size: 1.45rem;
}
.bd-side-treat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bd-side-treat-body strong {
  display: block; font-size: 16px; color: var(--ayaz-navy); margin-bottom: 4px; line-height: 1.3;
}
.bd-side-treat-body span {
  display: block; font-size: 13.5px; color: var(--ayaz-muted); line-height: 1.4;
}
.bd-side-treat-go { color: var(--ayaz-blue); font-size: 16px; }

.bd-side-cta {
  border-radius: 18px;
  padding: 22px 20px;
  background: linear-gradient(145deg, #1D4ED8 0%, #2563EB 50%, #3B82F6 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(37, 99, 235, .28);
}
.bd-side-cta h3 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: #fff;
}
.bd-side-cta ul { list-style: none; margin: 0 0 18px; padding: 0; }
.bd-side-cta li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; margin-bottom: 8px;
  color: rgba(255,255,255,.92);
}
.bd-side-cta a { color: #fff; }
.bd-side-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 13px 16px; border-radius: 999px;
  background: #fff; color: var(--ayaz-blue) !important;
  font-weight: 800; font-size: 14.5px;
}
.bd-side-cta-btn:hover { background: #EFF6FF; color: var(--ayaz-navy) !important; }

.bd-review { display: none; }
.bd-review.is-active { display: block; }
.bd-review-stars { color: #F59E0B; margin-bottom: 10px; letter-spacing: 1px; }
.bd-review-text {
  margin: 0;
  font-size: 14.5px; line-height: 1.6; color: var(--ayaz-ink);
  font-style: italic;
}
.bd-review-author {
  display: flex; align-items: center; gap: 10px; margin-top: 14px;
}
.bd-review-author img,
.bd-review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover;
}
.bd-review-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  background: #DBEAFE; color: var(--ayaz-blue); font-weight: 800;
}
.bd-review-author strong { font-size: 14px; color: var(--ayaz-navy); }
.bd-review-nav {
  display: flex; gap: 8px; margin-top: 14px;
}
.bd-review-nav button {
  width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid var(--ayaz-border); background: #fff;
  color: var(--ayaz-blue); cursor: pointer;
}
.bd-review-nav button:hover { background: var(--ayaz-sky); }

.bd-side-promo {
  border-radius: 18px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid #BFDBFE;
  text-align: center;
}
.bd-side-promo i {
  font-size: 2rem; color: var(--ayaz-blue); display: block; margin-bottom: 10px;
}
.bd-side-promo h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ayaz-navy);
}
.bd-side-promo p {
  margin: 8px 0 0;
  font-size: 13.5px; color: var(--ayaz-muted); line-height: 1.5;
}

@media (max-width: 1024px) {
  .bd-layout { grid-template-columns: 1fr; }
  .bd-sidebar { position: static; }
  .bd-features { grid-template-columns: 1fr 1fr; }
  .bd-suit { grid-template-columns: 1fr 1fr; }
  .bd-steps { grid-template-columns: 1fr; gap: 0; padding-left: 8px; }
  .bd-steps::before {
    left: 25px;
    right: auto;
    top: 8px;
    bottom: 8px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--bd-step-line) 10%, var(--bd-step-line) 90%, transparent);
  }
  .bd-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 14px 0 14px 4px;
  }
  .bd-step-num { box-shadow: 0 0 0 6px #fff; width: 44px; height: 44px; font-size: 14px; }
  .bd-step-body { max-width: none; }
  .bd-author { grid-template-columns: 80px 1fr; }
  .bd-author-social { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .bd-features, .bd-suit { grid-template-columns: 1fr; }
  .bd-author { grid-template-columns: 1fr; text-align: left; }
}

/* ========== Hakkımızda ========== */
.about-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(37, 99, 235, .08), transparent 60%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 55%, #F1F5F9 100%);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
}
.about-hero-title {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--ayaz-navy);
}
.about-hero-lead {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ayaz-muted);
}
.about-hero-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.about-hero-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-hero-features strong {
  display: block;
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 700;
  color: var(--ayaz-navy);
  margin-bottom: 2px;
}
.about-hero-features span:last-child {
  display: block;
  font-size: .86rem;
  line-height: 1.45;
  color: var(--ayaz-muted);
}
.about-hero-visual { position: relative; }
.about-hero-frame {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, .16);
  aspect-ratio: 1024 / 681;
  background: #0B1220;
}
.about-hero-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform .7s ease;
}
.about-hero-visual:hover .about-hero-frame img { transform: scale(1.03); }

.about-process { padding-top: 40px; }
.about-process-heading {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.about-process-heading .section-title { margin-bottom: 0; }
.about-process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}
.about-process-steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 0;
  border-top: 2px dashed #BFDBFE;
  z-index: 0;
  pointer-events: none;
}
.about-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8px 8px 0;
}
.about-process-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  color: var(--ayaz-blue);
  font-size: 1.55rem;
}
.about-process-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(145deg, #60A5FA, var(--ayaz-blue));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .82rem;
  box-shadow: 0 10px 22px rgba(37, 99, 235, .28);
}
.about-process-step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ayaz-navy);
}
.about-process-step p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.5;
  color: var(--ayaz-muted);
}

.about-identity { padding-top: 28px; }
.about-identity-head {
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}
.about-identity-head .section-lead,
.about-identity-lead {
  margin-left: auto;
  margin-right: auto;
}
.about-identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
  align-items: stretch;
}
.about-id-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 26px 22px 24px;
  border: 1px solid var(--ayaz-border);
  border-radius: 20px;
  background:
    radial-gradient(520px 180px at 0% 0%, rgba(96, 165, 250, .12), transparent 70%),
    linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}
.about-id-card--accent {
  border-color: rgba(37, 99, 235, .28);
  background:
    radial-gradient(520px 200px at 100% 0%, rgba(37, 99, 235, .16), transparent 68%),
    linear-gradient(180deg, #EFF6FF 0%, #fff 72%);
}
.about-id-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(37, 99, 235, .1);
  color: var(--ayaz-blue);
  font-size: 1.35rem;
}
.about-id-card--accent .about-id-card__ico {
  background: rgba(37, 99, 235, .16);
  color: var(--ayaz-navy);
}
.about-id-card__title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--ayaz-navy);
}
.about-id-card__text {
  margin: 0;
  flex: 1;
  font-size: .94rem;
  line-height: 1.7;
  color: var(--ayaz-muted);
}
.about-id-card__btn {
  align-self: flex-start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-features-bar {
  background: linear-gradient(90deg, #0B1220 0%, #111827 50%, #0F172A 100%);
  color: rgba(241, 245, 249, .88);
  padding: 36px 0;
  margin-bottom: -40px;
}
.about-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.about-features-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-features-list i {
  flex: 0 0 auto;
  font-size: 1.45rem;
  color: var(--ayaz-bright);
  margin-top: 2px;
}
.about-features-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.about-features-list span {
  display: block;
  font-size: .82rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, .72);
}

.about-clinic-gallery-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.about-clinic-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about-clinic-gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 4 / 5;
  display: block;
  text-decoration: none;
  cursor: zoom-in;
}
.about-clinic-gallery-item.is-wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}
.about-clinic-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.about-clinic-gallery-item:hover img { transform: scale(1.03); }

/* Fullscreen gallery lightbox */
body.ayaz-lb-open { overflow: hidden; }
.ayaz-lb {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.ayaz-lb.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ayaz-lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 28, .94);
  cursor: zoom-out;
}
.ayaz-lb__stage {
  position: relative;
  z-index: 1;
  max-width: min(1200px, 92vw);
  max-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ayaz-lb__img,
.ayaz-lb__video {
  display: block;
  max-width: 92vw;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
  background: #000;
  transition: opacity .2s ease;
}
.ayaz-lb__img[hidden],
.ayaz-lb__video[hidden] {
  display: none !important;
}
.ayaz-lb.is-loading .ayaz-lb__img { opacity: .35; }
.ayaz-lb__close,
.ayaz-lb__nav {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.ayaz-lb__close:hover,
.ayaz-lb__nav:hover {
  background: var(--brand, #1d6fd8);
  border-color: transparent;
}
.ayaz-lb__close:focus-visible,
.ayaz-lb__nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.ayaz-lb__close { top: 20px; right: 20px; font-size: 1.15rem; }
.ayaz-lb__nav { top: 50%; transform: translateY(-50%); font-size: 1.35rem; }
.ayaz-lb__nav--prev { left: 16px; }
.ayaz-lb__nav--next { right: 16px; }
.ayaz-lb__meta {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: min(720px, 90vw);
  text-align: center;
  pointer-events: none;
}
.ayaz-lb__caption {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .01em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}
.ayaz-lb__counter {
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  letter-spacing: .12em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
}
@media (max-width: 767px) {
  .ayaz-lb__nav { width: 42px; height: 42px; }
  .ayaz-lb__nav--prev { left: 8px; }
  .ayaz-lb__nav--next { right: 8px; }
  .ayaz-lb__close { top: 12px; right: 12px; width: 42px; height: 42px; }
  .ayaz-lb__stage { max-height: calc(100vh - 140px); }
  .ayaz-lb__img,
  .ayaz-lb__video { max-height: calc(100vh - 140px); }
}

.about-contact-grid {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: start;
}
.about-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.about-contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .06);
}
.about-contact-list i {
  color: var(--ayaz-bright, #2563eb);
  font-size: 1.15rem;
  margin-top: 2px;
}
.about-contact-list strong {
  display: block;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}
.about-contact-list a,
.about-contact-list span {
  color: #0f172a;
  font-weight: 600;
  line-height: 1.45;
}
.contact-form-block__title {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: 1.45rem;
}

.partners-page {
  color: #0f172a;
}
.partners-page h1,
.partners-page h2,
.partners-page h3 {
  color: #0f172a;
  font-weight: 700;
}
.partners-page a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.partners-page a:hover {
  color: #111827;
}

.partners-hero {
  margin: 8px 0 32px;
  max-width: 860px;
}
.partners-hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.2;
}
.partners-hero__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  font-weight: 500;
}

.partners-logos-section {
  margin-bottom: 36px;
}
.partners-logos-section > h2 {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.35;
  max-width: 900px;
}
.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.partner-logo-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 16px 16px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
  text-align: center;
}
.partner-logo-card__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 2 / 1;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f8fafc;
  overflow: hidden;
}
.partner-logo-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
}
.partner-logo-card__name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .03em;
  color: #0f172a;
}
.partner-logo-card__caption {
  margin: 0;
  font-size: .9rem;
  line-height: 1.3;
  color: #0f172a;
  font-weight: 700;
}

.partners-block {
  margin-bottom: 22px;
}
.partners-block__card {
  padding: 28px 26px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}
.partners-block__card h2 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
}
.partners-block__card h3 {
  margin: 1.4rem 0 .7rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
}
.partners-block__card p {
  margin: 0 0 1rem;
  color: #334155;
  line-height: 1.75;
  font-size: 1.02rem;
}
.partners-block__card p:last-child { margin-bottom: 0; }
.partners-block__card strong { color: #0f172a; font-weight: 700; }

.partners-treatments {
  margin: 28px 0 32px;
}
.partners-treatments__head {
  margin-bottom: 18px;
  max-width: 820px;
}
.partners-treatments__head h2 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
}
.partners-treatments__head p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}
.partners-treatments__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.partner-treatment-card {
  padding: 22px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}
.partner-treatment-card__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.partner-treatment-card__ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.partner-treatment-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.08rem;
  line-height: 1.35;
}
.partner-treatment-card h3 a {
  text-decoration: none;
}
.partner-treatment-card h3 a:hover {
  text-decoration: underline;
}
.partner-treatment-card p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
  font-size: .98rem;
}
.partner-treatment-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.partner-treatment-card__links a {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: .82rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}
.partner-treatment-card__links a:hover {
  background: #f1f5f9;
}

.partners-contact {
  margin-top: 12px;
  padding-top: 8px;
}
.partners-contact__intro {
  margin-bottom: 20px;
  max-width: 760px;
}
.partners-contact__intro h2 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
}
.partners-contact__intro p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}
.partners-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 22px;
  align-items: start;
}
.partners-contact__form-card,
.partners-contact__media-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
  overflow: hidden;
}
.partners-contact__form-card {
  padding: 24px;
}
.partners-contact__meta {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.partners-contact__meta li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}
.partners-contact__meta i {
  color: #0f172a;
  margin-top: 2px;
}
.partners-contact__meta strong {
  display: block;
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 2px;
  font-weight: 700;
}
.partners-contact__meta a,
.partners-contact__meta span {
  color: #0f172a;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}
.partners-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #16a34a;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}
.partners-wa-btn:hover {
  background: #15803d;
  color: #fff !important;
}
.partners-contact__media-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #0f172a;
}
.partners-contact__media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.partners-contact__aside-info {
  padding: 18px 20px 22px;
  display: grid;
  gap: 12px;
}
.partners-contact__aside-info p {
  margin: 0;
  color: #334155;
  line-height: 1.55;
  font-size: .95rem;
}
.partners-contact__aside-info strong {
  display: block;
  color: #0f172a;
  margin-bottom: 2px;
}
.partners-contact__aside-info a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 991px) {
  .about-clinic-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-clinic-gallery-item.is-wide { aspect-ratio: 16 / 10; }
  .about-contact-grid { grid-template-columns: 1fr; }
  .partners-logo-grid { grid-template-columns: 1fr; }
  .partners-treatments__grid { grid-template-columns: 1fr; }
  .partners-contact__grid { grid-template-columns: 1fr; }
  .partners-contact__media-card { order: -1; }
  .about-identity-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-visual { order: -1; }
  .about-process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-process-steps::before {
    top: 24px;
    bottom: 24px;
    left: 36px;
    right: auto;
    width: 0;
    height: auto;
    border-top: 0;
    border-left: 2px dashed #BFDBFE;
  }
  .about-process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    text-align: left;
    padding: 16px 0 16px 8px;
  }
  .about-process-ico {
    grid-row: 1;
    grid-column: 1;
    width: 40px;
    height: 40px;
    margin: 0;
    font-size: 1.35rem;
  }
  .about-process-num {
    grid-row: 2;
    grid-column: 1;
    margin: 0;
    width: 36px;
    height: 36px;
    font-size: .75rem;
  }
  .about-process-step h3 {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
  }
  .about-process-step p {
    grid-row: 2 / 4;
    grid-column: 2;
  }
  .about-features-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .about-hero-features { grid-template-columns: 1fr; }
  .about-features-list { grid-template-columns: 1fr; gap: 18px; }
  .about-clinic-gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SOL HIZLI MENÜ (expand + panel — ercebelecoglu tarzı)
   ============================================================ */
.ayaz-float-rail {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  /* Referans site gibi; tedavi kartı dikey yazısının üstünde kalsın */
  z-index: 9999;
  overflow: visible;
  max-height: calc(100vh - 100px);
  isolation: isolate;
  pointer-events: none;
}
.ayaz-float-rail .ayaz-float-item,
.ayaz-float-rail .ayaz-float-trigger {
  pointer-events: auto;
}
.ayaz-float-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.ayaz-float-item {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  line-height: 1;
}
.ayaz-float-item:last-child { margin-bottom: 0; }
/* Açık öğe: paneli diğer butonların üstüne taşır */
.ayaz-float-item:hover,
.ayaz-float-item.is-open {
  z-index: 5;
}
.ayaz-float-trigger {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: 75px;
  min-height: 60px;
  padding: 14px 18px 14px 14px;
  border: 1px solid #bebebe;
  border-left: 0;
  border-radius: 0 40px 40px 0;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  color: #fff;
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  transition: width .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.ayaz-float-ico {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--float-brand, #2563EB);
  transition: color .3s ease;
  position: relative;
  top: 2px;
}
.ayaz-float-ico img { width: 28px; height: 28px; object-fit: contain; }
.ayaz-float-ico svg { width: 28px; height: 28px; display: block; }
.ayaz-float-label {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s ease, transform .25s ease;
  color: #fff;
}
.ayaz-float-item:hover .ayaz-float-trigger,
.ayaz-float-item.is-open .ayaz-float-trigger {
  width: max-content;
  max-width: min(280px, calc(100vw - 16px));
  padding-right: 18px;
  background: var(--float-brand, #2563EB);
  border-color: var(--float-brand, #2563EB);
  box-shadow: 0 5px 14px color-mix(in srgb, var(--float-brand, #2563EB) 45%, transparent);
}
.ayaz-float-item:hover .ayaz-float-ico,
.ayaz-float-item.is-open .ayaz-float-ico { color: #fff; }
.ayaz-float-item:hover .ayaz-float-label,
.ayaz-float-item.is-open .ayaz-float-label {
  opacity: 1;
  transform: translateX(0);
}
.ayaz-float-trigger.is-whatsapp { border-color: #128c7e; }

.ayaz-float-panel {
  position: absolute;
  top: 0;
  left: 80px;
  /* Referans: buton panelin üstünde; panel diğer butonların üstünde */
  z-index: -1;
  width: min(350px, calc(100vw - 100px));
  max-height: min(72vh, calc(100vh - 48px));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 16px 22px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  transform: translateX(-6px) translateY(var(--panel-shift, 0px));
  white-space: normal;
}
.ayaz-float-item:hover .ayaz-float-panel,
.ayaz-float-item.is-open .ayaz-float-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) translateY(var(--panel-shift, 0px));
}
.ayaz-float-panel-head {
  margin-bottom: 25px;
  /* Genişleyen butonun altında kalmasın (referans: padding-left: 135px) */
  padding-left: max(135px, calc(var(--float-expand, 220px) - 70px));
}
.ayaz-float-kicker {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 20px;
  color: #636363;
  font-weight: 300;
}
.ayaz-float-wa-link {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #25d366;
  text-decoration: none;
}
.ayaz-float-wa-link:hover { color: #128c7e; }
.ayaz-float-desc {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 22px;
  color: #636363;
  font-weight: 300;
}
.ayaz-float-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 140px;
  margin-left: max(140px, calc(var(--float-expand, 220px) - 70px));
  padding: 5px;
  border: 1px solid #bebebe;
  border-radius: 10px;
  color: #343434;
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.ayaz-float-cta:hover {
  background: var(--float-brand, #2563EB);
  border-color: var(--float-brand, #2563EB);
  color: #fff;
  box-shadow: 0 5px 12px color-mix(in srgb, var(--float-brand, #2563EB) 40%, transparent);
}
.ayaz-float-map {
  display: block;
  width: 100%;
  height: 220px;
  max-height: 36vh;
  border: 0;
  border-radius: 22px;
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .ayaz-float-rail {
    top: auto;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    transform: none;
    max-height: none;
  }
  .ayaz-float-trigger {
    width: 55px;
    min-height: 40px;
    padding: 10px 5px;
  }
  .ayaz-float-ico {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    font-size: 16px;
    top: 0;
  }
  .ayaz-float-ico img,
  .ayaz-float-ico svg { width: 20px; height: 20px; }
  .ayaz-float-item:hover .ayaz-float-trigger,
  .ayaz-float-item.is-open .ayaz-float-trigger {
    width: max-content;
    max-width: min(var(--float-expand, 190px), calc(100vw - 24px));
    padding-right: 12px;
  }
  .ayaz-float-panel {
    width: min(250px, calc(100vw - 84px));
    left: 62px;
    max-height: min(62vh, calc(100vh - 120px));
  }
  .ayaz-float-panel-head {
    padding-left: 0;
    padding-top: 45px;
    margin-bottom: 10px;
  }
  .ayaz-float-cta { margin-left: 0; }
  .ayaz-float-map { height: 160px; max-height: 28vh; }
}

/* Legacy float-contact (artık kullanılmıyor; güvenlik için) */
.float-contact { display: none !important; }

.mobile-bottom-nav { display: none; }

@media (max-width: 991px) {
  .mobile-bottom-nav {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1200;
    height: 64px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    border-top: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 -4px 22px rgba(15, 23, 42, .12);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-bottom-nav .mbn-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 64px;
    max-width: 440px;
    margin: 0 auto;
    padding: 0 10px;
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    padding: 0;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--ayaz-navy);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-bottom-nav .mbn-icon {
    width: 38px; height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--ayaz-navy);
    background: linear-gradient(145deg, #f3f4f6 0%, #e6e8ec 100%);
    box-shadow: 2px 2px 6px rgba(15, 23, 42, .08), -1px -1px 4px rgba(255, 255, 255, .9);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  }
  .mobile-bottom-nav a.mbn-active { color: var(--ayaz-blue); }
  .mobile-bottom-nav a.mbn-active .mbn-icon {
    background: linear-gradient(145deg, #93C5FD, #2563EB);
    color: #fff;
    box-shadow: 0 5px 14px rgba(37, 99, 235, .35);
  }
  .mobile-bottom-nav .mbn-icon-accent {
    background: linear-gradient(145deg, #0F172A, #1E3A5F);
    color: #93C5FD;
    box-shadow: 2px 2px 8px rgba(15, 23, 42, .22);
  }
  .mobile-bottom-nav a:active .mbn-icon,
  .mobile-bottom-nav button:active .mbn-icon { transform: scale(.92); }
  .mobile-bottom-nav .mbn-menu.is-spinning .mbn-icon i {
    animation: mbnSpin .55s cubic-bezier(.4, 0, .2, 1);
  }
  @keyframes mbnSpin {
    from { transform: rotate(0); }
    to { transform: rotate(180deg); }
  }

  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

@media (min-width: 992px) {
  .mobile-bottom-nav { display: none !important; }
}

/* ---------- 404 ---------- */
.err404 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(72vh, 720px);
  display: flex;
  align-items: center;
  padding: 72px 0 88px;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(37, 99, 235, .14), transparent 60%),
    radial-gradient(700px 380px at 92% 18%, rgba(96, 165, 250, .16), transparent 55%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 48%, #F1F5F9 100%);
}
.err404__glow {
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, .10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.err404__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.err404__code {
  margin: 0;
  font-family: var(--font-head), sans-serif;
  font-size: clamp(5.5rem, 16vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: .9;
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 45%, #60A5FA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: err404Rise .7s ease both;
}
.err404__title {
  margin: 18px 0 12px;
  font-family: var(--font-head), sans-serif;
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--ayaz-navy);
  line-height: 1.25;
  animation: err404Rise .7s ease .08s both;
}
.err404__lead {
  margin: 0 auto 28px;
  max-width: 34rem;
  color: var(--ayaz-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  animation: err404Rise .7s ease .14s both;
}
.err404__url {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 0 auto 32px;
  max-width: 100%;
  animation: err404Rise .7s ease .2s both;
}
.err404__url-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ayaz-muted);
}
.err404__url-value {
  display: inline-block;
  max-width: min(100%, 560px);
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, .04);
  border: 1px solid var(--ayaz-border);
  color: var(--ayaz-navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .92rem;
  line-height: 1.45;
  word-break: break-all;
  text-align: left;
}
.err404__timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: err404Rise .7s ease .26s both;
}
.err404__ring {
  position: relative;
  width: 72px;
  height: 72px;
}
.err404__ring svg {
  display: block;
  transform: rotate(-90deg);
}
.err404__ring-track {
  stroke: #E2E8F0;
}
.err404__ring-prog {
  stroke: #2563EB;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}
.err404__count {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-head), sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ayaz-navy);
}
.err404__timer-text {
  margin: 0;
  color: var(--ayaz-muted);
  font-size: .98rem;
}
.err404__timer-sec {
  color: var(--ayaz-blue);
  font-weight: 700;
}
.err404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: err404Rise .7s ease .32s both;
}
@keyframes err404Rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .err404__code,
  .err404__title,
  .err404__lead,
  .err404__url,
  .err404__timer,
  .err404__actions {
    animation: none;
  }
  .err404__ring-prog { transition: none; }
}
@media (max-width: 640px) {
  .err404 { padding: 48px 0 72px; min-height: auto; }
  .err404__actions { width: 100%; }
  .err404__actions .btn { width: 100%; justify-content: center; }
}
