/* ==========================================================================
   ESG-AG Projesi — Ortak Stil Dosyası
   TÜBİTAK ARDEB 1001 / Proje No: 324K299
   ========================================================================== */

:root {
  --navy: #0f3057;
  --navy-dark: #0a2140;
  --navy-light: #1d4d85;
  --amber: #f2a007;
  --amber-dark: #d18a00;
  --teal: #2a9d8f;
  --ink: #1c2733;
  --ink-soft: #4a5a6a;
  --line: #dfe6ee;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-tint: #eef4fb;
  /* Konu renkleri — risk alanları ve REACT aşamaları */
  --c-fire: #ef5f2b;
  --c-blue: #3d8bfd;
  --c-purple: #6a4c93;
  --c-green: #43aa8b;
  --c-cyan: #0aa2c0;
  --c-amber: #f2a007;
  --c-teal: #2a9d8f;
  --c-rose: #d1495b;

  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(15, 48, 87, .08);
  --shadow-md: 0 6px 24px rgba(15, 48, 87, .10);
  --wrap: 1140px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy-light); }
a:hover { color: var(--amber-dark); }

h1, h2, h3, h4 { line-height: 1.3; color: var(--navy); margin: 0 0 .6em; }
h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h2 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

/* --------------------------------------------------------------- Üst şerit */
.topbar {
  background: var(--navy-dark);
  color: #cfe0f2;
  font-size: .82rem;
  letter-spacing: .02em;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.5rem;
  justify-content: space-between;
  padding: .45rem 0;
}
.topbar span { display: inline-flex; align-items: center; gap: .4rem; }
.topbar a { color: #cfe0f2; text-decoration: none; }
.topbar a:hover { color: var(--amber); }

/* Dil değiştirici (TR / EN) */
.lang-switch {
  display: inline-flex;
  gap: .15rem;
  margin-left: .9rem;
  padding-left: .9rem;
  border-left: 1px solid rgba(255, 255, 255, .18);
}
.lang-switch a {
  padding: .08rem .45rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
}
.lang-switch a.active {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

/* ------------------------------------------------------------------ Başlık */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
}

.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  font-weight: 700;
  font-size: .66rem;
  letter-spacing: .02em;
  white-space: nowrap;
}
/* Proje logosu başlıkta */
img.brand-mark {
  width: auto;
  height: 68px;
  background: none;
  border-radius: 0;
  padding: 0;
}
@media (max-width: 480px) { img.brand-mark { height: 52px; } }

.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.2;
}
.brand-text small {
  display: block;
  color: var(--ink-soft);
  font-size: .76rem;
  line-height: 1.3;
  white-space: nowrap;
}

/* Menü 7 öğeye çıktığı için orta genişliklerde biraz sıkıştır */
@media (min-width: 901px) and (max-width: 1240px) {
  .nav a, .nav .subnav-btn { padding: .5rem .5rem; font-size: .88rem; }
  .brand-text small { display: none; }
}

/* ---------------------------------------------------------------- Gezinme */
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: .45rem .6rem;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { display: block; }

.nav { display: flex; align-items: center; }
.nav > ul {
  display: flex;
  align-items: center;
  gap: .15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a, .nav .subnav-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .7rem;
  border-radius: 8px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border: 0;
  background: none;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.nav a:hover, .nav .subnav-btn:hover { background: var(--bg-tint); color: var(--navy); }
.nav a.active, .nav .has-sub.active > .subnav-btn { color: var(--navy); background: var(--bg-tint); box-shadow: inset 0 -2px 0 var(--amber); }

.has-sub { position: relative; }
/* Buton ile açılır menü arasındaki boşluğu kapatan görünmez köprü:
   imleç aşağı inerken hover kaybolmasın diye. */
.has-sub:hover::after,
.has-sub.open::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: .6rem;
}
.has-sub > ul {
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  min-width: 232px;
  list-style: none;
  margin: 0;
  padding: .35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  display: none;
}
.has-sub > ul a { display: block; width: 100%; font-weight: 400; }
.has-sub.open > ul, .has-sub:hover > ul { display: block; }
.chev { transition: transform .18s ease; }
.has-sub.open .chev { transform: rotate(180deg); }

@media (max-width: 900px) {
  .has-sub:hover::after, .has-sub.open::after { content: none; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .6rem max(1.25rem, calc((100vw - var(--wrap)) / 2));
    display: none;
  }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a, .nav .subnav-btn { width: 100%; justify-content: space-between; padding: .7rem .6rem; }
  .has-sub > ul {
    position: static;
    display: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 .35rem .9rem;
    border-left: 2px solid var(--line);
    margin-left: .6rem;
  }
  .has-sub.open > ul { display: block; }
  .has-sub:hover > ul { display: none; }
  .has-sub.open:hover > ul { display: block; }
}

/* -------------------------------------------------------------------- Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 380px at 88% 8%, rgba(61, 139, 253, .35), transparent 62%),
    radial-gradient(700px 420px at 6% 96%, rgba(42, 157, 143, .30), transparent 60%),
    linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-light) 100%);
  color: #fff;
  padding: clamp(2.4rem, 5vw, 4rem) 0 clamp(3.2rem, 6vw, 5rem);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60V26c180 22 320 22 480 4S840-4 1020 6s300 26 420 20v34z' fill='%23ffffff'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
  pointer-events: none;
}
.hero h1 { color: #fff; max-width: 22ch; }
.hero.wide h1 { max-width: 30ch; }
.hero p { color: #d9e6f5; max-width: 68ch; font-size: 1.03rem; }

/* Hero: metin + illüstrasyon */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
}
.hero-grid h1 { max-width: 100%; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.hero-illus {
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(4, 18, 38, .38);
  background: #eaf4ff;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-illus { max-width: 520px; margin-inline: auto; }
}
.hero .eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  border-radius: 999px;
  padding: .25rem .8rem;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

/* Sayfa başlığı (iç sayfalar) */
.page-head {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: clamp(2rem, 4.5vw, 3.2rem) 0;
}
.page-head h1 { color: #fff; margin-bottom: .3rem; }
.page-head p { color: #d0e0f2; margin: 0; max-width: 72ch; }
.breadcrumb { font-size: .82rem; color: #a9c4e0; margin-bottom: .7rem; }
.breadcrumb a { color: #a9c4e0; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ------------------------------------------------------------------ Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .68rem 1.25rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: .94rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: #26180a; }
.btn-primary:hover { background: #ffb524; color: #26180a; }
.btn-ghost { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ------------------------------------------------------------------ Bölümler */
section.block { padding: clamp(2.4rem, 5vw, 3.8rem) 0; }
section.block.tint { background: var(--bg-soft); }
.section-title { margin-bottom: 1.6rem; }
.section-title .kicker {
  display: block;
  color: var(--amber-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.lead { font-size: 1.08rem; color: var(--ink-soft); }
.prose { max-width: 78ch; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .45rem; }

/* ------------------------------------------------------------------- Kartlar */
.grid { display: grid; gap: 1.15rem; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .45rem; }
.card p:last-child { margin-bottom: 0; }
a.card { text-decoration: none; color: inherit; display: block; transition: transform .15s ease, box-shadow .15s ease; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #c6d6e8; }
a.card .more { color: var(--navy-light); font-weight: 600; font-size: .9rem; }

.icon-badge {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--bg-tint);
  color: var(--navy);
  margin-bottom: .85rem;
}

/* İstatistik / künye şeridi */
.facts { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.fact {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.fact .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.fact .value { font-size: 1.12rem; font-weight: 700; color: var(--navy); line-height: 1.35; }

/* ----------------------------------------------------------- REACT şeması */
.react-steps { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); counter-reset: step; }
.react-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  position: relative;
}
.react-step { border-top: 4px solid var(--step, var(--navy)); }
.react-step .letter {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--step, var(--navy));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .6rem;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--step, var(--navy)) 40%, transparent);
}
.react-step:nth-child(1) { --step: var(--c-blue); }
.react-step:nth-child(2) { --step: var(--c-purple); }
.react-step:nth-child(3) { --step: var(--c-fire); }
.react-step:nth-child(4) { --step: var(--c-teal); }
.react-step:nth-child(5) { --step: var(--c-amber); }
.react-step h4 { margin: 0 0 .3rem; color: var(--navy); font-size: 1.02rem; }
.react-step p { margin: 0; font-size: .93rem; color: var(--ink-soft); }

/* -------------------------------------------------------------- Ekip kartı */
.person {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.person .avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
/* AVESİS profil fotoğrafı */
img.avatar {
  object-fit: cover;
  object-position: center top;
  background: var(--bg-tint);
  box-shadow: 0 6px 18px rgba(15, 48, 87, .18);
}
.person .role {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: .3rem;
}
.person h3 { margin-bottom: .2rem; }
.person .affil { color: var(--ink-soft); font-size: .93rem; margin-bottom: .9rem; }
.person .links { display: flex; flex-wrap: wrap; gap: .5rem; }
.person .links a {
  font-size: .85rem;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .3rem .8rem;
  color: var(--navy);
}
.person .links a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------------------------------------------------------------- Zaman çizelgesi */
.timeline { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.timeline li { position: relative; padding: 0 0 1.5rem 1.5rem; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px; top: .55rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--line);
}
.timeline .when { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--amber-dark); }
.timeline h3 { margin: .15rem 0 .3rem; font-size: 1.05rem; }
.timeline p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ------------------------------------------------------------------- Tablo */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 520px; }
th, td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--bg-tint); color: var(--navy); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }
tbody tr:last-child td { border-bottom: 0; }

/* ------------------------------------------------------------ Boş içerik uyarısı */
.notice {
  background: var(--bg-tint);
  border: 1px dashed #b9cee4;
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--ink-soft);
}
.notice strong { color: var(--navy); }
.notice.amber { background: #fff8e9; border-color: #f0d9a4; }

.empty-state { text-align: center; padding: 3rem 1.5rem; }
.empty-state .icon-badge { margin-inline: auto; width: 56px; height: 56px; }

/* -------------------------------------------------------------------- Etiket */
.tags { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 0; padding: 0; }
.tags li {
  background: var(--bg-tint);
  border: 1px solid #d7e4f2;
  border-radius: 999px;
  padding: .3rem .85rem;
  font-size: .87rem;
  color: var(--navy);
}

/* ---------------------------------------------------------------- CTA şerit */
.cta {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
}
.cta h2 { color: #fff; margin: 0 0 .3rem; }
.cta p { color: #cadcef; margin: 0; }

/* ------------------------------------------------------------------- İletişim */
.contact-item { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.2rem; }
.contact-item .icon-badge { margin-bottom: 0; flex: none; }
.contact-item .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.contact-item .value { font-weight: 600; color: var(--navy); }
.contact-item a { text-decoration: none; }

/* --------------------------------------------------------------------- Alt bilgi */
.site-footer { background: var(--navy-dark); color: #b8cde3; padding: 2.6rem 0 1.5rem; margin-top: 3rem; font-size: .93rem; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .8rem; }
.site-footer a { color: #b8cde3; text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .4rem; }
.footer-grid { display: grid; gap: 1.8rem; grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-note {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 1.8rem;
  padding-top: 1.1rem;
  font-size: .85rem;
  color: #90aac6;
  /* Üç sütun: ortadaki öğe sayfanın tam ortasına hizalanır
     (flex + space-between'de öğe genişliklerine göre kayıyordu). */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: .5rem 1.5rem;
}
.footer-note > :first-child { justify-self: start; }
.footer-note > :nth-child(2) { justify-self: center; }
.footer-note > :last-child { justify-self: end; }

@media (max-width: 700px) {
  .footer-note { grid-template-columns: 1fr; text-align: center; }
  .footer-note > :first-child,
  .footer-note > :nth-child(2),
  .footer-note > :last-child { justify-self: center; }
}
.support-badge {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: .9rem 1.1rem;
  color: #d5e4f4;
  font-size: .88rem;
  line-height: 1.6;
}
.support-badge strong { color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: #26180a;
  padding: .6rem 1rem;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ======================================================= Renkli bileşenler */

/* Renk varyantlı ikon rozeti */
.icon-badge.tinted {
  background: color-mix(in srgb, var(--tone, var(--navy)) 14%, #fff);
  color: var(--tone, var(--navy));
}
.icon-badge.solid {
  background: var(--tone, var(--navy));
  color: #fff;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--tone, var(--navy)) 38%, transparent);
}

/* Üst kenarı renkli kart */
.card.topline { border-top: 4px solid var(--tone, var(--navy)); }
.card.tinted {
  background: color-mix(in srgb, var(--tone, var(--navy)) 7%, #fff);
  border-color: color-mix(in srgb, var(--tone, var(--navy)) 22%, #fff);
}
.card.tinted h3 { color: color-mix(in srgb, var(--tone, var(--navy)) 78%, #000); }

/* Risk alanları ızgarası */
.risk-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
.risk {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--tone);
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
  box-shadow: var(--shadow-sm);
}
.risk .ico {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--tone) 15%, #fff);
  color: var(--tone);
}
.risk h3 { font-size: .99rem; margin: 0 0 .15rem; color: var(--navy); }
.risk p { margin: 0; font-size: .9rem; color: var(--ink-soft); line-height: 1.55; }

/* Sayı şeridi */
.stat-band {
  background:
    radial-gradient(600px 200px at 15% 0%, rgba(61, 139, 253, .35), transparent 65%),
    linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 18px;
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  color: #fff;
}
.stat { text-align: center; }
.stat .ico {
  width: 46px; height: 46px;
  margin: 0 auto .55rem;
  border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .13);
  color: #ffd36b;
}
.stat .num { font-size: clamp(1.6rem, 3.2vw, 2.1rem); font-weight: 800; line-height: 1.1; color: #fff; }
.stat .cap { font-size: .87rem; color: #b9d0e8; margin-top: .2rem; }

/* Destekleyen kurum logoları */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
  justify-content: center;
  padding: 1.4rem 0 .4rem;
}
.logo-item { display: flex; align-items: center; gap: .85rem; text-decoration: none; color: inherit; }
.logo-item img { height: 66px; width: auto; }
.logo-item .cap { font-size: .82rem; line-height: 1.4; color: var(--ink-soft); max-width: 15ch; }
.logo-item .cap strong { display: block; color: var(--navy); font-size: .92rem; }
@media (max-width: 560px) { .logo-item img { height: 54px; } }

/* Alt bilgideki beyaz logo */
.footer-logos { display: flex; align-items: center; gap: .8rem; margin-top: 1.1rem; flex-wrap: wrap; }
.footer-logos span {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: .55rem .8rem;
}
.footer-logos img { height: 40px; width: auto; display: block; }

/* Renkli sayfa başlığı deseni */
.page-head {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 260px at 92% 0%, rgba(61, 139, 253, .38), transparent 65%),
    radial-gradient(420px 240px at 4% 100%, rgba(42, 157, 143, .3), transparent 62%),
    linear-gradient(140deg, var(--navy-dark) 0%, var(--navy-light) 100%);
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head::after {
  content: "";
  position: absolute;
  right: -60px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 34px solid rgba(255, 255, 255, .05);
}

/* Vurgu kutusu */
.callout {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: color-mix(in srgb, var(--tone, var(--c-amber)) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--tone, var(--c-amber)) 26%, #fff);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.callout .ico {
  flex: none; width: 42px; height: 42px;
  border-radius: 12px; display: grid; place-items: center;
  background: var(--tone, var(--c-amber)); color: #fff;
}
.callout p:last-child { margin-bottom: 0; }

/* Adım numaralı akış */
.steps-flow { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem 1.2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step-item .n {
  position: absolute;
  top: -14px; left: 1.2rem;
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--tone, var(--navy));
  color: #fff; font-weight: 700; font-size: .95rem;
  box-shadow: 0 5px 14px color-mix(in srgb, var(--tone, var(--navy)) 40%, transparent);
}
.step-item h3 { margin: .55rem 0 .35rem; font-size: 1.03rem; }
.step-item p { margin: 0; font-size: .93rem; color: var(--ink-soft); }

/* ==================================================== Çerez bildirimi */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 90;
  width: min(100% - 1.6rem, 880px);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--c-amber);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(15, 48, 87, .22);
  padding: 1.05rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.4rem;
  align-items: center;
  justify-content: space-between;
  font-size: .93rem;
  line-height: 1.6;
}
.cookie-bar p { margin: 0; max-width: 62ch; color: var(--ink-soft); }
.cookie-bar strong { color: var(--navy); }
.cookie-bar .actions { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.cookie-bar .btn { padding: .5rem 1.1rem; font-size: .9rem; }
@media (max-width: 620px) {
  .cookie-bar { padding: .95rem 1rem; }
  .cookie-bar .actions { width: 100%; }
  .cookie-bar .actions .btn { flex: 1; justify-content: center; }
}

@media print {
  .site-header, .topbar, .site-footer, .hero-actions { display: none; }
  body { font-size: 12pt; }
}
