/* VOGAI Studio — içerik (SEO/GEO) sayfaları
   Renk ve tipografi src/styles/index.css içindeki .landing-light ile birebir. */

:root {
  --bg: #FFFFFF;
  --surface: #FAFAFA;
  --ink: #0B0B0C;
  --ink-soft: #3A3D44;
  --muted: #6B7280;
  --muted-dim: #9AA1AC;
  --accent: #B85A3C;
  --accent-strong: #8A422C;
  --border: rgba(11, 11, 12, 0.09);
  --border-strong: rgba(11, 11, 12, 0.16);
  --success: #4F7A4A;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

header.site {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 0; margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
header.site .brand {
  font-family: Lora, Georgia, serif; font-size: 19px; font-weight: 600;
  text-decoration: none; color: var(--ink);
}
header.site .brand span { color: var(--accent); }
header.site a.back { font-size: 14px; color: var(--ink-soft); text-decoration: none; }
header.site a.back:hover { color: var(--accent); }

.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}

h1 {
  font-family: Lora, Georgia, serif; font-size: 42px; line-height: 1.12;
  font-weight: 600; letter-spacing: -0.02em; margin: 0 0 18px;
  text-wrap: pretty;
}
h2 {
  font-family: Lora, Georgia, serif; font-size: 27px; line-height: 1.25;
  font-weight: 600; letter-spacing: -0.015em; margin: 52px 0 14px;
  text-wrap: pretty;
}
h3 { font-size: 18px; font-weight: 600; margin: 30px 0 8px; }

p { margin: 0 0 16px; color: var(--ink-soft); text-wrap: pretty; }
.lead { font-size: 18.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 28px; }

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(184, 90, 60, 0.3); }
a:hover { color: var(--accent-strong); border-bottom-color: var(--accent-strong); }

ul, ol { margin: 0 0 18px; padding-left: 22px; color: var(--ink-soft); }
li { margin-bottom: 9px; }
li::marker { color: var(--muted-dim); }

strong { color: var(--ink); font-weight: 600; }

table { width: 100%; border-collapse: collapse; margin: 22px 0 26px; font-size: 15px; }
th, td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
th {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); background: var(--surface);
}
td { color: var(--ink-soft); }
td:first-child { color: var(--ink); font-weight: 500; }

.note {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 22px; margin: 26px 0;
  font-size: 15px; color: var(--ink-soft);
}

.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 16.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.faq-a { font-size: 15px; color: var(--ink-soft); margin: 0; }

.cta {
  background: var(--ink); border-radius: 20px; padding: 36px;
  margin: 52px 0 40px; display: flex; flex-direction: column; gap: 16px;
}
.cta h2 { color: #FFFFFF; margin: 0; font-size: 26px; }
.cta p { color: #C2BAA9; margin: 0; }
.cta .row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 6px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #FFFFFF; font-size: 14.5px; font-weight: 500;
  padding: 14px 28px; border-radius: 999px; border-bottom: none;
}
.btn:hover { background: var(--accent-strong); color: #FFFFFF; border-bottom: none; }
.btn-ghost {
  background: transparent; color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); color: #FFFFFF; }

.related { border-top: 1px solid var(--border); padding-top: 26px; }
.related-title {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.related-list { display: flex; flex-direction: column; gap: 10px; }

footer.site {
  border-top: 1px solid var(--border); margin-top: 44px; padding-top: 22px;
  font-size: 13px; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center;
}
footer.site a { color: var(--muted); border-bottom-color: transparent; }
footer.site a:hover { color: var(--accent); }

@media (max-width: 600px) {
  h1 { font-size: 32px; }
  h2 { font-size: 23px; margin-top: 42px; }
  .lead { font-size: 17px; }
  .cta { padding: 26px; }
  table { font-size: 14px; }
  th, td { padding: 11px 10px; }
}
