/* Quadmate web sayfalari — mağaza zorunluluğu olan yasal sayfalar.
   Bağımsız/statik: paylaşımlı hosting'e olduğu gibi yüklenebilsin diye
   hiçbir dış kaynağa (CDN, font, script) bağlı değil. */

:root {
  --brand: #202368;
  --brand-light: #454da8;
  --ink: #14152b;
  --muted: #5c5c70;
  --line: #e2e2ec;
  --bg: #ffffff;
  --bg-soft: #f6f6fb;
  --danger: #c0392b;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

header {
  background: var(--brand);
  color: #fff;
  padding: 28px 0;
}

header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.brand { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: #fff; text-decoration: none; }

header nav a {
  color: #c8cbe8;
  text-decoration: none;
  font-size: 14px;
  margin-left: 18px;
}
header nav a:hover { color: #fff; }

.wrap { max-width: 780px; margin: 0 auto; padding: 0 20px; }

main { padding: 44px 0 72px; }

h1 { font-size: clamp(26px, 4vw, 34px); line-height: 1.2; margin: 0 0 8px; letter-spacing: -0.01em; }
h2 { font-size: 20px; margin: 36px 0 10px; letter-spacing: -0.005em; }
h3 { font-size: 16px; margin: 24px 0 6px; }

p, li { color: var(--ink); }
.muted { color: var(--muted); }
.updated { color: var(--muted); font-size: 14px; margin: 0 0 28px; }

ul { padding-left: 20px; }
li { margin-bottom: 6px; }

a { color: var(--brand-light); }

table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--bg-soft); font-weight: 600; }
.table-scroll { overflow-x: auto; }

.note {
  background: var(--bg-soft);
  border-left: 3px solid var(--brand-light);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}

.warn {
  background: #fdf3f2;
  border-left: 3px solid var(--danger);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 10px;
  margin-top: 8px;
}
.btn:hover { background: var(--brand-light); }

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 42px;
  margin-bottom: 14px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}
footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer a { color: var(--muted); }
