/* CSRemoteDesk - csremotedesk.com
   Tek stil dosyasi. Framework yok, build yok.

   RENK DEGISTIRMEK: asagidaki --brand degerlerini degistirin, tum site uyar.
   Logo ve semalar da bu degiskenleri kullanir. */

:root {
  /* Zemin ve yazi */
  --bg:        #ffffff;
  --bg-soft:   #f7f8fa;
  --card:      #ffffff;
  --card-2:    #f2f4f7;
  --line:      #e4e7ec;
  --line-soft: #eef1f4;
  --text:      #16191f;
  --muted:     #5a6472;

  /* Marka - kirmizi */
  --brand:      #cc1f2d;
  --brand-dark: #a31824;
  --brand-2:    #ef5a2b;   /* yalniz gradyan/vurgu - yazi rengi olarak kullanma */
  --brand-tint: #fdf3f4;   /* cok acik kirmizi yikama */
  --brand-ink:  #ffffff;

  /* Durum renkleri - markadan ayirt edilebilir kalmali */
  --ok:        #12805c;
  --ok-bg:     #eaf6f1;
  --ok-line:   #a8d8c5;
  --warn:      #8a5a06;
  --warn-bg:   #fff8e6;
  --warn-line: #f0cd7c;
  --danger:    #b3261e;
  --danger-bg: #fdeeed;
  --danger-line:#f0b4b0;

  --radius: 14px;
  --radius-sm: 9px;
  --wrap: 1120px;
  --shadow:    0 1px 2px rgba(16,24,40,.05), 0 8px 24px rgba(16,24,40,.06);
  --shadow-lg: 0 2px 4px rgba(16,24,40,.06), 0 18px 44px rgba(16,24,40,.10);
  --mono: ui-monospace, "Cascadia Mono", Consolas, "SF Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 .5em; letter-spacing: -.02em; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 750; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { margin: 0 0 1em; }

code, kbd, .mono { font-family: var(--mono); font-size: .92em; }
code {
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .1em .4em;
  color: #9a1b26;
}
kbd {
  background: #fff;
  border: 1px solid #cfd5dd;
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: .12em .5em;
  font-size: .85em;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(16,24,40,.04);
}
pre {
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  overflow-x: auto;
}
pre code { background: none; border: 0; padding: 0; color: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

/* ---------- Ust menu ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 18px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 750; color: var(--text); letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 30px; height: 30px; flex: 0 0 auto; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  color: var(--muted); padding: 8px 11px; white-space: nowrap; border-radius: 8px; font-size: .95rem; font-weight: 500;
}
.nav-links a:hover { color: var(--text); background: var(--card-2); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--brand); background: var(--brand-tint); font-weight: 600; }

.lang { margin-left: 8px; display: flex; gap: 2px; border: 1px solid var(--line); border-radius: 8px; padding: 2px; }
.lang a { padding: 5px 9px; font-size: .82rem; border-radius: 6px; color: var(--muted); }
.lang a:hover { text-decoration: none; background: var(--card-2); }
.lang a.on { background: var(--brand); color: var(--brand-ink); }
.lang a.on:hover { background: var(--brand); }

.nav-toggle {
  display: none; margin-left: auto;
  background: #fff; color: var(--text);
  border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 11px; cursor: pointer; font-size: 1rem;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 66px;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px 22px 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .lang { margin: 8px 0 0; align-self: flex-start; }
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 10px;
  font-weight: 650; font-size: 1rem; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--brand); color: var(--brand-ink);
  box-shadow: 0 1px 2px rgba(204,31,45,.24), 0 6px 18px rgba(204,31,45,.20);
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 2px 4px rgba(204,31,45,.26), 0 12px 26px rgba(204,31,45,.24); }
.btn-ghost { background: #fff; color: var(--text); border-color: #d4dae1; }
.btn-ghost:hover { background: var(--card-2); border-color: #c3cbd4; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Bolumler ---------- */
section { padding: 74px 0; }
section.tight { padding: 46px 0; }
.section-head { max-width: 720px; margin-bottom: 34px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 12px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 82px 0 64px;
  background:
    radial-gradient(900px 420px at 82% -10%, rgba(239,90,43,.13), transparent 62%),
    radial-gradient(760px 380px at 10% 0%, rgba(204,31,45,.09), transparent 62%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero h1 { margin-bottom: .35em; }
.hero .lede { font-size: 1.16rem; color: var(--muted); max-width: 620px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 34px; } }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-note { color: var(--muted); font-size: .9rem; margin-top: 16px; }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line);
  color: var(--muted); border-radius: 999px;
  padding: 5px 13px; font-size: .82rem; font-weight: 600;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.badge-soon { background: var(--warn-bg); border-color: var(--warn-line); color: var(--warn); }

/* Slogan ustu kicker + baslikta vurgulu satir */
.kicker {
  margin: 18px 0 10px;
  font-size: .95rem; font-weight: 650;
  letter-spacing: .02em;
  color: var(--brand);
}
.hl {
  background: linear-gradient(180deg, transparent 62%, rgba(204,31,45,.16) 62%);
  padding: 0 .06em;
}

/* Sikayet -> cozum bloklari */
.diffs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 880px) { .diffs { grid-template-columns: 1fr; } }
.diff {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.diff .pain {
  color: var(--muted); font-style: italic;
  font-size: .97rem; margin: 0 0 14px;
  padding-left: 15px; border-left: 3px solid #dfe3e9;
}
.diff .fix {
  margin: 0; font-size: .97rem; color: var(--muted);
  padding-left: 30px; position: relative;
}
.diff .fix::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--brand-tint);
  box-shadow: inset 0 0 0 1.5px var(--brand);
}
.diff .fix strong { color: var(--text); }

/* Genis (tek kolon) ekran goruntusu */
.shot-wide { max-width: 860px; margin: 0 auto; }

/* ---------- Kartlar ---------- */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--muted); }

.icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(204,31,45,.22);
}
.icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Ozellik listesi (ozellikler sayfasi) */
.feature-group { margin-bottom: 40px; }
.feature-group > h2 { margin-bottom: 20px; }
.flist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.flist li {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px;
  display: grid; grid-template-columns: 22px 1fr; gap: 13px; align-items: start;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.flist li::before {
  content: ""; width: 18px; height: 18px; margin-top: 4px; border-radius: 50%;
  background: var(--brand-tint);
  box-shadow: inset 0 0 0 1.5px var(--brand);
}
.flist strong { display: block; margin-bottom: 2px; }
.flist span { color: var(--muted); font-size: .96rem; }

/* ---------- Sema ---------- */
.diagram {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; overflow-x: auto;
}
.diagram svg { min-width: 560px; display: block; margin: 0 auto; }

/* ---------- Ekran goruntusu ----------
   Cerceve KIRMIZI (marka rengi). Etrafinda beyaz kart/zemin YOK ve
   sahte pencere cubugu (uc nokta) YOK - o sembol macOS'a aittir,
   urun yalnizca Windows icin oldugundan yaniltici olurdu. */
.shot {
  border: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(204,31,45,.18);
  line-height: 0;              /* img altindaki bosluk cizgisini kaldirir */
}
/* width/height oznitelikleri HTML'de verildi - gorsel yuklenirken sayfa zıplamaz. */
.shot img {
  display: block;
  width: 100%;
  height: auto;
}
/* Gorsel henuz yokken kullanilan yer tutucu (gizlilik-1.png bekleniyor) */
.shot-body {
  aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .9rem; text-align: center; padding: 20px;
  line-height: 1.5;
  background: repeating-linear-gradient(45deg, #fbfcfd, #fbfcfd 12px, #f4f6f8 12px, #f4f6f8 24px);
}

/* ---------- Uyari kutulari ---------- */
.note {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 22px 24px;
}
.note h3 { display: flex; align-items: center; gap: 9px; }
.note p:last-child, .note ul:last-child { margin-bottom: 0; }
.note ul { margin: 0 0 1em; padding-left: 20px; }
.note li { margin-bottom: .45em; }
.note-warn { background: var(--warn-bg); border-color: var(--warn-line); }
.note-warn h3 { color: var(--warn); }

/* ---------- Indirme karti ---------- */
.dl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.dl-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.dl-ver { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; }
.dl-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 20px 0 24px; }
.dl-meta div { min-width: 110px; }
.dl-meta dt { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.dl-meta dd { margin: 0; font-weight: 600; }
.dl-notes { color: var(--muted); font-size: .96rem; }
.dl-hash { word-break: break-all; font-size: .8rem; color: var(--muted); margin-top: 16px; }

.expiry { margin-top: 18px; padding: 13px 16px; border-radius: var(--radius-sm); font-size: .93rem; }
.expiry-ok   { background: var(--ok-bg);     border: 1px solid var(--ok-line);     color: var(--ok); }
.expiry-soon { background: var(--warn-bg);   border: 1px solid var(--warn-line);   color: var(--warn); }
.expiry-old  { background: var(--danger-bg); border: 1px solid var(--danger-line); color: var(--danger); }

.archive { list-style: none; padding: 0; margin: 14px 0 0; }
.archive li { padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: .94rem; display: flex; justify-content: space-between; gap: 12px; }
.archive li:last-child { border-bottom: 0; }

/* ---------- Tablo ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 520px; }
th, td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .95rem; }
th { background: var(--card-2); font-weight: 650; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
tr:last-child td { border-bottom: 0; }

/* ---------- SSS ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  padding: 17px 22px; cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.3rem; font-weight: 400; flex: 0 0 auto; }
.faq details[open] summary { color: var(--brand); }
.faq details[open] summary::after { content: "\2013"; }
.faq summary:hover { background: var(--bg-soft); }
.faq .answer { padding: 0 22px 20px; color: var(--muted); }
.faq .answer p:last-child, .faq .answer ul:last-child { margin-bottom: 0; }

/* ---------- Icindekiler (dokumantasyon) ---------- */
.doc-layout { display: grid; grid-template-columns: 230px 1fr; gap: 42px; align-items: start; }
@media (max-width: 900px) { .doc-layout { grid-template-columns: 1fr; gap: 26px; } }
.toc { position: sticky; top: 90px; font-size: .93rem; }
@media (max-width: 900px) { .toc { position: static; } }
.toc h4 { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc li { margin-bottom: 3px; }
.toc a { display: block; padding: 6px 11px; border-radius: 7px; color: var(--muted); border-left: 2px solid transparent; }
.toc a:hover { background: var(--brand-tint); color: var(--brand); text-decoration: none; border-left-color: var(--brand); }

.doc-body h2 { scroll-margin-top: 90px; padding-top: 8px; }
.doc-body h3 { margin-top: 1.8em; }
.doc-body ul, .doc-body ol { padding-left: 22px; }
.doc-body li { margin-bottom: .5em; }

/* ---------- CTA seridi ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--brand) 0%, #d8362a 55%, var(--brand-2) 100%);
  border: 0;
  text-align: center;
  color: #fff;
}
.cta-band h2 { margin-bottom: .35em; color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn-primary {
  background: #fff; color: var(--brand);
  box-shadow: 0 2px 6px rgba(0,0,0,.14), 0 12px 28px rgba(0,0,0,.16);
}
.cta-band .btn-primary:hover { background: #fff; color: var(--brand-dark); }

/* ---------- Beta programi sayfasi ---------- */
.beta-hero {
  background: linear-gradient(150deg, var(--brand-dark) 0%, var(--brand) 52%, #e2452c 100%);
  color: #fff;
  padding: 80px 0 70px;
  text-align: center;
}
.beta-hero h1 { color: #fff; margin-bottom: .4em; }
.beta-hero .hero-cta { justify-content: center; }
.lede-invert {
  color: rgba(255,255,255,.94);
  font-size: 1.13rem;
  max-width: 680px;
  margin: 0 auto;
}
.lede-invert strong { color: #fff; }
.badge-invert {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.34);
  color: #fff;
  box-shadow: none;
  margin-bottom: 20px;
}
.btn-invert {
  background: #fff; color: var(--brand);
  box-shadow: 0 2px 6px rgba(0,0,0,.14), 0 12px 28px rgba(0,0,0,.18);
}
.btn-invert:hover { background: #fff; color: var(--brand-dark); }
.btn-outline-invert { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-invert:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* Numarali kartlar (hak kazanma yollari) */
.card-num { position: relative; padding-top: 30px; }
.card-num .num {
  position: absolute; top: -16px; left: 26px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(204,31,45,.28);
}

/* Kazanimlar listesi */
.perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 820px) { .perks { grid-template-columns: 1fr; } }
.perk {
  display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: start;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.perk h3 { font-size: 1.03rem; margin-bottom: .3em; }
.perk p { color: var(--muted); margin: 0; font-size: .95rem; }
.perk-ico {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--brand-tint); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; line-height: 1;
}
.perk-main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--brand-tint), #fff 70%);
  border-color: #f0c2c6;
  border-left: 4px solid var(--brand);
}
.perk-main h3 { font-size: 1.22rem; }
.perk-main p { font-size: 1rem; }
.perk-main .perk-ico { background: var(--brand); color: #fff; font-size: 1.3rem; }

/* Adim listesi */
.steps { list-style: none; counter-reset: adim; padding: 0; margin: 0; }
.steps li {
  counter-increment: adim;
  position: relative;
  padding: 0 0 26px 52px;
  border-left: 2px solid var(--line);
  margin-left: 17px;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(adim);
  position: absolute; left: -18px; top: -2px;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; border: 2px solid var(--brand); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .92rem;
}
.steps strong { display: block; margin-bottom: 3px; }
.steps span { color: var(--muted); font-size: .95rem; }

.mail-big { font-size: 1.12rem; font-weight: 650; word-break: break-all; }

/* Ana sayfadaki beta cagrisi seridi */
.beta-strip {
  display: block;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 55%, #e2452c);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: 0 4px 14px rgba(204,31,45,.24), 0 18px 40px rgba(204,31,45,.18);
  display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center;
}
.beta-strip:hover { text-decoration: none; filter: brightness(1.04); }
.beta-strip .tag {
  display: inline-block; background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px; padding: 3px 11px;
  font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 9px;
}
.beta-strip h2 { color: #fff; font-size: clamp(1.25rem, 2.6vw, 1.7rem); margin-bottom: .28em; }
.beta-strip p { color: rgba(255,255,255,.93); margin: 0; font-size: .98rem; max-width: 620px; }
.beta-strip .go {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--brand);
  border-radius: 10px; padding: 13px 22px;
  font-weight: 700; white-space: nowrap;
}
@media (max-width: 780px) {
  .beta-strip { grid-template-columns: 1fr; padding: 24px; }
  .beta-strip .go { justify-content: center; }
}

/* ---------- Alt bilgi ---------- */
.site-foot {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 48px 0 34px;
  color: var(--muted);
  font-size: .93rem;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 34px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 24px; } }
.site-foot h4 { color: var(--text); font-size: .84rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin-bottom: 7px; }
.site-foot a { color: var(--muted); }
.site-foot a:hover { color: var(--brand); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .87rem; }

/* ---------- Yardimcilar ---------- */
.muted { color: var(--muted); }
.small { font-size: .89rem; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: 26px; }
.mb-3 { margin-bottom: 26px; }
.hidden { display: none !important; }
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand); color: #fff; padding: 10px 16px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* Klavye ile gezinenler icin gorunur odak */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

@media print {
  .site-head, .site-foot, .cta-band, .hero-cta { display: none; }
  body { background: #fff; color: #000; }
  .card, .faq, .dl-card, .shot { box-shadow: none; }
}
