/* ---------------------------------------------------------------------------
   Hovzly — tanitim sitesi stilleri.
   index.html ve icerik sayfalari bu dosyayi paylasir; yeni sayfa eklerken
   yalnizca sayfaya ozel kurallari en alta yazmak yeterli.
   --------------------------------------------------------------------------- */

/*
 * Palet Hovzly'nin ilk tasarimindan geri getirildi: zemin saf siyah degil
 * teal'e calan cok koyu bir mavi-yesil, aksan ise parlak turkuaz. Cizgiler
 * notr beyaz yerine dusuk opaklikta turkuaz — yuzeyler birbirinden aydinlik
 * degil sicaklik farkiyla ayrisiyor.
 */
:root {
  --base: #071014;
  --surface: #0b171d;
  --line: rgba(151, 232, 232, 0.16);
  --line-strong: rgba(151, 232, 232, 0.28);
  --ink: #eef8f9;
  --muted: #afc6c9;
  --dim: #7e969b;
  --brand: #31e7e0;
  --brand-light: #8af2ed;
  --brand-deep: #129b95;
  --lime: #b6ff5a;
  --mint: #37e58b;
  color-scheme: dark;
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
body {
  background: var(--base);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
/* Marka turuncusundan turetilen isik lekeleri */
body::before {
  content: '';
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(40rem 30rem at 78% -5%, rgba(49, 231, 224, 0.16), transparent 62%),
    radial-gradient(32rem 26rem at 8% 12%, rgba(143, 140, 255, 0.10), transparent 60%);
}
h1, h2, h3 { font-family: 'Bricolage Grotesque', Inter, sans-serif; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10, 9, 8, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.bar { display: flex; align-items: center; height: 68px; gap: 12px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 18px; }
.logo img { width: 32px; height: 32px; object-fit: contain; }
.nav { display: none; margin: 0 auto; gap: 26px; }
@media (min-width: 860px) { .nav { display: flex; } }
.nav a { font-size: 14px; font-weight: 500; color: var(--muted); transition: 0.2s; }
.nav a:hover { color: var(--ink); }
.bar > .btn { margin-left: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 14px;
  font-size: 14px; font-weight: 600; transition: 0.2s; border: 1px solid transparent;
}
/* Acik turkuaz zemin uzerinde beyaz metin okunmaz; metin zemin tonunda. */
.btn-primary {
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: #071014;
  box-shadow: 0 10px 30px -12px rgba(49, 231, 224, 0.55);
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.05); }

/* --------------------------------------------------------- hero */
.hero { padding: 96px 0 80px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand);
}
.hero h1 { margin: 20px 0 0; font-size: clamp(2.5rem, 7vw, 4rem); font-weight: 800; line-height: 1.02; max-width: 16ch; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--ink) 14%, var(--brand) 52%, var(--lime));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { margin: 22px 0 0; max-width: 52ch; font-size: 16px; color: var(--muted); line-height: 1.7; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ------------------------------------------------------ bolumler */
section { padding: 72px 0; }
.section-head { max-width: 42ch; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.6rem, 3.6vw, 2.25rem); font-weight: 800; }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.7; }

.grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 20px; padding: 24px;
}
.card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.card .num {
  display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 16px;
  border-radius: 11px; background: rgba(49, 231, 224, 0.12); color: var(--brand);
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 14px;
}

.roles { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .roles { grid-template-columns: repeat(3, 1fr); } }
.role-tag {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: rgba(49, 231, 224, 0.12); color: var(--brand);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.role ul { list-style: none; margin-top: 14px; display: grid; gap: 9px; }
.role li { position: relative; padding-left: 18px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.role li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--brand);
}

.platforms { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.platform {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
  font-size: 13px; font-weight: 600; color: var(--muted);
}

.cta {
  border: 1px solid rgba(49, 231, 224, 0.28);
  background: linear-gradient(160deg, rgba(49, 231, 224, 0.12), rgba(11, 23, 29, 0.6));
  border-radius: 28px; padding: 48px 32px; text-align: center;
}
.cta h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); font-weight: 800; }
.cta p { margin: 14px auto 0; max-width: 46ch; color: var(--muted); font-size: 15px; line-height: 1.7; }

footer { border-top: 1px solid var(--line); padding: 32px 0 48px; margin-top: 40px; }
.foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; }
.foot p { color: var(--dim); font-size: 13px; }
.foot a { color: var(--dim); font-size: 13px; }
.foot a:hover { color: var(--ink); }

/* ------------------------------------------------------------ sss */
.faq { display: grid; gap: 14px; }
.faq details {
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 18px; padding: 20px 24px;
}
.faq summary {
  cursor: pointer; list-style: none; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; margin-left: auto; color: var(--brand);
  font-size: 20px; font-weight: 700; line-height: 1;
}
.faq details[open] summary::after { content: '\2212'; }
.faq details p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ------------------------------------------------------ karsilastirma */
.compare { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare .card h3 { font-size: 15px; }
.compare ul { list-style: none; margin-top: 14px; display: grid; gap: 10px; }
.compare li { position: relative; padding-left: 24px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.compare li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.compare .old li::before { content: '\00D7'; color: var(--dim); font-size: 16px; }
.compare .new li::before { content: '\2713'; color: var(--mint); font-size: 13px; top: 1px; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ===========================================================================
   Icerik sayfalari (ornek: /sarkimi-nasil-duyururum/)
   =========================================================================== */

.crumbs {
  padding: 28px 0 0;
  font-size: 13px;
  color: var(--dim);
}
.crumbs a { color: var(--dim); }
.crumbs a:hover { color: var(--ink); }
.crumbs span { margin: 0 7px; opacity: 0.5; }

.article { padding: 26px 0 0; max-width: 720px; }
.article > header { padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.article h1 {
  font-size: clamp(2rem, 5.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 16px 0 0;
}
.article .standfirst {
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}
.article .meta {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--dim);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.article h2 {
  margin: 46px 0 0;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 800;
  scroll-margin-top: 84px;
}
.article h3 {
  margin: 30px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
}
.article p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}
.article strong { color: var(--ink); font-weight: 600; }
.article ul, .article ol { margin: 16px 0 0; padding-left: 22px; }
.article li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.article li::marker { color: var(--brand); }

/* icindekiler */
.toc {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 22px 24px;
}
.toc h2 {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dim);
  font-family: Inter, sans-serif;
}
.toc ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.toc li { margin: 0; font-size: 14.5px; }
.toc a { color: var(--muted); }
.toc a:hover { color: var(--brand); }

/* one cikan kutu */
.callout {
  margin: 26px 0 0;
  border: 1px solid rgba(49, 231, 224, 0.28);
  border-radius: 16px;
  background: rgba(49, 231, 224, 0.07);
  padding: 20px 22px;
}
.callout p { margin: 0; color: var(--ink); font-size: 14.5px; line-height: 1.7; }
.callout p + p { margin-top: 10px; }

/* platform tablosu */
.tablewrap { margin: 20px 0 0; overflow-x: auto; }
table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}
th, td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--dim);
}
td { color: var(--muted); line-height: 1.6; }
td:first-child { color: var(--ink); font-weight: 600; white-space: nowrap; }

.article-cta {
  margin: 52px 0 0;
  border: 1px solid rgba(49, 231, 224, 0.28);
  background: linear-gradient(160deg, rgba(49, 231, 224, 0.12), rgba(11, 23, 29, 0.6));
  border-radius: 24px;
  padding: 36px 30px;
  text-align: center;
}
.article-cta h2 { margin: 0; font-size: 1.4rem; }
.article-cta p { margin: 12px auto 0; max-width: 44ch; }

/* SSS icindeki ic baglanti */
.faq details p a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
