/* =========================================================
   Eğitimci Dil Konuşma Özel Eğitim ve Rehabilitasyon Merkezi
   Site genel CSS — v0.1
   ========================================================= */

/* ---------- 1. CSS değişkenleri (palet) ---------- */
:root {
  --primary:        #2E5BBA;   /* logo mavi */
  --primary-light:  #3DCFC4;   /* logo turkuaz */
  --primary-dark:   #1F3F87;
  --accent:         #C0185A;   /* logo pembe-mor */
  --accent-light:   #F39C5C;   /* logo turuncu */
  --accent-dark:    #8B0F40;

  --paper:          #FAF6EE;   /* sıcak krem zemin */
  --milk:           #FFFFFF;
  --ink:            #222222;
  --ink-soft:       #555555;
  --ink-light:      #888888;
  --border-soft:    #E8E4DA;
  --border-mid:     #D4CFC1;

  --shadow-sm:      0 2px 8px rgba(20, 20, 40, 0.04);
  --shadow-md:      0 6px 24px rgba(20, 20, 40, 0.08);
  --shadow-lg:      0 12px 40px rgba(20, 20, 40, 0.10);

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;

  --container:      1180px;
  --container-narrow: 880px;
}

/* ---------- 2. Reset ve temel ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

/* ---------- 3. Tipografi ---------- */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--ink-soft);
}

p + p {
  margin-top: 1em;
}

.brand-mark {
  font-family: 'Metamorphous', Georgia, serif;
  letter-spacing: 0.03em;
}

.handwritten {
  font-family: 'Caveat', cursive;
  font-weight: 500;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ---------- 4. Container ve grid ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 32px 0;
}

.section-sm {
  padding: 24px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 24px 0;
  }
  .section-sm {
    padding: 18px 0;
  }
}

/* ---------- 5. Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand img {
  width: 42px;
  height: auto;
}

.nav-brand-text {
  font-family: 'Metamorphous', serif;
  font-size: 1.15rem;
  color: var(--accent);
  letter-spacing: 0.03em;
  line-height: 1;
}

.nav-brand-sub {
  font-family: 'Metamorphous', serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-menu a {
  display: inline-block;
  padding: 8px 14px 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-menu a.is-active,
.nav-menu a[aria-current="page"] {
  color: var(--primary);
}

.nav-menu a.is-active::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-menu .has-dropdown {
  position: relative;
}

/* Chevron SVG (mobile + desktop): hem .has-dropdown > a > svg üzerinden
   yönlendirilir; .is-open class'ı ile rotate olur */
.has-dropdown-chevron {
  color: #2E5BBA;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.has-dropdown.is-open .has-dropdown-chevron {
  transform: rotate(180deg);
}
.has-dropdown-label {
  display: inline;
}

/* Nav menü maddelerine Lucide ikonu — sadece mobile'da görünür */
.nav-icon {
  display: none;
  flex-shrink: 0;
  color: #2E5BBA;
  transition: color 0.15s ease;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-menu .has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover {
  background: rgba(46, 91, 186, 0.06);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 980px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--milk);
    border-bottom: 1px solid var(--border-soft);
    padding: 12px 16px;
    gap: 0;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    padding: 12px 8px;
  }
  .nav-menu a::after {
    display: none;
  }
  .nav-menu a:hover {
    background: rgba(46, 91, 186, 0.06);
  }
  .nav-toggle {
    display: block;
  }
  /* Akordeon dış kutusu — diğer maddelerden ayrışsın */
  .nav-menu .has-dropdown {
    background: rgba(46, 91, 186, 0.04);
    border-radius: 8px;
    padding: 14px 16px;
    margin: 16px 0;
  }
  /* Akordeon başlık satırı: flex, label sol, chevron sağ */
  .nav-menu .has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 1.05em;
    cursor: pointer;
  }
  .nav-menu .has-dropdown > a:hover {
    background: transparent;
  }
  /* Mobile dropdown: kapalı default, .is-open ile yumuşak açılma */
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    visibility: visible;
    transition: max-height 0.25s ease-out, opacity 0.2s ease, margin 0.2s ease-out, padding 0.2s ease-out;
  }
  .has-dropdown.is-open .nav-dropdown {
    max-height: 240px;
    opacity: 1;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(46, 91, 186, 0.08);
  }
  /* Alt maddeler: bullet + spacing — bullet rengi her destek alanı için ayrı (nth-child) */
  .nav-dropdown li {
    display: flex;
    align-items: center;
  }
  .nav-dropdown li::before {
    content: '•';
    margin-right: 10px;
    font-size: 1.1em;
    line-height: 1;
    flex-shrink: 0;
    color: #C0185A; /* fallback */
  }
  /* Sırayla: Dil-Konuşma (turkuaz), Öğrenme Güçlüğü (turuncu), Zihinsel Destek (mavi), Otizm (pembe) */
  .nav-dropdown li:nth-child(1)::before { color: #3DCFC4; }
  .nav-dropdown li:nth-child(2)::before { color: #F39C5C; }
  .nav-dropdown li:nth-child(3)::before { color: #2E5BBA; }
  .nav-dropdown li:nth-child(4)::before { color: #C0185A; }
  .nav-dropdown a {
    flex: 1;
    padding: 8px 0;
    font-size: 0.95em;
    font-weight: 400;
  }
  /* Hover: yazı rengi noktanın rengine döner — sistem tutarlı */
  .nav-dropdown li:nth-child(1) a:hover { color: #3DCFC4; background: transparent; }
  .nav-dropdown li:nth-child(2) a:hover { color: #F39C5C; background: transparent; }
  .nav-dropdown li:nth-child(3) a:hover { color: #2E5BBA; background: transparent; }
  .nav-dropdown li:nth-child(4) a:hover { color: #C0185A; background: transparent; }

  /* Akordeon DIŞINDAKİ ana maddeler — biraz daha karakterli */
  .nav-menu > li:not(.has-dropdown) > a {
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  /* Lucide ikonlar mobile'da görünür, ana madde a/href'lerde flex layout */
  .nav-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 14px;
    color: #2E5BBA;
    vertical-align: middle;
  }
  .nav-menu > li:not(.has-dropdown) > a {
    display: flex;
    align-items: center;
  }
  /* Aktif olmayan maddeler hover'da pembeye dönsün — aktif sayfa renk
     davranışı korunur (is-active mavi kalır) */
  .nav-menu a:not(.is-active):hover {
    color: #C0185A;
    background: transparent;
  }
  .nav-menu a:not(.is-active):hover .nav-icon {
    color: #C0185A;
  }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 16px;
}

.hero-handwrite {
  font-family: 'Caveat', cursive;
  font-size: 1.65rem;
  color: var(--primary);
  margin: 24px 0 32px;
  display: block;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero-mekan {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(34, 34, 34, 0.12);
  display: block;
}

@media (max-width: 880px) {
  .hero {
    padding: 56px 0 72px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .hero-visual {
    min-height: 320px;
    order: -1;
  }
  .hero-mekan {
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }
}

/* ---------- 7. Buton ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--milk);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--milk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: var(--milk);
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--milk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--milk);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
}

.btn-ghost:hover {
  color: var(--primary);
  background: rgba(46, 91, 186, 0.06);
}

.btn-arrow::after {
  content: '→';
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ---------- 8. Kart yapıları ---------- */
.card {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s ease;
}

.card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  color: var(--milk);
}

.card-icon.bg-primary    { background: var(--primary); }
.card-icon.bg-accent     { background: var(--accent); }
.card-icon.bg-turquoise  { background: var(--primary-light); }
.card-icon.bg-orange     { background: var(--accent-light); }

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- 9. Bölüm başlığı ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

@media (max-width: 768px) {
  .section-head {
    margin: 0 auto 24px;
  }
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.08rem;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

/* ---------- 10. Hizmet alanı kartları (4'lü) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.s1::before { background: var(--primary); }
.service-card.s2::before { background: var(--primary-light); }
.service-card.s3::before { background: var(--accent-light); }
.service-card.s4::before { background: var(--accent); }

.service-card .service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: var(--ink-light);
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card .service-arrow {
  margin-top: 16px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-card.s1 .service-arrow { color: var(--primary); }
.service-card.s2 .service-arrow { color: var(--primary-light); }
.service-card.s3 .service-arrow { color: var(--accent-light); }
.service-card.s4 .service-arrow { color: var(--accent); }

/* ---------- 11. Ayırt edici 3 nokta ---------- */
.differentiators {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.diff-item {
  position: relative;
  padding-left: 56px;
}

.diff-num {
  position: absolute;
  left: 0;
  top: -4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--milk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
}

.diff-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.diff-item p {
  font-size: 0.96rem;
}

/* ---------- 12. Süreç şeridi ---------- */
.process-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  flex: 1;
  min-width: 160px;
  padding: 28px 22px;
  border-right: 1px solid var(--border-soft);
  position: relative;
}

.process-step:last-child {
  border-right: none;
}

.process-step-num {
  font-family: 'Metamorphous', serif;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.process-step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }
  .process-step:last-child {
    border-bottom: none;
  }
}

/* ---------- 13. CTA çağrı bloğu ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  color: var(--milk);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cta-block {
    padding: 32px 24px;
  }
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
  pointer-events: none;
}

.cta-block h2 {
  color: var(--milk);
  margin-bottom: 16px;
  position: relative;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 28px;
  position: relative;
}

.cta-block .btn {
  position: relative;
}

.cta-block .btn-primary {
  background: var(--milk);
  color: var(--accent);
}

.cta-block .btn-primary:hover {
  background: var(--paper);
  color: var(--accent-dark);
}

/* ---------- 14. MoreShots benzeri ipuçları şeridi ---------- */
.tips-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.tip-card {
  display: block;
  padding: 24px 22px;
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.tip-card:hover {
  border-color: var(--primary);
  background: rgba(46, 91, 186, 0.02);
  transform: translateY(-2px);
}

.tip-card .tip-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.tip-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.tip-card p {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin: 0;
}

/* ---------- 15. Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 32px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: 'Metamorphous', serif;
  font-size: 1.4rem;
  color: var(--accent-light);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.footer p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-cross-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: var(--primary-light) !important;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-cross-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--milk) !important;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- 16. Form (Formspree benzeri basit form) ---------- */
.form-block {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.96rem;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  transition: all 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--milk);
  box-shadow: 0 0 0 3px rgba(46, 91, 186, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-top: 12px;
}

/* ---------- 17. Yardımcılar ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.bg-milk { background: var(--milk); }
.bg-paper { background: var(--paper); }

/* Img component placeholder */
.ph {
  background: linear-gradient(135deg, var(--border-soft), var(--paper));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 0.85rem;
  font-style: italic;
  border-radius: var(--radius-md);
  min-height: 200px;
}

/* Skip link erişilebilirlik için */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 1000;
  background: var(--ink);
  color: var(--milk);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   Sayfa hero (anasayfa dışı sayfaların üst başlığı)
   ============================================================ */
.page-hero {
  padding: 80px 0 56px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(192, 24, 90, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-hero-lede {
  font-size: 1.1rem;
  max-width: 640px;
  color: var(--ink-soft);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 56px 0 40px;
  }
}

/* ============================================================
   Form (genişletilmiş)
   ============================================================ */
.form-block {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.form-sub {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-block .btn {
  margin-top: 8px;
}

@media (max-width: 600px) {
  .form-block {
    padding: 28px 22px;
  }
}

/* Checkbox ile etiket aynı satırda */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 12px;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Form gönderildi başarı durumu */
.form-success {
  text-align: center;
  padding: 56px 36px;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--milk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}

.form-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.form-success p {
  max-width: 460px;
  margin: 0 auto;
  color: var(--ink-soft);
}

/* ============================================================
   Tarama formu yönlendirme kartı
   ============================================================ */
.tarama-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.tarama-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.tarama-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.tarama-card-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.tarama-card-content p {
  font-size: 0.96rem;
  margin-bottom: 16px;
}

@media (max-width: 720px) {
  .tarama-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }
  .tarama-card-icon {
    margin: 0 auto;
  }
}

/* ============================================================
   İletişim kartları (telefon / wa / adres)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.2s ease;
}

.contact-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--milk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.contact-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
}

.contact-item a,
.contact-item > span:not(.contact-label):not(.placeholder-text) {
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--accent);
}

.placeholder-item .placeholder-text {
  font-size: 0.88rem;
  color: var(--ink-light);
  font-style: italic;
}

.contact-address {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   WhatsApp yüzen buton
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--milk);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1DA851;
  color: var(--milk);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
}

/* ============================================================
   İletişim — telefon satırları (renk şeritli)
   ============================================================ */
.phone-row {
  padding: 14px 16px;
  border-left: 3px solid var(--border-mid);
  margin-bottom: 16px;
  background: var(--paper);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.phone-row:last-child {
  margin-bottom: 0;
}

.phone-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.phone-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.phone-person {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.phone-number {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.phone-desc {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.45;
  margin-bottom: 12px;
}

.phone-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pa-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.pa-btn:hover {
  transform: translateY(-1px);
}

.pa-btn.pa-call {
  background: rgba(46, 91, 186, 0.08);
  color: var(--primary);
}

.pa-btn.pa-call:hover {
  background: rgba(46, 91, 186, 0.14);
  color: var(--primary);
}

.pa-btn.pa-wa {
  background: rgba(37, 211, 102, 0.10);
  color: #1DA851;
}

.pa-btn.pa-wa:hover {
  background: rgba(37, 211, 102, 0.18);
  color: #1DA851;
}

/* ============================================================
   İletişim — telefon şeridi (5 mini kart, üst renkli şerit)
   ============================================================ */
.phones-strip {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.phones-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.phones-strip-head h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: 0;
}

.phones-strip-note {
  font-size: 0.82rem;
  color: var(--ink-light);
  letter-spacing: 0.02em;
}

.phones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .phones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .phones-grid {
    grid-template-columns: 1fr;
  }
}

.pcard {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pcard-color, var(--border-mid));
}

.pcard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pcard .pl-row,
.pcard .phone-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pcard .phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.pcard .phone-header-text {
  flex: 1;
  min-width: 0;
}

.pcard .phone-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 25%;
  flex-shrink: 0;
}

.pcard div.phone-avatar.ph {
  min-height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pcard-color, var(--primary)), var(--accent));
  color: var(--milk);
  font-family: 'DM Serif Display', serif;
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .pcard .phone-avatar,
  .pcard div.phone-avatar.ph {
    width: 40px;
    height: 40px;
  }
  .pcard div.phone-avatar.ph {
    font-size: 0.85rem;
  }
}

.pcard .pl {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.pcard .pp {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.pcard .pn {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.pcard .pd {
  font-size: 0.78rem;
  color: var(--ink-light);
  line-height: 1.45;
  flex-grow: 1;
}

.pcard .pa {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.pcard .pa .ar,
.pcard .pa .wa {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.pcard .pa .ar {
  background: rgba(46, 91, 186, 0.08);
  color: var(--primary);
}

.pcard .pa .ar:hover {
  background: rgba(46, 91, 186, 0.14);
  color: var(--primary);
  transform: translateY(-1px);
}

.pcard .pa .wa {
  background: rgba(37, 211, 102, 0.10);
  color: #1DA851;
}

.pcard .pa .wa:hover {
  background: rgba(37, 211, 102, 0.18);
  color: #1DA851;
  transform: translateY(-1px);
}

/* ============================================================
   İletişim — sekmeli form bloğu
   ============================================================ */
.forms-block {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-sm);
}

.forms-head {
  margin-bottom: 24px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.forms-head .eyebrow {
  display: block;
  margin-bottom: 10px;
}

.forms-head h2 {
  margin-bottom: 12px;
}

.forms-head p {
  font-size: 1.02rem;
}

@media (max-width: 600px) {
  .forms-block {
    padding: 24px 18px 20px;
  }
}

/* Way selector cards — 3 büyük seçici */
.way-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 720px) {
  .way-grid {
    grid-template-columns: 1fr;
  }
}

.way-card {
  position: relative;
  background: var(--milk);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 20px 20px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.way-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
}

.way-card .way-ic {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.way-card .way-h {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.way-card .way-d {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.way-card .way-meta {
  font-size: 0.78rem;
  color: var(--ink-light);
  letter-spacing: 0.02em;
  margin-top: auto;
}

/* Renk varyantları — --way-color CSS değişkeni */
.way-card.w1 {
  --way-color: #2E5BBA;
}
.way-card.w1 .way-ic {
  background: rgba(46, 91, 186, 0.10);
  color: var(--primary);
}

.way-card.w2 {
  --way-color: #F39C5C;
}
.way-card.w2 .way-ic {
  background: linear-gradient(135deg, rgba(61, 207, 196, 0.20), rgba(243, 156, 92, 0.20));
}

.way-card.w3 {
  --way-color: #C0185A;
}
.way-card.w3 .way-ic {
  background: rgba(192, 24, 90, 0.10);
  color: var(--accent);
}

/* Aktif durum */
.way-card.active {
  border-color: var(--way-color);
  background: linear-gradient(180deg, var(--milk) 0%, color-mix(in srgb, var(--way-color) 8%, var(--milk)) 100%);
  box-shadow: 0 4px 14px rgba(20, 20, 40, 0.06);
}

.way-card.active::after {
  content: '↓';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--way-color);
  color: var(--milk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(20, 20, 40, 0.12);
  z-index: 2;
}

/* İçerik kartı (aktif yolun içeriği) */
.way-content {
  position: relative;
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
  animation: wayFade 0.25s ease;
}

.way-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 0 0 3px 3px;
}

@keyframes wayFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .way-content {
    padding: 24px 18px 20px;
  }
}

/* ============================================================
   Hakkımızda — biyografi 2 sütun
   ============================================================ */
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.bio-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: 50% 30%;
  background: linear-gradient(135deg, rgba(46, 91, 186, 0.08), rgba(192, 24, 90, 0.08));
}

.bio-text .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.bio-text h2 {
  margin-bottom: 20px;
}

.bio-text em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 880px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bio-portrait {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ============================================================
   Hakkımızda — TipsStrip "yakında" rozeti (sadece bu sayfada)
   ============================================================ */
.tips-with-badges .tip-card {
  position: relative;
}

.tip-coming {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(243, 156, 92, 0.18);
  color: #8B4A1E;
  text-transform: lowercase;
}

/* Tarama steps (Tab 2 & 3 ortak) */
.tarama-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.tstep {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 16px;
}

.tstep .num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.tstep h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.tstep p {
  font-size: 0.84rem;
  color: var(--ink-light);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 720px) {
  .tarama-steps {
    grid-template-columns: 1fr;
  }
}

.tarama-meta {
  font-size: 0.84rem;
  color: var(--ink-light);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* ============================================================
   İletişim — kurum bilgileri (3 katman: info card + sosyal pill + harita)
   ============================================================ */

/* Katman 1 — üst beyaz card */
.contact-info-block {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info-head {
  margin-bottom: 24px;
}

.contact-info-head .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.contact-info-head h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  margin: 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--milk);
  flex-shrink: 0;
}

.contact-info-card-icon-1 { background: linear-gradient(135deg, #C0185A, #F39C5C); }
.contact-info-card-icon-2 { background: linear-gradient(135deg, #3DCFC4, #2E5BBA); }
.contact-info-card-icon-3 { background: linear-gradient(135deg, #2E5BBA, #C0185A); }

.contact-info-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.contact-info-card-value {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
}

.contact-info-card-value a {
  color: var(--primary);
}

.contact-info-card-value a:hover {
  color: var(--accent);
}

.contact-info-card-link {
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.contact-info-card-link:hover {
  color: var(--accent);
}

/* Katman 2 — sosyal medya pill grid */
.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.contact-social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-social-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
}

.contact-social-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-social-logo-instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045);
}

.contact-social-logo-youtube {
  background: #FF0000;
}

.contact-social-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.contact-social-platform {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.contact-social-handle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  word-break: break-all;
}

.contact-social-card:hover .contact-social-handle {
  color: var(--primary);
}

.contact-social-qr {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid var(--border-soft);
  background: var(--milk);
  flex-shrink: 0;
  display: block;
}

/* Katman 3 — harita */
.contact-map-section {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.contact-map-section iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

@media (max-width: 720px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-block {
    padding: 24px 20px;
  }
  .contact-map-section iframe {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .contact-social-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Kadro — müdür bloğu
   ============================================================ */
.director-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.director-portrait {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-xl);
  font-size: 4rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.20);
}

.director-content .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.director-content h2 {
  margin-bottom: 4px;
}

.director-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.director-content p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.director-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.director-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.director-links a:hover {
  color: var(--accent);
}

@media (max-width: 720px) {
  .director-block {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
  }
  .director-portrait {
    width: 220px;
    height: 220px;
    font-size: 3.2rem;
    margin: 0 auto;
  }
  .director-links {
    justify-content: center;
  }
}

/* ============================================================
   Kadro — filtre çubuğu
   ============================================================ */
.staff-filters-wrap {
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 28px;
}

.staff-filters {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.staff-filters::-webkit-scrollbar {
  display: none;
}

.staff-filter {
  position: relative;
  padding: 10px 14px;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.staff-filter::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.staff-filter:hover {
  color: var(--primary);
}

.staff-filter.active {
  color: var(--ink);
  font-weight: 600;
}

.staff-filter.active::after {
  transform: scaleX(1);
}

.staff-filter .count {
  margin-left: 4px;
  font-size: 0.78rem;
  color: var(--ink-light);
  font-weight: 400;
}

.staff-filter.active .count {
  color: var(--ink-soft);
}

/* ============================================================
   Kadro — kart grid + kart
   ============================================================ */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.staff-card {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 16px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.staff-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
}

.staff-avatar {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: 220px;
  min-height: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--milk);
  font-family: 'DM Serif Display', serif;
  font-style: normal;
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  object-position: 50% 25%;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.staff-avatar-1 { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.staff-avatar-2 { background: linear-gradient(135deg, var(--primary-light), var(--accent-light)); }
.staff-avatar-3 { background: linear-gradient(135deg, var(--accent-light), var(--accent)); }
.staff-avatar-4 { background: linear-gradient(135deg, var(--accent), var(--primary)); }
.staff-avatar-5 { background: linear-gradient(135deg, var(--primary), var(--accent)); }

.staff-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}

.staff-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin: 0;
}

.staff-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 4px 0 0;
}

/* ---------- Eğitim kadromuz: 3'lü dikey portre grid (TeacherSection scope) ---------- */
.teacher-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.teacher-grid .staff-card {
  background: transparent;
  border: none;
  padding: 0;
  gap: 0;
}

.teacher-grid .staff-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
  border: none;
}

.teacher-grid .staff-avatar {
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 100%;
  object-position: 50% 20%;
  margin-bottom: 12px;
  font-size: 3.6rem;
}

.teacher-grid .staff-name {
  font-size: 1.125rem;
  margin-top: 0;
}

.teacher-grid .staff-title {
  margin-top: 4px;
}

@media (max-width: 900px) {
  .teacher-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .teacher-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   SÜREÇ SAYFASI - TIMELINE
   ============================================ */

.process-timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.process-timeline .process-step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.process-timeline .process-step-last {
  margin-bottom: 0;
}

/* Sol - marker + çizgi */
.process-marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.process-marker::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 48px);
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  opacity: 0.3;
}

.process-step-last .process-marker::after {
  display: none;
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--milk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'DM Serif Display', serif;
  box-shadow: 0 4px 16px rgba(46, 91, 186, 0.25);
  position: relative;
  z-index: 2;
}

/* Sağ - kart */
.process-card {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  transition: all 0.2s ease;
}

.process-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(46, 91, 186, 0.12);
  transform: translateY(-2px);
}

.process-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 0.75rem 0;
}

.process-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* Meta badges */
.process-meta {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.meta-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.meta-badge.badge-free {
  background: rgba(61, 207, 196, 0.1);
  color: #0F6E56;
  border-color: rgba(61, 207, 196, 0.3);
}

/* Note kutusu */
.process-note {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--paper);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.process-note strong {
  color: var(--accent);
  font-weight: 600;
}

/* CTA block (süreç sayfası — mevcut .cta-block kart stilinden farklı) */
.process-cta {
  background: linear-gradient(135deg, rgba(46, 91, 186, 0.05) 0%, rgba(61, 207, 196, 0.05) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--ink);
  margin: 0 0 1rem 0;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.5rem 0;
}

/* Mobile */
@media (max-width: 720px) {
  .process-timeline .process-step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }

  .process-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .process-marker::after {
    top: 52px;
    height: calc(100% + 36px);
  }

  .process-card {
    padding: 1.25rem 1.5rem;
  }

  .process-card h3 {
    font-size: 1.25rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }
}

/* ============================================================
   Destek alanı sayfaları — ortak yardımcılar + sayfa-spesifik vurgular
   ============================================================ */

/* Sayfa-spesifik vurgu rengi — body class ile aktive olur */
body.area-dil-konusma {
  --area-accent:        #3DCFC4;
  --area-accent-dark:   #2BB8AD;
  --area-accent-soft:   rgba(61, 207, 196, 0.04);
  --area-accent-medium: rgba(61, 207, 196, 0.15);
}

body.area-oges {
  --area-accent:        #F39C5C;
  --area-accent-dark:   #E08543;
  --area-accent-soft:   rgba(243, 156, 92, 0.04);
  --area-accent-medium: rgba(243, 156, 92, 0.15);
}

body.area-otizm {
  --area-accent:        #C0185A;
  --area-accent-dark:   #A01448;
  --area-accent-soft:   rgba(192, 24, 90, 0.04);
  --area-accent-medium: rgba(192, 24, 90, 0.15);
}

body.area-zihin {
  --area-accent:        #2E5BBA;
  --area-accent-dark:   #244A99;
  --area-accent-soft:   rgba(46, 91, 186, 0.04);
  --area-accent-medium: rgba(46, 91, 186, 0.15);
}

body.area-sss {
  --area-accent:        #7B2CBF;
  --area-accent-dark:   #5E22A3;
  --area-accent-soft:   rgba(123, 44, 191, 0.04);
  --area-accent-medium: rgba(123, 44, 191, 0.15);
}

body.area-veli,
body.area-tarama {
  --area-accent:        #2D8B68;
  --area-accent-dark:   #1F6E50;
  --area-accent-soft:   rgba(45, 139, 104, 0.04);
  --area-accent-medium: rgba(45, 139, 104, 0.15);
  --area-bg-soft:       #F0F5F2;
}

.bg-soft {
  background: var(--area-accent-soft, rgba(0, 0, 0, 0.02));
}

/* Hero — 2 sütun layout (sol metin, sağ illüstrasyon) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-illustration {
    display: none;
  }
}

/* Bölüm 1 — kart ikon dairesi (service-num yerine) */
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--area-accent, var(--primary)), var(--area-accent-dark, var(--primary-dark)));
  color: var(--milk);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Bölüm 3 — bilgi çerçevesi (info-frame, transparent + soft border) */
.info-frame {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: transparent;
}

.info-frame-visual {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--area-accent-medium, rgba(0, 0, 0, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--area-accent-dark, var(--primary));
}

.info-frame-visual svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-frame-body p {
  margin-bottom: 12px;
}

.info-frame-body p:last-of-type {
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .info-frame {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .info-frame-visual {
    width: 72px;
    height: 72px;
  }
  .info-frame-visual svg {
    width: 36px;
    height: 36px;
  }
}

/* Sayfa-spesifik override'lar — tüm destek alanı sayfaları (DRY) */
body[class*="area-"] .page-hero::after {
  background: radial-gradient(circle, var(--area-accent-medium), transparent 60%);
}

body[class*="area-"] .page-hero .eyebrow {
  color: var(--area-accent-dark);
}

body[class*="area-"] .section-head .eyebrow {
  color: var(--area-accent-dark);
}

body[class*="area-"] .service-card.s1::before,
body[class*="area-"] .service-card.s2::before,
body[class*="area-"] .service-card.s3::before,
body[class*="area-"] .service-card.s4::before {
  background: var(--area-accent);
}

body[class*="area-"] .diff-num {
  background: linear-gradient(135deg, var(--area-accent), var(--area-accent-dark));
}

/* Destek alanı sayfaları — bölüm aralarını sıkıştır (kompakt-rahat hissi) */
body[class*="area-"] .section {
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (max-width: 768px) {
  body[class*="area-"] .section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* ============================================================
   SSS — accordion
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-mid);
}

.faq-item.open {
  border-color: var(--area-accent, var(--primary));
  box-shadow: inset 4px 0 0 var(--area-accent, var(--primary)), var(--shadow-sm);
}

.faq-question-wrap {
  margin: 0;
  font-size: 1rem;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
  background: var(--paper);
}

.faq-item.open .faq-question {
  color: var(--area-accent-dark, var(--primary-dark));
}

.faq-num {
  display: inline-block;
  font-family: 'DM Serif Display', serif;
  font-size: 0.85rem;
  color: var(--area-accent, var(--primary));
  letter-spacing: 0.04em;
  flex-shrink: 0;
  min-width: 28px;
}

.faq-question-text {
  flex: 1;
  line-height: 1.4;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

/* Universal max-height collapsing — tüm tarayıcılarda kararlı */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 1500px;
}

.faq-answer-inner {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.96rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Accordion içinde alt link grubu (veli-rehberi Bölüm 3) */
.faq-links {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-links a {
  font-size: 0.9rem;
  color: var(--area-accent-dark, var(--primary));
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-links a:hover {
  text-decoration: underline;
}

.faq-links .faq-link-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
}

.faq-links .faq-link-pdf {
  font-size: 0.7rem;
  color: var(--ink-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 4px;
}

/* ============================================================
   Veli rehberi — sayfa-spesifik
   ============================================================ */

/* Mini TOC — hero altı statik kart */
.toc-card {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}

.toc-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin: 0 0 18px;
}

.toc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  gap: 6px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-list li {
  margin: 0;
}

.toc-list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.toc-list a:hover {
  color: var(--area-accent-dark, var(--primary));
}

.toc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 0.85rem;
  color: var(--area-accent, var(--primary));
  flex-shrink: 0;
  min-width: 28px;
}

@media (max-width: 720px) {
  .toc-card {
    padding: 22px 20px;
  }
  .toc-list {
    grid-template-columns: 1fr;
  }
}

/* Resource grid — Bölüm 5: MEB kaynakları (4 kart) */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.resource-card {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.resource-card:hover {
  border-color: var(--area-accent, var(--primary));
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.resource-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  line-height: 1;
}

.resource-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--area-accent, var(--primary));
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-card h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  line-height: 1.3;
}

.resource-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0 0 14px;
  line-height: 1.55;
  flex: 1;
}

.resource-card-meta {
  font-size: 0.75rem;
  color: var(--area-accent-dark, var(--primary));
  letter-spacing: 0.04em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Rights grid — Bölüm 2: 5 hak kartı */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.rights-card {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--area-accent, var(--primary));
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.rights-card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  line-height: 1.3;
}

.rights-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

/* Places — Bölüm 7: Bursa yararlı yerler (alt gruplar + kurum kartları) */
.places-subgroup {
  margin-bottom: 56px;
}

.places-subgroup:last-of-type {
  margin-bottom: 0;
}

.places-subgroup-head {
  margin-bottom: 24px;
}

.places-subgroup-head h3 {
  font-size: 1.35rem;
  color: var(--area-accent-dark, var(--primary));
  margin: 0 0 8px;
  line-height: 1.3;
}

.places-subgroup-head p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.places-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.places-card {
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.places-card:hover {
  border-color: var(--area-accent, var(--primary));
  box-shadow: var(--shadow-sm);
}

.places-card h4 {
  font-size: 1rem;
  margin: 0 0 4px;
  line-height: 1.3;
  color: var(--ink);
}

.places-card .places-sub {
  font-size: 0.82rem;
  color: var(--ink-light);
  margin: -2px 0 6px;
  font-style: italic;
}

.places-meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.places-meta-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.places-card a {
  color: var(--area-accent-dark, var(--primary));
  text-decoration: none;
  word-break: break-word;
}

.places-card a:hover {
  text-decoration: underline;
}

.places-empty-phone {
  font-style: italic;
  color: var(--ink-light);
}

.places-note {
  margin-top: 32px;
  padding: 14px 18px;
  background: var(--area-accent-soft, var(--paper));
  border-left: 3px solid var(--area-accent-medium, var(--border-soft));
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.5;
}

/* Section divider — büyük rakam + h2 + alt metin */
.section-divider {
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.section-divider-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--area-accent, var(--primary));
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.section-divider h2 {
  margin: 0 0 8px;
}

.section-divider-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

@media (max-width: 720px) {
  .section-divider-num {
    font-size: 2rem;
  }
}

/* Bölüm içi giriş paragrafı (section-divider sonrası) */
.section-intro {
  margin: 0 0 40px;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Bölüm zemin — açık yeşil-krem (veli-rehberi için) */
.section-bg-soft {
  background: var(--area-bg-soft, var(--paper));
}

/* Disclaimer / uyarı kutusu — amber tonlu */
.disclaimer-box {
  margin-top: 40px;
  padding: 22px 26px;
  background: rgba(243, 156, 92, 0.08);
  border-left: 4px solid var(--accent-light);
  border-radius: var(--radius-md);
}

.disclaimer-box-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 12px;
  color: #8B4A1E;
  display: flex;
  align-items: center;
  gap: 8px;
}

.disclaimer-box p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .places-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .places-subgroup-head h3 {
    font-size: 1.2rem;
  }
}

/* Hero alt bilgi kutusu (Bölüm 1 sonu) */
.hint-box {
  background: var(--area-accent-soft, var(--paper));
  border: 1px solid var(--area-accent-medium, var(--border-soft));
  border-left: 4px solid var(--area-accent, var(--primary));
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-top: 32px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.hint-box strong {
  color: var(--ink);
}

/* Process-timeline — sayfa-spesifik vurgu rengiyle override */
body[class*="area-"] .process-number {
  background: linear-gradient(135deg, var(--area-accent), var(--area-accent-dark));
  box-shadow: 0 4px 16px var(--area-accent-medium);
}

body[class*="area-"] .process-marker::after {
  background: linear-gradient(180deg, var(--area-accent) 0%, var(--area-accent-dark) 100%);
}

body[class*="area-"] .process-card:hover {
  border-color: var(--area-accent);
  box-shadow: 0 6px 24px var(--area-accent-medium);
}

/* ============================================================
   Kadro — Danışman bloğu (Hatice)
   ============================================================ */
.consultant-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  max-width: 880px;
  margin: 0 auto;
}

.consultant-portrait {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: 50% 25%;
  flex-shrink: 0;
}

.consultant-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.2;
}

.consultant-title {
  color: var(--area-accent-dark, var(--primary));
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.consultant-content p {
  margin: 0 0 14px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.consultant-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .consultant-block {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }
  .consultant-portrait {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }
  .consultant-content p {
    text-align: left;
  }
}

/* ============================================================
   Hakkımızda — Mekan bölümü
   ============================================================ */
.mekan-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mekan-content > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

.mekan-highlight {
  color: var(--primary);
  font-weight: 600;
}

.mekan-photo-grid {
  display: grid;
  gap: 14px;
}

.mekan-photo-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.mekan-photo-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mekan-photo-grid.cols-mini {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.mekan-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--border-soft);
}

.mekan-photo.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--ink-light);
  text-align: center;
  padding: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .mekan-photo-grid.cols-2,
  .mekan-photo-grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .mekan-photo-grid.cols-mini {
    grid-template-columns: repeat(2, 1fr);
  }
  .mekan-content {
    gap: 28px;
  }
}

/* ============================================================
   Anasayfa — Mekan tanıtımı ("Burası bir okul değil, bir ev")
   ============================================================ */
.home-mekan-tanitim {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.home-mekan-tanitim__head {
  text-align: center;
  margin-bottom: 36px;
}

.home-mekan-tanitim__head .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.home-mekan-tanitim__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.home-mekan-tanitim__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.home-mekan-tanitim__cell {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border-soft);
  aspect-ratio: 4 / 3;
}

.home-mekan-tanitim__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-mekan-tanitim__caption {
  text-align: center;
  margin: 24px auto 0;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--ink-soft);
  max-width: 720px;
}

@media (max-width: 768px) {
  .home-mekan-tanitim__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-mekan-tanitim__caption {
    font-size: 1.3rem;
  }
}

/* ============================================================
   Anasayfa — Atmosfer şeridi (5 kare, footer öncesi)
   ============================================================ */
.home-atmosfer-serit__kicker {
  text-align: center;
}

.home-atmosfer-serit__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}

.home-atmosfer-serit__cell {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--border-soft);
  aspect-ratio: 1 / 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-atmosfer-serit__cell.is-featured {
  box-shadow: 0 6px 24px rgba(46, 91, 186, 0.12);
}

.home-atmosfer-serit__cell:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.home-atmosfer-serit__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .home-atmosfer-serit__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .home-atmosfer-serit__cell:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 60%;
    margin: 0 auto;
    width: 100%;
  }
}

/* ============================================================
   Akademi sayfası — tabs + video grid + modal
   Body class: area-akademi  (vurgu: logo mavi #2E5BBA)
   ============================================================ */

body.area-akademi {
  --area-accent:        #2E5BBA;
  --area-accent-dark:   #1F3F87;
  --area-accent-soft:   rgba(46, 91, 186, 0.04);
  --area-accent-medium: rgba(46, 91, 186, 0.15);
}

/* Hero — tek sütun, ortalı */
.akademi-hero-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* Sekme şeridi */
.akademi-tabs {
  border-bottom: 1px solid var(--border-soft);
  background: var(--milk);
}

.akademi-tabs-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.akademi-tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 18px 4px;
  margin-right: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-light);
  cursor: pointer;
  position: relative;
  transition: color 0.15s ease;
}

.akademi-tab:hover {
  color: var(--ink-soft);
}

.akademi-tab.is-active {
  color: var(--ink);
  font-weight: 600;
}

.akademi-tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--area-accent);
  border-radius: 2px 2px 0 0;
}

.akademi-tab:focus-visible {
  outline: 2px solid var(--area-accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Tab panel — 200ms fade */
.akademi-tabpanel-wrap {
  animation: akademi-fade-in 0.2s ease;
}

@keyframes akademi-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Bölüm başlığı (sekme içinde) */
.akademi-section-head {
  text-align: center;
  margin-bottom: 36px;
}

.akademi-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 10px 0;
  color: var(--ink);
}

.akademi-section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

/* Video grid: 3 sütun → 2 → 1 */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* Video kartı (button olarak render) */
.video-card {
  appearance: none;
  display: flex;
  flex-direction: column;
  background: var(--milk);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.10);
  border-color: var(--area-accent-medium);
  outline: none;
}

.video-card:focus-visible {
  outline: 2px solid var(--area-accent);
  outline-offset: 2px;
}

/* Thumbnail + overlay */
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0A1530;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.04);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin-top: -32px;
  margin-left: -32px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.18s ease, background 0.18s ease;
}

.video-card:hover .video-play {
  background: #fff;
  transform: scale(1.08);
}

.video-play svg {
  width: 30px;
  height: 30px;
  fill: var(--area-accent);
  margin-left: 3px; /* play ikonunun optik ortası */
}

.video-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,0.78);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* Kart gövdesi */
.video-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--area-accent-dark);
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.video-card-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}

.video-card-body p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Info-frame ek başlık (Meslektaşlar sekmesinde kullanılıyor) */
.info-frame-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  margin: 0 0 8px 0;
  color: var(--ink);
}

/* ---------- Video Modal ---------- */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 28, 0.86);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: akademi-fade-in 0.18s ease;
}

.video-modal-content {
  width: 100%;
  max-width: 1000px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.video-modal-iframe-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 1001;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  background: rgba(0,0,0,0.85);
  transform: scale(1.06);
  outline: none;
}

.video-modal-close svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

@media (max-width: 640px) {
  .video-modal-overlay { padding: 12px; }
  .video-modal-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }
}

/* ---------- Alt-bölüm başlığı (sekme içinde) ---------- */
.akademi-subsection-head {
  margin: 0 0 18px 0;
}

.akademi-subsection-head-mt {
  margin-top: 56px;
}

.akademi-subsection-head h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}

/* ---------- Kısa kesit grid (9:16) ---------- */
.video-grid-shorts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .video-grid-shorts { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}

@media (max-width: 720px) {
  .video-grid-shorts { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .video-grid-shorts { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Kısa kart — minimal, dar, dikey thumbnail */
.video-card-short {
  appearance: none;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  gap: 10px;
}

.video-card-short:focus-visible {
  outline: 2px solid var(--area-accent);
  outline-offset: 4px;
  border-radius: 12px;
}

/* Dikey 9:16 thumbnail kutusu */
.video-thumb-vert {
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.video-card-short:hover .video-thumb-vert,
.video-card-short:focus-visible .video-thumb-vert {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  border-color: var(--area-accent-medium);
}

.video-thumb-vert img {
  /* maxresdefault.jpg 16:9'dur; cover + center ile shorts içeriğinin orta sütunu görünür */
  object-position: center;
}

/* Küçük play overlay (kısa kart için) */
.video-play-sm {
  width: 44px;
  height: 44px;
  margin-top: -22px;
  margin-left: -22px;
}

.video-play-sm svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

/* Kısa kart başlığı — kart altında, küçük */
.video-card-short-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0 2px;
}

/* ============================================================
   Spektrum listesi — destek alanı sayfalarında "Bu alanda neyle
   çalışıyoruz?" bölümünde kullanılır. Veli dilinde ad + bilimsel
   karşılık + kısa açıklama. Taranabilir, bg-paper zeminde okunaklı.
   ============================================================ */

.spectrum-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}

.spectrum-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-size: 1rem;
}

.spectrum-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--area-accent, var(--primary));
  flex-shrink: 0;
}

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

.spectrum-list em {
  color: var(--ink-light);
  font-style: italic;
  font-size: 0.92em;
}

@media (max-width: 640px) {
  .spectrum-list { gap: 16px; }
  .spectrum-list li { line-height: 1.7; }
}

/* ============================================================
   Tarama Formu sayfası — area-accent renkli butonlar + CTA satırı
   (Spec: primary CTA area-accent (yeşil) tonunda olsun)
   ============================================================ */

body.area-tarama .btn-primary {
  background: var(--area-accent);
}

body.area-tarama .btn-primary:hover {
  background: var(--area-accent-dark);
}

body.area-tarama .btn-outline {
  color: var(--area-accent);
  border-color: var(--area-accent);
}

body.area-tarama .btn-outline:hover {
  background: var(--area-accent);
  color: var(--milk);
}

.tarama-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 480px) {
  .tarama-cta-row .btn { width: 100%; justify-content: center; }
}
