/* ============================================================
   Köprülü Ekspertiz — components.css
   Butonlar, kartlar, sorgulama, form, carousel, akordiyon, toast
   ============================================================ */

/* ---------- 1. BUTONLAR ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 46px;
  padding: .75rem 1.5rem;
  border-radius: var(--r-pill);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base), box-shadow var(--t-base),
              background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn svg { flex-shrink: 0; }
.btn:active { transform: translateY(0) scale(.985); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* Birincil — parlama (shimmer) efektli */
.btn-primary {
  background: linear-gradient(135deg, var(--brand-500), #1d4ed8);
  color: #fff;
  box-shadow: var(--sh-brand);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.32) 50%, transparent 75%);
  background-size: 220% 100%;
  background-position: 200% 0;
  transition: background-position .75s var(--ease-out);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, .36);
}
.btn-primary:hover::after { background-position: -60% 0; }

/* Koyu — lacivert */
.btn-dark {
  background: var(--brand-900);
  color: #fff;
  box-shadow: var(--sh-md);
}
.btn-dark:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: var(--sh-lg); }

/* Çerçeveli */
.btn-outline {
  background: transparent;
  color: var(--text-strong);
  border: 1.5px solid var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--brand-500);
  color: var(--brand-500);
  background: var(--brand-050);
  transform: translateY(-2px);
}
.btn-outline.on-dark { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-outline.on-dark:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* Telefon butonu — numara gösterir; WhatsApp yeşili değil, kurumsal lacivert */
.btn-tel {
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-900) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(11, 18, 32, .28);
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
}
.btn-tel svg { color: var(--gold-400); }
.btn-tel:hover {
  background: linear-gradient(135deg, #1d3a6e 0%, var(--brand-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(11, 18, 32, .36);
}

/* WhatsApp hattı — cep numarası. Marka yeşili #25D366 beyaz yazıyla
   4.5:1 kontrastı geçmiyor; WhatsApp'ın kendi arayüzünde kullandığı
   koyu yeşil (#128C7E) alındı: hem tanınır hem erişilebilir. */
.btn-wa {
  background: #128C7E;
  color: #fff;
  box-shadow: 0 6px 18px rgba(18, 140, 126, .28);
  font-variant-numeric: tabular-nums;
}
.btn-wa:hover {
  background: #0e7568;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(18, 140, 126, .36);
}
.btn-wa.on-dark { background: #25D366; color: #06281f; }
.btn-wa.on-dark:hover { background: #34e07a; }

/* Metin içinde WhatsApp bağlantısı */
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  color: #0e7568;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.wa-link:hover { color: #128C7E; text-decoration: underline; text-underline-offset: 3px; }
.wa-link svg { flex-shrink: 0; }
.section--dark .wa-link,
.footer .wa-link { color: #34e07a; }
.footer .wa-link:hover { color: #5cf09a; }

.btn-ghost {
  background: transparent;
  color: var(--text-body);
  min-height: 40px;
  padding: .5rem 1rem;
}
.btn-ghost:hover { background: var(--bg-subtle); color: var(--text-strong); }

.btn-sm { min-height: 38px; padding: .5rem 1rem; font-size: .875rem; }
.btn-lg { min-height: 54px; padding: .95rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Ok animasyonu */
.btn .arrow { transition: transform var(--t-base); }
.btn:hover .arrow { transform: translateX(4px); }

/* Yüklenme durumu */
.btn.is-loading { pointer-events: none; color: transparent !important; }
.btn.is-loading::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn-outline.is-loading::before { border-color: rgba(37,99,235,.25); border-top-color: var(--brand-500); }

/* ---------- 2. HEADER SORGULAMA KUTUSU ---------- */
.qbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: .375rem;
  height: 42px;
  padding: 0 .3125rem 0 .875rem;
  background: var(--bg-surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), width var(--t-base);
  width: 216px;
}
.qbox:focus-within {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
  width: 268px;
}

/* Menü uzun; dar masaüstünde header'ın taşmaması için sorgu kutusu gizlenir.
   Sorgulama yine hero kartından ve mobil çekmeceden erişilebilir. */
@media (max-width: 1339px) {
  .header__tools .qbox { display: none; }
}
.qbox__icon { color: var(--text-muted); flex-shrink: 0; }
.qbox input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  font-size: .875rem;
  outline: none;
  color: var(--text-strong);
}
.qbox input::placeholder { color: var(--text-muted); }
.qbox__go {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: var(--r-pill);
  background: var(--brand-500);
  color: #fff;
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-base);
}
.qbox__go:hover { background: #1d4ed8; transform: scale(1.06); }

/* Çekmece / hero içi geniş varyant */
.qbox--wide { width: 100%; height: 54px; padding-left: 1.125rem; }
.qbox--wide:focus-within { width: 100%; }
.qbox--wide input { font-size: 1rem; }
.qbox--wide .qbox__go { width: 42px; height: 42px; }

/* Hero sorgulama kartı */
.query-card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--sh-lg);
}
.query-card__head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.query-card__head .badge-dot {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--brand-050);
  color: var(--brand-500);
  flex-shrink: 0;
}
.query-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--text-strong); }
.query-card__hint { font-size: .8125rem; color: var(--text-muted); margin-top: .75rem; }

/* Sorgu sonucu paneli */
.qresult {
  margin-top: 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--bg-page);
  overflow: hidden;
  animation: fade-slide-up .35s var(--ease-out) both;
}
.qresult__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .875rem 1rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--line);
}
.qresult__no { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--text-strong); }
.qresult__rows { padding: .5rem 1rem 1rem; }
.qresult__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .5rem 0;
  font-size: .875rem;
  border-bottom: 1px dashed var(--line);
}
.qresult__row:last-child { border-bottom: 0; }
.qresult__row span { color: var(--text-muted); }
.qresult__row strong { color: var(--text-strong); text-align: right; font-weight: 600; }
.qresult__note {
  margin: .75rem 1rem 1rem;
  padding: .875rem 1rem;
  background: var(--brand-050);
  border-left: 3px solid var(--brand-500);
  border-radius: var(--r-sm);
  font-size: .875rem;
  color: var(--text-body);
  white-space: pre-wrap;
  word-break: break-word;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .3125rem .75rem;
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--brand-100);
  color: var(--brand-700);
  white-space: nowrap;
}
.status-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Satır içi uyarı kutusu */
.inline-msg {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  margin-top: 1rem;
  padding: .875rem 1rem;
  border-radius: var(--r-md);
  font-size: .875rem;
  line-height: 1.55;
  animation: fade-slide-up .3s var(--ease-out) both;
}
.inline-msg svg { flex-shrink: 0; margin-top: 2px; }
.inline-msg--error { background: var(--err-100); color: var(--err-600); }
.inline-msg--ok { background: var(--ok-100); color: var(--ok-600); }
.inline-msg--info { background: var(--warn-100); color: var(--warn-500); }

/* ---------- 3. GÜVEN ROZETLERİ ---------- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: var(--sp-5);
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .4375rem;
  padding: .4375rem .875rem;
  border-radius: var(--r-pill);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-body);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-fast);
}
.trust-chip:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); border-color: var(--brand-100); }
.trust-chip svg { color: var(--brand-500); }
.section--dark .trust-chip {
  background: rgba(255,255,255,.06);
  border-color: var(--line-dark);
  color: var(--text-on-dark);
}
.section--dark .trust-chip svg { color: var(--gold-400); }

/* ---------- 4. HERO GÖRSEL KARTLARI ---------- */
.hero-figure {
  position: relative;
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .hero-figure { grid-template-columns: 1fr 1fr; }
  .hero-figure .stat-card--tall { grid-row: span 2; }
}

.stat-card {
  position: relative;
  padding: 1.375rem;
  border-radius: var(--r-lg);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-card--tall {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(155deg, var(--bg-inverse) 0%, #16294a 100%);
  border-color: transparent;
  color: var(--text-on-dark-2);
}
.stat-card--tall .stat-card__val { color: #fff; }
.stat-card--tall .stat-card__label { color: var(--gold-400); }
.stat-card--tall .stat-card__desc { color: var(--text-on-dark-2); }

.stat-card__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--brand-050);
  color: var(--brand-500);
  margin-bottom: .875rem;
}
.stat-card--tall .stat-card__icon { background: rgba(212,175,55,.14); color: var(--gold-400); }

.stat-card__val {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--text-strong);
  font-variant-numeric: tabular-nums;
}
.stat-card__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-top: .5rem;
}
.stat-card__desc { font-size: .8125rem; color: var(--text-muted); margin-top: .375rem; line-height: 1.5; }

/* ---------- 5. HİZMET KARTLARI ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--r-lg);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
/* İmleci takip eden yumuşak ışık — JS --mx/--my günceller */
.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%),
              rgba(37, 99, 235, .1), transparent 65%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--brand-100);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--brand-050);
  color: var(--brand-500);
  margin-bottom: 1.25rem;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}
.service-card:hover .service-card__icon {
  background: var(--brand-500);
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
}
.service-card__title { margin-bottom: .625rem; }
.service-card__desc { color: var(--text-body); font-size: .9375rem; flex-grow: 1; }
.service-card__meta {
  margin-top: 1.125rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
}
.tag {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .25rem .5625rem;
  border-radius: var(--r-sm);
  background: var(--bg-subtle);
  color: var(--text-muted);
}

/* ---------- 6. SÜREÇ ADIMLARI ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line-dark);
  text-align: left;
  transition: transform var(--t-base), background var(--t-base), border-color var(--t-base);
}
.step-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.08);
  border-color: rgba(212,175,55,.4);
}
.step-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(212,175,55,.55);
  margin-bottom: .875rem;
  display: block;
}
.step-card h3 { color: #fff; font-family: var(--font-display); font-size: 1.125rem; margin-bottom: .5rem; }
.step-card p { color: var(--text-on-dark-2); font-size: .9375rem; }

/* Adımlar arası bağlantı çizgisi (geniş ekran) */
@media (min-width: 1024px) {
  .steps { position: relative; }
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 3.1rem;
    right: -1.5rem;
    width: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(212,175,55,.5), transparent);
  }
}

/* ---------- 7. HAKKIMIZDA ---------- */
.about-panel {
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--bg-inverse) 0%, #16294a 100%);
  color: var(--text-on-dark-2);
  box-shadow: var(--sh-xl);
  position: relative;
  overflow: hidden;
}
.about-panel::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  right: -90px; top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.18), transparent 70%);
  pointer-events: none;
}
.about-panel__badge {
  display: inline-block;
  padding: .3125rem .75rem;
  border-radius: var(--r-pill);
  background: rgba(212,175,55,.14);
  color: var(--gold-400);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-panel__year {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: #fff;
  margin-top: 1rem;
}
.about-panel__year-sub { color: var(--gold-400); font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .625rem;
  margin-top: 1.5rem;
}
.mini-stat {
  padding: 1.125rem .5rem 1rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-dark);
  text-align: center;
}
.mini-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.125rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  margin-bottom: .375rem;
}
/* Yalnızca etiket — sayaç <b> içindeki span'i etkilememeli */
.mini-stat > span {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-on-dark-2);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.founder {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
}
.founder__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; }
.founder__role { font-size: .8125rem; color: var(--gold-400); margin-bottom: .75rem; }
.founder__chips { display: flex; flex-wrap: wrap; gap: .375rem; }
.founder__chips span {
  font-size: .6875rem;
  font-weight: 600;
  padding: .25rem .625rem;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  color: var(--text-on-dark);
  border: 1px solid var(--line-dark);
}

/* Değer/ilke listesi */
.value-list { display: grid; gap: .875rem; margin-top: var(--sp-5); }
.value-item {
  display: flex;
  gap: .875rem;
  padding: 1rem 1.125rem;
  border-radius: var(--r-md);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-fast);
}
.value-item:hover { transform: translateX(4px); box-shadow: var(--sh-sm); border-color: var(--brand-100); }
.value-item__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--brand-050);
  color: var(--brand-500);
}
.value-item h4 { font-family: var(--font-display); font-size: 1rem; color: var(--text-strong); margin-bottom: .1875rem; }
.value-item p { font-size: .875rem; color: var(--text-body); }

/* Zaman çizelgesi */
.timeline { position: relative; padding-left: 1.75rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 5px; top: 6px; bottom: 6px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand-500), var(--gold-400), transparent);
}
.timeline-item { position: relative; padding-bottom: 1.75rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.75rem; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px var(--bg-page);
}
.timeline-item:last-child::before { background: var(--gold-500); }
.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .08em;
  color: var(--brand-500);
}
.timeline-title { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--text-strong); margin: .125rem 0 .25rem; }
.timeline-item p { font-size: .9375rem; color: var(--text-body); }

/* ---------- 8. ÇÖZÜM ORTAKLARI ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 190px), 1fr));
  gap: 1rem;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: .75rem;
  padding: 1.25rem 1rem 1rem;
  border-radius: var(--r-lg);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-fast);
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: color-mix(in srgb, var(--pc, var(--brand-500)) 45%, transparent);
}

/* Logo alanı — sabit yükseklik, düzen kayması olmasın.
   Logo dosyası yoksa img JS ile kaldırılır ve harf rozeti görünür.

   Not: Logolar şeffaf boşlukları kırpılmış hâlde durur. Kırpılmamış
   dosyalarda içerik tuvalin %20'sini kaplayabiliyor ve logo kutuda
   görünmez hâle geliyordu (bkz. assets/logos/_orijinal). */
.partner-card__logo {
  height: 54px;
  width: 100%;
  display: grid;
  place-items: center;
  padding-inline: .25rem;
}
.partner-card__logo img {
  max-height: 54px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(.55);
  opacity: .9;
  transition: filter var(--t-base), opacity var(--t-base);
}
.partner-card:hover .partner-card__logo img { filter: none; opacity: 1; }

/* Çok geniş yazı logoları (ör. Aksigorta) kutuyu boydan boya doldurmasın */
.partner-card__logo img[data-logo="ak"] { max-height: 30px; }

/* Logo varsa harf rozeti gizlenir */
.partner-card__logo img + .partner-card__mark { display: none; }

.partner-card__mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--pc, var(--brand-500)) 12%, #fff);
  color: var(--pc, var(--brand-500));
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.partner-card__name {
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-strong);
  text-wrap: balance;
}

/* ---------- 9. BELGELER (CAROUSEL) ---------- */
.doc-shell { position: relative; }

.doc-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .5rem .25rem 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
  overscroll-behavior-x: contain;
}
@media (min-width: 720px) { .doc-track { grid-auto-columns: minmax(250px, 25%); } }
.doc-track::-webkit-scrollbar { height: 6px; }
.doc-track::-webkit-scrollbar-track { background: var(--bg-subtle); border-radius: 3px; }
.doc-track::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
.doc-track::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

.doc-item {
  position: relative;
  scroll-snap-align: start;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: block;
  width: 100%;
  text-align: left;
}
.doc-item:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.doc-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow);
  background: var(--bg-subtle);
  -webkit-user-drag: none;
  user-select: none;
}
.doc-item:hover img { transform: scale(1.05); }

.doc-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1rem .875rem;
  background: linear-gradient(to top, rgba(11,18,32,.94) 15%, transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .5rem;
}
.doc-overlay__title { color: #fff; font-weight: 600; font-size: .875rem; line-height: 1.35; }
.doc-overlay__no { color: var(--gold-400); font-size: .6875rem; font-weight: 700; letter-spacing: .1em; display: block; }
.doc-overlay__zoom {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: #fff;
  opacity: 0;
  transform: scale(.8);
  transition: opacity var(--t-base), transform var(--t-base);
}
.doc-item:hover .doc-overlay__zoom { opacity: 1; transform: scale(1); }

.doc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: .5rem;
}
.doc-nav {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  color: var(--text-strong);
  box-shadow: var(--sh-sm);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-base), opacity var(--t-fast);
}
.doc-nav:hover:not(:disabled) { background: var(--brand-500); color: #fff; border-color: var(--brand-500); transform: scale(1.06); }
.doc-nav:disabled { opacity: .35; cursor: not-allowed; }

.doc-dots { display: flex; gap: .375rem; }
.doc-dot {
  width: 8px; height: 8px;
  border-radius: var(--r-pill);
  background: var(--line-strong);
  transition: width var(--t-base), background var(--t-base);
}
.doc-dot.is-active { width: 26px; background: var(--brand-500); }

.doc-counter {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  min-width: 4rem;
  text-align: center;
}

/* ---------- 10. LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(11, 18, 32, .93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure {
  position: relative;
  max-width: min(100%, 780px);
  transform: scale(.94);
  transition: transform .34s var(--ease-back);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }
.lightbox__figure img {
  max-height: min(80vh, 900px);
  width: auto;
  margin-inline: auto;
  border-radius: var(--r-md);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
  -webkit-user-drag: none;
}
.lightbox__cap {
  margin-top: 1rem;
  text-align: center;
  color: #fff;
  font-size: .9375rem;
  font-weight: 600;
}
.lightbox__cap small { display: block; color: var(--text-on-dark-2); font-weight: 400; font-size: .8125rem; margin-top: .25rem; }

.lb-btn {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
  color: #fff;
  transition: background var(--t-fast), transform var(--t-base);
}
.lb-btn:hover { background: rgba(255,255,255,.26); transform: scale(1.08); }
.lb-close { top: clamp(.75rem, 3vw, 1.5rem); right: clamp(.75rem, 3vw, 1.5rem); position: fixed; }
.lb-prev { left: clamp(.5rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); position: fixed; }
.lb-next { right: clamp(.5rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); position: fixed; }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- 11. FORM ---------- */
.form-card {
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border-radius: var(--r-xl);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
}

.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.125rem; }
@media (min-width: 560px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-field--full { grid-column: 1 / -1; }
}

.form-field { display: flex; flex-direction: column; gap: .4375rem; }
.form-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.form-label .req { color: var(--err-600); }

.form-control {
  width: 100%;
  min-height: 48px;
  padding: .75rem 1rem;
  background: var(--bg-page);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: .9375rem;
  color: var(--text-strong);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:hover:not(:focus) { border-color: var(--line-strong); }
.form-control:focus {
  outline: none;
  background: var(--bg-surface);
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}
.form-control[aria-invalid='true'] {
  border-color: var(--err-600);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, .1);
}
textarea.form-control { min-height: 128px; resize: vertical; line-height: 1.6; }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378859c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.field-error {
  font-size: .75rem;
  font-weight: 500;
  color: var(--err-600);
  display: none;
  align-items: center;
  gap: .25rem;
}
.field-error.is-shown { display: flex; animation: shake .35s var(--ease-soft); }

.form-hint { font-size: .75rem; color: var(--text-muted); }

/* Dosya yükleme alanı */
.file-drop {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1rem;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--r-md);
  background: var(--bg-page);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.file-drop:hover, .file-drop.is-dragover { border-color: var(--brand-500); background: var(--brand-050); }
.file-drop__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--brand-050);
  color: var(--brand-500);
}
.file-drop__text { font-size: .875rem; color: var(--text-body); line-height: 1.45; }
.file-drop__text b { display: block; color: var(--text-strong); }

.file-list { display: flex; flex-direction: column; gap: .375rem; margin-top: .625rem; }
.file-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4375rem .625rem;
  border-radius: var(--r-sm);
  background: var(--bg-subtle);
  font-size: .8125rem;
  color: var(--text-body);
}
.file-chip__name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-chip__size { color: var(--text-muted); font-size: .75rem; flex-shrink: 0; }
.file-chip__x {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.file-chip__x:hover { background: var(--err-100); color: var(--err-600); }

/* KVKK onayı */
.check-field {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .875rem 1rem;
  border-radius: var(--r-md);
  background: var(--bg-page);
  border: 1px solid var(--line);
  font-size: .8125rem;
  color: var(--text-body);
  line-height: 1.6;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.check-field:hover { border-color: var(--line-strong); }
.check-field:has(input:checked) { background: var(--brand-050); border-color: var(--brand-100); }
.check-field input {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--brand-500);
  cursor: pointer;
}
.check-field a { color: var(--brand-500); text-decoration: underline; text-underline-offset: 2px; }

/* İletişim bilgi kartları */
.contact-list { display: grid; gap: .875rem; }
.contact-item {
  display: flex;
  gap: .875rem;
  padding: 1rem 1.125rem;
  border-radius: var(--r-md);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  transition: border-color var(--t-fast), box-shadow var(--t-base), transform var(--t-base);
}
.contact-item:hover { border-color: var(--brand-100); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.contact-item__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--brand-050);
  color: var(--brand-500);
}
.contact-item__label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-item__val {
  font-size: .9375rem;
  color: var(--text-strong);
  font-weight: 600;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}
.contact-item__val a:hover { color: var(--brand-500); }
.contact-item__val span { font-weight: 400; color: var(--text-body); font-size: .875rem; }

/* Hızlı bağlantı paneli (iletişim sol sütunu) */
.quick-panel {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: var(--r-lg);
  background: var(--bg-surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
}
.quick-panel__title {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .875rem;
}
.quick-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  margin-inline: -.25rem;
  border-radius: var(--r-md);
  transition: background var(--t-fast), transform var(--t-base);
}
.quick-link + .quick-link { border-top: 1px solid var(--line); border-radius: 0 0 var(--r-md) var(--r-md); }
.quick-link:hover { background: var(--brand-050); transform: translateX(3px); }
.quick-link__ico {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--brand-050);
  color: var(--brand-500);
}
.quick-link span:not(.quick-link__ico) {
  flex: 1;
  min-width: 0;
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.quick-link strong {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: .0625rem;
}
.quick-link__go { flex-shrink: 0; color: var(--text-muted); transition: transform var(--t-base), color var(--t-fast); }
.quick-link:hover .quick-link__go { transform: translateX(3px); color: var(--brand-500); }

/* ---------- 12. AKORDİYON ---------- */
.accordion { display: flex; flex-direction: column; gap: .75rem; }

.acc {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-surface);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-base);
}
.acc:has(.acc-btn[aria-expanded='true']) { border-color: var(--brand-100); box-shadow: var(--sh-md); }

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1.125rem 1.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-strong);
  transition: background var(--t-fast), color var(--t-fast);
}
.acc-btn:hover { background: var(--bg-page); }
.acc-btn[aria-expanded='true'] { background: var(--brand-050); color: var(--brand-700); }

.acc-btn__ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--brand-050);
  color: var(--brand-500);
  transition: background var(--t-base), color var(--t-base);
}
.acc-btn[aria-expanded='true'] .acc-btn__ico { background: var(--brand-500); color: #fff; }

.acc-btn__txt { flex: 1; min-width: 0; }
.acc-btn__sub { display: block; font-family: var(--font-sans); font-size: .8125rem; font-weight: 400; color: var(--text-muted); margin-top: .125rem; }

.acc-btn__chev {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--t-base), color var(--t-fast);
}
.acc-btn[aria-expanded='true'] .acc-btn__chev { transform: rotate(180deg); color: var(--brand-500); }

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.acc-body { padding: 0 1.25rem 1.5rem; border-top: 1px solid var(--line); padding-top: 1.25rem; }
.acc-body h4 {
  font-family: var(--font-display);
  font-size: .9375rem;
  color: var(--text-strong);
  margin-bottom: .625rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.acc-body h4::before {
  content: '';
  width: 4px; height: 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand-500), var(--gold-400));
}
.acc-body h4 + ul { margin-bottom: 1.5rem; }
.acc-body > *:last-child { margin-bottom: 0; }

.doc-list li {
  position: relative;
  padding-left: 1.625rem;
  margin-bottom: .5625rem;
  font-size: .9375rem;
  color: var(--text-body);
  line-height: 1.6;
}
.doc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .5rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ok-100)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23047857' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Uyarı kutusu */
.notice {
  display: flex;
  gap: .75rem;
  padding: .875rem 1rem;
  border-radius: var(--r-md);
  font-size: .875rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.notice svg { flex-shrink: 0; margin-top: 2px; }
.notice--warn { background: var(--warn-100); color: #7c4a03; }
.notice--info { background: var(--brand-050); color: var(--brand-700); }
.notice--warn svg { color: var(--warn-500); }
.notice--info svg { color: var(--brand-500); }

/* Evrak arama */
.doc-search { position: relative; margin-bottom: 1.5rem; }
.doc-search input { padding-left: 2.875rem; }
.doc-search__icon {
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.doc-search__count {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: .5rem;
  display: block;
}
.acc[hidden] { display: none; }

mark.hl { background: var(--gold-100); color: var(--text-strong); padding: 0 2px; border-radius: 3px; }

/* ---------- 13. CTA ŞERİDİ ---------- */
.cta-band {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--bg-inverse) 0%, #1b3363 55%, #234079 100%);
  color: var(--text-on-dark-2);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--sh-xl);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(560px circle at 88% 12%, rgba(212,175,55,.2), transparent 62%),
    radial-gradient(440px circle at 6% 92%, rgba(59,130,246,.26), transparent 62%);
}
.cta-band h2 { color: #fff; margin-bottom: .625rem; }
.cta-band p { color: var(--text-on-dark-2); max-width: 52ch; }
.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2.5rem; }
  .cta-band__actions { flex-shrink: 0; }
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- 14. SABİT AKSİYON BUTONLARI ---------- */
.fab-stack {
  position: fixed;
  right: clamp(.875rem, 3vw, 1.5rem);
  bottom: clamp(.875rem, 3vw, 1.5rem);
  z-index: 880;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  align-items: flex-end;
}

.fab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 52px;
  padding: 0 1.125rem;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-900) 100%);
  color: #fff;
  font-weight: 700;
  font-size: .9375rem;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 10px 28px rgba(11, 18, 32, .34);
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-fast);
}
.fab > svg { color: var(--gold-400); }
.fab:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #1d3a6e 0%, var(--brand-700) 100%);
  box-shadow: 0 14px 34px rgba(11, 18, 32, .44);
}

/* Sabit WhatsApp butonu — cep hattı */
.fab--wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 10px 28px rgba(18, 140, 126, .38);
}
.fab--wa > svg { color: #fff; }
.fab--wa:hover {
  background: linear-gradient(135deg, #34e07a 0%, #15a08f 100%);
  box-shadow: 0 14px 34px rgba(18, 140, 126, .46);
}
.fab svg { flex-shrink: 0; }
.fab__label { display: none; }
@media (min-width: 480px) { .fab__label { display: inline; } }

.fab--top {
  width: 46px;
  height: 46px;
  padding: 0;
  justify-content: center;
  background: var(--bg-surface);
  color: var(--text-strong);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}
.fab--top:hover { background: var(--brand-500); color: #fff; border-color: var(--brand-500); box-shadow: var(--sh-lg); }
.fab--top.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- 15. TOAST BİLDİRİMLERİ ---------- */
.toast-host {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 4vw, 2rem);
  transform: translateX(-50%);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: min(420px, calc(100vw - 2rem));
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .875rem 1rem;
  border-radius: var(--r-md);
  background: var(--bg-inverse);
  color: #fff;
  font-size: .875rem;
  line-height: 1.5;
  box-shadow: var(--sh-xl);
  pointer-events: auto;
  animation: toast-in .32s var(--ease-back) both;
}
.toast.is-out { animation: toast-out .24s var(--ease-soft) both; }
.toast svg { flex-shrink: 0; margin-top: 1px; }
.toast--ok svg { color: #34d399; }
.toast--error svg { color: #f87171; }
.toast--info svg { color: var(--gold-400); }
.toast__x {
  margin-left: auto;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.toast__x:hover { color: #fff; }

/* ---------- ZİYARETÇİ SAYACI (footer rozeti) ---------- */
.visit-badge {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .4375rem .875rem .4375rem .75rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
  font-size: .75rem;
  color: var(--text-on-dark-2);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.visit-badge.is-shown { opacity: 1; transform: none; }

/* Canlı olduğunu belli eden nabız noktası */
.visit-badge__dot {
  position: relative;
  width: 7px; height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #34d399;
}
.visit-badge__dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #34d399;
  opacity: .55;
  animation: visit-ping 2.4s ease-out infinite;
}
@keyframes visit-ping {
  0%   { transform: scale(.7); opacity: .6; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

.visit-badge b {
  color: #fff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.visit-badge__sep {
  width: 1px;
  height: 12px;
  background: var(--line-dark);
}

@media (prefers-reduced-motion: reduce) {
  .visit-badge__dot::after { animation: none; }
}

/* ---------- 16. SİTE İÇİ MODAL (prompt/confirm yerine) ---------- */
.ke-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 2rem);
  background: rgba(11, 18, 32, .5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--t-base);
}
.ke-modal.is-open { opacity: 1; }

.ke-modal__card {
  width: min(100%, 420px);
  background: var(--bg-surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  padding: clamp(1.5rem, 4vw, 2rem);
  transform: translateY(12px) scale(.97);
  transition: transform .3s var(--ease-back);
}
.ke-modal.is-open .ke-modal__card { transform: none; }

.ke-modal__title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: .375rem;
}
.ke-modal__text { font-size: .875rem; color: var(--text-body); margin-bottom: 1.25rem; line-height: 1.6; }
.ke-modal__actions { display: flex; gap: .625rem; margin-top: 1.25rem; }
.ke-modal__actions .btn { flex: 1; }

/* ---------- 17. SAYFA BAŞLIĞI (alt sayfalar) ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, var(--brand-050), var(--bg-page));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4375rem;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.breadcrumb a:hover { color: var(--brand-500); }
.breadcrumb svg { opacity: .5; }
.breadcrumb [aria-current] { color: var(--text-strong); font-weight: 600; }
