/* Kahan Özel Güvenlik — site stili
   Palet: lacivert üniforma + arma altını */
:root {
  --ink: #0d1a2c;        /* koyu lacivert zemin */
  --ink-2: #16273f;      /* koyu bölüm yüzeyi */
  --ink-3: #22375a;      /* koyu bölümde kart */
  --gold: #c9a227;       /* arma altını */
  --gold-deep: #9a7a17;  /* altın koyu ton (metin üstü) */
  --gold-soft: #f2e6bf;  /* altın açık ton */
  --paper: #ffffff;
  --paper-2: #f2f4f8;    /* laciverte çalan açık gri */
  --line: #d9dee8;
  --text: #14213a;
  --muted: #5b6779;
  --on-ink: #eef2f8;
  --on-ink-muted: #a8b3c7;
  --ok: #2e7d4f;
  --err: #b3261e;

  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Source Sans 3", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 6px;
  --wrap: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --section: clamp(56px, 8vw, 104px);
  --shadow: 0 18px 40px -22px rgba(13, 26, 44, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.05; margin: 0; text-wrap: balance; letter-spacing: .01em; }
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 700; text-transform: uppercase; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 700; text-transform: uppercase; }
h3 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(18px, 1.5vw, 21px); color: var(--muted); max-width: 62ch; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(36px, 5vw, 64px); }
.section--ink { background: var(--ink); color: var(--on-ink); }
.section--ink .lead, .section--ink .muted { color: var(--on-ink-muted); }
.section--paper2 { background: var(--paper-2); }
.muted { color: var(--muted); }

/* Eyebrow: arma kuşağını andıran altın çizgi */
.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--gold); }
.section--ink .eyebrow { color: var(--gold); }
.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; font-size: 17px;
  padding: 14px 26px; border-radius: var(--radius); text-decoration: none;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: #d9b33a; }
.btn--ink { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink-2); }
.btn--ghost { background: transparent; color: var(--on-ink); border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn--ghost-ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-ink:hover { background: var(--ink); color: var(--on-ink); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Top bar */
.topbar { background: var(--ink); color: var(--on-ink-muted); font-size: 14px; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; }
.topbar a { color: var(--on-ink); text-decoration: none; }
.topbar a:hover { color: var(--gold); }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__left span::before { content: "•"; color: var(--gold); margin-right: 8px; }
.topbar__left span:first-child::before { content: none; }
@media (max-width: 720px) { .topbar__right, .topbar__left span:nth-child(2), .topbar__left span:nth-child(3) { display: none; } }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--line); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.header__phone { display: none; width: 44px; height: 44px; border-radius: var(--radius); background: var(--gold); color: var(--ink); align-items: center; justify-content: center; }
.header__phone svg { width: 20px; height: 20px; }
.nav__cta { display: none; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { height: 56px; width: auto; }
.brand__text { font-family: var(--display); text-transform: uppercase; line-height: 1; }
.brand__text strong { display: block; font-size: 26px; letter-spacing: .06em; font-weight: 700; }
.brand__text span { display: block; font-size: 13px; letter-spacing: .22em; color: var(--gold-deep); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: 17px;
  text-decoration: none; padding: 10px 14px; color: var(--text); border-bottom: 3px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--gold); color: var(--ink); }
.header__cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 2px solid var(--ink); border-radius: var(--radius); padding: 8px 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; }
@media (max-width: 960px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 16px; box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 18px; }
  .nav__cta { display: flex; gap: 10px; padding-top: 14px; }
  .nav__cta .btn { flex: 1; padding: 12px 10px; font-size: 15px; }
  .nav__cta a { border-bottom: 0; }
  .nav-toggle { display: block; min-width: 44px; min-height: 44px; }
  .header__cta { gap: 8px; }
  .header__cta .btn { display: none; }
  .header__phone { display: inline-flex; }
  .header .wrap { min-height: 68px; }
  .brand img { height: 46px; }
  .brand__text strong { font-size: 22px; }
  .brand__text span { font-size: 11px; }
}

/* Hero */
.hero { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.hero::after { /* arma ışınlarını andıran ince diagonal doku */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.025) 0 2px, transparent 2px 22px);
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 7vw, 96px); }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lead { color: var(--on-ink-muted); margin: 20px 0 30px; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); aspect-ratio: 4 / 3; object-fit: cover; }
.hero__media::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 3px solid var(--gold); border-radius: var(--radius); z-index: 0; opacity: .8; }
.hero__media img { position: relative; z-index: 1; }
.hero__badge { position: absolute; z-index: 2; left: -14px; bottom: 28px; background: var(--gold); color: var(--ink); padding: 12px 16px; border-radius: var(--radius); font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; line-height: 1.1; box-shadow: var(--shadow); }
.hero__badge strong { display: block; font-size: 30px; font-weight: 700; }
.hero__badge span { font-size: 13px; letter-spacing: .14em; }
@media (max-width: 860px) {
  /* Mobil: fotoğraf tam genişlik arka plan, yazı üstte */
  .hero { min-height: min(92vh, 780px); display: flex; align-items: flex-end; }
  .hero .wrap { grid-template-columns: 1fr; padding-block: 36px 40px; position: static; }
  .hero .wrap > div:first-child { position: relative; z-index: 2; }
  .hero__media { position: absolute; inset: 0; margin: 0; z-index: 0; }
  .hero__media::before { display: none; }
  .hero__media img { position: static; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: 50% 0; border-radius: 0; box-shadow: none; }
  .hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,26,44,.05) 0%, rgba(13,26,44,.35) 40%, rgba(13,26,44,.9) 62%, var(--ink) 100%); }
  .hero__badge { display: none; }
  .hero::after { display: none; }
  .hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .hero .lead { margin: 14px 0 22px; font-size: 17px; }
}

/* Güven şeridi */
.trust { background: var(--ink-2); color: var(--on-ink); border-top: 1px solid rgba(255,255,255,.08); }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust__item { display: flex; gap: 14px; align-items: center; padding: 20px 22px 20px 0; border-right: 1px solid rgba(255,255,255,.1); margin-right: 22px; }
.trust__item:last-child { border-right: 0; margin-right: 0; }
.trust__item svg { width: 34px; height: 34px; flex: none; color: var(--gold); }
.trust__item strong { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: 18px; line-height: 1.1; }
.trust__item span { font-size: 14px; color: var(--on-ink-muted); }
@media (max-width: 960px) { .trust .wrap { grid-template-columns: 1fr 1fr; } .trust__item:nth-child(2) { border-right: 0; } }
@media (max-width: 560px) { .trust .wrap { grid-template-columns: 1fr; } .trust__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); margin-right: 0; padding-right: 0; } .trust__item:last-child { border-bottom: 0; } }

/* Hizmet kartları */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.service__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service h3 { text-transform: uppercase; letter-spacing: .03em; }
.service p { color: var(--muted); font-size: 16px; }
.service__more { margin-top: auto; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: 15px; font-weight: 600; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 8px; }
.service__more::after { content: "→"; transition: transform .2s; }
.service:hover .service__more::after { transform: translateX(4px); }
@media (max-width: 960px) { .services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

/* İki sütun (hakkımızda özeti) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4 / 3; width: 100%; }
.split__media--framed { position: relative; }
.split__media--framed::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; border: 3px solid var(--gold); border-radius: var(--radius); }
.split__media--framed img { position: relative; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--media-first .split__media { order: -1; } }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%; background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d1a2c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center / 14px no-repeat; }

/* Neden Kahan: ikonlu üçlü */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature { padding: 28px 26px; border-top: 3px solid var(--gold); background: var(--ink-3); border-radius: 0 0 var(--radius) var(--radius); }
.feature svg { width: 38px; height: 38px; color: var(--gold); margin-bottom: 14px; }
.feature h3 { text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; color: #fff; }
.feature p { color: var(--on-ink-muted); font-size: 16px; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }

/* Sayılar */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(32px, 5vw, 56px); padding-top: clamp(32px, 5vw, 56px); border-top: 1px solid rgba(255,255,255,.12); }
.stat strong { display: block; font-family: var(--display); font-size: clamp(44px, 5vw, 64px); font-weight: 700; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.stat span { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: 16px; margin-top: 6px; color: #fff; }
.stat p { color: var(--on-ink-muted); font-size: 15px; margin-top: 8px; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }

/* Süreç (gerçek sıra: keşif → analiz → plan → görev) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 26px 22px 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--display); font-size: 44px; font-weight: 700; color: var(--gold); line-height: 1; display: block; margin-bottom: 10px; }
.step h3 { text-transform: uppercase; letter-spacing: .04em; font-size: 21px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Sektörler / referans şeridi */
.sectors { display: flex; flex-wrap: wrap; gap: 10px; }
.sectors span { font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: 15px; font-weight: 600; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }

/* Blog kartları */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post { display: flex; flex-direction: column; gap: 10px; padding: 26px 24px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post__tag { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: 13px; color: var(--gold-deep); font-weight: 600; }
.post h3 { font-size: 23px; }
.post p { color: var(--muted); font-size: 16px; }
.post__more { margin-top: auto; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: 15px; font-weight: 600; }
@media (max-width: 960px) { .posts { grid-template-columns: 1fr; } }

/* CTA bandı */
.cta { background: var(--gold); color: var(--ink); }
.cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: clamp(32px, 4vw, 48px); }
.cta h2 { font-size: clamp(26px, 3.4vw, 40px); }
.cta p { margin-top: 6px; font-size: 17px; }

/* Footer */
.footer { background: var(--ink); color: var(--on-ink-muted); font-size: 15px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1fr 1.2fr; gap: 32px; padding-block: clamp(40px, 5vw, 64px); }
.footer h4 { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: 15px; color: var(--gold); margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { color: var(--on-ink); text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer__brand img { height: 64px; width: auto; margin-bottom: 14px; }
.footer__brand p { max-width: 38ch; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; flex: none; color: var(--gold); margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 14px; }
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* Sayfa başlığı (iç sayfalar) */
.page-head { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.page-head::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(115deg, rgba(255,255,255,.025) 0 2px, transparent 2px 22px); }
.page-head .wrap { position: relative; z-index: 1; padding-block: clamp(40px, 6vw, 72px); }
.page-head h1 { color: #fff; font-size: clamp(36px, 5vw, 60px); }
.page-head .lead { color: var(--on-ink-muted); margin-top: 12px; }
.crumbs { font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: 14px; color: var(--on-ink-muted); margin-bottom: 14px; }
.crumbs a { color: var(--gold); text-decoration: none; }
.crumbs span::before { content: "/"; margin: 0 8px; opacity: .5; }

/* Hizmet detay blokları */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: clamp(36px, 5vw, 64px); border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.service-detail:last-child { border-bottom: 0; }
.service-detail:nth-child(even) .service-detail__media { order: 2; }
.service-detail__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.service-detail h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 12px; }
.service-detail .checklist { margin-top: 16px; }
@media (max-width: 860px) { .service-detail { grid-template-columns: 1fr; } .service-detail:nth-child(even) .service-detail__media { order: 0; } }

/* Değerler ızgarası */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value { padding: 24px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.value svg { width: 32px; height: 32px; color: var(--gold-deep); margin-bottom: 12px; }
.value h3 { font-size: 21px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.value p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 960px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } }

/* Formlar */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: 14px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--text); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: 3px solid rgba(201,162,39,.25); }
.field textarea { min-height: 140px; resize: vertical; }
.field small { color: var(--muted); font-size: 13.5px; }
.form__consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--muted); }
.form__consent input { margin-top: 5px; }
.form__status { padding: 12px 14px; border-radius: var(--radius); font-size: 15px; display: none; }
.form__status.is-ok { display: block; background: #e6f4ec; color: var(--ok); }
.form__status.is-err { display: block; background: #fbe9e7; color: var(--err); }

/* İletişim kartları */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: flex; gap: 16px; padding: 20px; background: var(--paper-2); border-radius: var(--radius); border: 1px solid var(--line); }
.contact-card svg { width: 26px; height: 26px; color: var(--gold-deep); flex: none; margin-top: 2px; }
.contact-card strong { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: 16px; margin-bottom: 4px; }
.contact-card a { text-decoration: none; }
.contact-card a:hover { color: var(--gold-deep); }
.map { margin-top: 20px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); aspect-ratio: 16 / 9; display: grid; place-items: center; color: var(--muted); font-size: 15px; }
.map iframe { width: 100%; height: 100%; border: 0; }

/* Kariyer: pozisyonlar */
.jobs { display: grid; gap: 14px; }
.job { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 20px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.job h3 { font-size: 22px; text-transform: uppercase; letter-spacing: .03em; }
.job p { color: var(--muted); font-size: 15.5px; margin-top: 4px; }
.job__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.job__meta span { font-size: 13px; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; }
@media (max-width: 600px) { .job { grid-template-columns: 1fr; } }

/* Makale */
.article { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 5vw, 72px); align-items: start; }
.article__body { max-width: 68ch; font-size: 18px; }
.article__body h2 { font-size: clamp(24px, 3vw, 32px); margin: 1.6em 0 .6em; }
.article__body h3 { font-size: 22px; margin: 1.4em 0 .4em; }
.article__body ul { padding-left: 1.2em; }
.article__body li { margin-bottom: .5em; }
.article__body li strong { color: var(--ink); }
.article__body img { border-radius: var(--radius); margin: 1.5em 0; }
.aside { position: sticky; top: 104px; display: grid; gap: 20px; }
.aside__box { padding: 22px; background: var(--paper-2); border-radius: var(--radius); border: 1px solid var(--line); }
.aside__box h4 { font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: 15px; color: var(--gold-deep); margin-bottom: 12px; }
.aside__box ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.aside__box a { text-decoration: none; font-weight: 600; font-size: 15.5px; }
.aside__box a:hover { color: var(--gold-deep); }
.aside__box--ink { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.aside__box--ink h4 { color: var(--gold); }
.aside__box--ink p { color: var(--on-ink-muted); font-size: 15.5px; }
@media (max-width: 960px) { .article { grid-template-columns: 1fr; } .aside { position: static; } }

/* WhatsApp sabit buton */
.wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; text-decoration: none;
  padding: 12px 16px; border-radius: 999px; font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: 15px;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.45);
}
.wa svg { width: 22px; height: 22px; }
@media (max-width: 600px) { .wa span { display: none; } .wa { padding: 14px; } }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--ink); padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Hizmet bölgeleri */
.regions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.region { display: grid; gap: 4px; padding: 20px 22px; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); background: var(--paper); text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
.region:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.region strong { font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: 22px; }
.region span { color: var(--muted); font-size: 15px; }
@media (max-width: 860px) { .regions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .regions { grid-template-columns: 1fr; } }

/* SSS */
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); padding: 0 20px; }
.faq__item summary { cursor: pointer; list-style: none; padding: 16px 0; font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: .02em; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--gold-deep); font-size: 26px; line-height: 1; flex: none; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { color: var(--muted); padding-bottom: 18px; margin: 0; }
.sectors .sector-link { font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: 15px; font-weight: 600; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); text-decoration: none; }
.sectors .sector-link:hover { border-color: var(--gold); color: var(--gold-deep); }

/* Mobil alt aksiyon çubuğu */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .wa { display: none; }
  body { padding-bottom: 64px; }
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 1px;
    background: var(--line); border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 56px;
    background: var(--paper); color: var(--ink); text-decoration: none;
    font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: 15px;
  }
  .mobile-bar a svg { width: 20px; height: 20px; color: var(--gold-deep); }
  .mobile-bar__primary { background: var(--ink) !important; color: var(--on-ink) !important; }
  /* Footer bağlantıları dokunma hedefi */
  .footer ul { gap: 2px; }
  .footer ul a, .footer__contact li { display: inline-block; padding: 8px 0; }
  .footer__contact li { display: flex; }
  .footer__bottom { padding-bottom: 24px; }
  /* Kırıntı ve topbar */
  .crumbs a { display: inline-block; padding: 6px 0; }
  .topbar .wrap { min-height: 34px; }
  /* Hero ve bölüm boşlukları */
  .section { padding-block: 48px; }
  .btn-row .btn { width: 100%; }
  .hero .btn-row { flex-direction: column; }
  .cta .btn-row { width: 100%; }
  .service-detail { padding-block: 32px; }
  .article__body { font-size: 17px; }
  .job .btn { width: 100%; }
}

.map__link { display: grid; gap: 8px; place-items: center; text-align: center; padding: 28px; text-decoration: none; color: var(--text); width: 100%; height: 100%; }
.map__link strong { font-family: var(--display); font-size: 20px; letter-spacing: .02em; }
.map__link span { color: var(--gold-deep); font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: 14px; font-weight: 600; }
.map__caption { display: inline-block; margin-top: 10px; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: 14px; font-weight: 600; color: var(--gold-deep); text-decoration: none; }
.map__caption:hover { text-decoration: underline; }
.map__img { position: relative; display: block; width: 100%; height: 100%; }
.map__img img { width: 100%; height: 100%; object-fit: cover; }
.map__img span { position: absolute; left: 12px; bottom: 12px; background: var(--ink); color: var(--gold); padding: 8px 12px; border-radius: var(--radius); font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: 13px; font-weight: 600; }
