/* =========================================================
   Doç. Dr. Zülfü Sertkaya — Androloji / Erkek Sağlığı
   "Aydınlık Premium" tasarım sistemi · navy (#202850) + canlı mavi
   Beyaz zemin, ferah, premium, kendine güvenen ama sıcak/cool.
   ========================================================= */

:root{
  /* --- Marka paleti (logodaki lacivertten) --- */
  --navy:        #202850;  /* birincil — logo laciverti; başlık, primary buton */
  --navy-700:    #2B3566;
  --navy-900:    #161B38;  /* koyu footer */
  --ink:         #1B2240;  /* gövde metni */
  --blue:        #3B5BDB;  /* canlı aksan — link, vurgu */
  --blue-bright: #5C7CFA;  /* hover / aktif */
  --blue-soft:   #EDF1FF;  /* yumuşak tint — chip, ikon zemini */
  --sky:         #F4F7FF;  /* açık bölüm zemini */
  --pop:         #FF7A59;  /* sıcak vurgu — çok az, "eğlenceli" dokunuş */

  --bg:          #FFFFFF;
  --bg-soft:     #F6F8FC;
  --muted:       #616A86;
  --muted-2:     #8A92A8;
  --line:        #E7EBF4;
  --line-2:      #EEF1F8;
  --white:       #FFFFFF;
  --ok:          #1F9D6B;
  --wa:          #25d366;

  /* Tipografi */
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;

  /* Ölçü — premium = yumuşak yuvarlak + cömert boşluk */
  --container: 1200px;
  --radius: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-xs: 0 1px 2px rgba(32,40,80,.06);
  --shadow-sm: 0 4px 16px rgba(32,40,80,.06);
  --shadow: 0 16px 40px rgba(32,40,80,.10);
  --shadow-lg: 0 30px 70px rgba(32,40,80,.16);
  --header-h: 78px;
  --trans: .3s cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body{
  margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--bg);
  line-height: 1.72; font-size: 17px; overflow-x: hidden; position: relative; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--navy); }
h1, h2, h3, h4, h5{ font-family: var(--font-head); color: var(--navy); line-height: 1.16; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; overflow-wrap: break-word; }
h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); font-weight: 800; letter-spacing: -.035em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing: -.03em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
strong { color: var(--navy); font-weight: 600; }
::selection { background: var(--blue); color: #fff; }

:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 2px; border-radius: 6px; }
.skip-link{ position: absolute; left: -999px; top: 0; z-index: 2000; background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Düzen ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--sky { background: var(--sky); }
.section--tight { padding: 60px 0; }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--muted); }
.muted { color: var(--muted); }
.eyebrow{
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; color: var(--blue);
  background: var(--blue-soft); padding: 7px 14px; border-radius: 50px; margin-bottom: 18px;
}
.eyebrow.center{ justify-content:center; }
.section-head { max-width: 760px; margin: 0 auto 54px; }
.section-head.center { text-align: center; }
.section-head p { color: var(--muted); }
.grid { display: grid; gap: 24px; }
.grid > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

/* dekoratif yumuşak orb (premium, motif yerine) */
.orb{ position:absolute; border-radius:50%; filter: blur(10px); opacity:.5; z-index:0; pointer-events:none; }
/* eski motif sınıfları nötralize (artık kullanılmıyor) */
.clinic-line, .grid-texture { display: none !important; }

/* ---------- Butonlar ---------- */
.btn{
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600;
  font-size: 1rem; letter-spacing: -.01em; padding: 15px 28px; border-radius: 50px; border: 1.5px solid transparent;
  cursor: pointer; transition: var(--trans); text-align: center; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(32,40,80,.22); }
.btn--primary:hover { background: var(--blue); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(59,91,219,.32); }
.btn--accent { background: var(--blue); color: #fff; }
.btn--accent:hover { background: var(--blue-bright); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--blue-soft); color: var(--navy); transform: translateY(-2px); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.top-bar { background: var(--navy); color: rgba(255,255,255,.78); font-size: .82rem; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; height: 42px; gap: 16px; }
.top-bar-msg { font-family: var(--font-body); font-weight: 500; letter-spacing: .02em; color: rgba(255,255,255,.82); }
.top-bar-links { display: flex; align-items: center; gap: 22px; }
.top-bar-links a { color: rgba(255,255,255,.82); display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.top-bar-links a:hover { color: #fff; }
.top-bar-links svg { width: 15px; height: 15px; }
.top-bar-cta { color: var(--blue-bright) !important; font-weight: 600 !important; }
@media (max-width: 768px){ .top-bar-msg { display: none; } .top-bar-inner { justify-content: center; } .top-bar-links { gap: 16px; font-size: .78rem; } .top-bar-social { display: none; } }

/* Dil değiştirici (üst bant) */
.lang-switch.top{ border:1px solid rgba(255,255,255,.28); border-radius:50px; padding:3px 11px; color:rgba(255,255,255,.9)!important; font-family:var(--font-head); font-weight:700; font-size:.74rem; letter-spacing:.06em; line-height:1; }
.lang-switch.top:hover{ border-color:var(--blue-bright); color:#fff!important; background:rgba(255,255,255,.06); }

/* Üst bant sosyal ikonlar */
.top-bar-social{ display:inline-flex; align-items:center; gap:13px; padding-right:14px; margin-right:4px; border-right:1px solid rgba(255,255,255,.18); }
.top-bar-social a{ color: rgba(255,255,255,.7); display:inline-flex; }
.top-bar-social a:hover{ color:#fff; }
.top-bar-social svg{ width:15px; height:15px; }

/* Video gömme (16:9) — facade (kapak + oynat) */
.video-grid{ display:grid; gap:24px; }
.video-embed{ position:relative; aspect-ratio:16/9; border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-sm); border:1px solid var(--line); background:#0b1020; }
.video-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-facade{ position:absolute; inset:0; width:100%; height:100%; border:0; padding:0; margin:0; cursor:pointer; background:#0b1020; display:block; }
.video-facade img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .5s ease; }
.video-facade::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(11,16,32,.05) 0%, rgba(11,16,32,.40) 100%); transition: background var(--trans); }
.video-facade:hover img{ transform:scale(1.05); }
.video-facade:hover::after{ background:linear-gradient(180deg, rgba(11,16,32,.12) 0%, rgba(11,16,32,.5) 100%); }
.video-play{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:74px; height:74px; border-radius:50%; background:rgba(255,255,255,.94); color:var(--navy); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow); transition:var(--trans); z-index:2; }
.video-facade:hover .video-play{ background:var(--blue); color:#fff; transform:translate(-50%,-50%) scale(1.08); }
.video-play svg{ margin-left:4px; }

/* Hastane logo bandı görselleri */
.logo-band .lb-item{ display:flex; align-items:center; justify-content:center; min-height:84px; padding:18px 28px; }
.logo-band .lb-item img{ max-height:52px; width:auto; object-fit:contain; }

/* ---------- Header ---------- */
.site-header{ position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line); transition: box-shadow var(--trans), transform .38s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
/* scroll aşağı inerken header yukarı kayıp gizlenir, yukarı çıkınca geri gelir */
.site-header.nav-hidden { transform: translateY(-100%); box-shadow: none; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 26px; }
.logo { display:flex; align-items:center; }
.logo img { height: 56px; width: auto; max-width: 100%; }
.main-nav { display: flex; align-items: center; }
.main-nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 2px; }
.main-nav a{ font-family: var(--font-head); font-weight: 500; font-size: .94rem; color: var(--ink);
  padding: 9px 13px; border-radius: 10px; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); background: var(--blue-soft); }
.main-nav .has-dropdown { position: relative; }
.dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--trans); }
.dropdown{ position: absolute; top: calc(100% + 12px); left: 0; min-width: 310px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow); padding: 12px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--trans); max-height: 76vh; overflow-y: auto; }
.dropdown::before{ content:""; position:absolute; top:-1px; left:18px; right:18px; height:3px; background: var(--blue); border-radius:3px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown a { display: block; padding: 9px 14px; font-size: .9rem; font-weight: 400; border-radius: 10px; color: var(--ink); }
.dropdown a:hover { background: var(--blue-soft); color: var(--blue); }
.dropdown .all-link { color: var(--blue); font-weight: 600; margin-top: 6px; border-top: 1px solid var(--line); border-radius: 0; padding-top: 12px; }
.dropdown .dd-head{ font-family: var(--font-body); font-size:.66rem; text-transform:uppercase; letter-spacing:.16em; color: var(--muted-2); padding: 8px 14px 4px; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle{ display: none; background: var(--blue-soft); color: var(--navy); border: 1px solid var(--line); width: 46px; height: 46px;
  border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero (aydınlık premium, asimetrik) ---------- */
.hero{ position: relative; background: linear-gradient(180deg,#fff 0%, var(--sky) 100%); overflow: hidden; }
.hero .orb-a{ width: 620px; height: 620px; right:-140px; top:-200px;
  background: radial-gradient(circle at 30% 30%, rgba(92,124,250,.42), rgba(59,91,219,.18) 45%, transparent 70%); opacity:.85; }
.hero .orb-b{ width: 360px; height: 360px; left:-120px; bottom:-160px;
  background: radial-gradient(circle, rgba(255,122,89,.16), transparent 65%); }
.hero-grid{ display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; padding: 80px 0 90px; position: relative; z-index:2; }
.hero-content, .hero-media { min-width: 0; }
.hero-content .tag{ display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 50px; font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  color: var(--navy); margin-bottom: 24px; box-shadow: var(--shadow-xs); }
.hero-content .tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(59,91,219,.16); }
.hero-content h1 { margin-bottom: 20px; }
.hero-content h1 .hl{ background: linear-gradient(100deg, var(--blue), var(--blue-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-content .lead { margin-bottom: 34px; max-width: 560px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-trust{ display: flex; gap: 0; flex-wrap: wrap; }
.hero-trust .item{ padding-right: 28px; margin-right: 28px; border-right: 1px solid var(--line); }
.hero-trust .item:last-child{ border-right: none; }
.hero-trust .num { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--navy); letter-spacing:-.02em; }
.hero-trust .lbl { font-size: .82rem; color: var(--muted); margin-top: 2px; }

.hero-media { position: relative; z-index:2; }
.hero-frame{ position:relative; border-radius: var(--radius-lg); }
.hero-frame::before{ content:""; position:absolute; inset:-16px -16px 24px 24px; border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--blue), var(--navy)); z-index:-1; opacity:.14; }
.hero-media img, .hero-media .img-placeholder{ border-radius: var(--radius-lg); width: 100%; object-fit: cover; aspect-ratio: 4/5; object-position: top center; box-shadow: var(--shadow-lg); }
.hero-badge{ position: absolute; bottom: 24px; left: -22px; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow); padding: 15px 18px; display: flex; align-items: center; gap: 13px; max-width: 250px; border:1px solid var(--line); }
.hero-badge .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-badge .ic svg { width: 22px; height: 22px; }
.hero-badge .t { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .92rem; line-height: 1.25; }
.hero-badge .s { font-size: .78rem; color: var(--muted); }

/* ---------- Page hero (iç sayfa) ---------- */
.page-hero{ background: linear-gradient(135deg, var(--navy) 0%, #2A3570 60%, var(--blue) 130%); color: #fff; padding: 70px 0 62px; position: relative; overflow: hidden; }
.page-hero .orb-a{ width:480px; height:480px; right:-120px; top:-180px; background: radial-gradient(circle, rgba(92,124,250,.5), transparent 65%); }
.page-hero h1 { color: #fff; margin-bottom: 12px; position:relative; z-index:2; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 660px; margin: 0; position:relative; z-index:2; }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 18px; font-size: .82rem; position:relative; z-index:2; }
.breadcrumb li { color: rgba(255,255,255,.6); margin: 0; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: rgba(255,255,255,.4); }

/* ---------- Kartlar ---------- */
.card{ background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; transition: var(--trans);
  height: 100%; display: flex; flex-direction: column; position:relative; box-shadow: var(--shadow-xs); }
.card:hover { border-color: transparent; transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ic{ width: 54px; height: 54px; border-radius: 14px; background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: var(--trans); }
.card:hover .ic{ background: var(--navy); color: #fff; }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.16rem; margin-bottom: 9px; color: var(--navy); }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.card .more { margin-top: auto; font-family: var(--font-head); font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; font-size: .92rem; }
.card .more svg { width: 16px; height: 16px; transition: transform var(--trans); }
.card:hover .more svg { transform: translateX(4px); }
.card-link { color: inherit; display: block; height: 100%; }
.card-link:hover { color: inherit; }
.card--interest { align-items: flex-start; }
.card--interest h3 { font-size: 1.04rem; margin: 0; }

/* Tanı kartı (yatay) */
.dx-card{ display:flex; gap:16px; align-items:flex-start; background: #fff; border:1px solid var(--line); border-radius: var(--radius-md); padding: 22px; transition: var(--trans); height:100%; box-shadow: var(--shadow-xs); }
.dx-card:hover{ border-color: transparent; transform: translateY(-4px); box-shadow: var(--shadow); }
.dx-card .ic{ width:48px; height:48px; flex-shrink:0; border-radius: 14px; background: var(--blue-soft); color: var(--blue); display:flex; align-items:center; justify-content:center; transition: var(--trans); }
.dx-card:hover .ic{ background: var(--navy); color:#fff; }
.dx-card .ic svg{ width:24px; height:24px; }
.dx-card h3{ font-size:1.05rem; margin-bottom:6px; }
.dx-card p{ color: var(--muted); font-size:.9rem; margin:0 0 10px; }
.dx-card .more{ font-family: var(--font-head); font-weight:600; color: var(--blue); font-size:.86rem; display:inline-flex; align-items:center; gap:5px; }
.dx-card .more svg{ width:14px; height:14px; }

/* Tedavi grubu */
.treat-group{ margin-bottom: 58px; }
.treat-group .group-head{ display:flex; align-items:center; gap:15px; margin-bottom: 8px; }
.treat-group .group-head .ic{ width:50px; height:50px; border-radius:14px; background: var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-sm); }
.treat-group .group-head h2{ font-size: 1.45rem; margin:0; }

/* ---------- Stat şeridi ---------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.stat { text-align: center; padding: 30px 18px; background: #fff; border:1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-xs); }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: 2.3rem; color: var(--navy); line-height: 1; letter-spacing:-.02em; }
.stat .num span { color: var(--blue); }
.stat .lbl { color: var(--muted); margin-top: 10px; font-size: .9rem; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 60px; align-items: center; }
.split--media-first .media { order: -1; }
.split .media img, .split .media .img-placeholder { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.media--portrait img { aspect-ratio: 4/5; object-fit: cover; object-position: center top; max-width: 440px; width: 100%; margin: 0 auto; }
.feature-list { list-style: none; padding: 0; margin: 24px 0; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 14px; color: var(--ink); }
.feature-list .check{ flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.feature-list .check svg { width: 15px; height: 15px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 30px; margin: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; margin-bottom: 28px; }
.timeline li::before { content: ""; position: absolute; left: -30px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); }
.timeline .yr { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: .86rem; }
.timeline h4 { margin: 3px 0 4px; font-size: 1.06rem; color: var(--navy); }
.timeline p { margin: 0; color: var(--muted); font-size: .94rem; }

/* Yayın listesi */
.pub-list{ list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.pub-list li{ display:flex; gap:14px; padding:16px 18px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-xs); }
.pub-list .yr{ font-family: var(--font-head); font-weight:700; color:#fff; background: var(--blue); border-radius:8px; padding:3px 10px; height:fit-content; font-size:.78rem; flex-shrink:0; }
.pub-list .t{ font-size:.95rem; color: var(--ink); }

/* ---------- Blog ---------- */
.blog-leader { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.blog-leader .media { min-height: 340px; background: var(--blue-soft); }
.blog-leader .media img { width: 100%; height: 100%; object-fit: cover; }
.blog-leader .body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: var(--trans); height: 100%; display: flex; flex-direction: column; box-shadow: var(--shadow-xs); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.post-card .media { aspect-ratio: 16/10; background: var(--blue-soft); overflow: hidden; }
.post-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .media img { transform: scale(1.05); }
.post-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.post-card h3 a { color: var(--navy); }
.post-card h3 a:hover { color: var(--blue); }
.post-card p { color: var(--muted); font-size: .92rem; }
.post-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: .8rem; color: var(--muted-2); margin-top: auto; padding-top: 14px; border-top:1px solid var(--line-2); }
.post-meta span { display: inline-flex; align-items: center; gap: 5px; }
.post-meta svg { width: 14px; height: 14px; }
.pill{ display: inline-block; background: var(--blue-soft); color: var(--blue); font-family: var(--font-head); font-weight: 600; font-size: .72rem; padding: 5px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; }
.cat-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.cat-filter button{ font-family: var(--font-head); font-weight: 500; font-size: .88rem; padding: 10px 20px; border-radius: 50px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: var(--trans); }
.cat-filter button:hover { border-color: var(--blue); color: var(--blue); }
.cat-filter button.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Makale (prose) ---------- */
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 56px; align-items: start; }
.prose { font-size: 1.06rem; color: var(--ink); }
.prose h2 { margin-top: 1.7em; }
.prose h3 { margin-top: 1.4em; color: var(--navy); }
.prose img { border-radius: var(--radius-md); margin: 1.6em 0; box-shadow: var(--shadow-sm); }
.prose ul li::marker { color: var(--blue); }
.prose strong{ color: var(--navy); }
.prose .cover { width: 100%; max-height: 420px; object-fit: cover; }
.prose a{ text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
.prose a:hover{ text-decoration-color: var(--blue); }
.sidebar-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; margin-bottom: 22px; position: sticky; top: 98px; }
.sidebar-box h4 { font-size: 1.02rem; margin-bottom: 14px; color: var(--navy); }
.sidebar-box ul { list-style: none; padding: 0; margin: 0; }
.sidebar-box li { margin-bottom: 9px; }
.sidebar-box a { font-weight: 500; font-size: .93rem; color: var(--ink); }
.sidebar-box a:hover{ color: var(--blue); }
.cta-box { background: linear-gradient(145deg, var(--navy), var(--blue)); color: #fff; border-radius: var(--radius-md); padding: 28px; text-align: center; box-shadow: var(--shadow); }
.cta-box h4 { color: #fff; }
.cta-box p { color: rgba(255,255,255,.86); font-size: .92rem; }

.info-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap:1px; background: var(--line); border:1px solid var(--line); border-radius: var(--radius-md); overflow:hidden; margin: 26px 0; }
.info-grid .cell{ background: #fff; padding: 18px 20px; }
.info-grid .cell .k{ text-transform:uppercase; letter-spacing:.1em; font-size:.68rem; color: var(--muted-2); margin-bottom:6px; }
.info-grid .cell .v{ font-family: var(--font-head); font-weight:600; color: var(--navy); font-size:1rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 12px; background: #fff; overflow: hidden; box-shadow: var(--shadow-xs); }
.faq-item.open{ border-color: var(--blue); }
.faq-q{ width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--navy); padding: 21px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q svg { width: 22px; height: 22px; flex-shrink: 0; transition: transform var(--trans); color: var(--blue); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Tıbbi uyarı ---------- */
.med-disclaimer{ background: var(--sky); border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: var(--radius); padding: 16px 20px; font-size: .9rem; color: var(--muted); margin: 30px 0; }
.med-disclaimer strong { color: var(--navy); }

/* ---------- CTA bandı ---------- */
.cta-band{ background: linear-gradient(135deg, var(--navy) 0%, #283575 55%, var(--blue) 130%); color: #fff; border-radius: var(--radius-lg); padding: 60px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.cta-band .orb-a{ width:420px; height:420px; right:-100px; top:-160px; background: radial-gradient(circle, rgba(92,124,250,.5), transparent 60%); }
.cta-band h2 { color: #fff; position: relative; z-index:2; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 620px; margin: 0 auto 28px; position: relative; z-index:2; }
.cta-band .hero-actions { justify-content: center; position: relative; z-index:2; margin-bottom:0; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 50px; align-items: start; }
.contact-info-card { display: flex; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 14px; background: #fff; box-shadow: var(--shadow-xs); }
.contact-info-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .ic svg { width: 22px; height: 22px; }
.contact-info-card h4 { margin: 0 0 4px; font-size: 1rem; color: var(--navy); }
.contact-info-card p, .contact-info-card a { margin: 0; color: var(--muted); font-size: .94rem; }
.contact-info-card a:hover { color: var(--blue); }
.form-card{ background: #fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; margin-bottom: 8px; color: var(--ink); }
.form-group input, .form-group textarea, .form-group select{ width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--bg-soft); transition: var(--trans); }
.form-group input::placeholder, .form-group textarea::placeholder{ color: var(--muted-2); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--blue); background:#fff; box-shadow: 0 0 0 4px rgba(59,91,219,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-consent { display: flex; gap: 11px; align-items: flex-start; font-size: .86rem; color: var(--muted); margin-bottom: 22px; }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); }
.form-consent a{ color: var(--blue); text-decoration: underline; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); line-height: 0; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 340px; border: 0; }
.form-note { font-size: .8rem; color: var(--muted-2); margin-top: 12px; }
.form-feedback{ font-size: .9rem; margin-top: 10px; min-height: 1.2em; }

/* ---------- Hastane logo bandı ---------- */
.logo-band{ display:flex; flex-wrap:wrap; gap: 16px; justify-content:center; }
.logo-band .lb-item{ background: #fff; border:1px solid var(--line); border-radius: var(--radius-md); padding: 20px 28px; min-width: 180px; text-align:center; color: var(--muted); font-family: var(--font-head); font-weight:600; font-size:.95rem; box-shadow: var(--shadow-xs); }

/* ---------- Testler ---------- */
.test-shell{ max-width: 720px; margin: 0 auto; }
.test-card{ background: #fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.test-progress{ height: 8px; background: var(--blue-soft); border-radius: 50px; overflow: hidden; margin-bottom: 30px; }
.test-progress .bar{ height: 100%; width: 0%; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); transition: width .35s ease; border-radius:50px; }
.test-step{ display: none; }
.test-step.active{ display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn{ from{ opacity:0; transform: translateY(8px);} to{ opacity:1; transform: none;} }
.test-qnum{ font-family: var(--font-head); font-weight:600; color: var(--blue); font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom: 10px; }
.test-q{ font-family: var(--font-head); font-weight:700; color: var(--navy); font-size:1.3rem; margin-bottom: 22px; line-height:1.3; }
.test-options{ display:flex; flex-direction:column; gap: 10px; }
.test-opt{ display:flex; align-items:center; gap:13px; padding: 16px 18px; border:1.5px solid var(--line); border-radius: 14px; background: var(--bg-soft); color: var(--ink); cursor:pointer; transition: var(--trans); font-size:.98rem; text-align:left; width:100%; font-family: var(--font-body); }
.test-opt:hover{ border-color: var(--blue); background:#fff; }
.test-opt.selected{ border-color: var(--blue); background: var(--blue-soft); color: var(--navy); }
.test-opt .rad{ width:20px; height:20px; border-radius:50%; border:2px solid var(--line); flex-shrink:0; transition: var(--trans); }
.test-opt.selected .rad{ border-color: var(--blue); background: var(--blue); box-shadow: inset 0 0 0 3px #fff; }
.test-nav{ display:flex; justify-content:space-between; gap:12px; margin-top: 28px; }
.test-result{ display:none; }
.test-result.active{ display:block; animation: fadeIn .4s ease; }
.test-score{ text-align:center; padding: 30px 0 20px; }
.test-score .ring{ width: 130px; height: 130px; border-radius:50%; margin: 0 auto 18px; display:flex; align-items:center; justify-content:center; flex-direction:column; border: 4px solid var(--blue); background: var(--blue-soft); }
.test-score .ring .n{ font-family: var(--font-head); font-weight:800; font-size:2.4rem; color: var(--navy); line-height:1; }
.test-score .ring .d{ font-size:.72rem; color: var(--muted); text-transform:uppercase; letter-spacing:.1em; }
.test-level{ font-family: var(--font-head); font-weight:700; font-size:1.4rem; color: var(--navy); margin-bottom:8px; }
.test-disclaimer{ background: var(--sky); border:1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; font-size:.85rem; color: var(--muted); margin: 22px 0; }
.test-disclaimer strong{ color: var(--blue); }

/* ---------- Footer (koyu navy) ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding: 72px 0 0; }
.site-footer img.flogo { height: 76px; width: auto; margin-bottom: 18px; }
.site-footer h5 { color: #fff; font-size: .82rem; margin-bottom: 18px; font-family: var(--font-body); text-transform:uppercase; letter-spacing:.14em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,.66); font-size: .93rem; }
.site-footer a:hover { color: var(--blue-bright); }
.footer-about p { font-size: .93rem; line-height: 1.7; color: rgba(255,255,255,.62); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--blue-bright); flex-shrink: 0; margin-top: 3px; }
.social { display: flex; gap: 10px; margin-top: 20px; flex-wrap:wrap; }
.social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; }
.social a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.66); }
.footer-bottom a:hover{ color: var(--blue-bright); }

/* ---------- Sabit WhatsApp + mobil çubuk + çerez ---------- */
.mobile-bar { display: none; }
.float-wa{ position: fixed; right: 20px; bottom: 24px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(37,211,102,.4); transition: var(--trans); }
.float-wa:hover { transform: scale(1.08); color: #fff; }
.float-wa svg { width: 30px; height: 30px; }
.cookie-banner{ position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1500; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); border-radius: var(--radius-md); padding: 20px 24px; display: none; gap: 18px; align-items: center; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: .88rem; color: var(--muted); flex: 1; min-width: 240px; }
.cookie-banner .actions { display: flex; gap: 10px; }

/* ---------- Mobil menü ---------- */
.mobile-menu{ position: fixed; inset: 0; z-index: 1100; background: #fff; opacity: 0; visibility: hidden; transform: translateX(16px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease; display: flex; flex-direction: column; padding: 22px; overflow-y: auto; }
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-menu-head img { height: 52px; width: auto; }
.mobile-close { background: var(--bg-soft); border: 1px solid var(--line); width: 44px; height: 44px; border-radius: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mobile-close svg { width: 24px; height: 24px; color: var(--navy); }
.mobile-menu nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu nav > ul > li { border-bottom: 1px solid var(--line); }
.mobile-menu nav a { display: block; padding: 15px 6px; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.mobile-submenu { padding-left: 14px !important; }
.mobile-submenu a { font-size: .96rem !important; font-weight: 400 !important; color: var(--muted) !important; padding: 10px 6px !important; }
.mobile-menu .btn { margin-top: 18px; }
.menu-backdrop { position: fixed; inset: 0; background: rgba(27,34,64,.45); z-index: 1050; opacity: 0; visibility: hidden; transition: var(--trans); }
.menu-backdrop.show { opacity: 1; visibility: visible; }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 110px 0; }
.error-page .code { font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 18vw, 11rem); color: var(--blue-soft); line-height: 1; }
.error-page h1 { margin-top: -24px; }

/* ---------- Görsel placeholder ---------- */
.img-placeholder{ background: linear-gradient(150deg, var(--sky), var(--blue-soft)); border: 1px dashed var(--blue); border-radius: var(--radius-md); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px; text-align:center; color: var(--muted); font-family: var(--font-head); font-size: .82rem; padding: 30px; min-height: 220px; }
.img-placeholder svg{ width: 34px; height: 34px; color: var(--blue); }
.img-placeholder .lbl{ font-weight:600; color: var(--navy); }
.img-placeholder .sub{ font-size:.72rem; }

/* ---------- Yardımcılar ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-accent { color: var(--blue); }
.hidden { display: none !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px){
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar-box { position: static; }
}
@media (max-width: 880px){
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding: 50px 0 64px; }
  .hero-media { max-width: min(440px, 100%); margin: 0 auto; }
  .hero-badge { left: 0; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--media-first .media { order: 0; }
  .blog-leader { grid-template-columns: 1fr; }
  .blog-leader .media { min-height: 240px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-trust .item{ padding-right:20px; margin-right:20px; }
}
@media (max-width: 600px){
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band, .blog-leader .body, .form-card, .test-card { padding: 30px 22px; }
  .hero-trust{ gap: 16px; }
  .hero-trust .item{ border-right:none; padding-right:0; margin-right:0; }
  .mobile-bar{ display: grid; grid-template-columns: repeat(3, 1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(32,40,80,.08); }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 4px; font-family: var(--font-head); font-weight: 600; font-size: .7rem; color: var(--navy); border-right: 1px solid var(--line); }
  .mobile-bar a:last-child { border-right: none; }
  .mobile-bar a svg { width: 21px; height: 21px; }
  .mobile-bar a.wa { color: var(--wa); }
  .mobile-bar a.randevu { background: var(--navy); color: #fff; }
  body { padding-bottom: 60px; }
  .float-wa { bottom: 74px; width: 50px; height: 50px; }
  .float-wa svg { width: 26px; height: 26px; }
  .cookie-banner { left: 8px; right: 8px; bottom: 70px; padding: 16px; }
  .test-q{ font-size: 1.12rem; }
}
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
