:root {
  --ink: #16202e;
  --muted: #5b6675;
  --line: #d9e2ee;
  --soft: #f2f6fa;
  --surface: #ffffff;
  --brand: #235faa;
  --brand-deep: #17497f;
  --brand-2: #102741;
  --accent: #c9a227; /* altın: belge/mühür vurgusu, az kullanım */
  --logo-bg: #102741;
  --header: #122c4b;
  --header-2: #0c1f38;
  --danger: #c2410c;
  --shadow: 0 18px 45px rgba(13, 31, 56, .14);
  --shadow-sm: 0 8px 22px rgba(13, 31, 56, .08);
  --font-display: "Manrope", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, .brand strong { font-family: var(--font-display); }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-deep); }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

/* inline ikon hizalama */
.ic { display: inline-block; vertical-align: -0.18em; flex: 0 0 auto; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

.topbar {
  background: var(--header-2);
  color: #c6d7ec;
  font-size: 13px;
}
.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar a { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.mini-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  border: 1px solid rgba(35,95,170,.45);
  color: #cfe0f4;
  font-size: 10px;
  font-weight: 600;
}
.socials { margin-left: auto; display: flex; gap: 8px; }
.socials a {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #c6d7ec;
  background: rgba(35,95,170,.1);
  border: 1px solid rgba(35,95,170,.28);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.socials a:hover {
  transform: translateY(-2px);
  background: var(--brand);
  border-color: var(--brand);
  color: #102741;
  box-shadow: 0 6px 16px rgba(35,95,170,.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15,35,64,.94);
  border-bottom: 1px solid rgba(35,95,170,.24);
  backdrop-filter: blur(16px);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled { background: rgba(10,25,47,.97); box-shadow: 0 10px 30px rgba(0,0,0,.28); }
.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 22px;
}
/* logo: tema-uyumlu SVG amblem + tipografik yazı (PNG bağımlılığı yok) */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 2px;
  color: #fff;
}
.brand__emblem { width: 36px; height: 36px; flex: 0 0 auto; color: #fff; display: block; }
.brand__text { display: grid; line-height: 1; }
.brand__text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 25px;
  letter-spacing: .015em;
  color: #fff;
}
.brand__text small {
  margin-top: 5px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .33em;
  color: #9fc0e8;
}
.brand--footer { padding: 0; margin-bottom: 16px; display: inline-flex; }
/* beyaz zemin üstünde (yetki logoları vitrini) lacivert varyant */
.brand--showcase { padding: 0; display: inline-flex; }
.brand--showcase .brand__emblem { color: var(--brand-2); }
.brand--showcase .brand__text strong { color: var(--brand-2); }
.brand--showcase .brand__text small { color: var(--brand-deep); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__group { position: relative; }
.nav__group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}
.nav__button, .nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: #e9f0f8;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.nav__button:hover, .nav__link:hover { background: rgba(35,95,170,.12); color: #cfe0f4; }
.nav__button::after { content: ""; width: 6px; height: 6px; margin-left: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 270px;
  display: block;
  padding: 8px;
  background: #132e4f;
  border: 1px solid rgba(35,95,170,.24);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  pointer-events: none;
}
body:not(.is-touch) .nav__group:hover .nav__menu,
body:not(.is-touch) .nav__group:focus-within .nav__menu,
.nav__group.is-expanded .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
body:not(.is-touch) .nav__group:hover .nav__button::after,
.nav__group.is-expanded .nav__button::after { transform: rotate(225deg) translateY(2px); }
.nav__menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13.5px; color: #d6e3f3; font-weight: 500; transition: background .16s var(--ease), color .16s var(--ease), transform .16s var(--ease); }
.nav__menu a .nav-ic { color: var(--brand); opacity: .85; transition: transform .16s var(--ease); }
.nav__menu a:hover { background: rgba(35,95,170,.14); color: #d9e8fa; transform: translateX(3px); }
.nav__menu a:hover .nav-ic { transform: scale(1.12); }
.menu-toggle { display: none; }
.menu-toggle svg { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-display);
  gap: 8px;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(13,31,56,.16); }
.btn:active { transform: translateY(0); }
.btn--primary { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #ffffff; border-color: transparent; }
.btn--primary:hover { background: linear-gradient(135deg, #2f6fbd, var(--brand)); color: #ffffff; box-shadow: 0 16px 34px rgba(35,95,170,.4); }
/* DÜZELTME: beyaz/ghost butonda yazı artık koyu renkte ve net görünür */
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: #fff; color: var(--brand-deep); border-color: var(--brand); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn--sm { min-height: 40px; padding: 0 15px; font-size: 13px; border-radius: 9px; }
.btn--lg { min-height: 54px; padding: 0 26px; font-size: 15px; }
.icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
}
.btn--header { white-space: nowrap; }

.hero {
  position: relative;
  overflow: hidden;
  /* eski uzak görsel 404 döndüğü için saf CSS zemin kullanılıyor */
  background:
    radial-gradient(900px 480px at 82% 18%, rgba(47,111,189,.35), transparent 60%),
    radial-gradient(700px 420px at 8% 92%, rgba(23,73,127,.5), transparent 55%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.022) 0 2px, transparent 2px 96px),
    linear-gradient(105deg, #0a1d38, #102741 55%, #123056);
  color: #fff;
}
.hero__inner {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 42px;
  align-items: center;
  padding: 74px 0;
}
.eyebrow { display: inline-flex; align-items: center; gap: 7px; color: var(--brand-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 12.5px; }
.eyebrow .ic { color: var(--brand); }
.eyebrow--light { color: #cfe0f4; }
.eyebrow--light .ic { color: var(--brand); }
.hero h1 { max-width: 780px; margin: 16px 0 18px; font-size: clamp(38px, 6.2vw, 70px); line-height: 1.02; letter-spacing: -.01em; font-weight: 800; }
.hero h1 .hl { color: var(--brand); }
.hero p { max-width: 640px; color: #dbe7f4; font-size: 18px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero__trust { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: #b9cfe9; font-size: 13.5px; font-weight: 500; }
.hero__trust .ic { color: var(--brand); }
.hero__panel {
  padding: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.hero__panel h2 { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; font-size: 17px; font-weight: 700; }
.hero__panel h2 .ic { color: var(--brand); }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stat { padding: 18px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; transition: transform .2s var(--ease), background .2s var(--ease); }
.stat:hover { transform: translateY(-3px); background: rgba(35,95,170,.14); }
.stat strong { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 800; color: #fff; line-height: 1; }
.stat strong.stat--code { font-size: 19px; color: var(--brand); }
.stat span { color: #c4d5ea; font-size: 12.5px; }

.media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.media-card { position: relative; min-height: 230px; overflow: hidden; border-radius: 8px; background: #0a1a30; color: #fff; }
.media-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: .74; transition: transform .35s ease, opacity .35s ease; }
.media-card:hover img { transform: scale(1.05); opacity: .9; }
.media-card strong { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 1; font-size: 16px; line-height: 1.25; font-weight: 600; text-shadow: 0 2px 12px rgba(0,0,0,.55); }

.section { padding: 76px 0; }
.section--soft { background: var(--soft); }
.section__head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 30px; }
.section__head > div { max-width: 720px; }
.section__head h2, .page-title h1 { margin: 8px 0 0; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.08; letter-spacing: -.01em; font-weight: 800; }
.section__head p, .page-title p { color: var(--muted); margin: 10px 0 0; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 26px rgba(18,32,51,.05);
}
.card h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.25; font-weight: 600; }
.card p { color: var(--muted); margin: 0; }
.card__meta { display: block; color: #1a5290; font-weight: 600; font-size: 13px; margin-bottom: 8px; }

.quick-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.quick-links a {
  position: relative;
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(150deg, #122c4b, #0e2340);
  border: 1px solid rgba(35,95,170,.16);
  color: #fff;
  font-weight: 600;
  font-family: var(--font-display);
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.quick-links a::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 12%, rgba(35,95,170,.22), transparent 42%); opacity: 0; transition: opacity .22s var(--ease); }
.quick-links a:hover { transform: translateY(-4px); border-color: rgba(35,95,170,.5); box-shadow: 0 18px 38px rgba(0,0,0,.3); color: #fff; }
.quick-links a:hover::before { opacity: 1; }
.quick-icon {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(35,95,170,.14);
  border: 1px solid rgba(35,95,170,.3);
  color: var(--brand);
  transition: transform .22s var(--ease), background .22s var(--ease);
}
.quick-links a:hover .quick-icon { transform: scale(1.08) rotate(-4deg); background: rgba(35,95,170,.22); }
.quick-label { position: relative; flex: 1; font-size: 14.5px; line-height: 1.25; }
.quick-go { position: relative; color: var(--brand); opacity: 0; transform: translateX(-6px); transition: opacity .22s var(--ease), transform .22s var(--ease); }
.quick-links a:hover .quick-go { opacity: 1; transform: translateX(0); }

.logo-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.logo-tile {
  min-height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  font-weight: 600;
  color: #465970;
  text-align: center;
  padding: 12px;
}
.logo-tile img { max-width: 140px; max-height: 54px; object-fit: contain; filter: saturate(.95); }
.logo-tile span { font-size: 13px; color: var(--muted); margin-top: 6px; }
.logo-tile--text span { font-size: 15px; color: var(--ink); font-weight: 600; }
.logo-tile--brand {
  min-height: 116px;
  gap: 9px;
  background: #fff;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  cursor: default;
}
.logo-tile--brand:hover, .logo-tile--brand:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--bc) 45%, var(--line));
  box-shadow: 0 16px 34px rgba(13,31,56,.12);
  outline: none;
}
.brand-wordmark { display: flex; align-items: center; gap: 10px; }
.brand-mark { flex: 0 0 auto; opacity: .85; transition: transform .2s var(--ease); }
.logo-tile--brand:hover .brand-mark { transform: rotate(-6deg) scale(1.06); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(15px, 1.7vw, 19px);
  letter-spacing: -.01em;
  line-height: 1.05;
  color: #33506f;
  transition: color .2s var(--ease);
}
.logo-tile--brand:hover .brand-name { color: var(--bc); }
.logo-tile--brand small { color: #8d9cb2; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.doc-image {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  display: block;
  margin: 0 0 18px;
  background: #fff;
  border-radius: 8px;
}

.page-hero {
  background: linear-gradient(135deg, #102741, #142c4e 48%, #17497f);
  color: #fff;
  padding: 58px 0;
}
.breadcrumbs { display: flex; gap: 8px; color: #d3e0f0; font-size: 13px; margin-bottom: 12px; }
.page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 34px; padding: 56px 0 76px; align-items: start; }
.content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
}
.content h2 { margin-top: 0; margin-bottom: 14px; font-size: 28px; line-height: 1.25; font-weight: 700; }
.content h3 { margin-top: 32px; margin-bottom: 12px; font-size: 21px; line-height: 1.3; font-weight: 600; }
.content p, .content li { color: #38465c; line-height: 1.75; }
.content p { margin: 0 0 16px; }
.content > * + * { margin-top: 4px; }
.content ul, .content ol { margin: 8px 0 18px; padding-left: 22px; display: grid; gap: 10px; }
.content a:not(.btn) { color: #17497f; font-weight: 600; }
.content blockquote { margin: 24px 0; padding: 18px 22px; border-left: 4px solid var(--brand); background: var(--soft); }

.sidebar { position: sticky; top: 108px; display: grid; gap: 16px; }
.sidebar__box h2 .ic { color: var(--brand-deep); }
.sidebar__box a { display: flex; align-items: center; gap: 10px; color: var(--muted); padding: 9px 0; border-bottom: 1px solid var(--line); transition: color .18s var(--ease), padding-left .18s var(--ease); }
.sidebar__box a:last-child { border-bottom: 0; }
.sidebar__box a .ic { flex: 0 0 auto; color: var(--brand-deep); transition: transform .18s var(--ease); }
.sidebar__box a:hover { color: var(--ink); padding-left: 5px; }
.sidebar__box a:hover .ic { transform: translateX(2px); }
.sidebar__box--soft { background: linear-gradient(180deg, #f8fbff, #fbf4dd); border-color: color-mix(in srgb, var(--brand) 26%, var(--line)); }
.sidebar__cta {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(160deg, #102741, #153356);
  color: #fff;
  box-shadow: var(--shadow);
}
.sidebar__cta-ic { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: rgba(35,95,170,.18); color: var(--brand); }
.sidebar__cta h3 { margin: 0; font-size: 17px; font-weight: 700; color: #fff; }
.sidebar__cta p { margin: 0; color: #b3c3d9; font-size: 13.5px; line-height: 1.5; }
.sidebar__cta .btn { width: 100%; justify-content: center; }
.sidebar__box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}
.sidebar__box h2 { display: flex; align-items: center; gap: 9px; margin: 0 0 12px; font-size: 17px; font-weight: 700; }

.qualification-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.qualification {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), opacity .3s var(--ease);
}
.qualification::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--qc); opacity: .85; }
.qualification:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--qc) 40%, var(--line)); box-shadow: 0 16px 34px rgba(13,31,56,.12); color: var(--ink); }
.qualification__ic {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--qc);
  background: color-mix(in srgb, var(--qc) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--qc) 24%, transparent);
  transition: transform .25s var(--ease);
}
.qualification:hover .qualification__ic { transform: scale(1.08) rotate(-4deg); }
.qualification__text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.qualification__text small { color: var(--qc); font-weight: 700; font-size: 11.5px; letter-spacing: .02em; }
.qualification__text strong { display: block; margin-top: 3px; line-height: 1.2; font-weight: 700; font-size: 14.5px; font-family: var(--font-display); }
.qualification__tag { flex: 0 0 auto; align-self: flex-start; font-size: 10.5px; font-weight: 600; color: var(--qc); background: color-mix(in srgb, var(--qc) 10%, #fff); border: 1px solid color-mix(in srgb, var(--qc) 22%, transparent); padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.qualification.is-hidden { display: none; }

/* Kategori filtre çipleri */
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--muted);
  font: 600 13px var(--font-display); cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.chip .ic { color: var(--cc, var(--brand-deep)); transition: color .18s var(--ease); }
.chip:hover { transform: translateY(-2px); border-color: var(--cc, var(--brand)); box-shadow: var(--shadow-sm); color: var(--ink); }
.chip.is-active { background: var(--cc, var(--ink)); border-color: var(--cc, var(--ink)); color: #fff; }
.chip.is-active .ic { color: #fff; }

.accordion { display: grid; gap: 10px; }
.accordion details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 18px;
}
.accordion summary {
  cursor: pointer;
  min-height: 58px;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.accordion p { margin-top: 0; }
.service-image {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 16px;
  border: 1px solid var(--line);
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: grid; gap: 7px; font-weight: 600; color: #2b3a52; }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 142px; resize: vertical; }

.footer {
  background:
    radial-gradient(1100px 360px at 12% -10%, rgba(35,95,170,.12), transparent 60%),
    linear-gradient(180deg, #0d203a 0%, #081627 100%);
  color: #dde8f4;
  padding: 0 0 26px;
}
/* CTA strip */
.footer__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 26px;
  margin: -52px 0 50px;
  padding: 34px 40px;
  border-radius: 18px;
  background: linear-gradient(120deg, var(--brand-deep), var(--brand) 55%, #2f6fbd);
  box-shadow: 0 30px 60px rgba(13,31,56,.28);
  overflow: hidden;
}
.footer__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% -20%, rgba(255,255,255,.4), transparent 45%);
  pointer-events: none;
}
.footer__cta-text { position: relative; z-index: 1; max-width: 560px; }
.footer__cta-text h2 { color: #fff; margin: 0 0 6px; font-size: clamp(21px, 3vw, 27px); font-weight: 800; }
.footer__cta-text p { color: rgba(255,255,255,.85); margin: 0; font-weight: 500; }
.footer__cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; }
.footer__cta .btn--primary { background: #fff; color: var(--brand-deep); box-shadow: 0 12px 26px rgba(0,0,0,.25); }
.footer__cta .btn--primary:hover { background: #eef4fb; color: var(--brand-deep); }
.footer__cta .btn--ghost { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.45); color: #fff; }
.footer__cta .btn--ghost:hover { background: rgba(255,255,255,.24); color: #fff; border-color: #fff; }
/* Footer grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr;
  gap: 40px;
  padding-top: 8px;
}
.footer h2 { color: #fff; margin-top: 0; font-size: 16px; font-weight: 700; letter-spacing: .01em; }
.footer p, .footer span, .footer li { color: #9db1cb; }
.footer__about p { line-height: 1.7; max-width: 380px; }
/* Footer hızlı erişim linkleri */
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  color: #9db1cb;
  font-size: 14px;
  transition: color .18s var(--ease), padding-left .18s var(--ease);
}
.footer-links a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); flex: 0 0 auto; opacity: .8; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
/* Contact mini list */
.contact-mini { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-mini li { display: flex; align-items: flex-start; gap: 11px; color: #9db1cb; }
.contact-mini .ic { flex: 0 0 auto; margin-top: 2px; color: var(--brand); }
.contact-mini a { color: #9db1cb; transition: color .18s var(--ease); }
.contact-mini a:hover { color: #fff; }
.contact-mini__addr { line-height: 1.6; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__bottom p { margin: 0; font-size: 13px; color: #7e8ea6; }
.creator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid rgba(35,95,170,.3);
  border-radius: 8px;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.creator:hover { transform: translateY(-1px); background: rgba(35,95,170,.12); border-color: rgba(35,95,170,.55); color: #fff; }
.creator span { font-size: 10.5px; color: #75879d; letter-spacing: .01em; }
.creator span strong { font-weight: 600; }
.creator__logo {
  width: auto;
  height: 22px;
  object-fit: contain;
  display: block;
  opacity: .92;
}
.creator:hover .creator__logo { opacity: 1; }

.back-to-top {
  position: fixed;
  right: 18px;
  z-index: 30;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
  font-weight: 600;
  cursor: pointer;
}
.back-to-top { bottom: 84px; background: var(--brand); color: #fff; opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top.is-press { animation: btTPress .45s var(--ease); }
@keyframes btTPress { 0% { transform: translateY(0) scale(1); } 35% { transform: translateY(-6px) scale(1.12); } 100% { transform: translateY(0) scale(1); } }
.back-to-top:hover { filter: brightness(1.05); transform: translateY(-2px); }

.price-legend { display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 0 0 26px; }
.price-legend__item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  font-size: 13px; font-weight: 600; color: #3f5370;
}
.price-legend__item .ic { color: var(--brand-deep); }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(390px, 1fr)); gap: 24px; margin-bottom: 26px; }
.price-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.price-card::before { content: ""; display: block; height: 5px; background: linear-gradient(90deg, var(--qc), color-mix(in srgb, var(--qc) 55%, #fff)); }
.price-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--qc) 40%, var(--line)); box-shadow: 0 22px 46px rgba(13,31,56,.14); }
.price-card__head { display: flex; align-items: flex-start; gap: 15px; padding: 22px 22px 18px; }
.price-card__ic {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: color-mix(in srgb, var(--qc) 14%, #fff);
  color: var(--qc);
}
.price-card__id { min-width: 0; }
.price-card__code {
  display: inline-block;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
  color: var(--qc);
  background: color-mix(in srgb, var(--qc) 12%, #fff);
  padding: 3px 9px; border-radius: 6px;
  margin-bottom: 9px;
}
.price-card__id h3 { margin: 0 0 6px; font-size: 18px; line-height: 1.3; font-weight: 800; color: var(--ink); }
.price-card__lvl { display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.price-card__price {
  display: grid;
  gap: 2px;
  margin: 0 22px 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(150deg, color-mix(in srgb, var(--qc) 10%, #fff), color-mix(in srgb, var(--qc) 4%, #fff));
  border: 1px solid color-mix(in srgb, var(--qc) 22%, var(--line));
}
.price-card__from { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.price-card__amount { font-family: var(--font-display); font-size: 34px; font-weight: 800; line-height: 1; color: var(--ink); letter-spacing: -.01em; }
.price-card__amount small { font-size: 18px; font-weight: 700; color: var(--muted); }
.price-card__kdv { display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; font-size: 12px; font-weight: 700; color: #2e9d6b; }
.price-card__kdv .ic { color: #2e9d6b; }
.price-card__units-wrap { padding: 0 22px; flex: 1; }
.price-card__units-title { display: block; margin-bottom: 12px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.price-units { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.price-unit {
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcfe;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.price-unit:hover { border-color: color-mix(in srgb, var(--qc) 32%, var(--line)); background: color-mix(in srgb, var(--qc) 5%, #fff); }
.price-unit__top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.price-unit__tag {
  flex: 0 0 auto;
  display: inline-grid; place-items: center;
  min-width: 34px; height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--qc) 16%, #fff);
  color: var(--qc);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 12px; font-weight: 700;
}
.price-unit__name { font-size: 13.5px; line-height: 1.5; color: var(--ink); font-weight: 600; }
.price-unit__costs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.price-unit__cost {
  display: grid; gap: 3px;
  padding: 10px 12px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--line);
}
.price-unit__cost small { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); }
.price-unit__cost strong { font-size: 15px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.price-unit__cost.is-empty { background: #f8fafd; }
.price-unit__cost.is-empty strong { color: var(--muted); font-weight: 600; }
.price-card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-top: 14px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  background: #fafbfd;
}
.price-card__renew { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.price-card__renew .ic { color: var(--brand-deep); flex: 0 0 auto; }
.price-card__renew strong { color: var(--ink); font-weight: 700; }
/* ============ BANK PAYMENT CARDS (credit-card style) ============ */
.bank-heading { display: flex; align-items: center; gap: 10px; margin-top: 30px; }
.bank-heading .ic { color: var(--brand-deep); }
.policy-list { display: grid; gap: 10px; padding-left: 20px; margin: 16px 0 4px; }
.policy-list li { color: #2f4460; line-height: 1.55; padding-left: 4px; }
.policy-list li::marker { color: var(--brand-deep); font-weight: 700; }

.bank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 22px;
  margin-top: 18px;
}
.bank-grid--single { grid-template-columns: minmax(0, 480px); }

.paycard {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 24px 26px 26px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--pc1), var(--pc2));
  box-shadow: 0 22px 46px rgba(8,32,72,.32);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.paycard:hover { transform: translateY(-6px); box-shadow: 0 32px 62px rgba(8,32,72,.4); }
.paycard__sheen {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.16) 0%, transparent 38%, transparent 62%, rgba(255,255,255,.07) 100%);
  pointer-events: none;
}
.paycard__blob {
  position: absolute;
  z-index: 0;
  right: -70px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--pcA) 70%, transparent), transparent 68%);
  opacity: .5;
  pointer-events: none;
}
.paycard > *:not(.paycard__sheen):not(.paycard__blob) { position: relative; z-index: 1; }
.paycard__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.paycard__logo {
  display: grid;
  place-items: center;
  height: 46px;
  min-width: 46px;
  padding: 7px 9px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.paycard__logo img { max-width: 100%; max-height: 32px; width: auto; height: auto; object-fit: contain; display: block; }
.paycard__logo--wide { height: 46px; padding: 7px 14px; }
.paycard__logo--wide img { max-height: 30px; }
.paycard__type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.paycard__type .ic { color: #fff; }
.paycard__chiprow { display: flex; align-items: center; gap: 14px; }
.paycard__chip { width: 50px; height: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); }
.paycard__nfc { width: 22px; height: 22px; color: rgba(255,255,255,.85); }
.paycard__iban { display: grid; gap: 7px; }
.paycard__iban-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.paycard__iban-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.paycard__iban-value {
  font-family: ui-monospace, "SFMono-Regular", "Cascadia Code", Consolas, monospace;
  font-size: clamp(15px, 2.4vw, 19px);
  font-weight: 600;
  letter-spacing: .06em;
  color: #fff;
  overflow-wrap: anywhere;
}
.paycard__copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: #fff;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s var(--ease), border-color .18s var(--ease), transform .15s var(--ease);
}
.paycard__copy:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); }
.paycard__copy:active { transform: scale(.96); }
.paycard__copy.is-copied { background: #1f9d55; border-color: #1f9d55; }
.paycard__foot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.paycard__field { display: grid; gap: 3px; min-width: 0; }
.paycard__field--full { grid-column: 1 / -1; }
.paycard__field small { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.paycard__field strong { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.35; overflow-wrap: anywhere; }
.bank-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  color: #3f5370;
  font-size: 14px;
  line-height: 1.5;
}
.bank-note .ic { flex: 0 0 auto; margin-top: 1px; color: var(--brand-deep); }

/* ============ BANKA ÖZET KARTLARI & POPUP ============ */
.bank-summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; margin: 22px 0; }
.bank-summary {
  display: flex; align-items: center; gap: 16px;
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--bnk, var(--brand));
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.bank-summary:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(13,31,56,.14); border-color: color-mix(in srgb, var(--bnk) 35%, var(--line)); border-left-color: var(--bnk); }
.bank-summary__logo {
  flex: 0 0 auto;
  width: 86px; height: 58px;
  display: grid; place-items: center;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.bank-summary__logo--wide { width: 132px; }
.bank-summary__logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.bank-summary__info { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.bank-summary__info strong { font-size: 16px; font-weight: 800; color: var(--ink); }
.bank-summary__iban { font-family: ui-monospace, Consolas, monospace; font-size: 12.5px; color: var(--muted); letter-spacing: .01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bank-summary__cta { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--bnk, var(--brand-deep)); }
.bank-summary__cta .ic:last-child { transition: transform .2s var(--ease); }
.bank-summary:hover .bank-summary__cta .ic:last-child { transform: translateX(3px); }
.bank-modal__card { width: min(500px, 100%); }
.bank-modal__body { padding: 24px 26px; }
.bank-modal__body .paycard { max-width: 100%; }

/* ============ REFERANS LOGO IZGARASI ============ */
.ref-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 16px; margin: 22px 0; }
.ref-grid--home { margin-top: 8px; }
.ref-logo {
  display: grid; place-items: center;
  aspect-ratio: 3/2;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.ref-logo:hover, .ref-logo:focus-visible {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand) 38%, var(--line));
  box-shadow: 0 16px 34px rgba(13,31,56,.13);
  outline: none;
}
.ref-logo img {
  max-width: 100%; max-height: 72px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
}
.ref-logo:hover img, .ref-logo:focus-visible img { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
/* logo dosyası yoksa monogram rozeti + firma adı gösterilir */
.ref-logo__mono { display: none; }
.ref-logo.is-text img { display: none; }
.ref-logo.is-text .ref-logo__mono {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 4px;
}
.ref-logo__badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
  box-shadow: 0 6px 16px rgba(13,31,56,.22);
  transition: transform .25s var(--ease);
}
.ref-logo:hover .ref-logo__badge, .ref-logo:focus-visible .ref-logo__badge { transform: scale(1.08) rotate(-4deg); }
.ref-logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
}
/* uzak belge görseli yüklenemezse zarif yer tutucu */
.doc-tile.is-missing img, .logo-show__item.is-missing img { display: none; }
.doc-tile.is-missing .doc-tile__frame::before,
.doc-tile.is-missing .proc-card__img::before,
.logo-show__item.is-missing .logo-show__frame::before {
  content: "Görsel şu anda yüklenemiyor";
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13.5px;
  text-align: center;
}

/* ============ PERSONEL BELGELENDİRME – SÜREÇ & AKORDEON ============ */
.proc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 8px 0 30px; }
.proc-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.proc-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); box-shadow: 0 22px 44px rgba(13,31,56,.14); }
.proc-card__img { display: block; background: #eef3f9; aspect-ratio: 16/10; overflow: hidden; }
.proc-card__img img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform .4s var(--ease); }
.proc-card:hover .proc-card__img img { transform: scale(1.04); }
.proc-card__label {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px; color: var(--ink);
  border-top: 1px solid var(--line);
}
.proc-card__label .ic { color: var(--brand-deep); }
.proc-card__label small { margin-left: auto; font-family: var(--font-body); font-weight: 500; font-size: 12px; color: var(--muted); }
.section-subtitle { display: flex; align-items: center; gap: 11px; margin: 34px 0 6px; font-size: 24px; font-weight: 800; }
.section-subtitle .ic { color: var(--brand-deep); }
.acc-title .acc-code {
  display: block;
  margin-top: 3px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 11.5px; font-weight: 600;
  color: var(--muted);
  letter-spacing: .01em;
}
.acc-units { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 5px; }
.acc-units li { position: relative; padding-left: 15px; font-size: 13px; line-height: 1.5; color: #45536a; }
.acc-units li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--qc, var(--brand)); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: opacity, transform; }
.reveal-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ============ HOMEPAGE CTA PANEL ============ */
.section--cta { padding: 26px 0 84px; }
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(34px, 5vw, 60px);
  background: linear-gradient(150deg, #102741 0%, #13294a 55%, #102741 100%);
  color: #fff;
  box-shadow: 0 36px 70px rgba(13,31,56,.32);
}
.cta-panel__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 320px at 88% -10%, rgba(35,95,170,.34), transparent 60%),
    radial-gradient(520px 300px at 8% 120%, rgba(35,95,170,.16), transparent 55%);
  pointer-events: none;
}
.cta-panel__content { position: relative; z-index: 1; display: grid; gap: 24px; max-width: 720px; }
.cta-panel .eyebrow { color: var(--brand); }
.cta-panel h2 { color: #fff; font-size: clamp(27px, 4vw, 40px); line-height: 1.08; margin: 0; font-weight: 800; letter-spacing: -.01em; }
.cta-panel h2 .hl { color: var(--brand); }
.cta-panel > .cta-panel__content > p { color: #c3cfdf; font-size: 17px; line-height: 1.6; margin: 0; max-width: 600px; }
.cta-features { display: flex; flex-wrap: wrap; gap: 14px 26px; margin: 0; padding: 0; list-style: none; }
.cta-feature { display: inline-flex; align-items: center; gap: 10px; color: #e6edf6; font-weight: 600; font-size: 14.5px; }
.cta-feature .ic { color: var(--brand); flex: 0 0 auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-actions .btn--ghost { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.28); color: #fff; }
.cta-actions .btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }

/* ============ ACCORDIONS (service + faq) ============ */
.accordion--service, .accordion--faq { display: grid; gap: 12px; }
.acc-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.acc-item[open] { border-color: color-mix(in srgb, var(--qc, var(--brand)) 45%, var(--line)); box-shadow: 0 16px 38px rgba(13,31,56,.1); }
.acc-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  user-select: none;
}
.acc-item > summary::-webkit-details-marker { display: none; }
.acc-ic {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--qc, var(--brand)) 14%, #fff);
  color: var(--qc, var(--brand-deep));
  transition: transform .25s var(--ease);
}
.acc-ic--q { background: color-mix(in srgb, var(--brand) 14%, #fff); color: var(--brand-deep); }
.acc-item:hover .acc-ic { transform: scale(1.06) rotate(-4deg); }
.acc-title { flex: 1; min-width: 0; font-size: 15.5px; line-height: 1.3; }
.acc-chev { flex: 0 0 auto; color: var(--muted); transition: transform .28s var(--ease); }
.acc-item[open] .acc-chev { transform: rotate(180deg); color: var(--qc, var(--brand-deep)); }
.acc-body {
  padding: 0 20px 20px 81px;
  display: grid;
  gap: 18px;
  animation: accReveal .4s var(--ease);
}
@keyframes accReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.acc-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.acc-grid p { margin: 0; }
.acc-k {
  display: grid;
  gap: 4px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface, #fafbfd);
}
.acc-k strong { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: var(--qc, var(--brand-deep)); text-transform: uppercase; letter-spacing: .03em; }
.acc-k span { color: var(--ink); font-weight: 500; line-height: 1.45; }
.acc-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============ FAQ search + help ============ */
.faq-search { position: relative; margin-bottom: 22px; }
.faq-search__ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.faq-search input { padding-left: 46px; min-height: 54px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.faq-search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(35,95,170,.16); }
.faq-help {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 24px 26px;
  border-radius: 16px;
  background: linear-gradient(150deg, #102741, #13294a);
  color: #fff;
  box-shadow: var(--shadow);
}
.faq-help__ic { flex: 0 0 auto; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: rgba(35,95,170,.18); color: var(--brand); }
.faq-help__lines { flex: 1; min-width: 0; }
.faq-help__lines strong { display: block; color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.faq-help__lines p { margin: 0; color: #b3c3d9; font-size: 14px; }
.faq-help .btn { flex: 0 0 auto; }

/* ============ NEWSROOM (press & media) ============ */
.newsroom { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; align-items: start; }
.news-lead {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.news-lead:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(13,31,56,.12); }
.news-lead__art {
  position: relative;
  min-height: 230px;
  background: linear-gradient(150deg, #102741, #1a3458);
  display: grid;
  place-items: center;
  color: rgba(35,95,170,.5);
  overflow: hidden;
}
.news-lead__art img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.news-lead__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--brand);
  color: #102741;
  font-size: 12px;
  font-weight: 700;
}
.news-lead__body { padding: 24px 26px 28px; display: grid; gap: 12px; }
.news-date { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 600; }
.news-date .ic { color: var(--brand-deep); }

/* Ana sayfa haber şeridi */
.news-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-strip a {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.news-strip a:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); box-shadow: 0 18px 40px rgba(13,31,56,.12); }
.news-strip__ic {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: color-mix(in srgb, var(--brand) 12%, #fff);
  color: var(--brand-deep);
}
.news-strip h3 { margin: 0; font-size: 16.5px; line-height: 1.35; font-weight: 700; color: var(--ink); }
.news-strip__go { display: inline-flex; align-items: center; gap: 7px; color: var(--brand-deep); font-size: 13.5px; font-weight: 700; }
.news-strip__go .ic { transition: transform .2s var(--ease); }
.news-strip a:hover .news-strip__go .ic { transform: translateX(4px); }
.news-lead__body h3 { margin: 0; font-size: 22px; line-height: 1.2; font-weight: 800; }
.news-lead__body p { margin: 0; color: var(--muted); line-height: 1.6; }
.news-readmore { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-deep); font-weight: 700; }
.news-readmore .ic { transition: transform .2s var(--ease); }
.news-readmore:hover .ic { transform: translateX(4px); }
.news-list { display: grid; gap: 12px; }
.news-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.news-item:hover { transform: translateX(4px); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); box-shadow: var(--shadow-sm); }
.news-item__ic { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: color-mix(in srgb, var(--brand) 12%, #fff); color: var(--brand-deep); }
.news-item__body { display: grid; gap: 4px; min-width: 0; }
.news-item__body strong { font-weight: 700; line-height: 1.3; font-size: 14.5px; }
.news-subscribe {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(160deg, #f8fbff, #fbf2d8);
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
  box-shadow: var(--shadow-sm);
}
.news-subscribe__ic { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 13px; background: var(--brand); color: #102741; }
.news-subscribe h3 { margin: 0; font-size: 19px; font-weight: 800; }
.news-subscribe p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.news-form { display: grid; gap: 10px; }
.news-form input { min-height: 50px; border-radius: 10px; background: #fff; }
.news-form .btn { justify-content: center; }

/* ============ CONTACT PAGE ============ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--brand) 42%, var(--line)); box-shadow: 0 20px 42px rgba(13,31,56,.12); }
.contact-card--static { cursor: default; }
.contact-card--static:hover { transform: none; border-color: var(--line); box-shadow: var(--shadow-sm); }
.contact-card__ic {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--brand) 14%, #fff);
  color: var(--brand-deep);
  transition: transform .25s var(--ease);
}
.contact-card:hover .contact-card__ic { transform: scale(1.08) rotate(-5deg); }
.contact-card__label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.contact-card strong { font-size: 16px; font-weight: 700; line-height: 1.35; color: var(--ink); }
.contact-card a { color: var(--ink); }
.contact-card a:hover { color: var(--brand-deep); }
.contact-form-title { display: flex; align-items: center; gap: 11px; margin: 0 0 18px; font-size: 22px; font-weight: 800; }
.contact-form-title .ic { color: var(--brand-deep); }

/* ============ APPLY TABS ============ */
.apply-tabs { display: inline-flex; gap: 6px; padding: 6px; margin-bottom: 22px; border-radius: 12px; background: var(--surface, #eef3f9); border: 1px solid var(--line); }
.apply-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  border: 0;
  background: transparent;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.apply-tab .ic { color: currentColor; }
.apply-tab:hover { color: var(--ink); }
.apply-tab.is-active { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }

/* ============ LINK + CENTER CARDS ============ */
.cards--link, .cards--center { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card--link, .card--center {
  display: grid;
  gap: 13px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.card--link:hover, .card--center:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); box-shadow: 0 18px 40px rgba(13,31,56,.12); }
.card__ic {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand) 13%, #fff);
  color: var(--brand-deep);
  transition: transform .25s var(--ease);
}
.card--link:hover .card__ic, .card--center:hover .card__ic { transform: scale(1.08) rotate(-5deg); }
.card--link h3, .card--center h3 { margin: 0; font-size: 16.5px; font-weight: 700; line-height: 1.3; }
.card--link p, .card--center p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.card__go { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-deep); font-weight: 700; font-size: 14px; margin-top: 2px; }
.card__go .ic { transition: transform .2s var(--ease); }
.card--link:hover .card__go .ic { transform: translateX(4px); }
.center-line { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.center-line .ic { flex: 0 0 auto; margin-top: 2px; color: var(--brand-deep); }

/* ---- sınav merkezi harita kartları ---- */
.cards--center { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.center-map {
  margin: -22px -22px 6px;
  border-bottom: 1px solid var(--line);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--brand) 6%, #eff3f8);
}
.center-map iframe { display: block; width: 100%; height: 210px; border: 0; filter: saturate(.92); transition: filter .25s var(--ease); }
.card--center:hover .center-map iframe { filter: saturate(1.05); }
.center-head { display: flex; align-items: center; gap: 12px; }
.center-head .card__ic { flex: 0 0 auto; width: 42px; height: 42px; }
.center-head h3 { margin: 0; }
.center-directions { justify-self: start; margin-top: 4px; }

/* ============ FORM CARD ============ */
.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.form-card label .ic { color: var(--brand-deep); margin-right: 2px; }
.form-card label { gap: 8px; }
.form-note { display: flex; align-items: center; gap: 7px; margin: 2px 0 0; color: var(--muted); font-size: 12.5px; font-weight: 500; }
.form-note .ic { color: var(--brand-deep); flex: 0 0 auto; }

/* ============ SCROLL PROGRESS (üst ilerleme çubuğu) ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 60;
  background: rgba(13,31,56,.08);
  pointer-events: none;
}
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand) 60%, #5c96d6);
  box-shadow: 0 0 10px rgba(35,95,170,.55);
  transition: transform .08s linear;
}

/* ============ SAYFA GEÇİŞ EFEKTİ ============ */
.page-enter { animation: pageEnter .5s var(--ease); }
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* ============ HERO "BİR BAKIŞTA" BELGE KUTUSU ============ */
.hero__panel-head { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.hero__panel-ic {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(35,95,170,.18);
  color: var(--brand);
}
.hero__panel-head h2 { margin: 0; font-size: 18px; font-weight: 800; color: #fff; }
.hero__panel-head p { margin: 2px 0 0; font-size: 12.5px; color: #b9c9de; }
/* hero panel resmi yetki markaları (yerel MYK + TÜRKAK) */
.hero__marks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.hero__mark {
  display: grid;
  place-items: center;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.hero__mark:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.36); }
.hero__mark img { height: 118px; width: auto; display: block; }
.hero__belge-tags { display: flex; gap: 8px; margin-bottom: 16px; }
.hero__belge-tag {
  flex: 1;
  display: grid;
  gap: 1px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.hero__belge-tag small { font-size: 9.5px; text-transform: uppercase; letter-spacing: .05em; color: #a8bcd6; }
.hero__belge-tag strong { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: #cfe0f4; letter-spacing: .02em; }

/* ============ YETERLİLİK DETAY POPUP ============ */
.qual-modal {
  position: fixed;
  inset: 0;
  z-index: 78;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(9,21,39,.6);
  backdrop-filter: blur(5px);
}
.qual-modal.is-open { display: flex; animation: qualOverlayIn .45s cubic-bezier(.16,1,.3,1) forwards; }
.qual-modal.is-closing { animation: qualOverlayOut .34s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes qualOverlayIn {
  from { opacity: 0; background: rgba(18,18,22,0); backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); }
  to { opacity: 1; background: rgba(9,21,39,.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
}
@keyframes qualOverlayOut {
  from { opacity: 1; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
  to { opacity: 0; backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); }
}
.qual-modal__card {
  position: relative;
  width: min(540px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0,0,0,.4);
  transform-origin: center bottom;
  will-change: transform, opacity;
  animation: qualCardIn .62s cubic-bezier(.16,1,.3,1) forwards;
}
.qual-modal.is-closing .qual-modal__card { animation: qualCardOut .32s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes qualCardIn {
  0% { opacity: 0; transform: translateY(40px) scale(.92); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes qualCardOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(24px) scale(.96); }
}
/* içeriğin kademeli (stagger) belirmesi */
.qual-modal.is-open .qual-modal__head,
.qual-modal.is-open .qual-modal__item,
.qual-modal.is-open .qual-modal__foot {
  opacity: 0;
  animation: qualItemIn .55s cubic-bezier(.16,1,.3,1) forwards;
}
.qual-modal.is-open .qual-modal__head { animation-delay: .08s; }
.qual-modal.is-open .qual-modal__item:nth-child(1) { animation-delay: .16s; }
.qual-modal.is-open .qual-modal__item:nth-child(2) { animation-delay: .22s; }
.qual-modal.is-open .qual-modal__item:nth-child(3) { animation-delay: .28s; }
.qual-modal.is-open .qual-modal__item:nth-child(4) { animation-delay: .34s; }
.qual-modal.is-open .qual-modal__foot { animation-delay: .42s; }
@keyframes qualItemIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.qual-modal__close { opacity: 0; animation: qualItemIn .5s cubic-bezier(.16,1,.3,1) .5s forwards; }
@media (prefers-reduced-motion: reduce) {
  .qual-modal.is-open .qual-modal__head,
  .qual-modal.is-open .qual-modal__item,
  .qual-modal.is-open .qual-modal__foot,
  .qual-modal__close { opacity: 1 !important; }
}
.qual-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 0; border-radius: 10px;
  background: rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  transform: rotate(180deg);
  transition: background .18s var(--ease);
  z-index: 1;
}
.qual-modal__close:hover { background: rgba(255,255,255,.32); }
.qual-modal__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 26px 22px;
  background: linear-gradient(135deg, var(--qc, var(--brand-deep)), color-mix(in srgb, var(--qc, var(--brand)) 70%, #102741));
  color: #fff;
}
.qual-modal__ic {
  flex: 0 0 auto;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: rgba(255,255,255,.18);
  color: #fff;
}
.qual-modal__code {
  display: inline-block;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,.2);
  padding: 3px 9px; border-radius: 6px;
  margin-bottom: 8px;
}
.qual-modal__head h2 { margin: 0 0 8px; font-size: 22px; line-height: 1.25; font-weight: 800; color: #fff; }
.qual-modal__tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  padding: 4px 11px; border-radius: 999px;
  background: rgba(255,255,255,.16);
}
.qual-modal__grid { display: grid; gap: 14px; padding: 24px 26px; }
.qual-modal__meta {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  padding: 16px 26px 0;
}
.qual-modal__meta span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.qual-modal__meta span .ic { color: var(--qc, var(--brand-deep)); }
.qual-modal__meta strong { color: var(--ink); font-weight: 700; }
.qual-modal__units { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.qual-modal__units li { font-size: 13.5px; line-height: 1.5; color: #45536a; padding-left: 14px; position: relative; }
.qual-modal__units li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--qc, var(--brand)); }
.qual-modal__units strong { color: var(--qc, var(--brand-deep)); font-weight: 700; }
.qual-modal__note { margin: 8px 0 0; font-size: 13px; color: var(--muted); font-style: italic; line-height: 1.5; }
.qual-modal__downloads { display: flex; flex-wrap: wrap; gap: 12px; padding: 0 26px 22px; }
.qual-modal__dl {
  flex: 1 1 auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--qc, var(--brand)) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--qc, var(--brand)) 30%, var(--line));
  color: var(--qc, var(--brand-deep));
  font-weight: 700; font-size: 13.5px;
  transition: background .18s var(--ease), transform .15s var(--ease);
}
.qual-modal__dl:hover { background: color-mix(in srgb, var(--qc, var(--brand)) 18%, #fff); transform: translateY(-2px); }
.qual-modal__item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcfe;
}
.qual-modal__k {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 7px;
  font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  color: var(--qc, var(--brand-deep));
}
.qual-modal__item p { margin: 0; color: #45536a; line-height: 1.6; font-size: 14px; }
.qual-modal__foot {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding: 0 26px 26px;
}
.qual-modal__foot .btn { flex: 1 1 auto; justify-content: center; min-width: 150px; }

/* ============ KVKK ONAY PENCERESİ ============ */
.kvkk-consent {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(18,18,22,.62);
  backdrop-filter: blur(6px);
}
.kvkk-consent.is-open { display: flex; animation: kvkkFade .3s var(--ease); }
.kvkk-consent.is-closing { animation: kvkkFadeOut .35s var(--ease) forwards; }
@keyframes kvkkFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes kvkkFadeOut { from { opacity: 1; } to { opacity: 0; } }
.kvkk-card {
  width: min(540px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 32px 30px 26px;
  box-shadow: 0 40px 90px rgba(0,0,0,.4);
  text-align: center;
  animation: kvkkPop .42s var(--ease);
}
.kvkk-consent.is-closing .kvkk-card { animation: kvkkPopOut .35s var(--ease) forwards; }
@keyframes kvkkPop { from { opacity: 0; transform: translateY(26px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes kvkkPopOut { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(20px) scale(.97); } }
.kvkk-card__ic {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(150deg, #102741, #13294a);
  color: var(--brand);
}
.kvkk-card h2 { margin: 0 0 12px; font-size: 22px; font-weight: 800; }
.kvkk-card__lead { margin: 0 0 14px; color: #4d5b71; font-size: 14.5px; line-height: 1.6; }
.kvkk-card__body { margin: 0 0 22px; padding: 14px 16px; border-radius: 12px; background: var(--soft); border: 1px solid var(--line); text-align: left; max-height: 150px; overflow-y: auto; }
.kvkk-card__body p { margin: 0; color: #4d5b71; font-size: 13px; line-height: 1.6; }
.kvkk-card__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.kvkk-card__actions .btn { flex: 1 1 auto; justify-content: center; min-width: 180px; }


@media (max-width: 1040px) {
  .menu-toggle { display: inline-flex; align-items: center; gap: 7px; min-height: 42px; padding: 0 14px; border: 1px solid rgba(35,95,170,.4); border-radius: 9px; background: rgba(35,95,170,.12); color: #e9f0f8; font-weight: 600; margin-left: auto; }
  .nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(13,31,56,.22);
  }
  .nav.is-open { display: flex; animation: navDrop .26s var(--ease); }
  @keyframes navDrop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
  .nav__group { border-bottom: 1px solid var(--line); }
  .nav__group:last-child { border-bottom: 0; }
  .nav__group::after { content: none; }
  .nav__button, .nav__link {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 12px;
    color: var(--ink);
    font-size: 15px;
    border-radius: 9px;
  }
  .nav__link { border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav > .nav__link:last-child { border-bottom: 0; }
  .nav__button:hover, .nav__link:hover { background: rgba(35,95,170,.14); color: var(--brand-deep); }
  .nav__button::after {
    margin-left: auto;
    width: 8px; height: 8px;
    border-color: var(--brand-deep);
    transform: rotate(45deg) translateY(-2px);
    transition: transform .25s var(--ease);
  }
  .nav__group.is-expanded > .nav__button { color: var(--brand-deep); background: rgba(35,95,170,.1); }
  .nav__group.is-expanded > .nav__button::after { transform: rotate(-135deg) translateY(-2px); }
  .nav__menu {
    position: static;
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    overflow: hidden;
    transition: grid-template-rows .28s var(--ease);
  }
  .nav__group.is-expanded .nav__menu { grid-template-rows: 1fr; }
  .nav__menu > * { min-height: 0; }
  .nav__menu-inner { overflow: hidden; padding: 2px 0 6px; }
  .nav__menu a {
    color: #45536a;
    font-size: 14px;
    padding: 11px 12px 11px 16px;
    margin: 2px 0;
    border-radius: 8px;
  }
  .nav__menu a:hover { background: rgba(35,95,170,.14); color: var(--brand-deep); transform: none; }
  .nav__menu a .nav-ic { color: var(--brand-deep); opacity: 1; }
  .btn--header { display: none; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .cards, .qualification-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-links, .logo-strip, .media-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .cards--link, .cards--center { grid-template-columns: repeat(2, 1fr); }
  .newsroom { grid-template-columns: 1fr; }
  .news-subscribe { position: static; }
  .news-strip { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
  /* yüzen WhatsApp / başa dön düğmeleri alt satırı örtmesin */
  .footer__bottom { padding-right: 76px; }
  .acc-body { padding-left: 20px; }
  .acc-grid { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 680px) {
  .topbar__inner { flex-wrap: wrap; padding: 8px 0; gap: 10px; }
  .socials { width: 100%; margin-left: 0; flex-wrap: wrap; }
  .header__inner { min-height: 74px; }
  .brand { min-width: 0; }
  .brand__emblem { width: 30px; height: 30px; }
  .brand__text strong { font-size: 20px; }
  .brand__text small { font-size: 9px; letter-spacing: .26em; }
  .nav { top: 74px; }
  .hero h1 { font-size: 42px; }
  .section { padding: 50px 0; }
  .section__head { display: block; }
  .cards, .quick-links, .logo-strip, .qualification-grid, .footer__grid, .form-grid, .media-grid, .news-strip { grid-template-columns: 1fr; }
  .contact-grid, .cards--link, .cards--center { grid-template-columns: 1fr; }
  .footer__cta { padding: 26px 22px; margin-top: -46px; }
  .footer__cta-actions { width: 100%; }
  .footer__cta-actions .btn { flex: 1; justify-content: center; }
  .faq-help { flex-direction: column; align-items: flex-start; text-align: left; }
  .acc-item > summary { padding: 16px; gap: 12px; }
  .acc-body { padding: 0 16px 18px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card__foot { flex-direction: column; align-items: stretch; }
  .price-card__foot .btn { width: 100%; justify-content: center; }
  .price-unit__costs { grid-template-columns: 1fr 1fr; }
  .qual-modal__head { padding: 22px 20px 18px; }
  .qual-modal__grid, .qual-modal__foot { padding-left: 18px; padding-right: 18px; }
  .qual-modal__foot .btn { min-width: 100%; }
  .proc-grid { grid-template-columns: 1fr; }
  .qual-modal__downloads { flex-direction: column; }
  .qual-modal__dl { min-width: 100%; }
  .bank-grid { grid-template-columns: 1fr; }
  .paycard__head { flex-wrap: wrap; }
  .paycard__foot { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: auto; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .socials { justify-content: flex-start; }
  .hero__mark img { height: 96px; }
  .kvkk-card { padding: 26px 20px 22px; }
  .kvkk-card__actions .btn { min-width: 100%; }
  .scroll-progress { height: 3px; }
  .back-to-top { right: 14px; }
  .info-box { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
  .info-box::before { display: none; }
}

/* ============ KATEGORİ İÇERİK KUTUCUKLARI ============ */
.lead-text { font-size: 17px; line-height: 1.65; color: #33415a; max-width: 760px; margin: 0 0 26px; }
.info-boxes { display: grid; gap: 16px; }
.info-box {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.info-box::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 4px; border-radius: 4px; background: linear-gradient(var(--brand), var(--brand-deep)); }
.info-box:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand) 32%, var(--line)); box-shadow: 0 18px 38px rgba(13,31,56,.1); }
.info-box--plain { grid-template-columns: 1fr; }
.info-box__ic {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--brand) 13%, #fff);
  color: var(--brand-deep);
  transition: transform .25s var(--ease);
}
.info-box:hover .info-box__ic { transform: scale(1.08) rotate(-5deg); }
.info-box__body { min-width: 0; }
.info-box__body h3 { margin: 2px 0 10px; font-size: 18px; font-weight: 800; color: var(--ink); }
.info-box__body > p { margin: 0 0 12px; color: #45536a; line-height: 1.65; }
.info-box__body > p:last-child { margin-bottom: 0; }
.info-box__body a { color: var(--brand-deep); font-weight: 600; }
.info-list { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 11px; }
.info-list li { display: flex; align-items: flex-start; gap: 11px; color: #45536a; line-height: 1.55; }
.info-list .info-check { flex: 0 0 auto; margin-top: 1px; color: #2e9d6b; }

/* ============ BELGE / SERTİFİKA GALERİSİ ============ */
.doc-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; margin: 6px 0 24px; }
.doc-gallery--single { grid-template-columns: minmax(0, 620px); }
.doc-gallery--certs { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.doc-tile {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.doc-tile:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); box-shadow: 0 22px 46px rgba(13,31,56,.16); }
.doc-tile__frame {
  position: relative;
  display: grid;
  place-items: center;
  padding: 14px;
  background: repeating-linear-gradient(45deg, #f7fafd, #f7fafd 12px, #eef3f9 12px, #eef3f9 24px);
  min-height: 200px;
}
.doc-tile__frame img { max-width: 100%; max-height: 340px; width: auto; height: auto; object-fit: contain; border-radius: 6px; box-shadow: 0 8px 22px rgba(0,0,0,.16); display: block; transition: transform .3s var(--ease); }
.doc-tile:hover .doc-tile__frame img { transform: scale(1.03); }
.doc-gallery--single .doc-tile__frame img { max-height: 520px; }
.doc-tile__bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 15px; border-top: 1px solid var(--line); background: #fff; }
.doc-tile__cap { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.doc-tile__cap .ic { color: var(--brand-deep); flex: 0 0 auto; }
.doc-tile__zoom { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--brand-deep); white-space: nowrap; }
.doc-tile__zoom .ic { transition: transform .2s var(--ease); }
.doc-tile:hover .doc-tile__zoom .ic { transform: scale(1.15); }

/* ============ YETKİ LOGOLARI ============ */
.logo-show { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 6px 0 24px; }
.logo-show__item { margin: 0; display: grid; gap: 0; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.logo-show__item:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); box-shadow: 0 18px 40px rgba(13,31,56,.12); }
.logo-show__frame { display: grid; place-items: center; min-height: 150px; padding: 26px; background: linear-gradient(160deg, #fbfcfe, #f0f4fa); }
.logo-show__frame img { max-width: 100%; max-height: 96px; width: auto; height: auto; object-fit: contain; display: block; }
.logo-show__item figcaption { padding: 14px 16px; border-top: 1px solid var(--line); display: grid; gap: 2px; }
.logo-show__item figcaption strong { font-weight: 700; color: var(--ink); font-size: 14.5px; }
.logo-show__item figcaption span { font-size: 12.5px; color: var(--muted); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 24px;
  background: rgba(18,18,22,.86);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(92vw, 1000px);
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  transform: scale(.94);
  transition: transform .3s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__cap { color: #e2ebf6; font-size: 14px; font-weight: 600; text-align: center; }
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.22); transform: rotate(90deg); }

@media (max-width: 680px) {
  .info-box { grid-template-columns: 1fr; gap: 12px; }
  .info-box__ic { width: 44px; height: 44px; }
  .doc-gallery, .doc-gallery--certs { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .logo-show { grid-template-columns: 1fr; }
  .lightbox__img { max-height: 72vh; }
}

/* ============================================================
   AI sohbet asistanı (chatbot.js)
   ============================================================ */
.chatbot-fab {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 40;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--brand), var(--brand-deep));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(13, 31, 56, .32);
  transition: transform .2s var(--ease), filter .2s var(--ease);
}
.chatbot-fab:hover { transform: translateY(-3px) scale(1.05); filter: brightness(1.08); }
.chatbot-fab.is-open { filter: brightness(.92); }

.chatbot {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 41;
  width: min(382px, calc(100vw - 24px));
  height: min(560px, calc(100dvh - 120px));
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(.97);
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.chatbot.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.chatbot__head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  background: linear-gradient(150deg, var(--header), var(--header-2));
  color: #fff;
}
.chatbot__avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.chatbot__title { display: grid; line-height: 1.3; min-width: 0; }
.chatbot__title strong { font-family: var(--font-display); font-size: 15px; }
.chatbot__title > span { font-size: 12px; color: #b9cbe2; display: inline-flex; align-items: center; gap: 6px; }
.chatbot__dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74, 222, 128, .22); }
.chatbot__close {
  margin-left: auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 0;
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  transition: background .18s var(--ease);
}
.chatbot__close:hover { background: rgba(255,255,255,.22); }

.chatbot__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--soft);
}
.chatbot__msg {
  max-width: 84%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  white-space: normal;
  overflow-wrap: break-word;
}
.chatbot__msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  color: var(--ink);
}
.chatbot__msg--user {
  align-self: flex-end;
  background: linear-gradient(150deg, var(--brand), var(--brand-deep));
  color: #fff;
  border-bottom-right-radius: 5px;
}
.chatbot__msg--lead { border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); background: color-mix(in srgb, var(--brand) 7%, #fff); font-weight: 500; }
.chatbot__msg--lead .ic { color: var(--brand-deep); vertical-align: -0.22em; }
.chatbot__msg--error { border-color: color-mix(in srgb, var(--danger) 38%, var(--line)); background: color-mix(in srgb, var(--danger) 6%, #fff); }
.chatbot__msg a { color: var(--brand-deep); font-weight: 600; text-decoration: underline; }

.chatbot__msg--typing { display: inline-flex; gap: 5px; padding: 13px 15px; }
.chatbot__msg--typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9db1c9;
  animation: chatTyping 1.1s infinite;
}
.chatbot__msg--typing span:nth-child(2) { animation-delay: .18s; }
.chatbot__msg--typing span:nth-child(3) { animation-delay: .36s; }
@keyframes chatTyping { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }

.chatbot__suggests { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; }
.chatbot__suggest {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand) 32%, var(--line));
  background: #fff;
  color: var(--brand-deep);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.chatbot__suggest:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

.chatbot__form {
  display: flex;
  gap: 8px;
  padding: 11px 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.chatbot__form input {
  flex: 1;
  min-width: 0;
  padding: 10px 13px;
  border-radius: 11px;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 13.5px;
  outline: none;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.chatbot__form input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent); }
.chatbot__form.is-busy .chatbot__send { opacity: .55; pointer-events: none; }
.chatbot__send {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 0;
  background: linear-gradient(150deg, var(--brand), var(--brand-deep));
  color: #fff;
  cursor: pointer;
  transition: transform .18s var(--ease), filter .18s var(--ease);
}
.chatbot__send:hover { transform: translateY(-1px); filter: brightness(1.08); }

.chatbot__note {
  margin: 0;
  padding: 7px 14px 10px;
  background: #fff;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.chatbot__note a { color: var(--brand-deep); font-weight: 600; }

@media (max-width: 680px) {
  .chatbot-fab { right: 14px; }
  .chatbot { right: 12px; bottom: 90px; height: min(520px, calc(100dvh - 110px)); }
}

/* ---- Bize Ulaşın: harita + yol tarifi ---- */
.contact-map {
  margin: 6px 0 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--brand) 6%, #eff3f8);
  box-shadow: var(--shadow-sm);
}
.contact-map iframe { display: block; width: 100%; height: 340px; border: 0; filter: saturate(.92); transition: filter .25s var(--ease); }
.contact-map:hover iframe { filter: saturate(1.05); }
.contact-map__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 13px 16px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.contact-map__addr { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #3f5370; }
.contact-map__addr .ic { color: var(--brand-deep); }

/* ---- form gönderim durumu (API) ---- */
.form-status {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 13px;
  font-size: 14px;
  line-height: 1.55;
}
.form-status p { margin: 6px 0 0; }
.form-status__ic { flex: 0 0 auto; margin-top: 2px; }
.form-status--ok { background: color-mix(in srgb, #16a34a 8%, #fff); border: 1px solid color-mix(in srgb, #16a34a 32%, var(--line)); color: #14532d; }
.form-status--ok .form-status__ic { color: #16a34a; }
.form-status__ref { font-family: ui-monospace, Menlo, monospace; letter-spacing: .4px; }
.form-status--err { background: color-mix(in srgb, var(--danger) 7%, #fff); border: 1px solid color-mix(in srgb, var(--danger) 36%, var(--line)); color: #7c2d12; }
.form-status--err .form-status__ic { color: var(--danger); }
.form-status--err a { font-weight: 700; text-decoration: underline; }

@media (max-width: 680px) {
  .contact-map iframe { height: 240px; }
  .contact-map__bar { justify-content: center; text-align: center; }
}
