:root {
  --bg: #faf8f4;
  --panel: #ffffff;
  --warm: #f3efe7;
  --ink: #24221e;
  --muted: #6e6960;
  --line: #ebe6dc;
  --accent: #2f5d50;
  --accent-hover: #264d42;
  --accent-soft: #e9f0eb;
  --radius: 16px;
  --sidebar: 264px;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 17px/1.7 var(--sans); -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-underline-offset: 3px; }
img, svg { max-width: 100%; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.45rem, 2.6vw, 1.85rem); margin: 0 0 .6em; }
h3 { font-size: 1.15rem; margin: 0 0 .4em; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.eyebrow { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: .9em; }
.lead { font-size: 1.14rem; color: var(--muted); max-width: 60ch; }

/* ---------- Yerleşim: sol menü + içerik ---------- */
.layout { display: grid; grid-template-columns: var(--sidebar) minmax(0, 1fr); min-height: 100vh; }
.sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; gap: 28px; padding: 28px 20px; background: var(--panel); border-right: 1px solid var(--line); overflow-y: auto; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-family: var(--serif); font-weight: 600; font-size: 1.12rem; padding: 0 8px; }
.brand svg { width: 30px; height: 30px; flex: none; }
.menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.menu a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; color: var(--muted); text-decoration: none; font-size: .97rem; font-weight: 500; transition: background .15s, color .15s; }
.menu a svg { width: 19px; height: 19px; flex: none; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.menu a:hover { background: var(--warm); color: var(--ink); }
.menu a[aria-current="page"] { background: var(--accent-soft); color: var(--accent); }
.side-cta { margin-top: auto; background: var(--warm); border-radius: 14px; padding: 18px; font-size: .9rem; color: var(--muted); }
.side-cta strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.02rem; margin-bottom: 4px; }
.side-cta .btn { width: 100%; margin-top: 12px; min-height: 42px; font-size: .92rem; }

.topbar, .scrim { display: none; }
.content { min-width: 0; }
.page { max-width: 960px; margin: 0 auto; padding: 56px 48px 40px; }
.page.narrow { max-width: 780px; }
.site-footer { max-width: 960px; margin: 0 auto; padding: 28px 48px 48px; color: var(--muted); font-size: .88rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); }
.site-footer a { color: var(--muted); }

@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: fixed; inset: 0 auto 0 0; width: 84%; max-width: 300px; z-index: 30; transform: translateX(-100%); transition: transform .22s ease; box-shadow: 0 0 40px rgba(0,0,0,.12); }
  body.menu-open .sidebar { transform: none; }
  .scrim { display: block; position: fixed; inset: 0; background: rgba(36,34,30,.3); z-index: 20; opacity: 0; pointer-events: none; transition: opacity .2s; }
  body.menu-open .scrim { opacity: 1; pointer-events: auto; }
  .topbar { display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 10; height: 60px; padding: 0 16px; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
  .menu-btn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: var(--panel); color: var(--ink); border-radius: 10px; height: 40px; padding: 0 12px; font: inherit; font-size: .92rem; cursor: pointer; }
  .menu-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }
  .page, .site-footer { padding-left: 16px; padding-right: 16px; }
  .page { padding-top: 32px; }
}

/* ---------- Butonlar ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font: inherit; font-weight: 600; font-size: .98rem; cursor: pointer; text-decoration: none; transition: background .15s, border-color .15s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--panel); border-color: #d9d3c6; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- Bölümler ---------- */
.block { padding: 56px 0; border-top: 1px solid var(--line); }
.block:first-child { border-top: 0; padding-top: 0; }
.block-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.block-head h2 { margin: 0; }
.block-head a { font-size: .95rem; font-weight: 500; white-space: nowrap; }

.hero { padding-top: 12px; padding-bottom: 56px; }
.hero h1 { max-width: 22ch; }
.reassure { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted); font-size: .93rem; }
.reassure li { display: flex; align-items: center; gap: 8px; }
.reassure svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contrast > div { border-radius: var(--radius); padding: 24px; }
.contrast .before { background: var(--warm); }
.contrast .after { background: var(--accent-soft); }
.contrast h3 { font-size: 1.05rem; }
.contrast ul { margin: 0; padding-left: 1.1em; color: var(--muted); }
.contrast .after ul { color: #3c4a44; }
.contrast li + li { margin-top: 6px; }

.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.card { display: block; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; color: inherit; text-decoration: none; transition: border-color .15s, transform .15s; }
a.card:hover { border-color: #d6cfbf; transform: translateY(-2px); }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }
.card .icon { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 16px; }
.card .icon svg { width: 21px; height: 21px; stroke: var(--accent); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card .more { display: inline-block; margin-top: 14px; font-size: .92rem; font-weight: 600; color: var(--accent); }

.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.steps li { counter-increment: s; }
.steps li::before { content: counter(s); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.steps p { color: var(--muted); font-size: .96rem; margin: 0; }

.cta-band { background: var(--accent); color: #eef4f0; border-radius: 22px; padding: 44px 40px; margin-top: 16px; }
.cta-band h2 { color: #fff; margin-bottom: .35em; }
.cta-band p { color: #cfded6; max-width: 54ch; }
.cta-band .btn-primary { background: #fff; color: var(--accent); }
.cta-band .btn-primary:hover { background: #f1f5f2; }
@media (max-width: 600px) { .contrast { grid-template-columns: 1fr; } .cta-band { padding: 32px 22px; } }

/* ---------- Hizmet detayları ---------- */
.service { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 32px 0; border-top: 1px solid var(--line); scroll-margin-top: 80px; }
.service:first-of-type { border-top: 0; }
.service .icon { width: 48px; height: 48px; border-radius: 14px; background: var(--accent-soft); display: grid; place-items: center; }
.service .icon svg { width: 23px; height: 23px; stroke: var(--accent); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service p { color: var(--muted); }
.service .example { background: var(--warm); border-radius: 12px; padding: 14px 16px; font-size: .95rem; color: var(--ink); margin: 0; }
.service .example b { font-weight: 600; }
@media (max-width: 600px) { .service { grid-template-columns: 1fr; gap: 12px; } }

/* ---------- Makaleler ---------- */
.post-list { display: grid; gap: 14px; }
.post { display: block; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; text-decoration: none; color: inherit; transition: border-color .15s; }
.post:hover { border-color: #d6cfbf; }
.post h3 { font-size: 1.22rem; margin-bottom: .35em; }
.post p { color: var(--muted); margin: 0; font-size: .97rem; }
.post .meta { font-size: .84rem; color: var(--muted); margin-bottom: 8px; }
.post-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.post-grid .post h3 { font-size: 1.1rem; }

.crumbs { font-size: .88rem; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--muted); }
.article-meta { color: var(--muted); font-size: .92rem; margin: -6px 0 28px; }
.answer { background: var(--accent-soft); border-radius: 14px; padding: 20px 22px; margin: 0 0 36px; }
.answer .label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.answer p { margin: 0; color: #2f3b36; }

.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li + li { margin-top: .4em; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: .95rem; background: var(--panel); border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--warm); font-weight: 600; }
.prose tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; }
.prose blockquote, .prompt { margin: 0 0 1.4em; padding: 16px 18px; background: var(--warm); border-radius: 12px; font-size: .95rem; white-space: pre-line; }
.prose code { background: var(--warm); padding: 2px 6px; border-radius: 6px; font-size: .9em; }
.note { border-left: 3px solid var(--accent); padding: 4px 0 4px 16px; color: var(--muted); margin: 0 0 1.4em; }

.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; color: var(--muted); }

.soft-cta { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 28px; margin-top: 44px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.soft-cta h3 { margin: 0 0 4px; }
.soft-cta p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- İletişim formu ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 32px; align-items: start; }
.contact-aside { background: var(--warm); border-radius: var(--radius); padding: 24px; font-size: .94rem; color: var(--muted); }
.contact-aside h3 { font-size: 1.05rem; }
.contact-aside ol { padding-left: 1.2em; margin: 0; }
.contact-aside li + li { margin-top: 10px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.wizard { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 32px; }
.progress { height: 4px; background: var(--warm); border-radius: 99px; overflow: hidden; }
.progress span { display: block; height: 100%; width: 20%; background: var(--accent); transition: width .3s ease; }
.progress-label { font-size: .84rem; color: var(--muted); margin: 10px 0 22px; }
.step { border: 0; padding: 0; margin: 0; min-width: 0; }
.step[hidden] { display: none; }
.step legend { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; padding: 0; margin-bottom: 4px; outline: none; }
.step .hint { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.options { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt label { display: flex; align-items: center; gap: 14px; min-height: 58px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 14px; cursor: pointer; background: var(--bg); transition: border-color .15s, background .15s; }
.opt label::before { content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid #c9c2b4; background: #fff; transition: all .15s; }
.opt input[type=checkbox] + label::before { border-radius: 5px; }
.opt label:hover { border-color: #cfc8b9; }
.opt .t { display: block; font-weight: 500; }
.opt .d { display: block; font-size: .87rem; color: var(--muted); }
.opt input:checked + label { border-color: var(--accent); background: var(--accent-soft); }
.opt input:checked + label::before { border-color: var(--accent); background: var(--accent); box-shadow: inset 0 0 0 3px #fff; }
.opt input[type=checkbox]:checked + label::before { box-shadow: none; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat; }
.opt input:focus-visible + label { outline: 3px solid var(--accent); outline-offset: 2px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 500; font-size: .94rem; margin-bottom: 6px; }
.field input, .field textarea { width: 100%; font: inherit; color: var(--ink); background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; transition: border-color .15s; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.consent input { margin-top: 5px; width: 17px; height: 17px; accent-color: var(--accent); flex: none; }
.summary { background: var(--warm); border-radius: 12px; padding: 14px 16px; font-size: .9rem; color: var(--muted); margin-bottom: 20px; }
.summary b { color: var(--ink); font-weight: 600; }
.nav-btns { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 26px; }
.nav-btns .spacer { flex: 1; }
.error { color: #a4341f; font-size: .9rem; min-height: 1.4em; margin: 12px 0 0; }
.done { text-align: center; padding: 28px 0 12px; }
.done .check { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; margin: 0 auto 16px; }
.done .check svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hp { position: absolute; left: -9999px; }
@media (max-width: 600px) { .wizard { padding: 22px 18px; } .two { grid-template-columns: 1fr; } }

/* ---------- Görseller ---------- */
.hero-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.hero-split h1 { font-size: clamp(2rem, 3.6vw, 2.75rem); }
@media (max-width: 1180px) { .hero-split { grid-template-columns: 1fr; } .mock { max-width: 460px; } }

.mock { position: relative; min-height: 400px; }
.mock::before { content: ""; position: absolute; inset: 30px 10px 10px 40px; border-radius: 32px; background: radial-gradient(120% 100% at 70% 30%, var(--accent-soft), var(--warm)); }
.mock-card { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; box-shadow: 0 12px 32px rgba(36,34,30,.08); font-size: .86rem; line-height: 1.45; }
.mock-head { display: flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.mock-head .dot { width: 8px; height: 8px; border-radius: 50%; background: #e3b665; }
.mock-title { font-family: var(--serif); font-weight: 600; font-size: 1.04rem; margin: 0 0 10px; color: var(--ink); }
.mock-inbox { top: 0; left: 0; width: 78%; }
.mock-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; color: var(--muted); }
.mock-row + .mock-row { margin-top: 4px; }
.mock-row b { color: var(--ink); font-weight: 600; }
.mock-row .av { width: 22px; height: 22px; border-radius: 50%; background: var(--warm); flex: none; }
.mock-row.done { background: var(--accent-soft); }
.mock-row.done .av { background: var(--accent); }
.mock-row svg { width: 16px; height: 16px; margin-left: auto; stroke: var(--accent); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.mock-chat { right: 0; top: 196px; width: 62%; display: flex; flex-direction: column; gap: 8px; }
.bubble { padding: 9px 13px; border-radius: 14px; max-width: 88%; }
.bubble.in { background: var(--warm); border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble.out { background: var(--accent); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.mock-foot { font-size: .76rem; color: var(--muted); margin-top: 6px; }
.mock-foot b { color: var(--accent); }
.mock-report { left: 6%; top: 262px; width: 36%; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 64px; }
.bars i { flex: 1; background: #c5d9cf; border-radius: 4px 4px 2px 2px; }
.bars i.hi { background: var(--accent); }
@media (max-width: 520px) {
  .mock { min-height: 430px; }
  .mock-inbox { width: 92%; }
  .mock-chat { width: 80%; top: 200px; }
  .mock-report { top: 320px; width: 52%; left: 0; }
}

.card-img { padding: 0; overflow: hidden; }
.card-img img { display: block; width: 100%; height: auto; border-bottom: 1px solid var(--line); }
.card-img .card-body { padding: 20px 22px 22px; }

.service { grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.service-img { width: 100%; height: auto; border-radius: 16px; }
@media (max-width: 700px) { .service { grid-template-columns: 1fr; gap: 16px; } .service-img { max-width: 360px; } }

.post { padding: 0; overflow: hidden; display: grid; grid-template-columns: 200px 1fr; }
.post img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-body { padding: 22px 24px; }
.post-grid .post { grid-template-columns: 1fr; }
.post-grid .post img { height: auto; border-bottom: 1px solid var(--line); }
@media (max-width: 600px) { .post { grid-template-columns: 1fr; } .post img { height: auto; } }
.cover { display: block; width: 100%; height: auto; border-radius: 18px; margin: 0 0 28px; }

/* ---------- Paketler ---------- */
.pkg-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); align-items: stretch; }
.pkg { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.pkg.featured { border: 2px solid var(--accent); box-shadow: 0 16px 40px rgba(47,93,80,.12); }
.pkg img { display: block; width: 100%; height: auto; border-bottom: 1px solid var(--line); }
.pkg-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; position: relative; }
.pkg .badge { position: absolute; top: -14px; right: 18px; background: var(--accent); color: #fff; font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 999px; }
.pkg-for { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.pkg h3 { font-size: 1.25rem; }
.pkg-sum { color: var(--muted); font-size: .94rem; }
.price { margin: 4px 0 16px; }
.price .amount { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--ink); }
.price .unit { color: var(--muted); font-size: .9rem; }
.checks { list-style: none; padding: 0; margin: 0 0 14px; font-size: .93rem; }
.checks li { display: flex; gap: 10px; align-items: flex-start; }
.checks li + li { margin-top: 8px; }
.checks svg { width: 17px; height: 17px; flex: none; margin-top: 4px; stroke: var(--accent); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.pkg-time { font-size: .86rem; color: var(--muted); margin: auto 0 16px; padding-top: 6px; }
.pkg .btn { width: 100%; margin-top: auto; }
.pkg-time + .btn { margin-top: 0; }
.pkg-grid.compact .pkg-sum { margin-bottom: 10px; }
.pkg-wide { margin-top: 18px; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 24px 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 32px; }
.pkg-wide.soft { background: var(--warm); border-color: transparent; }
.pkg-wide > div:first-child { flex: 1 1 360px; }
.pkg-wide p { color: var(--muted); margin: 0; font-size: .95rem; }
.pkg-wide-right { display: flex; align-items: center; gap: 20px; }
.pkg-wide-right .price { margin: 0; }

.paket-note { display: flex; align-items: center; gap: 10px; background: var(--accent-soft); color: #2f3b36; border-radius: 12px; padding: 10px 14px; margin-bottom: 20px; font-size: .93rem; }
.paket-note svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.8; flex: none; }
.paket-note a { margin-left: auto; font-size: .88rem; }

/* ---------- Makale kategorileri ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 8px; }
.chips a { padding: 7px 14px; border-radius: 999px; background: var(--panel); border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-size: .9rem; font-weight: 500; }
.chips a:hover { border-color: var(--accent); color: var(--accent); }
.cat { padding-top: 40px; scroll-margin-top: 70px; }
.cat h2 { margin-bottom: .2em; }
.cat > .muted { margin-bottom: 18px; }

/* ---------- Tasarım iyileştirmeleri (v3) ---------- */
.skip { position: absolute; left: -9999px; top: 8px; z-index: 50; background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip:focus { left: 16px; }

.page.wide, .site-footer.wide { max-width: 1120px; }
.hero-split { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
.hero-split h1 { font-size: clamp(2rem, 3.1vw, 2.65rem); max-width: none; }

.tools { margin-top: 36px; padding-top: 22px; border-top: 1px dashed var(--line); }
.tools .label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.tools ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tools li { font-size: .86rem; padding: 5px 12px; border-radius: 999px; background: var(--panel); border: 1px solid var(--line); color: var(--muted); }

.cards { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.post-grid .post p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post h3 { text-wrap: balance; }

.cover { height: 260px; object-fit: cover; }
@media (max-width: 600px) { .cover { height: 190px; } }

.toc { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin: 0 0 36px; }
.toc .label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 32px; font-size: .95rem; }
.toc li { break-inside: avoid; margin: 0 0 6px; }
.toc a { color: var(--ink); text-decoration: none; }
.toc a:hover { color: var(--accent); text-decoration: underline; }
@media (max-width: 600px) { .toc ol { columns: 1; } }
.prose h2 { scroll-margin-top: 80px; }

.faq-teaser .faq { margin-bottom: 14px; }

/* Zengin alt bilgi */
.site-footer { display: block; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; padding-bottom: 24px; }
.foot-grid h4 { font-family: var(--serif); font-size: 1rem; color: var(--ink); margin: 0 0 10px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li + li { margin-top: 6px; }
.foot-grid a { color: var(--muted); text-decoration: none; }
.foot-grid a:hover { color: var(--accent); text-decoration: underline; }
.foot-brand p { margin: 10px 0 14px; max-width: 32ch; }
.foot-brand .brand { padding: 0; }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 18px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }

/* Mobilde her zaman görünen mesaj düğmesi */
.mobile-cta { display: none; }
@media (max-width: 900px) {
  .mobile-cta { display: flex; position: fixed; left: 16px; right: 16px; bottom: 14px; z-index: 15; justify-content: center; align-items: center; gap: 8px; min-height: 50px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 600; text-decoration: none; box-shadow: 0 10px 30px rgba(36,34,30,.22); transition: transform .25s ease, opacity .25s ease; }
  .mobile-cta svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
  .mobile-cta.hide { transform: translateY(90px); opacity: 0; pointer-events: none; }
  body.has-mobile-cta .site-footer { padding-bottom: 90px; }
}

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