/* ============================================================
   Dakik Tesisat — Ana stil dosyası
   Yapı: 1) Değişkenler  2) Reset  3) Yardımcılar  4) Bileşenler
         5) Bölümler     6) Blog   7) Responsive
   Renkler yalnızca :root içinde tanımlıdır; tema değişimi buradan yapılır.
   ============================================================ */

/* ---------- 1) Değişkenler ---------- */
:root {
  /* Marka renkleri */
  --navy-900: #071527;   /* en koyu lacivert (footer, hero) */
  --navy-800: #0A1E36;   /* ana marka rengi */
  --navy-700: #123252;
  --navy-600: #0D2C46;

  --accent: #19BFB0;     /* turkuaz — su, tazelik */
  --accent-soft: #7BE7DC;
  --accent-deep: #0F7F76; /* metin üzerinde kontrastlı turkuaz */
  --accent-tint: #EAF7F5;
  --accent-line: #C9E9E5;

  --cta: #FF6A2B;        /* aksiyon rengi — arama / teklif */
  --cta-hover: #EE5A1C;
  --whatsapp: #1FA855;
  --whatsapp-hover: #17914A;

  /* Yüzeyler ve metin */
  --white: #FFFFFF;
  --surface: #F4F7FA;
  --surface-2: #F7FAFC;
  --line: #E6ECF2;
  --line-strong: #DCE4EC;

  --text: #16273A;
  --text-soft: #56697D;
  --text-mute: #7C8FA3;
  --on-dark: #B9C9D8;
  --on-dark-mute: #6E8496;

  /* Tipografi */
  --font-head: "Manrope", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Ölçüler */
  --wrap: 1200px;
  --wrap-narrow: 1120px;
  --wrap-read: 720px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --pad-section: 84px;

  /* Gölgeler */
  --shadow-card: 0 18px 40px rgba(10, 30, 54, 0.10);
  --shadow-cta: 0 12px 26px rgba(255, 106, 43, 0.26);
  --ease: 180ms ease;
}

/* ---------- 2) Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-deep); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--navy-800); }
h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.03em; margin: 0; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; }
button { font-family: inherit; }
::selection { background: var(--accent); color: var(--navy-900); }

/* Klavye erişilebilirliği: her odaklanabilir öğede görünür halka */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Hareket azaltma tercihini dinle */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- 3) Yardımcılar ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: var(--wrap-narrow); }
.wrap--read { max-width: 820px; }

.section { padding-top: var(--pad-section); }
.section--flush { padding-top: 0; }

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow--light { color: var(--accent-soft); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy-800);
  margin-top: 12px;
}
.section-title--light { color: var(--white); }

.section-lead {
  margin-top: 14px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
}

.grid { display: grid; gap: 18px; }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--cards { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }

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

/* Görsel yer tutucular — gerçek fotoğraflar gelince değiştirilecek */
.placeholder {
  display: grid;
  place-items: center;
  padding: 16px;
  background: repeating-linear-gradient(135deg, #EDF2F7 0 9px, var(--surface-2) 9px 18px);
  text-align: center;
}
.placeholder span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}
.placeholder--accent {
  background: repeating-linear-gradient(135deg, #E6F5F3 0 9px, #F3FBFA 9px 18px);
}
.placeholder--accent span { color: var(--accent-deep); }
.placeholder--dark {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.055) 0 10px, rgba(255,255,255,.015) 10px 20px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  min-height: 260px;
}
.placeholder--dark span { color: #7E98AC; font-size: 12px; }

/* ---------- 4) Bileşenler ---------- */

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), color var(--ease), border-color var(--ease);
}
.btn--cta { background: var(--cta); color: var(--white); box-shadow: var(--shadow-cta); }
.btn--cta:hover { background: var(--cta-hover); color: var(--white); transform: translateY(-2px); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-weight: 600;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.13); color: var(--white); }

.btn--navy { background: var(--navy-800); color: var(--white); font-weight: 600; }
.btn--navy:hover { background: var(--navy-700); color: var(--white); }

.btn--outline { background: transparent; border: 1px solid var(--line-strong); color: var(--navy-800); font-weight: 600; }
.btn--outline:hover { border-color: var(--navy-800); color: var(--navy-800); }

.btn--accent { background: var(--accent); color: #062A27; }
.btn--accent:hover { background: var(--accent-soft); color: #062A27; }

.btn--pill {
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 106, 43, 0.28);
}
.btn--pill:hover { background: var(--cta-hover); color: var(--white); transform: translateY(-1px); }

.dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: 0 0 auto; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--navy-800); }
.logo:hover { color: var(--navy-800); }
.logo__mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--navy-800);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
}
.logo__text { font-family: var(--font-head); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }

.nav { display: none; }
.nav__link { color: #40536A; font-size: 15px; font-weight: 500; }
.nav__link:hover { color: var(--navy-800); }

.header__cta { margin-left: auto; }

.nav-toggle {
  margin-left: auto;
  display: grid;
  place-items: center;
  gap: 4px;
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy-800); }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  padding: 8px 20px 20px;
  background: var(--white);
}
.nav-mobile[data-open="true"] { display: grid; }
.nav-mobile a {
  padding: 13px 4px;
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid #F0F4F8;
}
.nav-mobile a:last-child { border-bottom: 0; }

/* Sabit WhatsApp butonu */
.wa-float {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(31, 168, 85, 0.36);
  transition: background var(--ease), transform var(--ease);
}
.wa-float:hover { background: var(--whatsapp-hover); color: var(--white); transform: translateY(-2px); }

/* Kartlar */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--accent-line); }

/* ---------- 5) Bölümler ---------- */

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 48%, var(--navy-600) 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 420px at 78% 8%, rgba(25, 191, 176, 0.22), transparent 62%),
    radial-gradient(600px 320px at 8% 88%, rgba(25, 191, 176, 0.10), transparent 60%);
}
.hero__inner {
  position: relative;
  display: grid;
  gap: 44px;
  padding-top: 60px;
  padding-bottom: 68px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(25, 191, 176, 0.14);
  border: 1px solid rgba(25, 191, 176, 0.34);
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 600;
}
.hero__badge .dot { background: var(--accent); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(-4px); opacity: .65; } }

.hero h1 {
  font-size: clamp(36px, 6.4vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-top: 20px;
}
.hero__lead {
  margin-top: 20px;
  max-width: 540px;
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.65;
  color: var(--on-dark);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__note { margin-top: 18px; font-size: 14px; color: #8FA6B9; }

.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
}
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--accent); }
.stat__label { font-size: 13px; color: #A8BCCC; margin-top: 4px; }

/* Güven şeridi */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.trust__list {
  list-style: none;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.trust__item { display: flex; align-items: center; gap: 11px; padding: 8px 0; font-size: 15px; font-weight: 600; color: #22364C; }
.trust__mark {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--navy-800);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.trust__mark::after { content: ""; width: 8px; height: 8px; background: var(--accent); border-radius: 2px; transform: rotate(45deg); }

/* Hizmetler */
.services { margin-top: 40px; }
.service { padding: 26px; }
.service__no {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--accent-tint);
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 600;
}
.service h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-top: 18px; color: var(--navy-800); }
.service p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: #5A6D80; }

.service--dark {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.service--dark:hover { border-color: var(--navy-800); }
.service--dark h3 { color: var(--white); margin-top: 0; }
.service--dark p { color: #A8BCCC; }
.service--dark .btn { align-self: flex-start; padding: 12px 20px; font-size: 15px; }

/* Neden biz */
.why { display: grid; gap: 44px; }
.why__list { display: grid; gap: 14px; }
.why__item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.why__item::before {
  content: "";
  flex: 0 0 auto;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}
.why__item h3 { font-size: 17px; font-weight: 700; color: var(--navy-800); }
.why__item p { margin-top: 6px; font-size: 15px; color: #5A6D80; }
.why__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* Süreç */
.process { margin-top: var(--pad-section); background: var(--navy-800); color: var(--white); }
.process__inner { padding-top: 72px; padding-bottom: 72px; }
.process__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 42px; }
.step { border-top: 2px solid rgba(123, 231, 220, 0.35); padding-top: 20px; }
.step__no { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--accent); }
.step h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin-top: 12px; }
.step p { margin-top: 10px; font-size: 15px; line-height: 1.65; color: #A8BCCC; }

/* Galeri */
.gallery { margin-top: 36px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery figure { margin: 0; overflow: hidden; }
.gallery__pair { display: grid; grid-template-columns: 1fr 1fr; }
.gallery__pair > div { aspect-ratio: 1 / 1; }
.gallery__pair > div:first-child { border-right: 1px solid var(--line); }
.gallery figcaption { padding: 18px 20px; }
.gallery h3 { font-size: 17px; font-weight: 700; color: var(--navy-800); }
.gallery figcaption p { margin-top: 6px; font-size: 14px; color: #6B7D8F; }

/* Yorumlar */
.testimonials { margin-top: 38px; }
.quote { margin: 0; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.quote:hover { border-color: var(--line); }
.quote__stars { color: var(--cta); font-size: 15px; letter-spacing: 3px; }
.quote p { font-size: 16px; line-height: 1.7; color: #26394D; }
.quote footer { margin-top: auto; display: flex; align-items: center; gap: 12px; font-size: 14px; color: #5A6D80; }
.quote__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-deep);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700;
  flex: 0 0 auto;
}
.quote strong { color: var(--navy-800); }

/* Bölgeler */
.areas {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 28px;
}
.areas__list { list-style: none; padding: 0; margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.areas__list li {
  background: var(--white);
  border: 1px solid #E1E8EF;
  color: #33475C;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

/* Blog önizleme başlığı */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.section-head a { font-weight: 600; font-size: 15px; }

/* SSS */
.faq { display: grid; gap: 10px; margin-top: 32px; }
.faq__item { border: 1px solid var(--line); border-radius: 14px; background: var(--white); overflow: hidden; }
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-800);
  transition: background var(--ease);
}
.faq__btn:hover { background: var(--surface-2); }
.faq__icon {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-deep);
  display: grid; place-items: center;
  font-size: 18px; line-height: 1;
  transition: transform var(--ease);
}
.faq__btn[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__panel { display: none; padding: 0 22px 22px; font-size: 16px; line-height: 1.7; color: var(--text-soft); }
.faq__item[data-open="true"] .faq__panel { display: block; }

/* İletişim */
.contact { margin-top: var(--pad-section); background: var(--surface); border-top: 1px solid var(--line); }
.contact__inner { display: grid; gap: 40px; padding-top: 72px; padding-bottom: 72px; }
.contact__list { display: grid; gap: 18px; margin-top: 28px; }
.contact__list dt { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mute); }
.contact__list dd { margin: 4px 0 0; font-size: 16px; color: #33475C; }
.contact__phone { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--navy-800); }
.map {
  margin-top: 26px;
  border-radius: 16px;
  border: 1px solid #E1E8EF;
  min-height: 180px;
  overflow: hidden;
}

/* Form */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  gap: 16px;
  align-content: start;
}
.form h3 { font-size: 20px; font-weight: 700; color: var(--navy-800); }
.field { display: grid; gap: 7px; font-size: 14px; font-weight: 600; color: #33475C; }
.field input, .field select, .field textarea {
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(25, 191, 176, 0.22);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #C2410C; }
.form__msg { font-size: 14px; padding: 11px 14px; border-radius: 10px; }
.form__msg--error { color: #C2410C; background: #FFF3EC; border: 1px solid #FFD9C2; }
.form__msg--ok { color: var(--accent-deep); background: var(--accent-tint); border: 1px solid var(--accent-line); }
.form__note { font-size: 13px; color: var(--text-mute); }

/* Footer */
.footer { background: var(--navy-900); color: #A8BCCC; }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-top: 52px;
  padding-bottom: 28px;
}
.footer__brand .logo { color: var(--white); }
.footer__brand .logo:hover { color: var(--white); }
.footer__brand .logo__mark { background: var(--accent); color: #062A27; }
.footer__brand p { margin-top: 14px; font-size: 15px; line-height: 1.65; max-width: 300px; }
.footer h3 {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 9px; font-size: 15px; }
.footer a { color: #A8BCCC; }
.footer a:hover { color: var(--accent); }
.footer__phone { color: var(--white) !important; font-weight: 600; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); }
.footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 13px;
  color: var(--on-dark-mute);
  max-width: var(--wrap);
  margin: 0 auto;
}

/* ---------- 6) Blog ---------- */
.page-hero { background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%); color: var(--white); }
.page-hero__inner { padding-top: 56px; padding-bottom: 52px; }
.page-hero h1 { font-size: clamp(32px, 5.4vw, 52px); font-weight: 800; line-height: 1.1; margin-top: 16px; }
.page-hero p { margin-top: 16px; max-width: 560px; font-size: 18px; line-height: 1.65; color: var(--on-dark); }
.page-hero__back { font-size: 14px; color: var(--accent-soft); }
.page-hero__back:hover { color: var(--white); }

.filters { display: flex; flex-wrap: wrap; gap: 9px; }
.filter {
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #E1E8EF;
  background: var(--white);
  color: #33475C;
  transition: border-color var(--ease), background var(--ease), color var(--ease);
}
.filter:hover { border-color: var(--accent); }
.filter[aria-pressed="true"] { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }

.post-card { overflow: hidden; display: flex; flex-direction: column; }
.post-card__cover { display: block; aspect-ratio: 16 / 9; }
.post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.post-card h2, .post-card h3 { font-size: 20px; font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; }
.post-card h2 a, .post-card h3 a { color: var(--navy-800); }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--accent-deep); }
.post-card p { font-size: 15px; line-height: 1.6; color: #5A6D80; }
.post-card__read { margin-top: auto; padding-top: 10px; font-size: 13px; color: var(--text-mute); }
.post-list { margin-top: 28px; padding-bottom: 76px; }
.post-list__empty { padding: 40px 0; color: var(--text-soft); }

/* Yazı sayfası */
.article__head { padding-top: 48px; }
.breadcrumb { font-size: 14px; color: var(--text-mute); }
.article__cat {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.article__head h1 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.035em;
  margin-top: 12px;
  color: var(--navy-800);
}
.article__excerpt { margin-top: 16px; font-size: 19px; line-height: 1.65; color: var(--text-soft); }
.article__meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: var(--text-mute);
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.article__cover { max-width: 900px; margin: 32px auto 0; padding: 0 20px; }
.article__cover .placeholder { border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 16 / 7; }

.prose { max-width: var(--wrap-read); margin: 0 auto; padding: 0 20px; font-size: 18px; line-height: 1.8; color: #2A3D51; }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: 27px; font-weight: 800; letter-spacing: -0.025em; color: var(--navy-800); margin-top: 44px; }
.prose h3 { font-size: 21px; font-weight: 700; color: var(--navy-800); margin-top: 32px; }
.prose ul, .prose ol { padding-left: 22px; display: grid; gap: 10px; }
.prose blockquote {
  margin: 32px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  color: #22364C;
}
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.article__cta {
  margin-top: 44px;
  border-radius: var(--radius);
  background: var(--navy-800);
  color: var(--white);
  padding: 30px;
}
.article__cta h2 { font-size: 22px; font-weight: 800; color: var(--white); margin: 0; }
.article__cta p { margin: 10px 0 20px; font-size: 16px; line-height: 1.65; color: #A8BCCC; }
.article__cta div { display: flex; flex-wrap: wrap; gap: 10px; }
.article__cta .btn { padding: 13px 22px; font-size: 15px; }

.related { margin-top: 72px; padding-bottom: 76px; }
.related h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.025em; color: var(--navy-800); margin-bottom: 22px; }
.related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.related__card { padding: 24px; display: flex; flex-direction: column; gap: 9px; }

/* ---------- 7) Responsive (mobile-first artırımlar) ---------- */
@media (min-width: 640px) {
  .areas { padding: 44px; }
  .form { padding: 30px; }
  .article__head { padding-top: 52px; }
}

@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .header__cta { margin-left: 0; }

  .hero__inner { grid-template-columns: 1.05fr 0.95fr; align-items: start; padding-top: 64px; padding-bottom: 72px; }
  .why { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr 1fr; gap: 44px; }
}

/* ---------- 8) Yüklenen görseller ----------
   Yönetim panelinden görsel yüklendiğinde yer tutucunun yerini <img> alır;
   aşağıdaki kurallar aynı ölçü ve köşe yuvarlamalarını korur. */
.hero__img {
  width: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.gallery__pair > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.gallery__pair > img:first-child { border-right: 1px solid var(--line); }

.post-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article__cover img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

img.quote__avatar { object-fit: cover; }

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

.logo img { border-radius: 10px; }
