/*
Theme Name: Özge Eğitim
Theme URI: https://ozgecegitim.com
Author: Özge Nur Aşçıoğlu
Description: Özge Nur Aşçıoğlu — Trabzon Özel Eğitim & Erken Çocukluk Gelişim Desteği. "Sıcak Kucak" tasarım sistemi. Statik tasarımdan birebir WordPress temasına çevrildi.
Version: 1.0.0
Requires at least: 6.7
Requires PHP: 7.4
Text Domain: ozge-egitim
Tags: education, child-care, business
*/

/* ============================================================
   Özge Nur Aşçıoğlu — Özel Eğitim & Gelişim Destek
   "Sıcak Kucak" tasarım sistemi
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* --- Warm palette --- */
  --cream: oklch(0.985 0.012 75);
  --cream-2: oklch(0.965 0.018 70);
  --cream-3: oklch(0.94 0.025 65);
  --peach: oklch(0.90 0.045 55);
  --peach-soft: oklch(0.94 0.03 55);
  --terracotta: oklch(0.66 0.13 42);
  --terracotta-deep: oklch(0.55 0.13 40);
  --terracotta-soft: oklch(0.82 0.08 48);
  --sage: oklch(0.70 0.055 155);
  --sage-deep: oklch(0.55 0.06 158);
  --sage-soft: oklch(0.92 0.03 150);

  /* --- Ink / text --- */
  --ink: oklch(0.33 0.025 55);
  --ink-soft: oklch(0.46 0.025 55);
  --ink-faint: oklch(0.60 0.02 55);
  --line: oklch(0.90 0.02 60);

  --white: oklch(0.995 0.004 75);

  /* --- Type --- */
  --font-head: 'Quicksand', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  /* --- Radius / shadow --- */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;
  --shadow-sm: 0 4px 16px oklch(0.6 0.08 50 / 0.08);
  --shadow-md: 0 14px 40px oklch(0.55 0.1 45 / 0.12);
  --shadow-lg: 0 30px 70px oklch(0.5 0.1 45 / 0.16);

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { text-wrap: pretty; }
a { color: var(--terracotta-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--terracotta); }
img { max-width: 100%; display: block; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--terracotta-soft);
  border-radius: 2px;
}
.eyebrow.center-eb { justify-content: center; }
.eyebrow.center-eb::after {
  content: "";
  width: 26px; height: 2px;
  background: var(--terracotta-soft);
  border-radius: 2px;
}

.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 10px 26px oklch(0.66 0.13 42 / 0.35);
}
.btn-primary:hover { background: var(--terracotta-deep); color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 34px oklch(0.66 0.13 42 / 0.4); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { color: var(--terracotta-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-soft {
  background: var(--peach-soft);
  color: var(--terracotta-deep);
}
.btn-soft:hover { background: var(--peach); color: var(--terracotta-deep); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: oklch(0.985 0.012 75 / 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(140deg, var(--terracotta), var(--terracotta-soft));
  display: grid; place-items: center;
  color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  box-shadow: 0 6px 16px oklch(0.66 0.13 42 / 0.3);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 1.12rem; font-weight: 700; }
.brand-sub { font-size: 0.72rem; font-weight: 500; color: var(--ink-faint); letter-spacing: 0.04em; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.96rem;
  color: var(--ink-soft); padding: 10px 13px; border-radius: 999px;
  transition: all .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta-deep); background: var(--peach-soft); }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 12px; width: 290px; opacity: 0; visibility: hidden; transition: all .22s ease;
  border: 1px solid var(--line);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a {
  display: block; padding: 11px 14px; border-radius: 12px; font-size: 0.92rem;
  color: var(--ink-soft); font-weight: 600;
}
.drop a:hover { background: var(--peach-soft); color: var(--terracotta-deep); }
.drop a small { display: block; font-weight: 500; font-size: 0.75rem; color: var(--ink-faint); font-family: var(--font-body); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .3s; }

/* ---------- Hero shapes ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.5; z-index: 0; pointer-events: none; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(0.93 0.02 60);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.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); }

/* service card */
.svc-card { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.svc-icon {
  width: 60px; height: 60px; border-radius: 18px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--peach-soft); color: var(--terracotta-deep);
}
.svc-icon svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 1.3rem; }
.svc-card p { color: var(--ink-soft); font-size: 0.98rem; }
.svc-card .more { margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--terracotta-deep); display: inline-flex; align-items: center; gap: 6px; }
.svc-card:hover .more { gap: 10px; }
.svc-card .more svg { width: 15px; height: 15px; transition: .2s; }

/* alternate icon tint */
.tint-sage { background: var(--sage-soft); color: var(--sage-deep); }

/* ---------- Image placeholder ---------- */
.img-ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, oklch(0.9 0.04 55 / 0.5) 0 12px, oklch(0.95 0.025 60 / 0.5) 12px 24px),
    var(--peach-soft);
  border-radius: var(--r-lg);
  display: grid; place-items: center;
  color: var(--terracotta-deep);
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  text-align: center;
  padding: 20px;
  min-height: 220px;
  overflow: hidden;
}
.img-ph span { background: oklch(0.98 0.01 70 / 0.85); padding: 7px 14px; border-radius: 999px; backdrop-filter: blur(2px); }
.img-ph.sage { background: repeating-linear-gradient(135deg, oklch(0.88 0.04 150 / 0.5) 0 12px, oklch(0.95 0.02 150 / 0.5) 12px 24px), var(--sage-soft); color: var(--sage-deep); }

/* ---------- Stats ---------- */
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--terracotta); line-height: 1; }
.stat-label { font-size: 0.92rem; color: var(--ink-soft); font-weight: 600; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border-radius: var(--r-md); border: 1px solid var(--line); overflow: hidden; transition: box-shadow .2s; }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink);
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q:hover { color: var(--terracotta-deep); }
.faq-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--peach-soft); display: grid; place-items: center; transition: .3s; color: var(--terracotta-deep); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--terracotta); color: var(--white); }
.faq-icon::before { content: "+"; font-size: 1.3rem; font-family: var(--font-head); line-height: 1; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-soft); }
.faq-a-inner p + p { margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: oklch(0.30 0.02 50); color: oklch(0.88 0.015 70); padding: 72px 0 32px; }
.site-footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 18px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { color: oklch(0.78 0.015 70); font-size: 0.95rem; margin-top: 16px; max-width: 320px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: oklch(0.82 0.015 70); font-size: 0.95rem; }
.footer-links a:hover { color: var(--peach); }
.footer-contact li { list-style: none; display: flex; gap: 11px; font-size: 0.92rem; color: oklch(0.82 0.015 70); margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: var(--peach); }
.footer-bottom { border-top: 1px solid oklch(0.4 0.02 50); margin-top: 50px; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: oklch(0.68 0.015 70); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 10px 30px oklch(0.7 0.16 150 / 0.5);
  transition: transform .2s; color: white;
}
.wa-float:hover { transform: scale(1.08); color: white; }
.wa-float svg { width: 32px; height: 32px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(180deg, var(--cream-2), var(--cream)); padding: 64px 0 56px; position: relative; overflow: hidden; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-faint); font-family: var(--font-head); font-weight: 600; margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--terracotta-deep); }

/* ---------- Prose (long content) ---------- */
.prose { font-size: 1.06rem; color: var(--ink-soft); }
.prose h2 { color: var(--ink); margin: 48px 0 18px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--ink); margin: 34px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prose ul li { padding-left: 34px; position: relative; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 18px; height: 18px;
  background: var(--sage-soft); border-radius: 50%;
}
.prose ul li::after {
  content: ""; position: absolute; left: 6px; top: 13px; width: 6px; height: 6px;
  background: var(--sage-deep); border-radius: 50%;
}
.prose ol { counter-reset: li; }
.prose ol li { padding-left: 44px; position: relative; counter-increment: li; }
.prose ol li::before {
  content: counter(li); position: absolute; left: 0; top: 2px; width: 28px; height: 28px;
  background: var(--peach-soft); color: var(--terracotta-deep); border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
}
.prose strong { color: var(--ink); font-weight: 700; }

.callout {
  background: var(--sage-soft); border-radius: var(--r-md); padding: 26px 30px;
  margin: 28px 0; border-left: 5px solid var(--sage-deep);
}
.callout p { margin: 0; color: var(--ink); }
.callout.peach { background: var(--peach-soft); border-left-color: var(--terracotta); }

/* sidebar */
.layout-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.side-card { background: var(--white); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.side-card h4 { font-size: 1.1rem; margin-bottom: 16px; }
.side-card.accent { background: linear-gradient(150deg, var(--terracotta), var(--terracotta-deep)); color: var(--white); }
.side-card.accent h4, .side-card.accent p { color: var(--white); }
.side-card.accent p { font-size: 0.95rem; opacity: 0.92; margin-bottom: 18px; }
.side-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.side-nav a { display: block; padding: 10px 14px; border-radius: 12px; font-size: 0.92rem; color: var(--ink-soft); font-weight: 600; font-family: var(--font-head); }
.side-nav a:hover, .side-nav a.active { background: var(--peach-soft); color: var(--terracotta-deep); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.field label .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 14px 18px; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--white); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terracotta-soft); box-shadow: 0 0 0 4px oklch(0.82 0.08 48 / 0.25);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--ink-faint); }
.form-success { background: var(--sage-soft); border-radius: var(--r-md); padding: 30px; text-align: center; color: var(--sage-deep); }
.form-success h3 { color: var(--sage-deep); margin-bottom: 8px; }

/* ---------- Misc ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 0.86rem; font-weight: 600; font-family: var(--font-head); color: var(--ink-soft); }
.pill.sage { background: var(--sage-soft); border-color: transparent; color: var(--sage-deep); }
.pill.peach { background: var(--peach-soft); border-color: transparent; color: var(--terracotta-deep); }

.divider-wave { display: block; width: 100%; height: 60px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .side-card { flex: 1; min-width: 260px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: var(--white); padding: 16px; gap: 6px; box-shadow: var(--shadow-md); align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open a { padding: 13px 16px; }
  .nav-links.open .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; width: auto; padding: 4px 0 4px 14px; }
  .has-drop:hover .drop { transform: none; }
  .section { padding: 64px 0; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .card { padding: 26px; }
  /* Mobilde başlıkta sadece "Ö" ikonu kalsın, uzun marka metni gizlensin */
  .site-header .brand-text { display: none; }
}

/* ============================================================
   Rich graphic + animation components (service pages)
   ============================================================ */

/* gentle float for hero photos */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.floaty { animation: floaty 6s ease-in-out infinite; }

/* hero with photo */
.svc-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.svc-hero-photo { position: relative; }
.svc-hero-photo .img-ph { min-height: 380px; border-radius: var(--r-xl); box-shadow: var(--shadow-md); }
.svc-hero-photo .floating-badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--white);
  border-radius: var(--r-md); padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px; max-width: 230px;
}

/* metric / stat band */
.metric-band { background: linear-gradient(150deg, var(--sage-deep), oklch(0.48 0.06 160)); position: relative; overflow: hidden; }
.metric-band.peach { background: linear-gradient(150deg, var(--terracotta), var(--terracotta-deep)); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; z-index: 1; }
.metric { background: oklch(0.99 0.004 75 / .12); backdrop-filter: blur(4px); border-radius: var(--r-md); padding: 28px 22px; text-align: center; }
.metric .m-num { font-family: var(--font-head); font-weight: 700; font-size: 2.5rem; color: var(--white); line-height: 1; display: block; }
.metric .m-label { color: oklch(0.93 0.02 150); font-size: 0.9rem; margin-top: 8px; display: block; }
.metric-band.peach .metric .m-label { color: oklch(0.95 0.02 60); }

/* timeline (vertical process) */
.timeline { position: relative; margin: 8px 0; padding-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 3px; background: var(--peach); border-radius: 3px; }
.tl-step { position: relative; padding-left: 76px; padding-bottom: 30px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-node { position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 3px solid var(--peach); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--terracotta-deep); box-shadow: var(--shadow-sm); z-index: 1; }
.tl-step h4 { font-size: 1.15rem; margin-bottom: 4px; color: var(--ink); }
.tl-step p { color: var(--ink-soft); margin: 0; font-size: 1rem; }

/* feature minicards (icon + title + text) */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 24px 0; }
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; transition: transform .25s, box-shadow .25s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature .f-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--peach-soft); color: var(--terracotta-deep); display: grid; place-items: center; margin-bottom: 14px; }
.feature .f-ic.sage { background: var(--sage-soft); color: var(--sage-deep); }
.feature .f-ic svg { width: 24px; height: 24px; }
.feature h4 { font-size: 1.08rem; margin-bottom: 6px; color: var(--ink); }
.feature p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* labeled bars (decorative emphasis graphic) */
.bars { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.bar-row { display: flex; flex-direction: column; gap: 7px; }
.bar-row .bar-top { display: flex; justify-content: space-between; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.bar-track { height: 12px; background: var(--cream-3); border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--terracotta-soft), var(--terracotta)); width: 0; transition: width 1.1s cubic-bezier(.2,.7,.3,1); }
.bar-fill.sage { background: linear-gradient(90deg, var(--sage), var(--sage-deep)); }

/* photo inset inside content */
.photo-inset { margin: 28px 0; }
.photo-inset .img-ph { min-height: 300px; border-radius: var(--r-lg); }
.photo-cap { font-size: 0.85rem; color: var(--ink-faint); font-family: var(--font-head); font-weight: 600; margin-top: 10px; text-align: center; }

/* quote / pullout */
.pullquote { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; line-height: 1.4; color: var(--terracotta-deep); border: none; padding: 24px 0 24px 28px; margin: 32px 0; border-left: 5px solid var(--peach); }

/* checklist 2-col inside prose */
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin: 22px 0; }
.checks .ck { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: 1rem; }
.checks .ck svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--sage-deep); margin-top: 2px; }

@media (max-width: 820px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
}


/* ============================================================
   WordPress uyum katmanı (tema dönüşümü)
   ============================================================ */

/* Yazı / sayfa içeriği tipografisi */
.prose, .entry-content { font-size: 1.05rem; color: var(--ink-soft); }
.prose > * + *, .entry-content > * + * { margin-top: 1.15em; }
.prose p, .entry-content p { margin-bottom: 0; }
.prose h2, .entry-content h2 { font-size: 1.7rem; margin-top: 1.6em; color: var(--ink); }
.prose h3, .entry-content h3 { font-size: 1.3rem; margin-top: 1.4em; color: var(--ink); }
.prose h4, .entry-content h4 { font-size: 1.1rem; margin-top: 1.2em; color: var(--ink); }
.prose ul, .prose ol, .entry-content ul, .entry-content ol { padding-left: 1.3em; }
.prose li, .entry-content li { margin: .4em 0; }
.prose a, .entry-content a { color: var(--terracotta-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose img, .entry-content img { max-width: 100%; height: auto; border-radius: var(--r-md); }
.prose blockquote, .entry-content blockquote {
  border-left: 4px solid var(--terracotta-soft);
  padding: 6px 0 6px 22px; margin-left: 0; color: var(--ink); font-style: italic;
}
.prose code, .entry-content code { background: var(--cream-2); padding: 2px 7px; border-radius: 8px; font-size: .92em; }
.prose figure, .entry-content figure { margin: 1.4em 0; }
.prose figcaption, .entry-content figcaption { font-size: .85rem; color: var(--ink-faint); text-align: center; margin-top: 8px; }

/* WordPress hizalama yardımcıları */
.alignleft  { float: left;  margin: .4em 1.4em 1em 0; }
.alignright { float: right; margin: .4em 0 1em 1.4em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide, .alignfull { clear: both; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--ink-faint); text-align: center; }
.sticky, .gallery-caption { display: block; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}

/* Pill bağlantıları (blog kategori filtreleri) */
a.pill { text-decoration: none; transition: .18s; }
a.pill:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* Sayfalama */
.pagination .nav-links, .nav-links.pagination { display: inline-flex; gap: 8px; flex-wrap: wrap; align-items: center; justify-content: center; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 14px;
  border-radius: 999px; border: 1.5px solid var(--line);
  font-family: var(--font-head); font-weight: 600; color: var(--ink-soft);
  text-decoration: none; background: var(--white); transition: .18s;
}
.pagination .page-numbers:hover { border-color: var(--terracotta-soft); color: var(--terracotta-deep); }
.pagination .page-numbers.current { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.pagination .page-numbers.dots { border: none; background: transparent; }

/* Yorumlar (sade) */
.comment-list { list-style: none; padding: 0; }
.comment-list li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.comment-respond textarea, .comment-respond input[type=text], .comment-respond input[type=email], .comment-respond input[type=url] {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 1rem; margin-top: 6px;
}

/* WordPress admin bar boşluğu */
body.admin-bar .site-header { /* sticky değilse gerek yok; güvenli boşluk */ }
