/* SEO landing pages – Çorbacı Halis (dark theme) */
.seo-page-hero {
  padding: 7.5rem 0 2.5rem;
  text-align: left;
  background: linear-gradient(180deg, rgba(206, 175, 106, 0.08) 0%, transparent 70%);
  border-bottom: 1px solid rgba(206, 175, 106, 0.15);
}
.seo-page-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.seo-page-hero .breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.seo-page-hero .breadcrumb a:hover {
  text-decoration: underline;
}
.seo-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.seo-page-hero .seo-lead {
  max-width: 720px;
  margin: 0 0 1.5rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}
.seo-cta-inline {
  justify-content: flex-start;
}
.seo-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 4rem;
}
.seo-main h2 {
  font-family: var(--font-display);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  color: var(--primary);
}
.seo-main h2:first-child {
  margin-top: 0;
}
.seo-main p,
.seo-main li {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.seo-main ul {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.seo-main a {
  color: var(--primary);
  font-weight: 600;
}
.seo-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 1rem;
}
.seo-card {
  background: var(--surface-light);
  border: 1px solid rgba(206, 175, 106, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
}
.seo-card h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  color: var(--primary);
}
.seo-card p,
.seo-card li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.seo-card ul {
  list-style: none;
  padding: 0;
}
.seo-card li {
  margin-bottom: 0.5rem;
}
.seo-card a {
  color: var(--white);
  text-decoration: none;
}
.seo-card a:hover {
  color: var(--primary);
}
.seo-cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.seo-related {
  padding: 3rem 0 4rem;
  background: var(--surface);
  border-top: 1px solid rgba(206, 175, 106, 0.15);
}
.seo-related h2 {
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.seo-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.seo-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  background: var(--surface-light);
  border: 1px solid rgba(206, 175, 106, 0.25);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: 0.2s ease;
}
.seo-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.seo-faq details {
  background: var(--surface-light);
  border: 1px solid rgba(206, 175, 106, 0.15);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
}
.seo-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
}
.seo-faq details p {
  margin: 0.75rem 0 0;
}
@media (max-width: 900px) {
  .seo-layout {
    grid-template-columns: 1fr;
  }
  .seo-aside {
    position: static;
  }
  .seo-page-hero {
    padding-top: 6.5rem;
  }
}
