/* =============================================
   PLANON — ANA STİL DOSYASI
   Enflasyon Ortamında Finansal Yönetim
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ===== DEĞİŞKENLER ===== */
:root {
  --primary:        #1C5EA0;
  --primary-hover:  #154C87;
  --primary-light:  #EBF3FC;
  --green:          #3B7D5C;
  --green-hover:    #2E634A;
  --green-light:    #EAF5EF;
  --bg:             #F7F8FA;
  --white:          #FFFFFF;
  --gray-50:        #F7F8FA;
  --gray-100:       #EFF1F5;
  --gray-200:       #DEE2EA;
  --gray-300:       #BEC7D4;
  --gray-400:       #9AA5B8;
  --gray-500:       #6B7A91;
  --gray-700:       #3A4259;
  --gray-900:       #1A2033;
  --text:           #1A2033;
  --text-muted:     #5C6880;
  --text-light:     #8B97AB;
  --border:         #DEE2EA;
  --border-light:   #EFF1F5;
  --shadow-xs:      0 1px 3px rgba(26,32,51,0.06);
  --shadow-sm:      0 2px 8px rgba(26,32,51,0.08);
  --shadow:         0 4px 16px rgba(26,32,51,0.10);
  --shadow-lg:      0 8px 32px rgba(26,32,51,0.12);
  --r:              8px;
  --r-lg:           14px;
  --r-xl:           20px;
  --max:            1240px;
  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:     'Playfair Display', Georgia, 'Times New Roman', serif;
  --ease:           0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: var(--primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--primary-hover); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; color: var(--gray-900); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===== YARDIMCI ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.section--lg { padding: 100px 0; }
.section--white { background: var(--white); }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--gray-900); color: var(--white); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===== TİPOGRAFİ ===== */
.display-1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.display-2 { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 14px; }
.section-subtitle { font-size: 1.0625rem; color: var(--text-muted); max-width: 580px; line-height: 1.65; }
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }
.overline { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; display: block; }
.overline--green { color: var(--green); }

/* ===== BUTONLAR ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--r);
  font-size: 0.9375rem; font-weight: 600; line-height: 1;
  transition: all var(--ease); white-space: nowrap;
}
.btn--primary {
  background: var(--primary); color: var(--white);
  box-shadow: 0 2px 8px rgba(28,94,160,0.22);
}
.btn--primary:hover {
  background: var(--primary-hover); color: var(--white);
  box-shadow: 0 4px 16px rgba(28,94,160,0.30);
  transform: translateY(-1px);
}
.btn--green {
  background: var(--green); color: var(--white);
  box-shadow: 0 2px 8px rgba(59,125,92,0.22);
}
.btn--green:hover {
  background: var(--green-hover); color: var(--white);
  box-shadow: 0 4px 16px rgba(59,125,92,0.30);
  transform: translateY(-1px);
}
.btn--outline {
  border: 1.5px solid var(--primary); color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary-light); color: var(--primary);
}
.btn--ghost {
  color: var(--text-muted);
  padding: 11px 18px;
}
.btn--ghost:hover { color: var(--primary); background: var(--gray-100); }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--sm { padding: 8px 16px; font-size: 0.875rem; }
.btn svg { flex-shrink: 0; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 700; color: var(--gray-900);
  letter-spacing: -0.02em; text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--primary); }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { fill: none; stroke: #fff; }

/* ===== ANA NAV ===== */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--gray-700);
  transition: all var(--ease); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-link .chevron {
  width: 14px; height: 14px; transition: transform var(--ease);
  stroke: currentColor; fill: none;
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 8px;
  min-width: 220px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--ease); pointer-events: none;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 6px;
  font-size: 0.875rem; font-weight: 500; color: var(--gray-700);
  transition: all var(--ease);
}
.dropdown a:hover { background: var(--primary-light); color: var(--primary); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700); border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 68px 0 0 0;
  background: var(--white); z-index: 999;
  overflow-y: auto; padding: 16px 24px 32px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav-item a {
  display: block; padding: 12px 0;
  font-size: 0.9375rem; font-weight: 500;
  color: var(--gray-700); border-bottom: 1px solid var(--border-light);
}
.mobile-nav-item a:hover { color: var(--primary); }
.mobile-nav-group { padding: 8px 0; }
.mobile-nav-group-title {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400); padding: 10px 0 6px;
}
.mobile-nav-group a {
  padding: 9px 12px;
  font-size: 0.875rem; color: var(--gray-500);
  display: block; border-bottom: 1px solid var(--border-light);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb-list li + li::before {
  content: '/'; color: var(--gray-300); font-size: 0.8125rem;
}
.breadcrumb-list a { font-size: 0.8125rem; color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list li:last-child span { font-size: 0.8125rem; color: var(--gray-900); font-weight: 500; }

/* ===== PAGE HERO (GEÇMİŞ) ===== */
.page-hero {
  background: var(--white);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 16px; color: var(--gray-900);
}
.page-hero__desc { font-size: 1.0625rem; color: var(--text-muted); max-width: 600px; line-height: 1.7; }

/* ===== ANA HERO (HOMEPAGE) ===== */
.hero {
  background: var(--white);
  padding: 96px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; right: -200px; top: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(28,94,160,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-content { max-width: 560px; }
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 20px;
  color: var(--gray-900);
}
.hero-title em { font-style: normal; color: var(--primary); }
.hero-desc {
  font-size: 1.125rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat__value { font-size: 1.75rem; font-weight: 700; color: var(--gray-900); line-height: 1; }
.hero-stat__label { font-size: 0.8125rem; color: var(--text-muted); margin-top: 4px; }

/* ===== KARTLAR ===== */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--ease);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--gray-200); }
.card__img { aspect-ratio: 16/9; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__img img { transform: scale(1.03); }
.card__body { padding: 24px; }
.card__tag {
  display: inline-block; padding: 4px 10px;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  border-radius: 4px; margin-bottom: 12px;
}
.card__tag--green { background: var(--green-light); color: var(--green); }
.card__title { font-size: 1.0625rem; font-weight: 600; line-height: 1.35; margin-bottom: 10px; color: var(--gray-900); }
.card__title a { color: inherit; }
.card__title a:hover { color: var(--primary); }
.card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.card__meta { display: flex; align-items: center; gap: 12px; font-size: 0.8125rem; color: var(--text-light); }
.card__meta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; flex-shrink: 0; }

/* ===== TOPIC KARTLARI ===== */
.topic-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: all var(--ease); display: flex; flex-direction: column; gap: 14px;
}
.topic-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--primary); }
.topic-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.topic-card__icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 1.75; }
.topic-card__icon--green { background: var(--green-light); }
.topic-card__icon--green svg { stroke: var(--green); }
.topic-card__title { font-size: 1rem; font-weight: 600; color: var(--gray-900); }
.topic-card__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.topic-card__link { font-size: 0.875rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; margin-top: auto; }
.topic-card__link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; transition: transform var(--ease); }
.topic-card:hover .topic-card__link svg { transform: translateX(4px); }

/* ===== GRID SİSTEMİ ===== */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2-1 { grid-template-columns: 2fr 1fr; }
.grid--1-2 { grid-template-columns: 1fr 2fr; }

/* ===== SAYFA İÇERİĞİ ===== */
.page-content { padding: 56px 0 80px; }
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.content-main {}
.content-sidebar {}

/* ===== İÇERİK METNİ ===== */
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 36px 0 14px; color: var(--gray-900); letter-spacing: -0.01em; }
.prose h3 { font-size: 1.1875rem; font-weight: 600; margin: 28px 0 10px; color: var(--gray-900); }
.prose h4 { font-size: 1.0625rem; font-weight: 600; margin: 22px 0 8px; color: var(--gray-700); }
.prose p { font-size: 0.9875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.prose strong { color: var(--gray-900); font-weight: 600; }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 16px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { font-size: 0.9875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.prose blockquote {
  border-left: 3px solid var(--primary); padding: 16px 20px;
  background: var(--primary-light); border-radius: 0 var(--r) var(--r) 0;
  margin: 24px 0;
}
.prose blockquote p { color: var(--gray-700); font-style: italic; margin-bottom: 0; font-size: 1rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }
.prose th {
  background: var(--gray-100); padding: 10px 14px;
  text-align: left; font-weight: 600; color: var(--gray-700);
  border: 1px solid var(--border);
}
.prose td { padding: 10px 14px; border: 1px solid var(--border); color: var(--text-muted); }
.prose tr:nth-child(even) td { background: var(--gray-50); }
.prose img { border-radius: var(--r-lg); margin: 24px 0; box-shadow: var(--shadow-sm); }

/* ===== KENAR ÇUBUĞU ===== */
.sidebar-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; margin-bottom: 24px;
}
.sidebar-box__title {
  font-size: 0.9rem; font-weight: 700; color: var(--gray-900);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.sidebar-list li { padding: 9px 0; border-bottom: 1px solid var(--border-light); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }
.sidebar-list a:hover { color: var(--primary); }

/* ===== VERİ KUTULARI ===== */
.data-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 28px;
}
.data-box--blue { border-left: 4px solid var(--primary); }
.data-box--green { border-left: 4px solid var(--green); }
.data-box__value { font-size: 2rem; font-weight: 700; color: var(--gray-900); line-height: 1; }
.data-box__label { font-size: 0.8125rem; color: var(--text-muted); margin-top: 6px; }
.data-box__change {
  font-size: 0.8125rem; font-weight: 600; margin-top: 10px;
  display: flex; align-items: center; gap: 4px;
}
.data-box__change--up { color: #D14343; }
.data-box__change--down { color: var(--green); }

/* ===== BİLGİ KUTUSU ===== */
.info-box {
  background: var(--primary-light); border: 1px solid #C5D9F0;
  border-radius: var(--r-lg); padding: 20px 24px; margin: 24px 0;
}
.info-box--green { background: var(--green-light); border-color: #B5D9C5; }
.info-box--warn { background: #FEF9EC; border-color: #F0D68A; }
.info-box__title { font-size: 0.9rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.info-box p { font-size: 0.875rem; color: var(--gray-700); margin-bottom: 0; }

/* ===== STATİSTİK BÖLÜMÜ ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 20px; text-align: center;
}
.stat-item__value { font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-item__label { font-size: 0.8125rem; color: var(--text-muted); margin-top: 8px; }

/* ===== TEKÖZELLİK BANT ===== */
.feature-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden;
}
.feature-strip__item {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.feature-strip__item:last-child { border-right: none; }
.feature-strip__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.feature-strip__icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 1.75; }
.feature-strip__title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.feature-strip__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ===== BLOG GRİDİ ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; transition: all var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 22px; }
.blog-card__tag {
  display: inline-block; padding: 3px 9px;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.04em;
  border-radius: 4px; margin-bottom: 10px; text-transform: uppercase;
}
.blog-card__title { font-size: 1rem; font-weight: 600; line-height: 1.35; margin-bottom: 10px; }
.blog-card__title a { color: var(--gray-900); }
.blog-card__title a:hover { color: var(--primary); }
.blog-card__excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.blog-card__meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-light); }
.blog-card__meta-left { display: flex; align-items: center; gap: 10px; }

/* ===== MAKALELİ SAYFA ===== */
.article-header { padding: 48px 0 40px; background: var(--white); border-bottom: 1px solid var(--border); }
.article-header__tag {
  display: inline-block; padding: 4px 10px;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.75rem; font-weight: 600; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
}
.article-header__title {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 18px; color: var(--gray-900);
}
.article-header__meta { display: flex; gap: 20px; font-size: 0.8625rem; color: var(--text-light); flex-wrap: wrap; }
.article-header__meta span { display: flex; align-items: center; gap: 6px; }
.article-header__meta svg { width: 15px; height: 15px; stroke: currentColor; fill: none; }
.article-hero-img { border-radius: var(--r-lg); overflow: hidden; margin: 32px 0; aspect-ratio: 21/9; box-shadow: var(--shadow-sm); }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== FORMLAR ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 0.9375rem; color: var(--text);
  background: var(--white); transition: border-color var(--ease);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(28,94,160,0.08); }
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-help { font-size: 0.8rem; color: var(--text-light); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none; background: var(--green-light); border: 1px solid #B5D9C5;
  border-radius: var(--r-lg); padding: 20px 24px; margin-top: 20px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success__title { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.form-success__text { font-size: 0.875rem; color: var(--gray-700); }
.form-error { font-size: 0.8125rem; color: #D14343; margin-top: 5px; display: none; }
.form-error.show { display: block; }

/* ===== HABER BÜLTENİ ===== */
.newsletter-section {
  background: var(--gray-900); padding: 64px 0;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-section .section-title { color: var(--white); }
.newsletter-section .section-subtitle { color: var(--gray-300); margin: 0 auto 32px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-input {
  flex: 1; padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.15); border-radius: var(--r);
  background: rgba(255,255,255,0.08); color: var(--white);
  font-size: 0.9375rem; outline: none; transition: border-color var(--ease);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.4); }
.newsletter-note { font-size: 0.8rem; color: var(--gray-400); margin-top: 14px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--gray-900); padding: 64px 0 0; color: var(--gray-300); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo { font-size: 1.3rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 14px; }
.footer-logo span { color: var(--primary); }
.footer-brand p { font-size: 0.875rem; color: var(--gray-400); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.8125rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--gray-400); transition: color var(--ease); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.875rem; color: var(--gray-400); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8125rem; color: var(--gray-500); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8125rem; color: var(--gray-500); }
.footer-bottom-links a:hover { color: var(--white); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  font-size: 0.8rem; color: var(--gray-500); line-height: 1.7; text-align: center;
}

/* ===== ÇEREZ BANERİ ===== */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--gray-900); color: var(--white);
  padding: 16px 24px; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); z-index: 2000;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  max-width: 700px; width: calc(100% - 48px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(16px); }
.cookie-banner__text { font-size: 0.875rem; color: var(--gray-300); flex: 1; line-height: 1.6; }
.cookie-banner__text a { color: var(--white); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== POLİTİKA SAYFALARI ===== */
.policy-page { background: var(--white); }
.policy-header { background: var(--gray-900); padding: 56px 0; }
.policy-header h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.policy-header p { color: var(--gray-400); font-size: 0.9rem; }
.policy-content { padding: 56px 0 80px; }
.policy-content .prose h2 { font-size: 1.25rem; margin: 32px 0 12px; }
.policy-content .prose p { color: var(--gray-700); }
.policy-toc {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; margin-bottom: 36px;
}
.policy-toc h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.policy-toc li { padding: 5px 0; }
.policy-toc a { font-size: 0.875rem; color: var(--primary); }

/* ===== İLETİŞİM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info {}
.contact-info h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-item__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item__icon svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; }
.contact-item__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 4px; }
.contact-item__value { font-size: 0.9375rem; color: var(--gray-900); font-weight: 500; }
.contact-map {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); margin-top: 24px; height: 200px;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ===== HAKKIMIZDA ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; text-align: center;
}
.team-card__img { aspect-ratio: 1; overflow: hidden; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 20px; }
.team-card__name { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.team-card__role { font-size: 0.8125rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-card__bio { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.65; }

/* ===== SAYFALAMA ===== */
.pagination { display: flex; align-items: center; gap: 6px; margin-top: 48px; justify-content: center; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500; transition: all var(--ease);
  border: 1px solid var(--border); background: var(--white); color: var(--text-muted);
}
.pagination a:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.pagination span.current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== ETİKETLER ===== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.tag {
  display: inline-block; padding: 5px 12px;
  background: var(--gray-100); color: var(--gray-700);
  border-radius: 50px; font-size: 0.8125rem; font-weight: 500;
  transition: all var(--ease);
}
.tag:hover { background: var(--primary-light); color: var(--primary); }

/* ===== RAPORLAR ===== */
.report-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all var(--ease);
}
.report-card:hover { box-shadow: var(--shadow); border-color: var(--gray-200); }
.report-card__icon {
  width: 48px; height: 48px; background: var(--primary-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.report-card__icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; }
.report-card__title { font-size: 1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 6px; }
.report-card__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.report-card__meta { display: flex; gap: 14px; font-size: 0.8rem; color: var(--text-light); }

/* ===== RESPONSİF ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { order: -1; }
}
@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .section--lg { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .grid--2-1, .grid--1-2 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip__item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-strip__item:last-child { border-bottom: none; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 40px 0 32px; }
  .article-hero-img { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .grid--4 { grid-template-columns: 1fr; }
}

/* ===== ANİMASYONLAR ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.5s ease both; }
.fade-in--delay-1 { animation-delay: 0.1s; }
.fade-in--delay-2 { animation-delay: 0.2s; }
.fade-in--delay-3 { animation-delay: 0.3s; }

/* ===== YARDIMCI SINIFLAR ===== */
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.w-full { width: 100%; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
