@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Archivo+Black&display=swap');

/* Almadan marka sayfaları — Hakkında / Gizlilik / İletişim ortak stili.
   Varsayılan tema KOYU -- ana site (index.html) varsayılan olarak koyu
   temayla açılıyor, bu sayfalar önceden varsayılan AÇIK'tı ve kullanıcı
   hiç tema değiştirmediğinde (localStorage'da almadan_theme yoksa) veya
   OS light modundaysa ana siteyle uyumsuz/parlak görünüyordu. Açık tema
   artık .light-theme sınıfıyla devreye giren bir tercih. */
:root {
  --ink: #eceeed;
  --ink-2: #93998f;
  --paper: #111411;
  --surface: #1a1e1a;
  --border: #2a2e2a;
  --green: #287a50;
  --green-dark: #1e5e3e;
  --green-bg: rgba(142, 215, 170, 0.08);
  --lime: #d9ef57;
  --dark: #121412;
  --radius: 14px;
  --font: "DM Sans", sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Manrope", sans-serif; margin: 0; }
p { margin: 0 0 14px; }
a { color: inherit; }
i[data-lucide] { width: 18px; height: 18px; stroke-width: 2.2; flex-shrink: 0; }

/* ── Header ─────────────────────────────────────────── */
.bp-header {
  background: var(--dark);
  padding: 16px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, .14);
}
.bp-logo {
  color: #fff;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bp-logo-mark {
  background: var(--lime);
  color: var(--dark);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}
.bp-nav { display: flex; gap: 22px; }
.bp-nav a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: color .15s;
}
.bp-nav a:hover, .bp-nav a.active { color: #fff; }

/* ── Hero ───────────────────────────────────────────── */
.bp-hero {
  background: var(--dark);
  padding: 48px 5vw 60px;
  color: #fff;
}
.bp-hero-inner { max-width: 720px; margin: 0 auto; text-align: left; }
.bp-eyebrow {
  color: var(--lime);
  font-family: "Space Mono", monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.bp-hero h1 {
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 4.2vw, 38px);
  line-height: 1.16;
  letter-spacing: -.005em;
  margin-bottom: 14px;
  color: #fff;
}
.bp-hero-copy {
  color: rgba(255,255,255,.72);
  font-size: 15.5px;
  max-width: 560px;
  margin-bottom: 24px;
}

/* ── CTA ────────────────────────────────────────────── */
.bp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  transition: background .15s, transform .1s;
}
.bp-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.bp-cta-block { margin-top: 12px; }

/* ── Main content ───────────────────────────────────── */
.bp-main { max-width: 820px; margin: 0 auto; padding: 44px 5vw 72px; }
.bp-main h2 {
  font-size: 20px;
  margin: 40px 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.bp-main h2 i { color: var(--green); width: 20px; height: 20px; }
.bp-main h2:first-child { margin-top: 0; }
.bp-body { color: var(--ink); max-width: 640px; }
.bp-body.muted { color: var(--ink-2); }

/* ── Stat kutuları ──────────────────────────────────── */
.bp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: -36px 0 8px;
}
.bp-stat {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(23,26,23,.06);
}
.bp-stat i { color: var(--green); margin: 0 auto 8px; }
.bp-stat b { display: block; font-family: "Space Mono", monospace; font-weight: 700; font-size: 22px; color: var(--ink); }
.bp-stat span { font-size: 12px; color: var(--ink-2); line-height: 1.4; display: block; margin-top: 2px; }

/* ── Özellik kartları ───────────────────────────────── */
.bp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.bp-feature {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color .15s, box-shadow .15s;
}
.bp-feature:hover { border-color: var(--green); box-shadow: 0 8px 24px rgba(40,122,80,.08); }
.bp-price-history { margin: 10px 0; }
.bp-price-history svg { display: block; width: 100%; height: auto; }
.bp-price-history-caption { font-size: 12px; color: var(--ink-2); margin: 4px 0 0; }
.bp-feature i {
  color: var(--green);
  background: var(--green-bg);
  width: 38px; height: 38px;
  border-radius: 10px;
  padding: 9px;
  margin-bottom: 12px;
}
.bp-feature h3 { font-size: 15px; margin-bottom: 6px; }
.bp-feature p { font-family: "Space Mono", monospace; font-size: 13px; color: var(--ink-2); margin: 0; }

/* ── Fiyat sayfası: analiz + SSS ─────────────────────── */
.bp-editorial p { font-size: 14px; line-height: 1.6; color: var(--ink-2); }
.bp-tips {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bp-tips li {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--ink-2);
  position: relative;
  padding-left: 32px;
}
.bp-tips li::before {
  content: "💡";
  position: absolute;
  left: 12px;
}
.bp-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.bp-faq-item:last-child { border-bottom: none; }
.bp-faq-item h3 { font-size: 14.5px; margin: 0 0 6px; }
.bp-faq-item p { font-size: 13.5px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* ── Kart (Gizlilik/İletişim) ───────────────────────── */
.bp-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 14px;
}
.bp-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bp-card h3 i { color: var(--green); }
.bp-card p { color: var(--ink-2); font-size: 14px; margin-bottom: 6px; }
.bp-card a.bp-link { color: var(--green); font-weight: 700; text-decoration: none; }
.bp-card a.bp-link:hover { text-decoration: underline; }

.bp-list { padding-left: 0; margin: 0 0 14px; list-style: none; }
.bp-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--ink);
}
.bp-list li i { color: var(--green); margin-top: 2px; }
.bp-list li strong { font-weight: 700; }

.bp-chip-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 28px;
}
.bp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.bp-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.bp-chip:hover { background: var(--green-dark); }
.bp-chip-secondary {
  color: var(--green-dark);
  background: var(--green-bg);
  border: 1px solid rgba(40, 122, 80, 0.18);
}
.bp-chip-secondary:hover {
  color: #fff;
  background: var(--green);
}

.bp-updated {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green-dark);
  font-family: "Space Mono", monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 12px;
  border: 1px dashed rgba(40, 122, 80, .4);
  border-radius: 4px;
  transform: rotate(-1deg);
  margin-bottom: 8px;
}

/* ── Footer ─────────────────────────────────────────── */
.bp-footer {
  border-top: 1px dashed var(--border);
  padding: 26px 24px;
  text-align: center;
  color: var(--ink-2);
  font-size: 13px;
  font-family: "Space Mono", monospace;
}
.bp-footer a { color: var(--green); text-decoration: none; margin: 0 10px; font-weight: 600; }
.bp-footer a:hover { text-decoration: underline; }
.bp-footer p { margin: 8px 0 0; }

@media (max-width: 680px) {
  .bp-stats { grid-template-columns: 1fr; margin-top: 4px; }
  .bp-nav { gap: 14px; }
  .bp-nav a { font-size: 12.5px; }
}

/* ── Açık tema (opsiyonel tercih) ──────────────────────
   Varsayılan koyu; kullanıcı ana sitede açık temayı seçtiyse
   (localStorage almadan_theme=light) bu sınıf devreye girer. */
html.light-theme, body.light-theme {
  --ink: #171a17;
  --ink-2: #687068;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --border: #dfe3dc;
  --green-bg: rgba(40, 122, 80, 0.07);
}
