/* ===== TİYSAT kurumsal tema =====
   Renkler: petrol lacivert zemin, turkuaz marka rengi, mint vurgu */
:root {
  --teal: #4a8e98;
  --teal-dark: #39707a;
  --navy: #0c2431;
  --navy-2: #123244;
  --mint: #6fcf97;
  --ink: #1d2b33;
  --muted: #5b6b74;
  --line: #e2e9ec;
  --light: #f4f8f9;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(12, 36, 49, .10);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: var(--white); line-height: 1.65; }
img { max-width: 100%; }
a { color: var(--teal); text-decoration: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---- Sabit üst menü ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12, 36, 49, .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand img { height: 44px; display: block; border-radius: 6px; }
.main-nav > ul { list-style: none; display: flex; gap: 4px; }
.main-nav a {
  display: block; padding: 10px 14px; color: #dfe9ed; font-weight: 600; font-size: 14.5px;
  border-radius: 8px; transition: color .2s, background .2s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.main-nav .caret { font-size: 10px; opacity: .7; }
.main-nav li { position: relative; }
.sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border-radius: 10px; box-shadow: var(--shadow);
  padding: 8px; display: none; list-style: none; flex-direction: column; gap: 2px;
}
.sub-menu a { color: var(--ink); }
.sub-menu a:hover { background: var(--light); color: var(--teal-dark); }
.main-nav li.has-sub.open .sub-menu { display: flex; }
.main-nav li.has-sub > a { cursor: pointer; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 26px; cursor: pointer; }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: clamp(420px, 58vh, 600px); display: flex; align-items: center;
  background-size: cover; background-position: center 30%;
  margin-top: 0; padding-top: var(--header-h);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,30,41,.94) 0%, rgba(12,36,49,.82) 45%, rgba(74,142,152,.45) 100%);
}
.hero-content { position: relative; width: 100%; max-width: 1240px; color: #fff; padding-top: 28px; padding-bottom: 44px; }
.hero-content h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 800; line-height: 1.15;
  max-width: 680px; letter-spacing: -.5px;
}
.hero-content p { margin: 16px 0 26px; font-size: clamp(.98rem, 1.4vw, 1.15rem); max-width: 620px; color: #d7e4e9; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Butonlar ---- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15px; transition: transform .15s, box-shadow .15s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(120deg, var(--teal), var(--mint)); color: var(--navy); box-shadow: 0 8px 24px rgba(111,207,151,.35); }
.btn-ghost { border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline { border: 2px solid var(--teal); color: var(--teal-dark); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ---- Bölümler ---- */
.section { padding: 84px 0; }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-dark  { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #e6eef2; }
.bg-teal  { background: linear-gradient(150deg, var(--teal-dark) 0%, var(--teal) 100%); color: #fff; }
.bg-dark h2, .bg-teal h2, .bg-dark h3, .bg-teal h3 { color: #fff; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -.4px; }
.section-sub { margin-top: 12px; color: var(--muted); font-size: 1.05rem; }
.bg-dark .section-sub, .bg-teal .section-sub { color: rgba(255,255,255,.8); }
.section-actions { text-align: center; margin-top: 40px; }

/* ---- Grid ---- */
.grid { display: grid; gap: 26px; }
.grid-1 { grid-template-columns: 1fr; }
.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-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ---- Kartlar ---- */
.card {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow); border-top: 4px solid var(--teal);
  transition: transform .2s;
}
.card:hover { transform: translateY(-6px); }
.card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--navy); }
.card .rich { color: var(--muted); font-size: .96rem; }
.card-img { border-radius: 10px; margin-bottom: 16px; }
.card-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: .92rem; }

/* ---- CTA ---- */
.cta-box { text-align: center; max-width: 820px; margin: 0 auto; }
.cta-box .rich { font-size: 1.1rem; margin-bottom: 30px; color: inherit; }

/* ---- Üyeler ---- */
.member-group-title {
  margin: 46px 0 20px; font-size: 1.25rem; font-weight: 800;
  padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,.25);
}
.member-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.member-card {
  background: #fff; border: 1.5px solid transparent; border-radius: 10px; padding: 12px 10px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  min-height: 104px; transition: transform .15s;
}
.member-card:hover { transform: scale(1.05); }
.member-card img { max-height: 78px; max-width: 100%; object-fit: contain; }
/* Logosu olmayan üyeler için yedek metin */
.member-card span { font-size: 11.5px; font-weight: 700; color: var(--muted); line-height: 1.25; }
/* Beyaz (saydam zeminli) logolar: kutu içi saydam, %45 beyaz opak border */
.member-card--white { background: transparent; border-color: rgba(255,255,255,.45); }
.member-card--white span { color: rgba(255,255,255,.85); }

/* ---- Üyelik başvuru formu ---- */
.app-form { max-width: 860px; margin: 0 auto; }
.app-fieldset { border: 0; padding: 0; margin: 0 0 34px; }
.app-fieldset legend {
  display: flex; align-items: center; gap: 12px; width: 100%;
  font-size: 1.08rem; font-weight: 800; color: var(--navy);
  padding-bottom: 12px; margin-bottom: 20px; border-bottom: 2px solid var(--line);
}
.app-step {
  width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800;
}

/* Adım göstergesi (stepper) */
.app-stepper {
  list-style: none; display: flex; gap: 0; margin: 0 0 34px; padding: 0;
  counter-reset: none;
}
.app-stepper li {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; padding-top: 4px; color: var(--muted); font-size: .85rem; font-weight: 700;
}
/* Adımlar arası bağlayıcı çizgi */
.app-stepper li:not(:last-child)::after {
  content: ''; position: absolute; top: 21px; left: 50%; width: 100%; height: 3px;
  background: var(--line); z-index: 0;
}
.app-stepper li.is-done:not(:last-child)::after { background: var(--mint); }
.app-stepper-num {
  position: relative; z-index: 1;
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 3px solid var(--line); color: var(--muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 800; transition: background .2s, border-color .2s, color .2s;
}
.app-stepper li.is-current .app-stepper-num {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-color: var(--teal-dark); color: #fff;
  box-shadow: 0 0 0 4px rgba(74, 142, 152, .18);
}
.app-stepper li.is-current .app-stepper-label { color: var(--navy); }
.app-stepper li.is-done { cursor: pointer; }
/* Tamamlanan adımda numara yerine onay işareti gösterilir */
.app-stepper li.is-done .app-stepper-num {
  background: var(--mint); border-color: var(--mint); color: transparent;
}
.app-stepper li.is-done .app-stepper-num::before {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.05rem;
}

/* Wizard modu: yalnızca etkin adım görünür (JS yoksa tüm adımlar açık kalır) */
.app-form.is-wizard [data-step]:not(.is-active),
.app-form.is-wizard [data-nav]:not(.is-active) { display: none; }

.app-nav, .app-actions { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.app-nav-hint { margin-right: auto; font-size: .82rem; color: var(--muted); font-weight: 700; }

@media (max-width: 600px) {
  .app-stepper-label { font-size: .74rem; text-align: center; }
  .app-nav, .app-actions { flex-wrap: wrap; }
  .app-nav-hint { width: 100%; margin-bottom: 4px; }
}

/* ---- İletişim sayfası ---- */
.ct-lead { max-width: 780px; margin: 0 auto 44px; text-align: center; color: var(--muted); font-size: 1.05rem; }

/* Hızlı iletişim kanalları */
.ct-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 56px; }
.ct-channel {
  background: #fff; border-radius: var(--radius); padding: 30px 26px; text-align: center;
  box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center;
  transition: transform .2s;
}
.ct-channel:hover { transform: translateY(-6px); }
.ct-channel-icon {
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
}
.ct-channel-icon svg { width: 24px; height: 24px; fill: #fff; }
.ct-channel h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.ct-channel p { font-size: .9rem; color: var(--muted); line-height: 1.6; flex: 1; }
.ct-channel-value { margin-top: 14px; font-weight: 700; color: var(--teal-dark); font-size: .95rem; word-break: break-word; }
.ct-channel-value:hover { color: var(--teal); }

/* Form + yan bilgi kolonu */
.ct-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 30px; align-items: start; }
.ct-form-card { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.ct-form-card h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.ct-form-card > p.ct-form-sub { color: var(--muted); font-size: .93rem; margin-bottom: 24px; }

.ct-form .ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-form label { display: block; margin-bottom: 16px; font-size: .86rem; font-weight: 700; color: var(--navy); }
.ct-form label .req { color: #c0392b; }
.ct-form input, .ct-form select, .ct-form textarea {
  width: 100%; margin-top: 7px; padding: 12px 15px; border-radius: 10px;
  border: 1.5px solid var(--line); background: #fff; font-family: inherit; font-size: .95rem;
  color: var(--ink); font-weight: 400;
}
.ct-form input:focus, .ct-form select:focus, .ct-form textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(74, 142, 152, .15);
}
.ct-form textarea { resize: vertical; min-height: 130px; }
.ct-form .ct-consent { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; font-size: .84rem; color: var(--muted); }
.ct-form .ct-consent input { width: auto; margin: 3px 0 0; flex: 0 0 auto; }
.ct-form-actions { display: flex; justify-content: flex-end; margin-top: 8px; }

/* Yan panel */
.ct-aside { display: flex; flex-direction: column; gap: 20px; }
.ct-info-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.ct-info-card h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--line); }
.ct-info-card p { font-size: .92rem; color: var(--muted); line-height: 1.7; }
.ct-info-card.is-dark { background: linear-gradient(140deg, var(--navy), var(--navy-2)); }
.ct-info-card.is-dark h3 { color: #fff; border-bottom-color: rgba(255, 255, 255, .18); }
.ct-info-card.is-dark p { color: rgba(255, 255, 255, .82); }
.ct-addr-labels { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.ct-addr-label {
  display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  background: rgba(74, 142, 152, .12); color: var(--teal-dark); padding: 3px 10px; border-radius: 999px;
}
.ct-info-card.is-dark .ct-addr-label { background: rgba(111, 207, 151, .2); color: var(--mint); }
.ct-social-row { display: flex; gap: 10px; margin-top: 4px; }
.ct-social-row a {
  width: 40px; height: 40px; border-radius: 50%; background: var(--light);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--teal-dark); transition: background .15s, color .15s, transform .15s;
}
.ct-social-row a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.ct-social-row svg { width: 18px; height: 18px; fill: currentColor; }

/* Harita */
.ct-map { margin-top: 56px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.ct-map iframe { width: 100%; height: 420px; border: 0; }

/* Form geri bildirimi */
.ct-alert {
  border-radius: 12px; padding: 14px 18px; margin-bottom: 20px; font-size: .93rem;
  background: rgba(111, 207, 151, .16); border: 1px solid var(--mint); color: #1e5c3a;
}
.ct-alert.is-error { background: #fdeceb; border-color: #e8a5a0; color: #8c2f26; }

@media (max-width: 1020px) {
  .ct-channels { grid-template-columns: 1fr; }
  .ct-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .ct-form .ct-row { grid-template-columns: 1fr; gap: 0; }
  .ct-form-card { padding: 24px; }
  .ct-map iframe { height: 300px; }
}

/* ---- Üyelik sayfası ---- */
.mb-lead { max-width: 860px; margin: 0 auto 44px; text-align: center; color: var(--muted); font-size: 1.02rem; }
.mb-block { margin-bottom: 56px; }
.mb-block-head { text-align: center; margin-bottom: 30px; }
.mb-block-head h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; color: var(--navy); }
.mb-block-head p { color: var(--muted); margin-top: 8px; }

/* Başvuru adımları */
.mb-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.mb-step {
  background: #fff; border-radius: var(--radius); padding: 28px 22px 24px; position: relative;
  box-shadow: var(--shadow); counter-increment: step;
}
.mb-step::before {
  content: counter(step); position: absolute; top: -16px; left: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem;
  box-shadow: 0 4px 12px rgba(74, 142, 152, .35);
}
.mb-step h3 { font-size: 1.02rem; color: var(--navy); margin: 10px 0 8px; }
.mb-step p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* Ücret kartları */
.mb-fees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
/* İki kartlı düzen: geniş ekranda ortalanır, kartlar aşırı yayılmaz */
.mb-fees--2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }
.mb-fee {
  background: #fff; border-radius: var(--radius); padding: 30px 26px; text-align: center;
  box-shadow: var(--shadow); border-top: 4px solid var(--teal);
}
.mb-fee.is-primary { background: linear-gradient(150deg, var(--navy), var(--navy-2)); border-top-color: var(--mint); }
.mb-fee.is-primary h3, .mb-fee.is-primary .mb-fee-amount { color: #fff; }
.mb-fee.is-primary .mb-fee-note { color: rgba(255, 255, 255, .75); }
.mb-fee h3 { font-size: .92rem; text-transform: uppercase; letter-spacing: .5px; color: var(--teal-dark); margin-bottom: 14px; }
.mb-fee-amount { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.mb-fee-amount small { display: block; font-size: .8rem; font-weight: 600; color: var(--muted); margin-top: 4px; }
.mb-fee-note { font-size: .84rem; color: var(--muted); margin-top: 12px; line-height: 1.55; }
.mb-fee-badge {
  display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .5px;
  background: var(--mint); color: var(--navy); padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}

/* Banka hesapları */
.mb-banks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.mb-bank { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.mb-bank h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.mb-bank .mb-bank-holder { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.mb-iban-row { display: flex; align-items: center; gap: 10px; background: var(--light); border-radius: 10px; padding: 12px 14px; margin-top: 10px; }
.mb-iban-row .mb-iban-label { font-size: .7rem; font-weight: 800; color: var(--teal-dark); text-transform: uppercase; }
.mb-iban-row code { flex: 1; font-size: .9rem; color: var(--ink); font-family: 'SF Mono', Menlo, monospace; letter-spacing: .3px; }
.mb-copy {
  border: 1.5px solid var(--teal); background: #fff; color: var(--teal-dark);
  border-radius: 8px; padding: 6px 12px; font-size: .78rem; font-weight: 700; cursor: pointer;
  font-family: inherit; white-space: nowrap; transition: background .15s, color .15s;
}
.mb-copy:hover { background: var(--teal); color: #fff; }
.mb-copy.copied { background: var(--mint); border-color: var(--mint); color: var(--navy); }
.mb-bank-shared {
  background: rgba(74, 142, 152, .10); border-left: 4px solid var(--teal);
  border-radius: 10px; padding: 14px 18px; margin-bottom: 22px; font-size: .92rem;
}
.mb-bank-shared b { color: var(--navy); }

/* Uyarı / bilgi kutusu */
.mb-note {
  display: flex; gap: 14px; background: #fff8e6; border: 1px solid #f0d99b;
  border-radius: 12px; padding: 18px 20px; font-size: .92rem; color: #6b5420; line-height: 1.6;
}
.mb-note .mb-note-icon { font-size: 1.2rem; line-height: 1; }

/* Adres kartı */
.mb-address {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal)); color: #fff;
  border-radius: var(--radius); padding: 34px; text-align: center;
}
.mb-address h3 { color: #fff; font-size: 1.15rem; margin-bottom: 12px; }
.mb-address p { color: rgba(255, 255, 255, .92); line-height: 1.7; }

/* Form kabuğu */
.mb-form-wrap { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.mb-form-placeholder {
  border: 2px dashed var(--line); border-radius: 12px; padding: 46px 24px;
  text-align: center; color: var(--muted);
}

@media (max-width: 1020px) {
  .mb-steps { grid-template-columns: repeat(2, 1fr); }
  .mb-fees { grid-template-columns: 1fr; }
  .mb-banks { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .mb-steps { grid-template-columns: 1fr; }
  .mb-iban-row { flex-wrap: wrap; }
  .mb-form-wrap { padding: 22px; }
}

/* ---- Mevzuat / tüzük sayfası ---- */
.legal-doc-title { margin-top: 10px; color: rgba(255, 255, 255, .82); font-size: .95rem; max-width: 760px; }
.legal-intro { max-width: 860px; margin-bottom: 28px; color: var(--muted); }
.legal-intro a { font-weight: 700; }

.legal-stats { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.lstat {
  background: #fff; border-radius: 12px; padding: 14px 22px; min-width: 130px;
  box-shadow: var(--shadow); border-left: 4px solid var(--teal);
}
.lstat b { display: block; font-size: 1.5rem; color: var(--navy); line-height: 1.1; }
.lstat span { font-size: .8rem; color: var(--muted); font-weight: 600; }

.legal-toolbar { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 26px; }
.legal-search { position: relative; flex: 1; min-width: 260px; }
.legal-search input {
  width: 100%; padding: 14px 18px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; font-size: .95rem; font-family: inherit; color: var(--ink);
}
.legal-search input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(74, 142, 152, .15); }
.legal-search-count {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: .78rem; color: var(--teal-dark); font-weight: 700; pointer-events: none;
}
.legal-actions { display: flex; gap: 8px; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

.legal-layout { display: grid; grid-template-columns: 290px 1fr; gap: 30px; align-items: start; }

.legal-toc { position: sticky; top: 96px; background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.legal-toc h3 { font-size: 1rem; color: var(--navy); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.legal-toc ol { list-style: none; counter-reset: toc; margin: 0; max-height: 60vh; overflow-y: auto; }
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: flex; justify-content: space-between; gap: 8px; align-items: baseline;
  padding: 9px 8px 9px 26px; border-radius: 8px; position: relative;
  color: var(--ink); font-size: .87rem; line-height: 1.35; transition: background .15s, color .15s;
}
.legal-toc a::before {
  content: counter(toc); position: absolute; left: 0; top: 9px;
  font-size: .72rem; font-weight: 800; color: var(--teal); min-width: 20px;
}
.legal-toc a:hover { background: var(--light); color: var(--teal-dark); }
.toc-range { font-size: .7rem; color: var(--muted); white-space: nowrap; font-weight: 600; }

.legal-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 12px; overflow: hidden; scroll-margin-top: 96px; }
.legal-head {
  width: 100%; display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 18px 22px; background: none; border: 0; cursor: pointer; font-family: inherit;
  transition: background .15s;
}
.legal-head:hover { background: var(--light); }
.legal-num {
  flex: 0 0 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem;
}
.legal-title { flex: 1; font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.legal-range {
  font-size: .74rem; font-weight: 700; color: var(--teal-dark);
  background: rgba(74, 142, 152, .12); padding: 4px 11px; border-radius: 999px; white-space: nowrap;
}
.legal-caret { color: var(--muted); font-size: .8rem; transition: transform .2s; }
.legal-item.open .legal-caret { transform: rotate(180deg); }
.legal-item.open .legal-head { background: var(--light); border-bottom: 1px solid var(--line); }

.legal-panel { display: none; padding: 8px 22px 24px; }
.legal-item.open .legal-panel { display: block; }
.legal-panel .rich { font-size: .95rem; }
.legal-panel h4 {
  margin: 24px 0 10px; font-size: .98rem; color: var(--teal-dark);
  padding-left: 12px; border-left: 3px solid var(--teal);
}
.legal-panel .rich > *:first-child { margin-top: 0; }
.legal-panel ol, .legal-panel ul { margin-left: 1.2em; }
.legal-panel li { margin-bottom: 6px; }

.madde { position: relative; }
.madde-no {
  display: inline-block; background: var(--navy); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .3px;
  padding: 3px 10px; border-radius: 6px; margin-right: 8px; vertical-align: 2px;
  scroll-margin-top: 100px;
}
.legal-empty { text-align: center; padding: 40px; color: var(--muted); }

@media (max-width: 1020px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; max-height: none; }
  .legal-toc ol { max-height: 300px; }
}
@media (max-width: 760px) {
  .legal-range { display: none; }
  .legal-toolbar { flex-direction: column; align-items: stretch; }
  .legal-actions { justify-content: center; }
}

/* ---- Kişi kartları (Yönetim Kurulu vb.) ---- */
.person-section-title {
  text-align: center; font-size: 1.3rem; font-weight: 800; color: var(--navy);
  margin: 54px 0 24px;
}
.person-section-title:first-child { margin-top: 0; }
.person-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.person-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 940px; margin: 0 auto; }
.person-grid--1 { grid-template-columns: 320px; justify-content: center; }
.person-grid--2 { grid-template-columns: repeat(2, 300px); justify-content: center; }
.person-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; text-align: center;
  box-shadow: var(--shadow); padding: 26px 0 22px; transition: transform .2s;
}
.person-card:hover { transform: translateY(-6px); }
/* Kaynak fotoğraflar dairesel kırpılmış; marka renginde halka ile bilinçli avatar görünümü.
   (.rich img kuralını ezebilmesi için seçici .person-grid ile güçlendirildi) */
.person-grid .person-card img {
  width: 64%; max-width: 210px; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  margin: 0 auto 16px; border-radius: 50%; background: #fff;
  border: 4px solid rgba(74, 142, 152, .28); box-shadow: 0 6px 18px rgba(12, 36, 49, .10);
}
.person-card h3 { font-size: 1.05rem; color: var(--navy); margin: 0 12px 6px; }
.person-card .role { color: var(--teal-dark); font-size: .87rem; font-weight: 700; line-height: 1.45; margin: 0 14px; }
.person-card .role small { display: block; color: var(--muted); font-weight: 600; }
/* Kişi iletişim linkleri: e-posta, LinkedIn, web (yalnızca dolu olanlar gösterilir) */
.person-card .plinks { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.person-card .plinks a {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--light); color: var(--teal-dark);
  font-size: 15px; font-weight: 800; line-height: 1; text-decoration: none;
  border: 1.5px solid var(--line); transition: background .15s, color .15s, transform .15s;
}
.person-card .plinks a:hover { background: var(--teal); border-color: var(--teal); color: #fff; transform: translateY(-2px); }
.person-card .plinks svg { width: 17px; height: 17px; fill: currentColor; }

/* ---- Haberler ---- */
.news-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); color: var(--ink); display: flex; flex-direction: column;
  transition: transform .2s;
}
.news-card:hover { transform: translateY(-6px); }
.news-img { aspect-ratio: 1 / 1; width: 100%; background-size: cover; background-position: center; }
.news-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-cat {
  display: inline-block; align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: .6px;
  color: var(--teal-dark); background: rgba(74,142,152,.12); padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase;
}
.news-body h3 { font-size: 1.05rem; line-height: 1.4; }
.news-body p { color: var(--muted); font-size: .92rem; flex: 1; }
.news-date { color: var(--muted); }
/* Haber detayı: okuma sütunu ortalanır, görsel sütunu taşırmaz */
.news-detail { max-width: 860px; margin: 0 auto; }
.news-detail-img {
  display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 30px;
}
.news-detail .rich { max-width: 100%; font-size: 1.02rem; }
.news-detail .rich img { max-width: 100%; height: auto; border-radius: 10px; }
.news-detail .rich p { margin-bottom: 1.15em; }
.news-detail .rich h2, .news-detail .rich h3 { margin: 1.6em 0 .6em; }

/* ---- İç sayfa ---- */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 50px;
  background: linear-gradient(120deg, var(--navy), var(--teal-dark)); color: #fff;
}
.page-hero h1 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; }
.page-hero .news-date { margin-top: 10px; color: rgba(255, 255, 255, .7); font-size: .9rem; }

/* Haber detayında başlık, üst bilgi ve metin aynı sütunda hizalanır */
.page-hero--narrow .container { max-width: 860px; }
.page-hero--narrow h1 { font-size: clamp(1.5rem, 2.8vw, 2.15rem); line-height: 1.25; }

/* ---- Breadcrumbs ---- */
.breadcrumbs { font-size: .88rem; margin-bottom: 14px; color: rgba(255,255,255,.75); }
.breadcrumbs a { color: var(--mint); font-weight: 600; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { margin: 0 8px; opacity: .6; }
.breadcrumbs .current { color: rgba(255,255,255,.85); }
/* Standart sayfa içeriği: ortalanmış okuma sütunu (Yönetim Kurulu, Komiteler vb.) */
.page-content { max-width: 900px; margin: 0 auto; }

/* ---- Zengin içerik ---- */
.rich h2, .rich h3 { margin: 1.2em 0 .5em; color: inherit; }
.rich p { margin-bottom: 1em; }
.rich ul, .rich ol { margin: 0 0 1em 1.4em; }
.rich img { border-radius: 10px; }
.rich table { width: 100%; border-collapse: collapse; margin-bottom: 1em; }
.rich td, .rich th { border: 1px solid var(--line); padding: 10px 14px; }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: #b9c9d1; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 44px; padding: 70px 24px 50px; }
.footer-logo { height: 46px; border-radius: 6px; margin-bottom: 18px; }
.footer-col h4 { color: #fff; margin-bottom: 14px; font-size: 1.02rem; }
.footer-col p { font-size: .93rem; margin-bottom: 10px; }
.footer-col a { color: var(--mint); }
.socials { display: flex; gap: 14px; margin-top: 12px; }
.socials a { font-weight: 700; font-size: .9rem; }
.newsletter-form { display: flex; gap: 10px; margin-top: 14px; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08); color: #fff; font-size: 14px;
}
.newsletter-form input::placeholder { color: #8fa5af; }
.newsletter-form button {
  padding: 12px 22px; border-radius: 999px; border: 0; cursor: pointer;
  background: linear-gradient(120deg, var(--teal), var(--mint)); color: var(--navy); font-weight: 800;
}
.form-note { background: rgba(111,207,151,.15); border: 1px solid var(--mint); color: #dff5e8; padding: 10px 14px; border-radius: 10px; font-size: .9rem; margin-top: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .88rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #b9c9d1; margin-left: 18px; }
.footer-bottom a:hover { color: #fff; }

/* ---- Duyarlı ---- */
@media (max-width: 1020px) {
  .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .member-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .person-grid, .person-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--navy); padding: 20px; display: none; overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; }
  .main-nav .sub-menu { position: static; display: flex; background: transparent; box-shadow: none; padding-left: 18px; }
  .sub-menu a { color: #b9c9d1; }
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .person-grid, .person-grid--3, .person-grid--1 { grid-template-columns: 1fr; }
  .hero { min-height: clamp(380px, 55vh, 520px); }
}
