/* Airofixer — ortak tasarim sistemi (site, portal, panel) */
:root {
  --bg: #f4f6f3; --surface: #ffffff; --surface-2: #eef2ee; --line: #dbe3dd;
  --ink: #14231d; --muted: #5a6b63; --faint: #8a9a92;
  --brand: #1b6b52; --brand-ink: #0f4a38; --brand-soft: #e3f0ea;
  --accent: #d9892b; --accent-soft: #fbf0e0;
  --ok: #2f7d4f; --ok-soft: #e4f3ea; --warn: #9a6512; --warn-soft: #fcf1dc;
  --bad: #b3382c; --bad-soft: #fbe7e4; --info: #2c5d8f; --info-soft: #e5eef8;
  --radius: 14px; --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(20,35,29,.05), 0 8px 24px rgba(20,35,29,.06);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Fira Sans", Ubuntu, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Fira Mono", Menlo, monospace;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root.auto-dark {
    --bg: #0f1613; --surface: #16201c; --surface-2: #1c2823; --line: #2a3832;
    --ink: #e6eee9; --muted: #a2b2aa; --faint: #74857d;
    --brand: #4fb48f; --brand-ink: #86d3b5; --brand-soft: #1b3129;
    --accent: #e9a24d; --accent-soft: #33291a;
    --ok: #5cc28a; --ok-soft: #173024; --warn: #e2b04f; --warn-soft: #33291a;
    --bad: #ef7d70; --bad-soft: #3a1f1c; --info: #7fb2e5; --info-soft: #1a2a3a;
    --shadow: 0 1px 2px rgba(0,0,0,.3); color-scheme: dark;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 16px/1.55 var(--font); }
a { color: var(--brand); }
a:hover { color: var(--brand-ink); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.02em; }
h3 { font-size: 1.12rem; }
p { margin: 0 0 1em; }
small, .small { font-size: .86rem; }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); font-size: .9em; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.hidden { display: none !important; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Ust bar */
.topbar { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.topbar .wrap { display: flex; align-items: center; gap: 24px; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 750; font-size: 1.12rem; color: var(--ink); text-decoration: none; }
.logo-mark { width: 30px; height: 30px; border-radius: 9px; background: var(--brand); display: grid; place-items: center; color: #fff; font-size: 15px; }
.nav { display: flex; gap: 20px; margin-left: auto; align-items: center; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 550; font-size: .95rem; }
.nav a:hover { color: var(--ink); }
.nav-toggle { display: none; margin-left: auto; }

/* Butonlar ve form */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent;
  border-radius: 10px; padding: 11px 18px; font: 650 .96rem/1 var(--font); cursor: pointer; text-decoration: none;
  background: var(--brand); color: #fff; transition: background .15s, transform .05s; min-height: 44px; }
.btn:hover { background: var(--brand-ink); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { background: var(--surface-2); color: var(--ink); }
.btn.accent { background: var(--accent); color: #2a1a05; }
.btn.accent:hover { background: #c47a20; }
.btn.danger { background: var(--bad); }
.btn.sm { padding: 7px 12px; min-height: 34px; font-size: .88rem; border-radius: 8px; }
.btn.block { width: 100%; }
label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field { margin-bottom: 14px; }
.hint { font-weight: 400; color: var(--muted); font-size: .84rem; }
input, select, textarea { width: 100%; font: inherit; color: var(--ink); background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 10px 12px; min-height: 44px; }
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brand); outline-offset: -1px; border-color: var(--brand); }
.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: .9rem; }
.check input { width: 18px; height: 18px; min-height: 0; margin-top: 3px; flex: none; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.alert { padding: 10px 14px; border-radius: var(--radius-sm); font-size: .92rem; margin: 10px 0; }
.alert.error { background: var(--bad-soft); color: var(--bad); }
.alert.success { background: var(--ok-soft); color: var(--ok); }
.alert.info { background: var(--info-soft); color: var(--info); }

/* Kartlar */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.card.flat { box-shadow: none; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 999px; font-size: .8rem; font-weight: 650;
  background: var(--surface-2); color: var(--muted); white-space: nowrap; }
.chip.ok { background: var(--ok-soft); color: var(--ok); }
.chip.warn { background: var(--warn-soft); color: var(--warn); }
.chip.bad { background: var(--bad-soft); color: var(--bad); }
.chip.info { background: var(--info-soft); color: var(--info); }
.chip.brand { background: var(--brand-soft); color: var(--brand-ink); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* ---------- Tanitim sitesi ---------- */
.hero { padding: 72px 0 56px; background:
  radial-gradient(900px 400px at 85% -10%, var(--brand-soft), transparent 70%),
  radial-gradient(600px 300px at 0% 110%, var(--accent-soft), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 750; color: var(--brand); margin-bottom: 14px; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 40em; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 18px; }
.trust { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .9rem; }
.trust span::before { content: "✓ "; color: var(--ok); font-weight: 800; }
.hero-panel { padding: 0; overflow: hidden; }
.hero-panel .hp-head { padding: 14px 18px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.hp-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.hp-row:last-child { border-bottom: 0; }
.hp-row b { display: block; font-size: .95rem; }
.hp-row small { color: var(--muted); }
.section { padding: 72px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 36px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; padding-top: 52px; }
.step::before { counter-increment: s; content: counter(s); position: absolute; top: 0; left: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 800; }
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service { padding: 20px; }
.service .ico { font-size: 1.5rem; margin-bottom: 10px; }
.service p { color: var(--muted); font-size: .93rem; margin: 0; }
.seg-tabs { display: inline-flex; background: var(--surface-2); padding: 4px; border-radius: 12px; margin-bottom: 26px; }
.seg-tabs button { border: 0; background: transparent; padding: 10px 18px; border-radius: 9px; font: 650 .95rem var(--font); color: var(--muted); cursor: pointer; }
.seg-tabs button[aria-selected="true"] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow); }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; align-items: stretch; }
.plan { display: flex; flex-direction: column; position: relative; }
.plan.hl { border: 2px solid var(--brand); }
.plan .badge { position: absolute; top: -12px; left: 20px; background: var(--brand); color: #fff; font-size: .75rem; font-weight: 750; padding: 3px 10px; border-radius: 999px; }
.price { font-size: 2.2rem; font-weight: 800; letter-spacing: -.03em; margin: 8px 0 2px; }
.price small { font-size: .9rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan ul { list-style: none; padding: 0; margin: 16px 0 22px; flex: 1; }
.plan li { padding: 6px 0 6px 26px; position: relative; font-size: .94rem; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
table { width: 100%; border-collapse: collapse; font-size: .93rem; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.compare td:first-child { font-weight: 600; }
.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary { cursor: pointer; font-weight: 650; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--brand); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 10px 0 0; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.footer { padding: 40px 0; color: var(--muted); font-size: .9rem; border-top: 1px solid var(--line); }
.footer .wrap { display: flex; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
.footer a { color: var(--muted); margin-right: 16px; }
.legal { max-width: 780px; padding: 48px 20px 80px; }
.legal h2 { margin-top: 1.6em; font-size: 1.3rem; }
.note { border-left: 4px solid var(--accent); background: var(--accent-soft); padding: 12px 16px; border-radius: 0 8px 8px 0; margin: 16px 0; }

/* ---------- Uygulama duzeni (portal / panel) ---------- */
.app { display: grid; grid-template-columns: 236px 1fr; min-height: 100vh; }
.side { background: var(--surface); border-right: 1px solid var(--line); padding: 18px 14px; position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; gap: 4px; }
.side .logo { padding: 4px 8px 18px; }
.side button.nav-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; border: 0; background: transparent; text-align: left;
  padding: 10px 12px; border-radius: 9px; font: 600 .94rem var(--font); color: var(--muted); cursor: pointer; }
.side button.nav-item:hover { background: var(--surface-2); color: var(--ink); }
.side button.nav-item[aria-current="page"] { background: var(--brand-soft); color: var(--brand-ink); }
.side .count { font-size: .76rem; background: var(--surface-2); padding: 1px 8px; border-radius: 999px; }
.side .count.bad { background: var(--bad-soft); color: var(--bad); }
.side .spacer { flex: 1; }
.side .who { border-top: 1px solid var(--line); padding: 12px 8px 0; font-size: .88rem; }
.main { padding: 26px 30px 60px; min-width: 0; }
.page-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.page-head h1 { font-size: 1.6rem; margin: 0; letter-spacing: -.02em; }
.toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
.toolbar input, .toolbar select { width: auto; min-width: 200px; }
.list { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.row { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--line); cursor: pointer; align-items: center; }
.row:last-child { border-bottom: 0; }
.row:hover { background: var(--surface-2); }
.row .num { font-family: var(--mono); color: var(--muted); font-size: .88rem; }
.row .title { font-weight: 650; }
.row .meta { color: var(--muted); font-size: .84rem; display: flex; gap: 10px; flex-wrap: wrap; margin-top: 3px; }
.row .right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.empty { padding: 40px; text-align: center; color: var(--muted); }
.prio { font-weight: 800; font-size: .78rem; padding: 2px 7px; border-radius: 6px; }
.prio.p1 { background: var(--bad); color: #fff; }
.prio.p2 { background: var(--accent); color: #2a1a05; }
.prio.p3 { background: var(--info-soft); color: var(--info); }
.prio.p4 { background: var(--surface-2); color: var(--muted); }
.detail { display: grid; grid-template-columns: 1fr 320px; gap: 20px; align-items: start; }
.thread { display: flex; flex-direction: column; gap: 12px; }
.msg { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.msg.staff { border-left: 4px solid var(--brand); }
.msg.internal { background: var(--warn-soft); border-color: #ecd7ae; }
.msg.system { background: var(--surface-2); border-style: dashed; font-size: .9rem; }
.msg .mh { display: flex; justify-content: space-between; gap: 10px; font-size: .84rem; color: var(--muted); margin-bottom: 6px; }
.msg .mh b { color: var(--ink); }
.msg .mb { white-space: pre-wrap; word-wrap: break-word; }
.side-card { margin-bottom: 14px; }
.side-card h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 12px; }
.kv { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; font-size: .9rem; }
.kv dt { color: var(--muted); }
.kv dd { margin: 0; text-align: right; font-weight: 600; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.kpi { padding: 16px 18px; }
.kpi .label { font-size: .82rem; color: var(--muted); font-weight: 600; }
.kpi .value { font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; margin: 4px 0 2px; }
.kpi .target { font-size: .8rem; }
.kpi .target.ok { color: var(--ok); } .kpi .target.bad { color: var(--bad); }
.bars { display: flex; align-items: flex-end; gap: 3px; height: 140px; padding-top: 10px; }
.bars .b { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 2px; min-width: 3px; }
.bars .b i { display: block; border-radius: 3px 3px 0 0; }
.bars .b i.c { background: var(--brand); }
.bars .b i.r { background: var(--accent); }
.legend { display: flex; gap: 14px; font-size: .82rem; color: var(--muted); margin-top: 8px; }
.legend span::before { content: ""; display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; }
.legend .c::before { background: var(--brand); } .legend .r::before { background: var(--accent); }
.hbar { display: grid; grid-template-columns: 110px 1fr 40px; gap: 10px; align-items: center; font-size: .9rem; margin: 6px 0; }
.hbar .track { background: var(--surface-2); border-radius: 6px; height: 10px; overflow: hidden; }
.hbar .fill { background: var(--brand); height: 100%; }
.auth-shell { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.auth-card { width: 100%; max-width: 440px; }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.tabs button { border: 0; background: none; padding: 10px 14px; font: 650 .95rem var(--font); color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabs button[aria-selected="true"] { color: var(--brand-ink); border-bottom-color: var(--brand); }
dialog { border: 0; border-radius: var(--radius); padding: 0; max-width: 560px; width: calc(100% - 32px); background: var(--surface); color: var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,.25); }
dialog::backdrop { background: rgba(15,22,19,.45); }
dialog .dh { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
dialog .db { padding: 20px 22px; }
dialog .df { padding: 14px 22px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; gap: 10px; }
.stars { display: flex; gap: 6px; }
.stars button { font-size: 1.6rem; background: none; border: 0; cursor: pointer; color: var(--line); padding: 0 2px; }
.stars button.on { color: var(--accent); }
.toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--ink); color: var(--bg); padding: 12px 18px; border-radius: 10px; z-index: 100; font-size: .92rem; box-shadow: var(--shadow); }
.mobile-bar { display: none; }

@media (max-width: 980px) {
  .hero-grid, .contact-grid, .detail { grid-template-columns: 1fr; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .app { grid-template-columns: 1fr; }
  .side { position: fixed; inset: 0 auto 0 0; width: 260px; z-index: 50; transform: translateX(-100%); transition: transform .2s; box-shadow: var(--shadow); }
  .side.open { transform: none; }
  .mobile-bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 30; }
  .main { padding: 18px 16px 60px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 16px; }
  .nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--surface); flex-direction: column; align-items: stretch; padding: 12px 16px; border-bottom: 1px solid var(--line); gap: 4px; }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; }
  .nav-toggle { display: inline-flex; }
  .steps, .services, .grid2, .grid3 { grid-template-columns: 1fr; }
  .hero { padding: 44px 0 36px; }
  .section { padding: 52px 0; }
  .row { grid-template-columns: 1fr; gap: 6px; }
  .row .right { flex-direction: row; align-items: center; justify-content: flex-start; }
  .toolbar input, .toolbar select { min-width: 0; flex: 1; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .kpi .value { font-size: 1.5rem; }
}
.mt { margin-top: 14px; } .mt-xl { margin-top: 48px; } .narrow { max-width: 820px; }
.kv-contact { max-width: 340px; margin-top: 20px; }
.mt-sm { margin-top: 8px; }
.label-like { display: block; font-size: .9rem; margin-bottom: 6px; }
.nav-item-link { display: block; padding: 10px 12px; border-radius: 9px; font-weight: 600; font-size: .94rem; color: var(--muted); text-decoration: none; }
.nav-item-link:hover { background: var(--surface-2); color: var(--ink); }
.choice { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.choice label { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 12px; font-weight: 500; cursor: pointer; display: flex; gap: 8px; align-items: flex-start; margin: 0; background: var(--surface); }
.choice label:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.choice input { width: 16px; height: 16px; min-height: 0; margin-top: 3px; flex: none; }
.predict { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; padding: 12px 14px; background: var(--surface-2); border-radius: var(--radius-sm); font-size: .92rem; }
.reply { margin-top: 14px; }
.reply-actions { display: flex; gap: 10px; justify-content: flex-end; align-items: center; flex-wrap: wrap; margin-top: 10px; }
.reply-actions select { width: auto; }
@media (max-width: 720px) { .choice { grid-template-columns: 1fr; } }
.app > div { min-width: 0; }
.main:focus { outline: none; }
.seg-tabs { max-width: 100%; overflow-x: auto; scrollbar-width: none; }
.seg-tabs button { white-space: nowrap; flex: none; }
.page-head select, .page-head input { width: auto; }

/* Gezinme: geri dugmeleri, mobil menu golgesi */
.back-btn { flex: none; }
.head-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; min-width: 0; }
.head-left h1 { min-width: 0; overflow-wrap: anywhere; }
.auth-top { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.topbar .back-btn { margin-right: -8px; }
.nav.nav-always { display: flex; position: static; flex-direction: row; padding: 0; border: 0; background: none; }
.ml-auto { margin-left: auto; }
.side-shade { display: none; }
@media (max-width: 980px) {
  .side-shade.show { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 40; }
}
@media (max-width: 720px) {
  .nav.nav-always a:not(.btn) { display: none; }
  .topbar .wrap { gap: 12px; }
}
.prio.p4 { box-shadow: inset 0 0 0 1px var(--line); }

/* Sol ust "Geri" cubugu */
.backbar { padding: 12px 16px 0; }
.backbar + .topbar { position: sticky; }
.auth-shell { position: relative; }
.backbar.floating { position: absolute; top: 0; left: 0; padding: 16px; }
.back-btn { gap: 6px; }

/* Bilgi bankasi ve makale sayfalari */
.kb-list { display: grid; gap: 12px; margin-top: 18px; }
.kb-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.kb-item h2 { font-size: 1.1rem; margin: 8px 0 4px; }
.kb-item h2 a { color: var(--ink); text-decoration: none; }
.kb-item h2 a:hover { color: var(--brand); text-decoration: underline; }
.kb-item p { margin: 0; }
.article h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-top: 10px; }
.article h2 { font-size: 1.2rem; margin-top: 1.4em; }
.article ol { padding-left: 1.3em; } .article li { margin: 6px 0; }
.crumbs { color: var(--muted); margin-bottom: 14px; } .crumbs a { color: var(--muted); }
.cta-card { margin: 32px 0; } .cta-card h2 { margin-top: 0; }
.related { padding-left: 1.2em; } .related li { margin: 6px 0; }
a.plain { color: inherit; text-decoration: none; } a.plain:hover { color: var(--brand); text-decoration: underline; }
/* Ust menudeki dugmelerin yazi rengi (menu baglanti rengi dugmeyi ezmesin) */
.nav a.btn { color: #fff; }
.nav a.btn:hover { color: #fff; }
.nav a.btn.ghost, .nav a.btn.ghost:hover { color: var(--ink); }
/* Mobil menu dugmesi yalnizca dar ekranda gorunsun (.btn kuralinin ezmesini engelle) */
.btn.nav-toggle { display: none; }
@media (max-width: 720px) { .btn.nav-toggle { display: inline-flex; } }
