/* ═══════════════════════════════════════════════
   EmlakCRMx — Landing Page Studio Ortak Stiller
   ═══════════════════════════════════════════════ */

/* ── Sayfa İskelet ── */
.page-hero {
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, rgba(254,252,232,.7), #fff, rgba(240,253,250,.4));
}
@media (min-width:640px) { .page-hero { padding: 8rem 0 4rem; } }

.page-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .page-hero h1 { font-size: 2.625rem; } }

.page-hero p.lead {
  font-size: 1.0625rem;
  color: #6b7280;
  line-height: 1.75;
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .375rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: .8125rem;
  color: #9ca3af;
}
.breadcrumb li + li::before { content: "/"; margin-right: .375rem; }
.breadcrumb a { color: #6b7280; text-decoration: none; }
.breadcrumb a:hover { color: #ca8a04; }

/* ── Cover Image ── */
.page-cover {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  border-radius: 1.25rem;
  display: block;
  margin: 1.5rem 0 2.5rem;
}

/* ── Ortak İçerik Alanı ── */
.page-body {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

/* ── Editorial Prose ── */
.page-content {
  font-size: 1.0625rem;
  color: #374151;
  line-height: 1.85;
}
.page-content h2 { font-size: 1.625rem; font-weight: 700; color: #111827; margin: 2.5rem 0 1rem; }
.page-content h3 { font-size: 1.25rem; font-weight: 600; color: #1f2937; margin: 2rem 0 .75rem; }
.page-content p { margin: 0 0 1.25rem; }
.page-content ul, .page-content ol { margin: 1rem 0 1.25rem; padding-left: 1.5rem; }
.page-content li { margin-bottom: .5rem; line-height: 1.75; }
.page-content ul li { list-style: disc; }
.page-content ol li { list-style: decimal; }
.page-content blockquote {
  border-left: 4px solid #fde68a;
  margin: 1.5rem 0;
  padding: .75rem 1.25rem;
  background: #fefce8;
  border-radius: 0 .75rem .75rem 0;
  font-style: italic;
  color: #4b5563;
}
.page-content code { background: #f3f4f6; padding: .1em .35em; border-radius: .25rem; font-size: .9em; }
.page-content a { color: #ca8a04; text-decoration: underline; font-weight: 500; }
.page-content a:hover { color: #a16207; }
.page-content img { max-width: 100%; height: auto; border-radius: .75rem; margin: 1.5rem auto; display: block; }
.page-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9375rem; }
.page-content th { background: #f9fafb; border: 1px solid #e5e7eb; padding: .625rem 1rem; font-weight: 600; text-align: left; }
.page-content td { border: 1px solid #e5e7eb; padding: .625rem 1rem; vertical-align: top; }
.page-content tr:nth-child(even) td { background: #fafafa; }

/* ── Badge ── */
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .375rem 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 9999px;
  font-size: .8125rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 1rem;
}

/* ── Karşılaştırma Tablosu ── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: .9375rem; }
.comparison-table th { background: #f9fafb; font-weight: 700; padding: .875rem 1rem; border: 1px solid #e5e7eb; }
.comparison-table td { padding: .75rem 1rem; border: 1px solid #e5e7eb; vertical-align: middle; }
.comparison-table tr:nth-child(even) td { background: #fafafa; }
.ct-check { color: #10b981; font-size: 1.125rem; font-weight: 700; }
.ct-cross { color: #ef4444; font-size: 1.125rem; font-weight: 700; }
.ct-us { font-weight: 600; color: #10b981; }
.ct-them { color: #9ca3af; }

/* ── Sıralı Liste (Listicle) ── */
.ranked-item {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  background: #fff;
}
.ranked-item .rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-weight: 800;
  font-size: .9375rem;
  color: #fff;
  margin-bottom: .75rem;
}
.rank-1 { background: #f59e0b; }
.rank-2 { background: #9ca3af; }
.rank-3 { background: #c2824a; }
.rank-n { background: #6366f1; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.pros li::before { content: "✓ "; color: #10b981; font-weight: 700; }
.cons li::before { content: "✗ "; color: #ef4444; font-weight: 700; }
.pros li, .cons li { list-style: none; font-size: .875rem; margin-bottom: .375rem; }

/* ── HowTo Adımlar ── */
.howto-steps { counter-reset: step; }
.howto-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 1rem;
  border-left: 4px solid #10b981;
}
.howto-step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9375rem;
}
.howto-step-body h3 { font-size: 1.0625rem; font-weight: 700; color: #111827; margin: 0 0 .375rem; }
.howto-step-body p  { font-size: .9375rem; color: #4b5563; margin: 0; line-height: 1.6; }

/* ── TOC (İçindekiler) ── */
.toc-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.toc-box h2 { font-size: 1rem; font-weight: 700; color: #374151; margin: 0 0 .75rem; }
.toc-box ol { margin: 0; padding-left: 1.25rem; }
.toc-box li { font-size: .9rem; line-height: 1.75; color: #4b5563; }
.toc-box a { color: #ca8a04; text-decoration: none; }
.toc-box a:hover { text-decoration: underline; }

/* ── SSS (FAQ) ── */
.faq-list { margin: 2rem 0; }
.faq-item { border-bottom: 1px solid #f3f4f6; padding: 1.25rem 0; }
.faq-question { font-weight: 600; color: #111827; font-size: 1rem; margin-bottom: .5rem; }
.faq-answer  { font-size: .9375rem; color: #6b7280; line-height: 1.7; }

/* ── Şehir Raporu Özeti ── */
.city-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.city-stat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .875rem;
  padding: 1.125rem;
  text-align: center;
}
.city-stat-card .stat-val { font-size: 1.75rem; font-weight: 800; color: #111827; }
.city-stat-card .stat-lbl { font-size: .8125rem; color: #9ca3af; margin-top: .25rem; }

/* ── Sözlük Tanım Kutusu ── */
.definition-box {
  background: linear-gradient(135deg, #fefce8, #fff);
  border: 1.5px solid #fde68a;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.definition-box .term-title { font-size: 1.5rem; font-weight: 800; color: #111827; margin-bottom: .5rem; }
.definition-box .term-short { font-size: 1.0625rem; color: #374151; line-height: 1.7; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .pros-cons { grid-template-columns: 1fr; }
  .comparison-table { font-size: .8125rem; }
  .comparison-table th, .comparison-table td { padding: .5rem .625rem; }
}
