/* ==========================================================================
   Fortis Çim Çit — site stilleri
   Renk ve tipografi değerleri tasarım paketinden birebir taşındı.
   ========================================================================== */

:root {
  --bg:          #FBF9F4;
  --sand:        #F2EDE1;
  --white:       #FFFFFF;
  --ink:         #10201A;
  --ink-2:       #3A4C43;
  --ink-3:       #4A5C53;
  --muted:       #6B8579;
  --muted-2:     #8A9A90;
  --note:        #8A7A5E;

  --green-900:   #01201A;
  --green-850:   #022C22;
  --green-800:   #04382B;
  --green-700:   #065F46;
  --green-600:   #047857;

  --mint:        #ECFDF5;
  --mint-2:      #A7D9C5;
  --mint-3:      #8FC7B0;
  --mint-4:      #7FB49E;
  --mint-5:      #6EE7B7;
  --mint-dim:    #5E7A6C;

  --amber:       #B45309;
  --amber-dark:  #92400E;
  --gold:        #FCD34D;
  --cream:       #FFFBEB;

  --line:        rgba(2, 44, 34, 0.14);
  --line-soft:   rgba(2, 44, 34, 0.12);
  --line-hair:   rgba(2, 44, 34, 0.08);

  --sans: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Outfit', 'IBM Plex Sans', system-ui, sans-serif;

  --wrap: 1280px;
  --gutter: 28px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

main { flex: 1 0 auto; }

a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--amber); }

img, svg { max-width: 100%; }

::selection { background: #A7F3D0; }

input, textarea, select, button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  z-index: 100;
  background: var(--green-850);
  color: var(--mint);
  padding: 12px 18px;
  font-size: 14px;
}
.skip:focus { inset-inline-start: 8px; top: 8px; color: var(--mint); }

/* ------------------------------------------------------------------ butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  padding: 15px 26px;
  white-space: nowrap;
  text-align: center;
}
.btn-sm { padding: 11px 18px; font-size: 13px; }
.btn-md { padding: 14px 24px; font-size: 14px; }
.btn-amber { background: var(--amber); color: var(--cream); }
.btn-amber:hover { background: var(--amber-dark); color: var(--cream); }
.btn-dark { background: var(--green-850); color: var(--mint); }
.btn-dark:hover { background: var(--green-700); color: var(--mint); }
.btn-ghost {
  background: transparent;
  color: var(--green-700);
  border: 1px solid rgba(2, 44, 34, 0.3);
  padding: 14px 24px;
  font-size: 14px;
}
.btn-ghost:hover { background: rgba(2, 44, 34, 0.05); color: var(--green-700); }
.btn-outline-light {
  background: transparent;
  color: var(--mint);
  border: 1px solid rgba(236, 253, 245, 0.4);
}
.btn-outline-light:hover { background: rgba(236, 253, 245, 0.08); color: var(--mint); }
.btn-outline-light .arrow { color: var(--gold); }
.btn-block { width: 100%; justify-content: center; }

.link-more {
  background: none;
  border: 0;
  color: var(--green-700);
  font-size: 13.5px;
  font-weight: 600;
  padding: 0;
}
.link-more::after { content: "\00a0\2192"; }
[dir="rtl"] .link-more::after { content: "\00a0\2190"; }
.link-more:hover { color: var(--amber); }

.back-link {
  display: inline-block;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 12.5px;
  padding: 0;
  margin-bottom: 20px;
}
.back-link::before { content: "\2190\00a0"; }
[dir="rtl"] .back-link::before { content: "\2192\00a0"; }
.back-link-light { color: var(--mint-3); }
.back-link-light:hover { color: var(--gold); }

/* --------------------------------------------------------------------- başlık */
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  color: var(--ink);
  border-bottom: 1px solid rgba(2, 44, 34, 0.14);
  box-shadow: 0 1px 0 rgba(252, 211, 77, 0.9);
}

/* Üst şerit üç sütunlu ızgara: marka | menü | eylemler.
   Menü kendi hücresinde kaldığı için uzun etiketli bir dile geçildiğinde
   marka ve sağdaki butonlar yerinden oynamaz; menü gerekirse kendi
   hücresinde ikinci satıra iner. */
.head-inner {
  padding-block: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 24px;
  /* Menü ölçüleri pencereye değil şeridin kendi genişliğine göre hesaplansın:
     içerik 1280px'de sabitlendiği için geniş ekranlarda büyümeye devam etmez. */
  container-type: inline-size;
}

.brand { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.brand:hover { color: inherit; }
.brand-mark { width: 54px; height: 54px; display: block; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.04; }
.brand-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 27px;
  letter-spacing: 0.01em;
  transform: skewX(-10deg);
  transform-origin: left center;
  color: var(--green-800);
}
/* Alt yazı dile göre değişir; uzun dillerde de logo hizasında kalsın diye
   harf aralığı ölçekli, taşma yerine kırpılmadan küçülür. */
.brand-sub {
  font-size: clamp(8.5px, 0.62cqw + 0.6px, 10px);
  letter-spacing: 0.12em;
  color: #7A8F80;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex-wrap: wrap;
  min-width: 0;
}
/* Yazı ve iç boşluk pencere genişliğiyle ölçekleniyor: Gürcüce/Rusça gibi
   uzun etiketli diller tek satırda daha uzun süre kalıyor. */
.nav-link {
  color: var(--ink-2);
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 7px;
  white-space: nowrap;
}
/* Konteyner birimi destekleniyorsa yazı ve boşluk şeritle birlikte ölçeklenir. */
@supports (width: 1cqw) {
  .nav-link {
    font-size: clamp(12px, 0.72cqw + 3.3px, 13px);
    padding: 9px clamp(5px, 0.55cqw, 9px);
  }
}
.nav-link:hover { color: var(--amber); }
.nav-link.is-active { color: var(--green-700); box-shadow: inset 0 -2px 0 var(--gold); }

.head-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.lang-form { display: flex; gap: 6px; }
.lang-select {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(2, 44, 34, 0.22);
  padding: 8px 9px;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
}
.lang-go {
  background: var(--green-850);
  color: var(--mint);
  border: 0;
  padding: 8px 10px;
  cursor: pointer;
}

.nav-toggle, .nav-burger { display: none; }

/* ------------------------------------------------------------------- bölümler */
.section { max-width: var(--wrap); margin: 0 auto; padding: 84px var(--gutter) 0; }
.section-top { padding-top: 52px; }
.section-tight { padding-top: 40px; }
.section-end { padding-bottom: 84px; }

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 26px;
}
.eyebrow-gold { color: var(--gold); }
.crumb {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: pretty;
}
.h1-hero { font-size: 58px; line-height: 1.02; margin-bottom: 22px; }
.h1-post { font-size: 40px; line-height: 1.08; }
.lead {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--note);
  font-style: italic;
}

/* ----------------------------------------------------------------------- hero */
.hero { background: var(--green-800); color: var(--mint); }
.hero-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 52px;
  align-items: center;
  min-height: 560px;
}
.hero-copy { padding-block: 72px; min-width: 0; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(252, 211, 77, 0.5);
  padding: 7px 14px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.tag-dot { width: 6px; height: 6px; background: var(--gold); }
.hero-sub {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--mint-2);
  margin: 0 0 34px;
  max-width: 520px;
  text-wrap: pretty;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media { height: 460px; min-width: 0; overflow: hidden; }

.frame { width: 100%; height: 100%; overflow: hidden; background: var(--sand); }
.frame picture { display: block; width: 100%; height: 100%; }
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  background: rgba(2, 44, 34, 0.06);
  border: 1px dashed var(--line);
}

/* ------------------------------------------------------------------ üç madde */
.trust {
  background: var(--sand);
  color: var(--ink-3);
  border-bottom: 1px solid var(--line-soft);
}
.trust-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 30px var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
}
.trust-item {
  background: var(--sand);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-inline: 28px;
}
.trust-item:first-child { padding-inline-start: 0; }
.trust-item:last-child { padding-inline-end: 0; }
.trust-num {
  font-family: var(--display);
  font-weight: 800;
  color: var(--amber);
  font-size: 13px;
  padding-top: 2px;
}
.trust-title { color: var(--ink); font-weight: 600; font-size: 14.5px; margin-bottom: 4px; }
.trust-text { font-size: 13.5px; line-height: 1.5; }

/* ---------------------------------------------------------------------- ızgara */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; }

.card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  color: inherit;
}
.card:hover { border-color: var(--green-700); color: inherit; }
.card-media { height: 190px; min-width: 0; overflow: hidden; }
.card-body { padding: 22px 22px 26px; }
.card-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.card-text { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-3); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}
/* Varyantlar tek başına da kullanılabilsin diye display:grid burada tekrar edilir;
   yalnızca .split-even yazılan bir kapsayıcı aksi hâlde ızgara olmaz ve içerik alt alta düşer. */
.split-even, .split-wide, .split-form, .split-posts { display: grid; align-items: start; }
.split-even { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.split-wide { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 48px; }
.split-form { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; }
.split-posts { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 40px; }

.statement {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.022em;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.body-text { font-size: 15.5px; line-height: 1.65; color: var(--ink-3); margin: 0; }

.tiles { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1px; background: var(--line); }
.tile { background: var(--bg); padding: 26px; }
.tile-title { font-family: var(--display); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.tile-text { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-3); }

/* --------------------------------------------------------------- yeşil bantlar */
.band { background: var(--green-700); color: var(--mint); margin-top: 84px; }
.band-inner { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--gutter); }
.band-lead { font-size: 16px; color: var(--mint-2); margin: 0 0 34px; max-width: 620px; }
.band-note { margin-top: 18px; font-size: 12.5px; color: var(--mint-3); }

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(236, 253, 245, 0.2);
  border: 1px solid rgba(236, 253, 245, 0.2);
}
.route-item {
  background: var(--green-700);
  padding: 20px 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--mint);
}
.route-item:hover { background: var(--green-600); color: var(--mint); }
.route-code {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.route-name { font-family: var(--display); font-weight: 700; font-size: 16.5px; }
.route-alt { font-size: 12px; color: var(--mint-3); margin-inline-start: auto; }

/* ------------------------------------------------------------------ yazı kartı */
.post-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
}
.post-card:hover { border-color: var(--green-700); color: inherit; }
/* Görselli blog kartı: fotoğraf kartın kenarlarına taşar, metin hizası bozulmaz. */
.post-card-media { padding-top: 0; }
.frame.post-media { height: 168px; margin: 0 -24px 14px; width: auto; }
.post-meta {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}
.post-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}
.post-excerpt { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-3); }

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.filter {
  background: var(--white);
  color: var(--green-700);
  border: 1px solid rgba(2, 44, 34, 0.2);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
}
.filter:hover { border-color: var(--green-700); }
.filter.is-active { background: var(--green-850); color: var(--mint); border-color: var(--green-850); }

.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 52px var(--gutter) 84px;
}
/* Yazı görseli: özetin altında, gövdenin üstünde. */
.frame.article-media { height: 340px; margin: 26px 0 32px; }
@media (max-width: 700px) { .frame.article-media { height: 220px; } }
.article-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 26px;
  font-weight: 500;
}
.article-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
}
.article-body p { margin: 0 0 1.1em; }
.article-foot {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.byline { font-size: 12.5px; color: var(--muted-2); margin-bottom: 26px; }

/* -------------------------------------------------------------- tablo/satırlar */
.spec-table { border: 1px solid var(--line); background: var(--white); }
.spec-row {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 24px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line-hair);
  align-items: start;
}
.spec-row:last-child { border-bottom: 0; }
.spec-label { font-weight: 600; font-size: 14.5px; }
.spec-value { font-size: 14.5px; color: var(--ink-3); }

.terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.term { background: var(--white); padding: 28px; }
.term-label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.term-value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.term-note { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-3); }

.app-item .frame { height: 160px; margin-bottom: 12px; }
.app-title { font-family: var(--display); font-weight: 700; font-size: 16px; }

.panel-dark {
  background: var(--green-850);
  color: var(--mint);
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.panel-dark h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.panel-dark p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--mint-2); }
.panel-dark .frame { height: 200px; }

/* ------------------------------------------------------------------- ülkeler */
.country-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 26px;
  display: block;
  color: inherit;
}
.country-card:hover { border-color: var(--green-700); color: inherit; }
.country-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.country-code {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--amber);
}
.country-lang { font-size: 12px; color: var(--muted-2); }
.country-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.country-alt { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.country-cities { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-3); }

.country-hero { background: var(--green-850); color: var(--mint); }
.country-hero-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  min-height: 400px;
}
.country-hero-copy { padding-block: 52px; min-width: 0; }
.country-kicker {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 12px;
}
.country-h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.country-welcome { font-size: 17px; line-height: 1.6; color: var(--mint-2); margin: 0 0 10px; max-width: 520px; }
.country-welcome-en { font-size: 14px; line-height: 1.6; color: var(--mint-4); margin: 0; }
.country-hero-media { height: 330px; min-width: 0; overflow: hidden; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.fact { background: var(--white); padding: 26px; }
.fact-label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.fact-value { font-size: 15.5px; line-height: 1.6; font-weight: 500; }

.stack { display: flex; flex-direction: column; gap: 14px; }
.empty-note { font-size: 13.5px; color: var(--muted-2); margin-top: 12px; }
.ref-box {
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 24px;
}
.ref-text { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--ink-3); }

.cta-box { background: var(--green-700); color: var(--mint); padding: 30px; }
.cta-box h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.cta-box p { font-size: 14px; line-height: 1.6; color: var(--mint-2); margin: 0 0 20px; }

/* --------------------------------------------------------------- hakkımızda */
.quote { margin-top: 26px; border-inline-start: 3px solid var(--gold); padding-inline-start: 18px; }
.quote p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink-3); font-style: italic; }
.person-card { background: var(--white); border: 1px solid var(--line-soft); padding: 26px; }
.person-card .frame { height: 260px; margin-bottom: 18px; }
.person-name { font-family: var(--display); font-weight: 700; font-size: 20px; margin-bottom: 4px; }
.person-role { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.person-text { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-3); }
.person-mini {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 18px 20px;
}
.person-mini .frame { width: 72px; height: 72px; flex: 0 0 auto; }
.person-mini-name { font-family: var(--display); font-weight: 700; font-size: 17px; }
.person-mini-role { font-size: 13px; color: var(--muted); }

/* ------------------------------------------------------------------ iletişim */
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact-row { background: var(--white); padding: 20px 22px; }
.contact-label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-value { font-size: 15.5px; font-weight: 500; line-height: 1.5; }

.form-box { background: var(--white); border: 1px solid var(--line); padding: 32px; }
.form-title { font-family: var(--display); font-weight: 700; font-size: 20px; }
.form-stack { display: flex; flex-direction: column; gap: 15px; }
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  border: 1px solid rgba(2, 44, 34, 0.22);
  padding: 11px 12px;
  font-size: 14px;
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
}
.field textarea { resize: vertical; }
.field-error input, .field-error textarea { border-color: var(--amber); }
.field-msg { font-size: 12px; font-weight: 500; color: var(--amber); }
.form-error {
  background: rgba(180, 83, 9, 0.08);
  border-inline-start: 3px solid var(--amber);
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--amber-dark);
}
.form-done { padding: 40px 0; text-align: center; }
.form-done-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}
.form-done p { font-size: 14.5px; color: var(--ink-3); margin: 0; }
.honeypot { position: absolute; inset-inline-start: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------------------------------------------------------------- alt bilgi */
.site-foot { background: var(--green-900); color: var(--mint-3); margin-top: auto; }
.foot-grid {
  padding: 52px var(--gutter) 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
}
.foot-logo { display: block; margin-bottom: 14px; height: auto; filter: brightness(1.6); }
.foot-lead { margin: 0 0 14px; font-size: 13.5px; line-height: 1.6; max-width: 290px; }
.foot-line { font-size: 13px; line-height: 1.7; }
.foot-line a { color: var(--mint-3); }
.foot-line a:hover { color: var(--gold); }
.foot-title {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-dim);
  margin-bottom: 12px;
}
.foot-links { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.foot-links a { color: var(--mint-3); font-size: 13.5px; }
.foot-links a:hover { color: var(--gold); }
.foot-links-2col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 8px; }
.foot-langs { display: flex; flex-wrap: wrap; gap: 8px; }
.foot-lang {
  background: rgba(236, 253, 245, 0.07);
  border: 1px solid rgba(236, 253, 245, 0.18);
  color: var(--mint-3);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
}
.foot-lang:hover { color: var(--gold); }
.foot-lang.is-active { border-color: var(--gold); color: var(--gold); }
.foot-bottom {
  padding: 0 var(--gutter) 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: var(--mint-dim);
  flex-wrap: wrap;
}
.foot-admin { color: var(--mint-dim); text-decoration: underline; }
.foot-admin:hover { color: var(--gold); }

.wa-float {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 50;
  background: var(--green-700);
  color: var(--mint);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(1, 32, 26, 0.32);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-float:hover { background: var(--green-850); color: var(--mint); }
.wa-dot { width: 8px; height: 8px; background: var(--mint-5); border-radius: 50%; }

.cerez-bant {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  background: var(--green-850);
  color: var(--mint);
  padding: 18px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 24px;
  box-shadow: 0 -10px 26px rgba(1, 32, 26, 0.28);
}
.cerez-bant-metin { max-width: 720px; }
.cerez-bant-metin p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--mint-2); }
.cerez-bant-metin a { color: var(--gold); text-decoration: underline; }
.cerez-bant-butonlar { display: flex; gap: 10px; flex: none; }

/* ------------------------------------------------------------------ 404 ---- */
.err { max-width: 720px; margin: 0 auto; padding: 90px var(--gutter); text-align: center; }
.err-code {
  font-family: var(--display);
  font-weight: 900;
  font-size: 96px;
  line-height: 1;
  color: var(--green-800);
  margin: 0 0 10px;
}

/* =========================================================== duyarlı düzen === */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); min-height: 0; gap: 0; }
  .hero-copy { padding-block: 56px 32px; }
  .hero-media { height: 320px; margin-bottom: 56px; }
  .split, .split-even, .split-wide, .split-form, .split-posts,
  .panel-dark, .country-hero-inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .country-hero-copy { padding-block: 44px 0; }
  .country-hero-media { height: 260px; margin-bottom: 44px; }
  .grid-3, .route-grid, .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .h1-hero { font-size: 46px; }
}


/* ==========================================================================
   Üst menünün dile göre davranışı
   Etiket uzunluğu dile göre değiştiği için katlanma noktası da dile göre
   ayarlanır: menü tek satıra sığmayacağı genişlikte ikinci satıra düşmek
   yerine hamburger menüye iner. Ölçüm: EN ~1010px, KA ~1155px gerektiriyor.
   ========================================================================== */

/* Logo alt yazısı dar ekranda menüye yer açar. */
@media (max-width: 1260px) {
  .brand-sub { display: none; }
}

/* Varsayılan: kısa etiketli diller (EN, TR, AR) ve listede olmayan diller — menü 1060px altında hamburgere iner. */
@media (max-width: 1060px) {
  .head-inner { display: flex; flex-wrap: wrap; gap: 12px; }
  /* Kutu ekranda görünmez ama klavyeyle odaklanabilir; menü Sekme ile açılabilir. */
  .nav-toggle {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    margin: 0;
    pointer-events: none;
  }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 40px;
    margin-inline-start: auto;
    border: 1px solid var(--line);
    cursor: pointer;
    padding: 0 9px;
  }
  .nav-burger span:not(.visually-hidden) { display: block; height: 2px; background: var(--ink-2); }
  .nav-toggle:focus-visible + .nav-burger { outline: 2px solid var(--green-700); outline-offset: 2px; }
  .site-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    margin-inline-start: 0;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .nav-link { padding: 11px 4px; font-size: 15px; white-space: normal; }
  .head-actions { order: 2; margin-inline-start: 0; }
}

/* Orta uzunluk — menü 1120px altında hamburgere iner. */
@media (max-width: 1120px) {
  html[lang="bg"] .head-inner,
  html[lang="sr"] .head-inner,
  html[lang="ru"] .head-inner { display: flex; flex-wrap: wrap; gap: 12px; }
  html[lang="bg"] .nav-burger,
  html[lang="sr"] .nav-burger,
  /* Kutu ekranda görünmez ama klavyeyle odaklanabilir; menü Sekme ile açılabilir. */
  .nav-toggle {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    margin: 0;
    pointer-events: none;
  }
  html[lang="ru"] .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 40px;
    margin-inline-start: auto;
    border: 1px solid var(--line);
    cursor: pointer;
    padding: 0 9px;
  }
  html[lang="bg"] .nav-burger span,
  html[lang="sr"] .nav-burger span,
  html[lang="ru"] .nav-burger span:not(.visually-hidden) { display: block; height: 2px; background: var(--ink-2); }
  .nav-toggle:focus-visible + .nav-burger { outline: 2px solid var(--green-700); outline-offset: 2px; }
  html[lang="bg"] .site-nav,
  html[lang="sr"] .site-nav,
  html[lang="ru"] .site-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    margin-inline-start: 0;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }
  html[lang="bg"] .nav-toggle:checked ~ .site-nav,
  html[lang="sr"] .nav-toggle:checked ~ .site-nav,
  html[lang="ru"] .nav-toggle:checked ~ .site-nav { display: flex; }
  html[lang="bg"] .nav-link,
  html[lang="sr"] .nav-link,
  html[lang="ru"] .nav-link { padding: 11px 4px; font-size: 15px; white-space: normal; }
  html[lang="bg"] .head-actions,
  html[lang="sr"] .head-actions,
  html[lang="ru"] .head-actions { order: 2; margin-inline-start: 0; }
}

/* Uzun — menü 1160px altında hamburgere iner. */
@media (max-width: 1160px) {
  html[lang="ro"] .head-inner,
  html[lang="sq"] .head-inner,
  html[lang="mk"] .head-inner { display: flex; flex-wrap: wrap; gap: 12px; }
  html[lang="ro"] .nav-burger,
  html[lang="sq"] .nav-burger,
  /* Kutu ekranda görünmez ama klavyeyle odaklanabilir; menü Sekme ile açılabilir. */
  .nav-toggle {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    margin: 0;
    pointer-events: none;
  }
  html[lang="mk"] .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 40px;
    margin-inline-start: auto;
    border: 1px solid var(--line);
    cursor: pointer;
    padding: 0 9px;
  }
  html[lang="ro"] .nav-burger span,
  html[lang="sq"] .nav-burger span,
  html[lang="mk"] .nav-burger span:not(.visually-hidden) { display: block; height: 2px; background: var(--ink-2); }
  .nav-toggle:focus-visible + .nav-burger { outline: 2px solid var(--green-700); outline-offset: 2px; }
  html[lang="ro"] .site-nav,
  html[lang="sq"] .site-nav,
  html[lang="mk"] .site-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    margin-inline-start: 0;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }
  html[lang="ro"] .nav-toggle:checked ~ .site-nav,
  html[lang="sq"] .nav-toggle:checked ~ .site-nav,
  html[lang="mk"] .nav-toggle:checked ~ .site-nav { display: flex; }
  html[lang="ro"] .nav-link,
  html[lang="sq"] .nav-link,
  html[lang="mk"] .nav-link { padding: 11px 4px; font-size: 15px; white-space: normal; }
  html[lang="ro"] .head-actions,
  html[lang="sq"] .head-actions,
  html[lang="mk"] .head-actions { order: 2; margin-inline-start: 0; }
}

/* En uzun etiketler (Yunanca, Gürcüce) — menü 1200px altında hamburgere iner. */
@media (max-width: 1200px) {
  html[lang="el"] .head-inner,
  html[lang="ka"] .head-inner { display: flex; flex-wrap: wrap; gap: 12px; }
  html[lang="el"] .nav-burger,
  /* Kutu ekranda görünmez ama klavyeyle odaklanabilir; menü Sekme ile açılabilir. */
  .nav-toggle {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    margin: 0;
    pointer-events: none;
  }
  html[lang="ka"] .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 40px;
    margin-inline-start: auto;
    border: 1px solid var(--line);
    cursor: pointer;
    padding: 0 9px;
  }
  html[lang="el"] .nav-burger span,
  html[lang="ka"] .nav-burger span:not(.visually-hidden) { display: block; height: 2px; background: var(--ink-2); }
  .nav-toggle:focus-visible + .nav-burger { outline: 2px solid var(--green-700); outline-offset: 2px; }
  html[lang="el"] .site-nav,
  html[lang="ka"] .site-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    margin-inline-start: 0;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }
  html[lang="el"] .nav-toggle:checked ~ .site-nav,
  html[lang="ka"] .nav-toggle:checked ~ .site-nav { display: flex; }
  html[lang="el"] .nav-link,
  html[lang="ka"] .nav-link { padding: 11px 4px; font-size: 15px; white-space: normal; }
  html[lang="el"] .head-actions,
  html[lang="ka"] .head-actions { order: 2; margin-inline-start: 0; }
}

@media (max-width: 820px) {
  :root { --gutter: 20px; }

  .section { padding-top: 56px; }
  .section-end { padding-bottom: 56px; }
  .band { margin-top: 56px; }
  .band-inner { padding-block: 48px; }

  .h1 { font-size: 34px; }
  .h1-hero { font-size: 36px; }
  .h1-post { font-size: 30px; }
  .country-h1 { font-size: 34px; }
  .statement { font-size: 25px; }

  .trust-grid, .grid-3, .grid-4, .grid-2, .tiles, .terms,
  .route-grid, .facts, .foot-grid, .form-grid,
  .foot-links-2col { grid-template-columns: minmax(0, 1fr); }
  .trust-item { padding: 0; }
  .trust-item + .trust-item { padding-top: 18px; }

  .spec-row { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .panel-dark { padding: 26px; }
  .form-box { padding: 22px; }
  .wa-float { inset-inline-end: 14px; bottom: 14px; padding: 12px 16px; }
  .err-code { font-size: 68px; }
}

@media print {
  .site-head, .site-foot, .wa-float, .skip { display: none; }
  body { background: #fff; }
}

/* =============================================== detay bileşenleri ========== */

/* ürün kartı */
.product-card .card-media { height: 170px; }
.product-mesh {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 8px;
}
.product-grid .card-body { padding: 18px 18px 22px; }
.product-grid .card-title { font-size: 18px; }
.product-grid .card-text { font-size: 13.5px; }

/* ürün detay: öne çıkan değerler */
.quick-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 0 0 26px;
}
.quick-spec { background: var(--white); padding: 16px 18px; }
.quick-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.quick-value {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

/* üç kolonlu teknik satır (yükleme tablosu) */
.spec-row-3 { grid-template-columns: 220px minmax(150px, 230px) minmax(0, 1fr); align-items: start; }
.spec-note { font-size: 13.5px; line-height: 1.55; color: var(--muted); }

/* montaj adımları */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step {
  background: var(--white);
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  color: var(--amber);
  padding-top: 2px;
}
.step-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}
.step-text { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-3); }

/* belgeler */
.doc-grid { gap: 20px; background: none; }
.doc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green-700);
  padding: 24px;
}
.doc-card-wide { max-width: 620px; }
.doc-badge {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  background: var(--green-850);
  color: var(--mint);
  padding: 5px 11px;
  margin-bottom: 10px;
}
.doc-countries { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }

/* S.S.S. */
.faq-cat {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--green-700);
  margin: 32px 0 12px;
}
.faq-cat:first-child { margin-top: 0; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.faq-item { background: var(--white); }
.faq-item > summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.45;
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::before {
  content: "+";
  font-family: var(--display);
  font-weight: 700;
  color: var(--amber);
  font-size: 18px;
  line-height: 1.2;
  flex: 0 0 auto;
}
.faq-item[open] > summary::before { content: "–"; }
.faq-item > summary:hover { color: var(--green-700); }
.faq-answer {
  padding: 0 22px 20px 50px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-3);
}
.faq-answer p { margin: 0 0 0.9em; }
.faq-answer p:last-child { margin-bottom: 0; }

/* zengin metin (blog / serbest sayfa) */
.rich-h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.018em;
  margin: 1.9em 0 0.5em;
  line-height: 1.25;
}
.rich-h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18.5px;
  letter-spacing: -0.01em;
  margin: 1.6em 0 0.4em;
}
.article-body > .rich-h2:first-child,
.article-body > .rich-h3:first-child { margin-top: 0; }
.rich-list { margin: 0 0 1.2em; padding-inline-start: 1.15em; }
.rich-list li { margin-bottom: 0.45em; line-height: 1.6; }
.ref-box .rich-list { margin-bottom: 0; font-size: 14px; color: var(--ink-3); }

@media (max-width: 820px) {
  .spec-row-3 { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .faq-item > summary { padding: 15px 16px; font-size: 15px; }
  .faq-answer { padding: 0 16px 16px 42px; }
  .rich-h2 { font-size: 21px; }
  .doc-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ============================== öne çıkan üçlü (hero altına binen kartlar) === */
.features {
  background: linear-gradient(to bottom, var(--green-800) 0 96px, var(--bg) 96px 100%);
  padding-bottom: 8px;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
  box-shadow: 0 18px 44px rgba(1, 32, 26, 0.13);
  border: 1px solid rgba(2, 44, 34, 0.07);
}
.feature-card {
  padding: 40px 38px 44px;
  min-width: 0;
}
.feature-card + .feature-card { border-inline-start: 1px solid var(--line-hair); }
.feature-icon {
  display: block;
  color: var(--green-700);
  margin-bottom: 26px;
}
.feature-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--green-800);
  margin: 0 0 14px;
  line-height: 1.2;
}
.feature-text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-3);
  text-wrap: pretty;
}

@media (max-width: 1080px) {
  .feature-card { padding: 32px 26px 34px; }
  .feature-title { font-size: 19px; }
  .feature-text { font-size: 14.5px; }
}
@media (max-width: 820px) {
  .features { background: var(--bg); padding-top: 0; }
  .feature-cards { grid-template-columns: minmax(0, 1fr); box-shadow: 0 10px 26px rgba(1, 32, 26, 0.1); }
  .feature-card { padding: 26px 22px 28px; }
  .feature-card + .feature-card { border-inline-start: 0; border-top: 1px solid var(--line-hair); }
  .feature-icon { margin-bottom: 16px; }
}

/* ===================================== blog: pazar bazında yazı listesi ===== */
.filter-count {
  display: inline-block;
  margin-inline-start: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: rgba(2, 44, 34, 0.08);
  padding: 1px 6px;
}
.filter.is-active .filter-count { background: rgba(236, 253, 245, 0.18); color: var(--mint-2); }

.country-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.country-posts-col { background: var(--white); padding: 22px 24px 26px; min-width: 0; }
.country-posts-head {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line-hair);
  color: inherit;
}
.country-posts-head:hover .country-posts-name { color: var(--amber); }
.country-posts-code {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--amber);
}
.country-posts-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.country-posts-lang { font-size: 11.5px; color: var(--muted-2); margin-inline-start: auto; }
.country-posts-list { list-style: none; margin: 0; padding: 0; }
.country-posts-list li { margin-bottom: 9px; line-height: 1.45; }
.country-posts-list li:last-child { margin-bottom: 0; }
.country-posts-list a { font-size: 13.5px; color: var(--ink-3); }
.country-posts-list a:hover { color: var(--green-700); }

@media (max-width: 1080px) { .country-posts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 820px)  { .country-posts { grid-template-columns: minmax(0, 1fr); }
                             .country-posts-col { padding: 18px 18px 20px; } }

/* ================================= hakkımızda: misyon / vizyon =============== */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.mission-card { background: var(--white); padding: 38px 36px 42px; min-width: 0; }
.mission-card-dark { background: var(--green-800); color: var(--mint); border-color: var(--green-800); }
.mission-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.mission-card-dark .mission-title { color: var(--gold); }
.mission-text {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: pretty;
}
.mission-card-dark .mission-text { color: var(--mint); }

.tiles-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tiles-4 .tile { background: var(--white); }

@media (max-width: 1080px) {
  .tiles-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mission-card { padding: 30px 26px 32px; }
  .mission-text { font-size: 19px; }
}
@media (max-width: 820px) {
  .mission-grid, .tiles-4 { grid-template-columns: minmax(0, 1fr); }
  .mission-card { padding: 24px 20px 26px; }
  .mission-text { font-size: 17.5px; }
}

/* =========================== hakkımızda: giriş (metin solda, görsel sağda) === */
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.about-hero-copy { min-width: 0; }
.about-lead { line-height: 1.7; margin-bottom: 16px; }
.about-lead-last { margin-bottom: 0; }
.about-hero-media { min-width: 0; height: 470px; }

/* yuvarlatılmış görsel çerçevesi */
.frame-round { border-radius: 22px; overflow: hidden; }
.frame-round img { border-radius: inherit; }
.frame-round.frame-empty { border-radius: 22px; }

@media (max-width: 1080px) {
  .about-hero { gap: 40px; }
  .about-hero-media { height: 400px; }
}
@media (max-width: 900px) {
  .about-hero { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .about-hero-media { height: 300px; }
  .frame-round { border-radius: 16px; }
}

/* ------------------------------------------- WhatsApp sabit butonu (revize) --- */
.wa-float {
  border-radius: 999px;
  padding: 13px 22px 13px 18px;
  gap: 9px;
  transition: transform .15s ease, background .15s ease;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float .feature-icon { margin: 0; color: currentColor; flex: 0 0 auto; }
.wa-label { white-space: nowrap; }

@media (max-width: 640px) {
  /* dar ekranda yalnızca simge — içeriğin üstünü kapatmasın */
  .wa-float { padding: 15px; border-radius: 50%; }
  .wa-label { display: none; }
}

/* ------------------------------------------------- alt bilgi marka kilidi --- */
.foot-brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.foot-mark { width: 48px; height: 48px; display: block; flex: 0 0 auto; }
.foot-brand-name { color: var(--mint); font-size: 25px; }
.foot-brand-sub { color: var(--mint-dim); }

@media (max-width: 820px) {
  .brand { gap: 11px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-name { font-size: 23px; }
  .brand-sub { font-size: 9px; letter-spacing: 0.12em; }
}
/* Çok dar telefonlarda üst şeridin sağ bloğu taşmasın: uzun etiketli
   dillerde (ör. Gürcüce "ფასის მოთხოვნა") buton ve dil kutusu küçülür. */
@media (max-width: 420px) {
  .head-inner { column-gap: 10px; }
  .head-actions { gap: 6px; min-width: 0; }
  .lang-select { max-width: 96px; padding: 7px 6px; font-size: 12px; }
  .head-actions .btn-sm {
    padding: 10px 12px;
    font-size: 12px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
}

@media (max-width: 380px) {
  .brand-sub { display: none; }
}

/* ==========================================================================
   Yazı sistemleri: Gürcüce ve Arapça
   IBM Plex Sans / Outfit paketlerinde bu alfabeler yok; sistem yazı tipine
   düşerken en yakın karşılıkları sırayla deniyoruz. Rusça, IBM Plex Sans'ın
   kiril alt kümesiyle zaten karşılanıyor.
   ========================================================================== */
html[lang="ka"] {
  --sans: 'IBM Plex Sans', 'Noto Sans Georgian', 'BPG Arial', 'Sylfaen', system-ui, sans-serif;
  --display: 'Noto Sans Georgian', 'BPG Arial', 'Sylfaen', 'Outfit', system-ui, sans-serif;
}
html[lang="ar"] {
  --sans: 'IBM Plex Sans Arabic', 'Noto Sans Arabic', 'Geeza Pro', 'Segoe UI', Tahoma, system-ui, sans-serif;
  --display: 'IBM Plex Sans Arabic', 'Noto Sans Arabic', 'Geeza Pro', 'Segoe UI', Tahoma, system-ui, sans-serif;
}

/* ==========================================================================
   Sağdan sola (Arapça) düzeltmeleri
   Yön bağımlı kurallar logical property'lerle yazıldığı için burada yalnızca
   yazı tipografisine özgü düzeltmeler kalıyor.
   ========================================================================== */
[dir="rtl"] {
  /* Harf aralığı Arapça'da bitişik yazımı bozar. */
  letter-spacing: normal;
}
[dir="rtl"] *,
[dir="rtl"] *::before,
[dir="rtl"] *::after { letter-spacing: normal; }

[dir="rtl"] body { line-height: 1.7; }
[dir="rtl"] .lead,
[dir="rtl"] .rich-p,
[dir="rtl"] .post-excerpt { line-height: 1.85; }

/* Marka adı ve teknik kısaltmalar her zaman soldan sağa okunur. */
[dir="rtl"] .brand-name,
[dir="rtl"] .country-code,
[dir="rtl"] .doc-badge,
[dir="rtl"] .foot-lang,
[dir="rtl"] .lang-select { direction: ltr; unicode-bidi: isolate; }

/* Rakam ve ölçü içeren alanlar karışmasın. */
[dir="rtl"] .spec-value,
[dir="rtl"] .fact-value,
[dir="rtl"] .trust-num { unicode-bidi: isolate; }

/* İmza satırı: yazar, tarih ve okuma süresi birbirine karışmasın. */
[dir="rtl"] .byline > span,
[dir="rtl"] .post-meta { unicode-bidi: isolate; }


/* --------------------------------------- uzun kelimeler kutudan taşmasın (her dil) */
body { overflow-wrap: break-word; }
.spec-value, .spec-label, .spec-note,
.term-value, .term-label, .term-note,
.tile-text, .card-text, .post-excerpt, .quick-value,
.contact-value, .fact-value, .foot-line { overflow-wrap: anywhere; }

/* Ölçü ve kod gibi kısa değerler satır ortasından bölünmesin. */
.quick-value, .term-value { hyphens: none; }

/* ------------------------------------------- form altındaki doğrudan WhatsApp yolu */
.form-alt { margin-top: -4px; }
.btn-wa {
  background: #25D366;
  color: #04231a;
  gap: 9px;
}
.btn-wa:hover { background: #1eb85a; color: #04231a; }
.btn-wa svg { flex: 0 0 auto; }

/* --------------------------------------------------- form altındaki gizlilik notu */
.form-note { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.form-note a { color: inherit; text-decoration: underline; }
.form-note a:hover { color: var(--green-700); }

/* ------------------------------------------------------------ teşekkür sayfası */
.tiles-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tiles-3 .tile { background: var(--white); }
.cta-box-wide { padding: 34px 30px; }
.cta-box-wide h3 { max-width: 640px; margin-bottom: 20px; }

@media (max-width: 900px) {
  .tiles-3 { grid-template-columns: minmax(0, 1fr); }
}

/* ---------------------------------------------------------------- sayfa görselleri
   Metin yoğun sayfalarda soluklanma alanı: geniş şerit ve yan görsel.
   Görsel dosyası yoksa şablon bu blokları hiç basmaz. */
.frame.wide-media { height: 320px; }
.frame.side-media { height: 320px; margin-bottom: 18px; }
.media-aside { display: grid; grid-template-columns: 1.35fr 1fr; gap: 34px; align-items: stretch; }
@media (max-width: 900px) {
  .media-aside { grid-template-columns: 1fr; }
  .frame.wide-media { height: 220px; }
  .frame.side-media { height: 220px; }
}

/* ---------------------------------------------------------------- ürün ızgarası
   Ürün tipleri tek sırada dursun: kart en az 230px, sığdığı kadar sütun açılır.
   Dört göz ölçüsünde geniş ekranda tek sıra, tablette iki, telefonda tek sütun. */
.product-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.product-grid .product-card .card-media { height: 152px; }
.product-grid .card-title { font-size: 19px; }
.product-grid .card-text { font-size: 13.5px; }
/* 950px altında dört kart yan yana fazla incelir; ikişerli sıraya geçer. */
@media (max-width: 950px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-grid .product-card .card-media { height: 180px; }
}

/* ---------------------------------------------------------------- belge kartları
   Üç gümrük rejimi tek sırada dursun; kart daralınca iç boşluk da küçülür. */
.doc-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.doc-grid .doc-card { padding: 20px; }
.doc-grid .doc-countries { font-size: 12.5px; }
.doc-grid .rich-list { font-size: 14px; }
.doc-grid .rich-list li { margin-bottom: 6px; }
@media (max-width: 900px) {
  .doc-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}
@media (max-width: 560px) {
  .doc-grid { grid-template-columns: minmax(0, 1fr); }
}
