/* =========================================================
   Doç. Dr. Yunus Çolakoğlu — Üroloji
   Ana stil dosyası. Renkler logodan türetildi.
   ========================================================= */

:root {
  /* Marka renkleri (logodan) */
  --primary: #243078;        /* lacivert */
  --primary-dark: #1a2459;
  --primary-light: #34459e;
  --accent: #2bb6e8;         /* camgöbeği (kontrast için logo tonundan bir tık koyu) */
  --accent-dark: #1697c7;
  --accent-soft: #e8f6fc;

  /* Nötrler */
  --ink: #1b2333;            /* ana metin */
  --muted: #5a6478;          /* ikincil metin */
  --line: #e4e8f0;           /* çizgiler */
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-soft-2: #eef2f9;
  --white: #ffffff;
  --ok: #1f9d6b;

  /* Tipografi */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Ölçüler */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(36, 48, 120, .06);
  --shadow: 0 10px 30px rgba(36, 48, 120, .10);
  --shadow-lg: 0 24px 60px rgba(36, 48, 120, .16);
  --header-h: 80px;
  --trans: .25s ease;
}

/* ---------- 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.7;
  font-size: 17px;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--accent-dark); }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--primary); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; overflow-wrap: break-word; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); letter-spacing: -.01em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }
strong { color: var(--ink); font-weight: 700; }

/* Erişilebilirlik: klavye odak */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--primary); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Düzen yardımcıları ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 56px 0; }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--muted); }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: .8rem;
  color: var(--accent-dark); margin-bottom: 14px;
}
.section-head { max-width: 720px; margin: 0 auto 48px; }
.section-head.center { text-align: center; }
.muted { color: var(--muted); }
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: var(--trans); text-align: center; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent { background: var(--accent); color: #03263a; }
.btn--accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--white { background: #fff; color: var(--primary); }
.btn--white:hover { background: var(--accent-soft); color: var(--primary); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line); transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 18px; }
.logo img { height: 46px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 2px; }
.main-nav a {
  font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: var(--ink);
  padding: 10px 15px; border-radius: 8px; display: inline-flex; align-items: center; gap: 5px;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: var(--bg-soft-2); }
.main-nav .has-dropdown { position: relative; }
.dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--trans); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 290px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 10px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--trans);
  max-height: 70vh; overflow-y: auto;
}
.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: .92rem; font-weight: 500; border-radius: 8px; }
.dropdown a:hover { background: var(--accent-soft); }
.dropdown .all-link { color: var(--accent-dark); font-weight: 700; margin-top: 4px; border-top: 1px solid var(--line); border-radius: 0; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--primary); }
.header-phone svg { width: 20px; height: 20px; color: var(--accent-dark); }
.nav-toggle {
  display: none; background: var(--primary); color: #fff; border: none; width: 46px; height: 46px;
  border-radius: 10px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: linear-gradient(135deg, #f3f7fd 0%, #e9f1fb 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; right: -8%; top: -20%; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(43,182,232,.16), transparent 65%); border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding: 70px 0 76px; position: relative; }
.hero-content h1 { margin-bottom: 18px; }
.hero-content .tag {
  display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 50px; font-family: var(--font-head); font-weight: 600;
  font-size: .9rem; color: var(--primary); margin-bottom: 22px; box-shadow: var(--shadow-sm);
}
.hero-content .tag .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.hero-content .lead { margin-bottom: 30px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-trust .item { }
.hero-trust .num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--primary); }
.hero-trust .lbl { font-size: .86rem; color: var(--muted); }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 22px; left: -22px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px 20px; display: flex; align-items: center; gap: 13px;
  max-width: 250px;
}
.hero-badge .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-badge .ic svg { width: 24px; height: 24px; }
.hero-badge .t { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: .95rem; line-height: 1.25; }
.hero-badge .s { font-size: .78rem; color: var(--muted); }

/* ---------- Page hero (iç sayfalar) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff; padding: 56px 0; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -60px; bottom: -120px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(43,182,232,.35), transparent 70%); border-radius: 50%;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0; }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 16px; font-size: .88rem; }
.breadcrumb li { color: rgba(255,255,255,.7); margin: 0; }
.breadcrumb a { color: rgba(255,255,255,.9); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: rgba(255,255,255,.5); }

/* ---------- Kartlar ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: var(--trans); height: 100%; display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.card .ic {
  width: 56px; height: 56px; border-radius: 14px; background: var(--accent-soft);
  color: var(--accent-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card .ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 16px; }
.card .more { margin-top: auto; font-family: var(--font-head); font-weight: 600; color: var(--accent-dark); display: inline-flex; align-items: center; gap: 6px; font-size: .95rem; }
.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; }

/* ---------- İstatistik şeridi ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 10px; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--primary); line-height: 1; }
.stat .num span { color: var(--accent-dark); }
.stat .lbl { color: var(--muted); margin-top: 8px; font-size: .95rem; }

/* ---------- Hakkımda / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split--media-first .media { order: -1; }
.split .media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.feature-list { list-style: none; padding: 0; margin: 22px 0; }
.feature-list li { display: flex; gap: 12px; 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(--accent-soft);
  color: var(--accent-dark); 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: 7px; 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: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); }
.timeline .yr { font-family: var(--font-head); font-weight: 700; color: var(--accent-dark); font-size: .9rem; }
.timeline h4 { margin: 2px 0 4px; font-size: 1.08rem; color: var(--primary); }
.timeline p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Blog ---------- */
.blog-leader {
  display: grid; grid-template-columns: 1.1fr .9fr; 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: 320px; background: var(--bg-soft-2); }
.blog-leader .media img { width: 100%; height: 100%; object-fit: cover; }
.blog-leader .body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--trans); height: 100%; display: flex; flex-direction: column; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.post-card .media { aspect-ratio: 16/10; background: var(--bg-soft-2); overflow: hidden; }
.post-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .media img { transform: scale(1.05); }
.post-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.post-card h3 a { color: var(--primary); }
.post-card h3 a:hover { color: var(--accent-dark); }
.post-card p { color: var(--muted); font-size: .93rem; }
.post-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); margin-top: auto; padding-top: 12px; }
.post-meta span { display: inline-flex; align-items: center; gap: 5px; }
.post-meta svg { width: 14px; height: 14px; }
.pill {
  display: inline-block; background: var(--accent-soft); color: var(--accent-dark);
  font-family: var(--font-head); font-weight: 600; font-size: .76rem; padding: 5px 12px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 12px;
}
.cat-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.cat-filter button {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; padding: 9px 18px;
  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(--accent); color: var(--accent-dark); }
.cat-filter button.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---------- Makale içeriği (blog/tedavi detay) ---------- */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.prose { font-size: 1.05rem; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; color: var(--primary); }
.prose img { border-radius: var(--radius); margin: 1.5em 0; }
.prose ul li::marker { color: var(--accent-dark); }
.prose .cover { width: 100%; max-height: 420px; object-fit: cover; }
.sidebar-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; position: sticky; top: 100px; }
.sidebar-box h4 { font-size: 1.05rem; margin-bottom: 14px; }
.sidebar-box ul { list-style: none; padding: 0; margin: 0; }
.sidebar-box li { margin-bottom: 8px; }
.sidebar-box a { font-weight: 500; font-size: .95rem; }
.cta-box { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; border-radius: var(--radius); padding: 26px; text-align: center; }
.cta-box h4 { color: #fff; }
.cta-box p { color: rgba(255,255,255,.85); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--primary);
  padding: 20px 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(--accent-dark); }
.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(--bg-soft); border-left: 4px solid var(--accent); border-radius: 8px;
  padding: 16px 20px; font-size: .9rem; color: var(--muted); margin: 28px 0;
}
.med-disclaimer strong { color: var(--primary); }

/* ---------- CTA bandı ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content:""; position:absolute; left:-40px; top:-40px; width:240px; height:240px; background: radial-gradient(circle, rgba(43,182,232,.3), transparent 70%); border-radius:50%; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 600px; margin: 0 auto 26px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info-card { display: flex; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; background: #fff; }
.contact-info-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .ic svg { width: 24px; height: 24px; }
.contact-info-card h4 { margin: 0 0 4px; font-size: 1.02rem; }
.contact-info-card p, .contact-info-card a { margin: 0; color: var(--muted); font-size: .96rem; }
.contact-info-card a:hover { color: var(--accent-dark); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; margin-bottom: 7px; color: var(--ink); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff; transition: var(--trans);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(43,182,232,.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--muted); margin-bottom: 20px; }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.map-embed iframe { width: 100%; height: 340px; border: 0; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }

/* ---------- Basın & medya ---------- */
.media-card .badge-type { position: absolute; top: 14px; left: 14px; }
.media-card .media { position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.78); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.site-footer img.flogo { height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.site-footer h5 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-head); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,.78); font-size: .94rem; }
.site-footer a:hover { color: var(--accent); }
.footer-about p { font-size: .94rem; line-height: 1.7; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; }
.social a:hover { background: var(--accent); color: #03263a; }
.social svg { width: 19px; height: 19px; }
.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: .85rem; }
.footer-bottom a { color: rgba(255,255,255,.78); }

/* ---------- Sabit mobil buton çubuğu ---------- */
.mobile-bar { display: none; }

/* ---------- Sabit WhatsApp ---------- */
.float-wa {
  position: fixed; right: 20px; bottom: 24px; z-index: 900; width: 58px; height: 58px;
  border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: var(--trans);
}
.float-wa:hover { transform: scale(1.08); color: #fff; }
.float-wa svg { width: 30px; height: 30px; }

/* ---------- Çerez bildirimi ---------- */
.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);
  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: .9rem; 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: 40px; }
.mobile-close { background: var(--bg-soft); border: none; width: 44px; height: 44px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mobile-close svg { width: 24px; height: 24px; color: var(--primary); }
.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.1rem; color: var(--ink); }
.mobile-submenu { padding-left: 14px !important; }
.mobile-submenu a { font-size: .98rem !important; font-weight: 500 !important; color: var(--muted) !important; padding: 10px 6px !important; }
.mobile-menu .btn { margin-top: 18px; }
.menu-backdrop { position: fixed; inset: 0; background: rgba(20,26,45,.4); z-index: 1050; opacity: 0; visibility: hidden; transition: var(--trans); }
.menu-backdrop.show { opacity: 1; visibility: visible; }

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

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

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar-box { position: static; }
}

@media (max-width: 880px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 44px 0 56px; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .hero-badge { left: 0; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .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: 30px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band, .blog-leader .body { padding: 30px 22px; }
  .hero-trust { gap: 20px; }
  /* mobil sabit çubuk */
  .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(0,0,0,.06);
  }
  .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: .72rem; color: var(--primary); 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: #1aa34a; }
  .mobile-bar a.randevu { background: var(--primary); 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; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
