/* =========================================================================
   CRM AKADEMİ — Kurumsal Site Stil Dosyası
   Marka kimliği: gerçek CRM Akademi logosu, marka mavisi (#0060FF) ve
   koyu lacivert (#131E3C) üzerine kurulu, Montserrat + Nunito Sans
   yazı tipi çiftiyle temiz, kurumsal bir görünüm.
   ========================================================================= */

/* ---------- Yazı tipleri (yerel olarak barındırılır, dış CDN çağrısı yok) --- */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Variable.woff2') format('woff2-variations'),
       url('../fonts/Montserrat-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-Variable.woff2') format('woff2-variations'),
       url('../fonts/NunitoSans-Variable.woff2') format('woff2');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

/* ---------- Token sistemi ---------- */
:root {
  /* Renkler — gerçek site markasından (logo + yayındaki CSS) alınmıştır */
  --ink-950: #131E3C;   /* marka lacivertı: header/footer/koyu bölümler */
  --ink-800: #1B2A52;
  --ink-700: #22346a;
  --paper: #F5F7FA;
  --paper-raise: #ffffff;
  --brass-500: #0060FF; /* marka mavisi: birincil vurgu/buton/link rengi */
  --brass-600: #004ecc;
  --brass-tint: #E6EFFF;
  --slate-600: #333333; /* gövde metni (gerçek site body rengi) */
  --slate-400: #7A7A7A;
  --line-200: #E1E4E8;
  --line-100: #EDEFF2;
  --teal-600: #0069B4;  /* ikincil vurgu (logo mavisi tonu) */
  --teal-tint: #E4F0F9;
  --red-600: #C0392B;

  /* Tipografi — gerçek sitede kullanılan yazı tipi çifti */
  --font-display: 'Montserrat', -apple-system, Segoe UI, Arial, sans-serif;
  --font-body: 'Nunito Sans', -apple-system, Segoe UI, Arial, sans-serif;
  --font-mono: var(--font-body);

  /* Düzen */
  --maxw: 1200px;
  --radius: 4px;
  --shadow-card: 0 1px 2px rgba(19, 30, 60, 0.06), 0 8px 24px -12px rgba(19, 30, 60, 0.18);
}

/* ---------- Sıfırlama ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--slate-600);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* İçerik kısa olduğunda (ör. az sayıda öğe içeren sayfalar) footer'ın
     sayfanın ortasında kalmayıp her zaman en altta durmasını sağlar. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main#icerik { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; color: var(--ink-950); letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--brass-500);
  outline-offset: 2px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: 1560px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--brass-500);
  display: inline-block;
}

h1, .h1 { font-size: clamp(2.4rem, 4.4vw, 4rem); line-height: 1.02; letter-spacing: -0.01em; }
h2, .h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.05; }
h3, .h3, .content-subheading { font-size: 1.4rem; line-height: 1.15; }
.lede { font-size: 1.15rem; color: var(--slate-600); max-width: 62ch; }

.nowrap-heading { white-space: nowrap; }
@media (max-width: 560px) { .nowrap-heading { white-space: normal; font-size: 1.6rem; } }

.section { padding: 88px 0; position: relative; }
.section--tight { padding: 56px 0; }
.section--ink { background: var(--ink-950); color: #c7cbdb; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section-head { max-width: 700px; margin-bottom: 48px; }
.section-head + .section-head { margin-top: 0; }
.section-head--center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brass-500); color: #211405; }
.btn-primary:hover { background: var(--brass-600); color: #fff; }
.btn-ghost { border-color: var(--line-200); color: var(--ink-950); background: transparent; }
.btn-ghost:hover { border-color: var(--ink-950); }
.section--ink .btn-ghost { border-color: rgba(255,255,255,0.28); color: #fff; }
.section--ink .btn-ghost:hover { border-color: #fff; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn-arrow::after { content: '→'; }

/* ---------- Ana navigasyon ---------- */
.navbar {
  background: var(--paper-raise);
  border-bottom: 1px solid var(--line-200);
  position: sticky;
  top: 0;
  z-index: 40;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; }
.brand__logo { height: 60px; width: auto; display: block; }
.brand__mark { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; letter-spacing: 0.01em; color: var(--ink-950); }
.brand__mark span { color: var(--brass-500); }
.brand__tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-400); border-left: 1px solid var(--line-200); padding-left: 10px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a, .nav-item > a, .nav-item__label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-block;
}
.nav-links > a:hover, .nav-links > a.is-active,
.nav-item > a:hover, .nav-item > a.is-active,
.nav-item__label:hover, .nav-item__label.is-active { border-color: var(--brass-500); color: var(--ink-950); }
.nav-cta { display: flex; align-items: center; gap: 16px; }

/* ---------- Açılır alt menü (dropdown) ---------- */
.nav-item { position: relative; }
.nav-caret { font-size: 10px; display: inline-block; margin-left: 2px; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--paper-raise);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 50;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown, .nav-item.is-open .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: 3px;
  text-transform: none;
  letter-spacing: normal;
}
.nav-dropdown a:hover { background: var(--brass-tint); color: var(--ink-950); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line-200); border-radius: var(--radius); width: 42px; height: 42px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 18px; height: 2px; background: var(--ink-950); position: relative; transition: all .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Açılı (skewed) buton — gerçek sitedeki İletişim/CTA buton şekli ---------- */
.btn-angled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px 13px 22px;
  background: var(--brass-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  transition: background .15s ease;
}
.btn-angled:hover { background: var(--brass-600); }

@media (max-width: 960px) {
  .nav-links { position: fixed; top: 78px; right: 0; bottom: 0; left: 0; background: var(--paper-raise); flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 4px; overflow-y: auto; transform: translateX(100%); transition: transform .25s ease; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links > a, .nav-item { width: 100%; }
  .nav-links > a, .nav-item > a, .nav-item__label { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line-100); display: block; }
  .nav-item .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; border-left: 2px solid var(--line-200); padding: 4px 0 4px 14px; margin-bottom: 6px; display: none;
  }
  .nav-item.is-open .nav-dropdown { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero Slider (anasayfa üst kayan görsel alanı) ---------- */
.hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--ink-950);
}
.hero-slider__track { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide__img {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-slide__overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(100deg, rgba(19,30,60,0.72) 20%, rgba(19,30,60,0.5) 48%, rgba(19,30,60,0.22) 100%);
}
.hero-slide__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-slide__content h1, .hero-slide__content h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  max-width: 16ch;
  margin-bottom: 18px;
}
.hero-slide__content .lede {
  color: #dbe0ee;
  max-width: 46ch;
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(19,30,60,0.35);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}
.hero-slider__arrow:hover { background: var(--brass-500); border-color: var(--brass-500); }
.hero-slider__arrow--prev { left: 22px; }
.hero-slider__arrow--next { right: 22px; }

.hero-slider__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-slider__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  transition: background .15s ease, transform .15s ease;
}
.hero-slider__dot.is-active { background: var(--brass-500); transform: scale(1.2); }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
@media (max-width: 780px) {
  .hero-slider { height: 520px; }
  .hero-slider__arrow { display: none; }
}

/* ---------- İstatistik şeridi (spec-sheet satırı) ---------- */
.stat-strip { background: var(--ink-950); border-top: 1px solid #232c52; }
.stat-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 30px 20px;
  border-left: 1px solid #232c52;
}
.stat:first-child { border-left: none; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; color: #fff; line-height: 1; }
.stat__num span { color: var(--brass-500); }
.stat__label { font-family: var(--font-mono); font-size: 12px; color: #8891ae; margin-top: 8px; }
@media (max-width: 780px) {
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
}

/* ---------- Kartlar ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper-raise);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: var(--brass-500); transform: translateY(-2px); }

.module-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.module-code {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-950);
  background: var(--brass-tint);
  border: 1px solid var(--brass-500);
  padding: 5px 9px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}
.module-card__icon { width: 40px; height: 40px; color: var(--brass-600); flex-shrink: 0; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate-600); font-size: 14.8px; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--brass-600); }
.card__link::after { content: '→'; transition: transform .15s ease; }
.card:hover .card__link::after { transform: translateX(3px); }

.product-card-img__thumb { margin: -30px -30px 20px; border-radius: 3px 3px 0 0; overflow: hidden; position: relative; height: 0; padding-bottom: 72.97%; background: #fff; }
.product-card-img__thumb img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Vaka / referans kartları ---------- */
.case-card { display: flex; flex-direction: column; height: 100%; }
.case-card__tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal-600); background: var(--teal-tint); display: inline-block; padding: 4px 8px; border-radius: 3px; margin-bottom: 14px; align-self: flex-start; }
.case-card__client { font-family: var(--font-mono); font-size: 12.5px; color: var(--slate-400); margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-100); }

/* ---------- Referans / müşteri logoları carousel'i (hero altı) ---------- */
.client-carousel {
  background: var(--paper-raise);
  border-bottom: 1px solid var(--line-200);
  padding: 36px 0 20px;
  position: relative;
}
.client-carousel__inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 52px; /* okların oturacağı dar kenar boşluğu */
}
.client-carousel__viewport { overflow: hidden; }
.client-carousel__track {
  display: flex;
  align-items: center;
  gap: 20px;
  will-change: transform;
  transition: transform .45s ease;
}
.client-carousel__item {
  /* Masaüstünde tam 6 logo yan yana sığacak şekilde hesaplanır: (100% - 5 ara boşluk) / 6 */
  flex: 0 0 calc((100% - 5 * 20px) / 6);
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-carousel__item img, .client-carousel__item a {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.client-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-200);
  background: var(--paper-raise);
  color: var(--slate-400);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s ease, color .15s ease;
}
.client-carousel__arrow--prev { left: 6px; }
.client-carousel__arrow--next { right: 6px; }
.client-carousel__arrow:hover { border-color: var(--brass-500); color: var(--brass-600); }
.client-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.client-carousel__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-200);
  border: none;
  transition: background .15s ease, transform .15s ease;
}
.client-carousel__dot.is-active { background: var(--brass-500); transform: scale(1.25); }
@media (max-width: 960px) {
  /* Tablet: tam 3 logo sığar */
  .client-carousel__inner { padding: 0 44px; }
  .client-carousel__item { flex-basis: calc((100% - 2 * 24px) / 3); height: 100px; }
  .client-carousel__track { gap: 24px; }
}
@media (max-width: 640px) {
  /* Mobil: tam 2 logo sığar */
  .client-carousel__inner { padding: 0 38px; }
  .client-carousel__item { flex-basis: calc((100% - 1 * 20px) / 2); height: 64px; }
  .client-carousel__track { gap: 20px; }
  .client-carousel__arrow { width: 32px; height: 32px; font-size: 16px; }
}

/* ---------- Anasayfa "Hakkımızda" kartı + fotoğraf (gerçek siteden) ---------- */
#hakkimizda { scroll-margin-top: 94px; }
.about-banner {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1.15fr;
  align-items: stretch;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-banner__card {
  background: var(--ink-950);
  position: relative;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-banner__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 20% 30%, #000 0%, transparent 65%);
          mask-image: radial-gradient(circle at 20% 30%, #000 0%, transparent 65%);
}
.about-banner__content { position: relative; z-index: 2; }
.about-banner .eyebrow { color: var(--brass-500); margin-bottom: 18px; }
.about-banner__text {
  color: #c7cbdb;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 34px;
}
.about-banner__stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.about-banner__stat-icon { color: #fff; display: block; margin-bottom: 14px; }
.about-banner__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: #fff;
  position: relative;
  display: inline-block;
}
.about-banner__slash {
  display: inline-block;
  width: 9px;
  height: 22px;
  background: var(--brass-500);
  transform: skewX(-14deg);
  margin-left: 6px;
  vertical-align: -3px;
}
.about-banner__stat-label { color: #9ba4c0; font-size: 13.5px; margin-top: 4px; }
.about-banner__photo { position: relative; min-height: 320px; }
.about-banner__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-banner__photo-placeholder {
  width: 100%; height: 100%; min-height: 320px;
  background: linear-gradient(135deg, var(--ink-950) 0%, var(--teal-600) 130%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
}
@media (max-width: 860px) {
  .about-banner { grid-template-columns: 1fr; border-radius: 20px; }
  .about-banner__photo, .about-banner__photo-placeholder { min-height: 260px; }
  .about-banner__stats { gap: 24px; }
}

/* ---------- Kariyer bandı (gerçek siteden — tam genişlik mavi şerit) ---------- */
.career-band {
  background: var(--brass-500);
}
.career-band__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}
.career-band__image {
  width: 220px;
  height: 140px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.career-band__text {
  flex: 0 1 auto;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  text-align: center;
  padding: 16px 40px;
}
.career-band__btn {
  flex-shrink: 0;
  background: var(--ink-950);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  padding: 16px 44px 16px 26px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  transition: background .15s ease;
  white-space: nowrap;
}
.career-band__btn:hover { background: var(--ink-800); }
@media (max-width: 780px) {
  .career-band__inner { flex-wrap: wrap; min-height: 0; justify-content: center; }
  .career-band__image { width: 100%; height: 140px; }
  .career-band__text { padding: 20px 24px; font-size: 1.2rem; flex-basis: 100%; }
  .career-band__btn { margin: 0 0 24px; }
}

/* ---------- Sektörler şeridi (gerçek siteden — kare fotoğraf + etiket) ---------- */
/* ---------- İş Ortakları logo grid'i ---------- */
.partner-row { display: flex; flex-wrap: wrap; gap: 20px; }
.partner-item {
  flex: 1 1 200px;
  max-width: 220px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-raise);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color .15s ease, transform .15s ease;
}
.partner-item:hover { border-color: var(--brass-500); transform: translateY(-2px); }
.partner-item img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
@media (max-width: 640px) {
  .partner-item { flex: 1 1 calc(50% - 10px); max-width: none; height: 100px; }
}
@media (max-width: 360px) {
  .partner-item { flex: 1 1 100%; }
}

.sector-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 16px; }
.sector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 150px;
  text-align: center;
  transition: transform .15s ease;
}
.sector-item:hover { transform: translateY(-3px); }
.sector-item__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  background: var(--paper);
}
.sector-item__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sector-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-600);
  background: linear-gradient(135deg, var(--brass-tint) 0%, var(--paper) 100%);
}
.sector-item__label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brass-600);
}
.sector-item:hover .sector-item__label { color: var(--brass-500); text-decoration: underline; }
@media (max-width: 640px) { .sector-item { width: 96px; } .sector-item__label { font-size: 12px; } }

/* ---------- CTA bandı ---------- */
.cta-band { background: var(--ink-950); border-radius: 4px; padding: 56px; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #9ba4c0; }

/* ---------- Sayfa başlığı şeridi (iç sayfalar) ---------- */
.page-hero { background: var(--ink-950); padding: 64px 0 46px; }
.page-hero h1 { color: #fff; margin-top: 16px; }
.page-hero .lede { color: #9ba4c0; margin-top: 16px; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; color: #6d7699; }
.breadcrumb a:hover { color: var(--brass-500); }

/* ---------- İçerik / prose ---------- */
.prose p { margin-bottom: 1.15em; color: var(--slate-600); }
.prose strong { color: var(--ink-950); }
.prose ul, .prose ol { margin: 0 0 1.15em 1.3em; color: var(--slate-600); }
.prose li { margin-bottom: 0.5em; }
.prose hr { border: none; border-top: 1px solid var(--line-200); margin: 24px 0; }
.prose h3, .prose h4, .prose .content-subheading { margin-top: 1.6em; margin-bottom: 0.6em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: 14.5px; }
.prose table td { border: 1px solid var(--line-200); padding: 10px 12px; vertical-align: top; color: var(--slate-600); }
.prose table td p { margin-bottom: 0; }
.prose table tr:first-child td { background: var(--paper-raise); }

/* ---------- İnsan Kaynakları sayfası ---------- */
/* ---------- D365 modül sayfaları ---------- */
.d365-feature-list { list-style: none; margin: 20px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.d365-feature-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--slate-600); font-size: 14.5px; line-height: 1.55; }
.d365-feature-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--brass-500); }
.d365-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
  margin-bottom: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-950);
}
.d365-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.d365-cta-box { margin-top: 36px; padding: 24px; background: var(--paper-raise); border: 1px solid var(--line-200); border-radius: var(--radius); }
.d365-cta-box p { margin-bottom: 14px; }
.d365-side-link { display: block; padding: 9px 4px; font-size: 14px; color: var(--slate-600); border-radius: 3px; }
.d365-side-link:hover { color: var(--ink-950); }
.d365-side-link.is-active { color: var(--brass-500); font-weight: 700; }

.ik-process-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ik-process-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--slate-600); font-size: 14.5px; line-height: 1.55; }
.ik-process-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--brass-500); }

.ik-photo { position: relative; border-radius: 16px; overflow: hidden; min-height: 320px; }
.ik-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ik-photo__placeholder {
  width: 100%; height: 100%; min-height: 320px;
  background: linear-gradient(135deg, var(--ink-950) 0%, var(--teal-600) 130%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
}

.ik-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.ik-stat__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: #fff; }
.ik-stat__label { color: #9ba4c0; font-size: 14px; margin-top: 6px; }
@media (max-width: 700px) { .ik-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }

.ik-skills { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.ik-skill__head { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 600; color: var(--ink-950); margin-bottom: 6px; }
.ik-skill__track { height: 7px; background: var(--line-200); border-radius: 99px; overflow: hidden; }
.ik-skill__bar { height: 100%; background: var(--brass-500); border-radius: 99px; }

.ik-tabs__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 36px; }
.ik-tabs__btn {
  background: var(--paper-raise);
  border: 1px solid var(--line-200);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--slate-400);
  cursor: pointer;
  transition: all .15s ease;
}
.ik-tabs__btn:hover { border-color: var(--brass-500); color: var(--ink-950); }
.ik-tabs__btn.is-active { background: var(--brass-500); border-color: var(--brass-500); color: #fff; }
.ik-tabs__panel { max-width: 720px; margin: 0 auto; text-align: center; }
.ik-tabs__panel h3 { margin-bottom: 14px; }
.ik-tabs__panel .prose { text-align: center; margin-bottom: 20px; }

/* ---------- KVKK sekmeleri ---------- */
.kvkk-tabs__nav { display: flex; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid var(--line-200); margin-bottom: 32px; padding-bottom: 0; }
.kvkk-tabs__btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 4px;
  margin-right: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--slate-400);
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.kvkk-tabs__btn:hover { color: var(--ink-950); }
.kvkk-tabs__btn.is-active { color: var(--brass-500); border-color: var(--brass-500); }
.kvkk-tabs__panel .kvkk-prose { max-width: 820px; }
@media (max-width: 700px) {
  .kvkk-tabs__nav { flex-direction: column; gap: 0; }
  .kvkk-tabs__btn { margin-right: 0; border-bottom: 1px solid var(--line-100); border-left: 2px solid transparent; padding: 12px 10px; text-align: left; }
  .kvkk-tabs__btn.is-active { border-left-color: var(--brass-500); border-bottom-color: var(--line-100); background: var(--brass-tint); }
}

/* ---------- İki sütun (metin + yan panel) ---------- */
.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ---------- İletişim sayfası: bilgi kutuları + harita (gerçek siteden) ---------- */
.contact-info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-info-box {
  background: var(--paper-raise);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
}
.contact-info-box__icon { display: inline-flex; color: var(--brass-500); margin-bottom: 16px; }
.contact-info-box strong { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 10px; color: var(--ink-950); }
.contact-info-box p { font-size: 14.5px; color: var(--slate-600); line-height: 1.6; margin: 0; }
.contact-info-box a { color: var(--brass-600); }
@media (max-width: 780px) { .contact-info-row { grid-template-columns: 1fr; } }

.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-200); }
.contact-map iframe { width: 100%; height: 380px; border: 0; display: block; }

.side-panel { background: var(--paper-raise); border: 1px solid var(--line-200); border-radius: var(--radius); padding: 26px; }
.side-panel h3, .side-panel h4, .side-nav-heading { font-size: 1rem; margin-bottom: 14px; }
.side-panel dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 14px; font-size: 14px; }
.side-panel dt { font-family: var(--font-mono); font-size: 11.5px; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.05em; }
.side-panel dd { margin: 0; color: var(--ink-950); }

/* ---------- Kategori filtre çipleri ---------- */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-chip {
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 8px 14px;
  border: 1px solid var(--line-200);
  border-radius: 20px;
  background: var(--paper-raise);
  color: var(--slate-600);
}
.filter-chip.is-active, .filter-chip:hover { border-color: var(--brass-500); color: var(--ink-950); }

/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label { display: block; font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-950); margin-bottom: 7px; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-200);
  border-radius: 3px;
  background: var(--paper-raise);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-950);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brass-500); }
.field textarea { resize: vertical; min-height: 130px; }
.field-hint { font-size: 12px; color: var(--slate-400); margin-top: 6px; }

/* honeypot: gerçek kullanıcılara görünmez, botlar için tuzak */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 14px 18px; border-radius: 3px; font-size: 14.5px; margin-bottom: 20px; border: 1px solid transparent; }
.alert-success { background: var(--teal-tint); border-color: var(--teal-600); color: #1b4f43; }
.alert-error { background: #f7e3dd; border-color: var(--red-600); color: #6f2917; }
.alert-info { background: var(--brass-tint); border-color: var(--brass-500); color: #5a3d15; }

/* ---------- Footer (gerçek siteye uygun, sade yapı) ---------- */
.site-footer { background: var(--ink-950); color: #b8bfce; padding: 44px 0 0; }
.footer-info-bar {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid #2b3260;
}
@media (max-width: 860px) { .footer-info-bar { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-info-bar { grid-template-columns: 1fr; text-align: center; } }
.footer-logo { height: 64px; width: auto; }
.footer-info-col--logo { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-info-col--linkedin { justify-content: center; }
.footer-social-icons { display: flex; gap: 12px; }
.footer-linkedin-icon {
  width: 40px; height: 40px;
  border: 1px solid #2b3260;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #b8bfce;
  transition: border-color .15s ease, color .15s ease;
}
.footer-linkedin-icon:hover { border-color: var(--brass-500); color: var(--brass-500); }

/* ---------- Çerez onay çubuğu ---------- */
.cookie-notice {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--ink-950);
  border-top: 1px solid #2b3260;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.25);
  transform: translateY(0);
  transition: transform .3s ease, opacity .3s ease;
}
.cookie-notice[hidden] { display: flex; transform: translateY(100%); opacity: 0; pointer-events: none; }
.cookie-notice__text { flex: 1; color: #dbe0ee; font-size: 14px; line-height: 1.55; margin: 0; }
.cookie-notice__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-notice__btn {
  background: #00a99d;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: filter .15s ease;
}
.cookie-notice__btn:hover { filter: brightness(1.1); }
.cookie-notice__btn--ghost { background: transparent; border: 1px solid #00a99d; color: #00a99d; }
.cookie-notice__btn--ghost:hover { background: rgba(0,169,157,0.12); filter: none; }
.cookie-notice__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #6d7699;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.cookie-notice__close:hover { color: #9ba4c0; }
@media (max-width: 780px) {
  .cookie-notice { flex-wrap: wrap; padding: 16px 20px; gap: 14px; }
  .cookie-notice__text { flex-basis: 100%; }
  .cookie-notice__close { position: absolute; top: 10px; right: 12px; }
}
.footer-info-col { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.footer-info-label { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 13px; flex-wrap: wrap; gap: 10px; color: #8891ae; }
.footer-bottom .legal-links { display: flex; gap: 18px; }

/* ---------- Yardımcı sınıflar ---------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.pagination { display: flex; gap: 8px; margin-top: 40px; font-family: var(--font-mono); font-size: 13px; }
.pagination a, .pagination span { padding: 8px 13px; border: 1px solid var(--line-200); border-radius: 3px; }
.pagination a:hover { border-color: var(--brass-500); }
.pagination .is-current { background: var(--ink-950); color: #fff; border-color: var(--ink-950); }

.empty-state { text-align: center; padding: 60px 20px; color: var(--slate-400); font-family: var(--font-mono); font-size: 14px; }

/* skip-link (erişilebilirlik) */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink-950); color: #fff;
  padding: 12px 18px; z-index: 100; font-family: var(--font-mono); font-size: 13px;
}
.skip-link:focus { left: 12px; top: 12px; }
