/* ============================================================
   SMC Lojistik & ER-YILDIZ Gümrük Müşavirliği
   Kurumsal Web Sitesi — Ana Stil Dosyası
   Palet: Lacivert #06284A · Koyu Lacivert #031B33 · Turuncu #FF7900
   ============================================================ */

/* Manrope — yerel barındırılan değişken font (Google CDN bağımlılığı yok) */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

:root {
  --navy: #06284A;
  --navy-dark: #031B33;
  --navy-soft: #0A3A66;
  --orange: #FF7900;
  --orange-dark: #E06A00;
  --white: #FFFFFF;
  --gray: #F5F7FA;
  --ink: #16283C;
  --muted: #4D5F73;
  --line: #E2E9F1;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(3, 27, 51, 0.10);
  --shadow-lg: 0 24px 60px rgba(3, 27, 51, 0.16);
  --header-h: 78px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- Tipografi ---------- */
h1, h2, h3, h4 { line-height: 1.25; color: var(--navy); font-weight: 800; }
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section { padding: 72px 0; }
.section.tight { padding: 56px 0; }
.section.gray { background: var(--gray); }
.section.navy { background: var(--navy); }
.section.navy-dark { background: var(--navy-dark); }
.section.navy h2, .section.navy-dark h2,
.section.navy h3, .section.navy-dark h3 { color: var(--white); }
.section.navy p, .section.navy-dark p { color: rgba(255, 255, 255, 0.75); }

.section-head { max-width: 760px; margin-bottom: 30px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 10px; font-size: 1.06rem; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn .icon { width: 19px; height: 19px; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255, 121, 0, 0.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255, 255, 255, 0.5); color: var(--white); background: transparent; }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.1); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1EBE5A; transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange); font-weight: 700;
}
.text-link .icon { width: 18px; height: 18px; transition: transform 0.2s; }
.text-link:hover .icon { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease;
}
.site-header .container { max-width: 1380px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
  transition: height 0.25s ease;
}
.site-header.compact .header-inner { height: 62px; }
.site-header.compact { box-shadow: 0 8px 24px rgba(3, 27, 51, 0.35); }

/* Marka alanı — orijinal logolar, koyu header üzerinde beyaz plaka içinde.
   flex-shrink:0 + max-width:none şart: header daraldığında plaka/logolar
   ezilip taşmasın, bütün halinde kalsın. */
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-plate {
  display: flex; align-items: center; gap: 16px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 10px;
  padding: 7px 16px;
}
.brand-img { display: block; width: auto; max-width: none; flex-shrink: 0; }
.brand-img.smc { height: 46px; }
.brand-img.ery { height: 30px; }
.brand-divider { width: 1px; height: 36px; background: var(--line); }
.site-header.compact .brand-img.smc { height: 37px; }
.site-header.compact .brand-img.ery { height: 24px; }
.site-header.compact .brand-plate { padding: 5px 13px; }

/* Navigasyon */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > .nav-item { position: relative; }
.main-nav > .nav-item > a {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500; font-size: 0.94rem;
  padding: 10px 13px; border-radius: 8px;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}
.main-nav > .nav-item > a:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }
.main-nav > .nav-item.active > a { color: var(--orange); font-weight: 600; position: relative; }
.main-nav > .nav-item.active > a:hover { background: none; color: var(--orange); }
.main-nav > .nav-item.active > a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 2px; border-radius: 2px; background: var(--orange);
}
.nav-caret { width: 14px; height: 14px; }

.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 270px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.22s ease;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(4px); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 8px;
  color: var(--ink); font-weight: 600; font-size: 0.92rem;
}
.dropdown a .icon { width: 19px; height: 19px; color: var(--orange); }
.dropdown a:hover { background: var(--gray); color: var(--navy); }

/* Sağ aksiyonlar */
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.lang-switch a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700; font-size: 0.82rem;
  padding: 5px 7px; border-radius: 6px;
}
.lang-switch a:hover { color: var(--white); }
.lang-switch a.active { color: var(--orange); }
.lang-switch .lang-sep { color: rgba(255, 255, 255, 0.3); font-size: 0.8rem; }

.nav-toggle {
  display: none;
  background: none; border: none; color: var(--white);
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle .icon { width: 26px; height: 26px; }

/* Mobil panel */
.mobile-panel {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 99;
  overflow-y: auto;
  padding: 24px;
}
body.nav-open .mobile-panel { display: block; }
body.nav-open { overflow: hidden; }
.mobile-panel a { display: block; color: rgba(255,255,255,0.85); font-weight: 600; padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-panel a.sub { padding-left: 30px; font-size: 0.92rem; color: rgba(255,255,255,0.65); }
.mobile-panel .mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.mobile-panel .mobile-cta a { border: none; text-align: center; border-radius: 10px; }
.mobile-lang { display: flex; gap: 18px; justify-content: center; margin-top: 24px; }
.mobile-lang a { border: 1px solid rgba(255,255,255,0.25); border-radius: 8px; padding: 8px 18px !important; }
.mobile-lang a.active { color: var(--orange); border-color: var(--orange); }

/* ---------- Hero (Ana Sayfa) ---------- */
.hero {
  position: relative;
  min-height: 560px;
  min-height: max(560px, calc(88vh - var(--header-h)));
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero .container { max-width: 1380px; }
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 62%;
  animation: kenburns 36s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateX(0); }
  to { transform: scale(1.12) translateX(-2%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(3, 27, 51, 0.82) 0%, rgba(6, 40, 74, 0.55) 45%, rgba(6, 40, 74, 0.08) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 880px; padding: 70px 0 120px; }
.hero-content h1 { color: var(--white); margin-bottom: 22px; }
.hero-content h1 em { font-style: normal; color: var(--orange); }
.hero-content p { color: rgba(255, 255, 255, 0.85); font-size: 1.12rem; font-weight: 400; max-width: 620px; margin-bottom: 34px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Hızlı İşlemler ---------- */
.quick-actions { position: relative; z-index: 5; margin-top: -58px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.quick-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.quick-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quick-card .icon-badge { margin-bottom: 4px; width: 48px; height: 48px; }
.quick-card h3 { font-size: 1.04rem; }
.quick-card p { font-size: 0.9rem; }
.quick-card .text-link { font-size: 0.88rem; margin-top: 8px; }

.icon-badge {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(255, 121, 0, 0.1);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.icon-badge.navy { background: rgba(6, 40, 74, 0.07); color: var(--navy); }
.icon-badge.solid { background: var(--navy); color: var(--orange); }

/* ---------- Kurumsal Göstergeler ---------- */
.stats-band { background: var(--navy); border-radius: 18px; padding: 30px 34px; }
.stats-band.flat { border-radius: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { display: flex; align-items: center; gap: 14px; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, 0.12); padding-left: 20px; }
.stat .icon { width: 38px; height: 38px; color: var(--orange); stroke-width: 1.6; }
.stat b { display: block; color: var(--white); font-size: 1.8rem; font-weight: 800; line-height: 1.1; }
.stat span { color: rgba(255, 255, 255, 0.65); font-size: 0.84rem; font-weight: 600; white-space: nowrap; }

/* ---------- Kartlar ---------- */
.grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid #D8E1EC;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(3, 27, 51, 0.05);
  display: flex; flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255, 121, 0, 0.35); }
.card:hover .icon-badge { background: var(--orange); color: var(--white); }
.card:hover .text-link .icon { transform: translateX(4px); }
.card .icon-badge { margin-bottom: 16px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.94rem; }
.card .text-link { margin-top: auto; padding-top: 14px; font-size: 0.9rem; }
.card ul.card-list { margin-top: 14px; }
.card ul.card-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.9rem; color: var(--muted); padding: 4px 0; font-weight: 600;
}
.card ul.card-list .icon { width: 16px; height: 16px; color: var(--orange); margin-top: 4px; }

/* Koyu zeminde kart */
.section.navy .card, .section.navy-dark .card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.section.navy .card p, .section.navy-dark .card p { color: rgba(255, 255, 255, 0.72); }
.section.navy .card:hover, .section.navy-dark .card:hover { box-shadow: none; border-color: rgba(255, 121, 0, 0.5); }

/* ---------- Dijital Çözümler ---------- */
.grid.digital-grid { gap: 18px; }
.digital-relation {
  text-align: center; color: rgba(255, 255, 255, 0.85);
  font-weight: 700; font-size: 0.98rem;
  margin: -4px 0 26px;
}
.digital-relation .fsep { color: var(--orange); margin: 0 6px; }
.digital-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: row; gap: 24px; align-items: stretch;
  transition: transform 0.22s, border-color 0.22s;
}
.digital-card:hover { transform: translateY(-3px); border-color: rgba(255, 121, 0, 0.4); }
.digital-card:hover .btn .icon { transform: translateX(3px); }
.digital-card .btn .icon { transition: transform 0.2s; }
.digital-body { flex: 1 1 55%; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.digital-visual { flex: 1 1 45%; min-width: 0; display: flex; align-items: center; justify-content: center; }
.digital-visual img { width: 100%; border-radius: 12px; }
.flow-line {
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
  color: rgba(255, 255, 255, 0.82); font-size: 0.84rem; font-weight: 700;
  margin-top: 12px;
}
.flow-line .fsep { color: var(--orange); margin: 0 4px; }
.flow-line.light { color: var(--ink); }

/* Dijital sayfa hero'su: nokta-matris harita arka planı */
.page-hero .hero-map {
  position: absolute; inset: 0;
  background: none; border: none; border-radius: 0; padding: 0; margin: 0;
  opacity: 0.5;
}
.page-hero .hero-map svg { width: 100%; height: 100%; }

/* Temsili ürün arayüzü — gerçek dashboard görseli gelene kadar yer tutucu */
.mock-ui {
  width: 100%;
  background: #0A2B4E;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.mock-bar {
  display: flex; gap: 5px; padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mock-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.25); }
.mock-body { padding: 16px 14px; display: flex; flex-direction: column; gap: 11px; }
.mock-row { display: flex; align-items: center; gap: 10px; }
.mock-line { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.16); flex: 1; }
.mock-line.w60 { flex: 0 0 60%; }
.mock-line.w40 { flex: 0 0 40%; }
.mock-pill { width: 46px; height: 13px; border-radius: 100px; flex-shrink: 0; }
.mock-pill.ok { background: rgba(37, 211, 102, 0.55); }
.mock-pill.warn { background: rgba(255, 193, 7, 0.55); }
.mock-pill.orange { background: rgba(255, 121, 0, 0.65); }
.mock-chart { display: flex; align-items: flex-end; gap: 7px; height: 78px; }
.mock-chart b { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--orange), rgba(255, 121, 0, 0.3)); }
.split-body .product-logo { display: flex; width: fit-content; }
.product-logo {
  display: inline-flex; align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.product-logo img { display: block; width: auto; height: 44px; max-width: none; flex-shrink: 0; }
.product-logo.lg img { height: 54px; }
.digital-card .tag {
  display: inline-block; align-self: flex-start;
  background: rgba(255, 121, 0, 0.2); color: #FFA14D;
  border: 1px solid rgba(255, 121, 0, 0.4);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  line-height: 1.5;
  padding: 6px 13px; border-radius: 12px; margin-bottom: 16px;
}
.digital-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.digital-card .sub { color: var(--orange); font-weight: 700; font-size: 0.95rem; margin-bottom: 14px; }
.digital-card p { color: rgba(255, 255, 255, 0.72); font-size: 0.96rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 26px; }
.chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem; font-weight: 600;
  padding: 7px 13px; border-radius: 100px;
}
.chip-row.light .chip { background: var(--gray); border-color: var(--line); color: var(--navy); }
.digital-card .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Dijital Avantaj Şeridi ---------- */
.adv-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 46px; }
.adv-item { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.02rem; color: var(--navy); }
.adv-item .icon { color: var(--orange); width: 22px; height: 22px; }

/* ---------- Global Ağ Haritası (Türkiye merkezli, interaktif SVG) ---------- */
.network-map {
  position: relative;
  background: radial-gradient(ellipse at 55% 40%, #0B3B69 0%, var(--navy-dark) 72%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px;
  margin-top: 8px;
  overflow: hidden;
}
.network-map svg { display: block; width: 100%; height: auto; }
.network-map .dot-land { fill: rgba(255, 255, 255, 0.32); }
.network-map .dot-tr { fill: var(--orange); }
.network-map .route-glow { fill: none; stroke: rgba(255, 121, 0, 0.22); stroke-width: 5; stroke-linecap: round; }
.network-map .route-main {
  fill: none; stroke: #FF9633; stroke-width: 1.8; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.network-map.visible .route-main {
  animation-name: drawRoute; animation-duration: 1.1s;
  animation-timing-function: ease; animation-fill-mode: forwards;
}
@keyframes drawRoute { to { stroke-dashoffset: 0; } }
.network-map .node { fill: #EAF2FB; }
.network-map .node-label { fill: rgba(255, 255, 255, 0.85); font: 700 15px "Manrope", sans-serif; }
.network-map .hub { fill: var(--orange); }
.network-map .hub-label { fill: #FFB061; font: 800 17px "Manrope", sans-serif; }
.network-map .hub-pulse {
  fill: none; stroke: var(--orange); stroke-width: 2;
  transform-box: fill-box; transform-origin: center;
  animation: hubPulse 2.4s ease-out infinite;
}
@keyframes hubPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .network-map .route-main { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }
  .network-map .hub-pulse { animation: none; opacity: 0; }
}

/* Bölge odak modu: seçili hat turuncu, diğerleri soluk */
.network-map [data-region] { transition: opacity 0.25s, stroke 0.25s; }
.network-map.focused .route-glow:not(.active),
.network-map.focused .route-main:not(.active) { opacity: 0.1; }
.network-map.focused .node:not(.active),
.network-map.focused .node-label:not(.active) { opacity: 0.25; }
.network-map.focused .route-main.active { stroke: var(--orange); stroke-width: 2.6; }

/* Bölge lejantı: Türkiye dolu, diğerleri outline; hover'da mod tooltip'i */
.region-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.region-chip {
  position: relative;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white);
  border: 1.5px solid #CBD7E4;
  color: var(--navy); font-weight: 700; font-size: 0.9rem;
  padding: 9px 16px; border-radius: 100px;
  cursor: default;
  transition: border-color 0.2s, transform 0.2s;
}
.region-chip:hover { border-color: var(--orange); transform: translateY(-2px); }
.region-chip .icon { width: 15px; height: 15px; color: var(--orange); }
.region-chip.chip-home { background: var(--orange); border-color: var(--orange); color: var(--white); }
.region-chip.chip-home .icon { color: var(--white); }
.region-chip::after {
  content: attr(data-modes);
  position: absolute; bottom: calc(100% + 9px); left: 50%; transform: translateX(-50%);
  background: var(--navy-dark); color: var(--white);
  font-size: 0.75rem; font-weight: 600; white-space: nowrap;
  padding: 6px 11px; border-radius: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
  z-index: 5;
}
.region-chip:hover::after { opacity: 1; }

/* ---------- Neden Biz ---------- */
.why-grid { gap: 30px 44px; max-width: 1020px; margin-left: auto; margin-right: auto; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .icon-badge {
  flex-shrink: 0;
  width: 48px; height: 48px;
  transform: scale(0.86);
  transition: transform 0.5s ease, background 0.2s, color 0.2s;
}
.why-item.visible .icon-badge { transform: scale(1); }
.why-item h3 { font-size: 1.08rem; margin-bottom: 6px; }
.why-item p { font-size: 0.94rem; }

/* ---------- CTA Bandı ---------- */
.cta-band {
  background: linear-gradient(115deg, var(--navy-dark) 0%, var(--navy) 55%, #0E4A85 100%);
  border-radius: 22px;
  padding: 44px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 121, 0, 0.28), transparent 70%);
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 640px; margin: 0 auto 24px; }
.cta-band .hero-buttons { justify-content: center; }

/* ---------- Sayfa Hero (alt sayfalar) ---------- */
.page-hero {
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
  padding: 96px 0;
}
.page-hero .hero-media img { animation: none; }
.page-hero .hero-overlay { background: linear-gradient(100deg, rgba(3,27,51,0.86) 10%, rgba(6,40,74,0.6) 55%, rgba(6,40,74,0.2) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(2.3rem, 4.6vw, 3.5rem); }
.page-hero p { color: rgba(255, 255, 255, 0.84); max-width: 680px; font-size: 1.16rem; }
.page-hero .hero-buttons { margin-top: 28px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.55); font-size: 0.85rem; font-weight: 600; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .icon { width: 14px; height: 14px; }

/* ---------- İçerik + görsel ikili düzen ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.split-55 { grid-template-columns: 1.22fr 1fr; gap: 48px; }
.split .split-media { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.split .split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: 18px; }
.split-body p { margin-bottom: 14px; font-size: 1.02rem; }
.split-body .btn { margin-top: 14px; }

/* Misyon / Vizyon — geniş kart, güçlü tipografi, hafif ikon, sınırlı hover */
.mv-card { padding: 36px 38px; }
.mv-card .mv-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mv-card .mv-head .icon { width: 27px; height: 27px; color: var(--orange); }
.mv-card h3 { font-size: 1.4rem; margin: 0; }
.mv-card p { font-size: 1.04rem; line-height: 1.7; }
.mv-card:hover { transform: none; box-shadow: 0 2px 10px rgba(3, 27, 51, 0.05); border-color: rgba(255, 121, 0, 0.35); }

/* Değer kartları — daha büyük, daha okunur */
.value-card { padding: 30px 26px; }
.value-card h3 { font-size: 1.16rem; }
.value-card p { font-size: 0.97rem; }

/* ---------- Büyük Hizmet Kartları (Hizmetlerimiz sayfası) ---------- */
.service-xl { padding: 0; overflow: hidden; }
.sxl-photo { height: 168px; overflow: hidden; flex-shrink: 0; }
.sxl-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-xl:hover .sxl-photo img { transform: scale(1.05); }
.sxl-body { padding: 28px 30px 26px; display: flex; flex-direction: column; flex: 1; }
.sxl-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.sxl-head .icon-badge { margin: 0; width: 50px; height: 50px; }
.sxl-head h3 { font-size: 1.38rem; margin: 0; }
.sxl-body > p { font-size: 1rem; }
.sxl-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
  margin: 18px 0 6px;
}
.sxl-list li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.96rem; color: var(--ink); }
.sxl-list .icon { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.section.navy .sxl-list li, .section.navy-dark .sxl-list li { color: rgba(255, 255, 255, 0.9); }
.service-xl .text-link { font-size: 0.98rem; }

/* ---------- Sektörel Deneyim ---------- */
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid #D8E1EC; border-radius: 12px;
  padding: 16px 18px;
  font-weight: 700; font-size: 0.98rem; color: var(--navy);
  transition: transform 0.2s, border-color 0.2s;
}
.sector-item:hover { transform: translateY(-2px); border-color: rgba(255, 121, 0, 0.4); }
.sector-item .icon { width: 24px; height: 24px; color: var(--orange); flex-shrink: 0; }

/* ---------- Yatay Süreç Çizgisi ---------- */
.process-line { display: flex; align-items: flex-start; gap: 4px; }
.p-step { flex: 1; text-align: center; min-width: 0; }
.p-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--white); border: 2px solid rgba(255, 121, 0, 0.45);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.p-icon .icon { width: 26px; height: 26px; }
.p-step h4 { font-size: 0.94rem; line-height: 1.3; }
.p-num { display: block; font-size: 0.72rem; font-weight: 700; color: var(--muted); margin-top: 4px; letter-spacing: 0.06em; }
.p-arrow { color: var(--orange); flex-shrink: 0; margin-top: 19px; width: 22px; height: 22px; }

/* Dikey süreç (VISTA) */
.vsteps { position: relative; padding-left: 34px; }
.vsteps::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: rgba(255, 121, 0, 0.35); }
.vstep { position: relative; padding-bottom: 20px; }
.vstep::before {
  content: ""; position: absolute; left: -30px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 121, 0, 0.2);
}
.vstep p { font-size: 0.95rem; color: rgba(255,255,255,0.8); }

/* ---------- Zaman Çizgisi (Kurumsal) ---------- */
.timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 13px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item::before {
  content: ""; position: absolute; left: -33px; top: 5px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--orange);
}
.tl-item .tl-date { color: var(--orange); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.06em; }
.tl-item h3 { margin: 4px 0 6px; font-size: 1.1rem; }
.tl-item p { font-size: 0.94rem; }

/* ---------- Formlar ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 40px;
  box-shadow: var(--shadow);
}
.form-section-title {
  font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin: 28px 0 16px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.form-section-title:first-child { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: 0.86rem; color: var(--navy); margin-bottom: 7px; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--gray); color: var(--ink);
  transition: border-color 0.18s, background 0.18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.check-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.check-row input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--orange); }
.check-row a { color: var(--orange); font-weight: 700; text-decoration: underline; }
.form-actions { margin-top: 26px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }

.form-success {
  display: none;
  text-align: center; padding: 60px 30px;
}
.form-success.show { display: block; }
.form-success .success-icon {
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(37, 211, 102, 0.12); color: #1DA851;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.form-success .success-icon .icon { width: 36px; height: 36px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 10px; }

/* ---------- Gönderi Takip ---------- */
.track-box { max-width: 720px; margin: 0 auto; }
.track-form { display: flex; gap: 12px; }
.track-form input {
  flex: 1; padding: 16px 18px;
  border: 1.5px solid var(--line); border-radius: 12px; background: var(--white);
}
.track-form input:focus { outline: none; border-color: var(--orange); }
.track-result { display: none; margin-top: 44px; }
.track-result.show { display: block; }
.track-steps { position: relative; padding-left: 36px; }
.track-steps::before { content: ""; position: absolute; left: 13px; top: 10px; bottom: 10px; width: 2px; background: var(--line); }
.tstep { position: relative; padding-bottom: 26px; }
.tstep::before {
  content: ""; position: absolute; left: -32px; top: 4px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--line);
}
.tstep.done::before { background: var(--orange); border-color: var(--orange); }
.tstep.active::before { border-color: var(--orange); box-shadow: 0 0 0 5px rgba(255, 121, 0, 0.18); }
.tstep h4 { font-size: 1rem; color: var(--muted); }
.tstep.done h4, .tstep.active h4 { color: var(--navy); }
.tstep span { font-size: 0.82rem; color: var(--muted); }
.tstep.active h4::after { content: " • Devam ediyor"; color: var(--orange); font-size: 0.82rem; }

/* ---------- Bilgi Merkezi ---------- */
.search-bar { display: flex; gap: 12px; max-width: 760px; margin-top: 28px; }
.search-bar input {
  flex: 1; padding: 18px 22px;
  border: none; border-radius: 12px;
  background: rgba(255, 255, 255, 0.14); color: var(--white);
  font-size: 1.05rem;
}
.search-bar input::placeholder { color: rgba(255, 255, 255, 0.6); }
.search-bar input:focus { outline: 2px solid var(--orange); background: rgba(255,255,255,0.2); }

/* Kategori kartları */
.cat-card { padding: 30px 26px; }
.cat-card .icon-badge { width: 62px; height: 62px; }
.cat-card .icon-badge .icon { width: 28px; height: 28px; }
.cat-card h3 { font-size: 1.15rem; }
.cat-card p { font-size: 0.97rem; }

/* Video kartları */
.video-thumb {
  position: relative; height: 152px; flex-shrink: 0;
  background: linear-gradient(125deg, var(--navy) 0%, #0C4076 60%, var(--navy-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(255, 121, 0, 0.45);
  transition: transform 0.2s;
}
.play-btn .icon { width: 24px; height: 24px; margin-left: 2px; }
.content-card:hover .play-btn { transform: scale(1.1); }
.video-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(3, 27, 51, 0.75);
  color: var(--white); font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.04em;
}

.content-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.content-card .cover {
  height: 92px; flex-shrink: 0;
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  overflow: hidden;
}
.content-card .cover .icon { width: 32px; height: 32px; stroke-width: 1.5; transition: transform 0.35s ease; }
.content-card:hover .cover .icon { transform: scale(1.18); }
.content-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.content-card:hover .cover img { transform: scale(1.06); }
.content-card .body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.content-card .meta { font-size: 0.76rem; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.content-card .cover.tall { height: 128px; }
.content-card .cover.tall .icon { width: 38px; height: 38px; }
.content-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.content-card p { font-size: 0.95rem; }
.card-date {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
  margin-top: 10px;
}
.card-date .icon { width: 14px; height: 14px; color: var(--orange); }
.content-card .text-link { margin-top: auto; padding-top: 14px; font-size: 0.88rem; }

.topic-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.topic-chips a {
  background: var(--white); border: 1px solid var(--line);
  padding: 10px 18px; border-radius: 100px;
  font-weight: 700; font-size: 0.88rem; color: var(--navy);
  transition: all 0.18s;
}
.topic-chips a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

details.faq {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 0 24px; margin-bottom: 12px;
}
details.faq summary {
  cursor: pointer; font-weight: 700; color: var(--navy); font-size: 1.02rem;
  padding: 20px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; color: var(--orange); font-size: 1.5rem; font-weight: 600; line-height: 1; }
details.faq[open] summary::after { content: "−"; }
details.faq .faq-body { padding: 0 0 20px; font-size: 0.98rem; color: var(--muted); line-height: 1.7; }
details.faq .faq-body a { color: var(--orange); font-weight: 700; }

.newsletter { display: flex; gap: 12px; max-width: 660px; margin: 28px auto 0; }
.newsletter input {
  flex: 1; padding: 18px 22px; border: none; border-radius: 12px;
  background: rgba(255, 255, 255, 0.14); color: var(--white);
  font-size: 1.02rem;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.6); }
.newsletter input:focus { outline: 2px solid var(--orange); }
.newsletter-note { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); margin-top: 12px; }
.newsletter-note a { color: var(--orange); text-decoration: underline; }

/* ---------- İletişim ---------- */
.trust-strip .why-item .icon-badge { width: 54px; height: 54px; }
.trust-strip .why-item h3 { font-size: 1.16rem; }
.trust-strip .why-item p { font-size: 1rem; }
.contact-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-card .icon-badge { flex-shrink: 0; }
.contact-info-card h3 { font-size: 1.06rem; margin-bottom: 5px; }
.contact-info-card p, .contact-info-card a { font-size: 0.98rem; color: var(--muted); display: block; line-height: 1.6; }
.contact-info-card a:hover { color: var(--orange); }
.map-frame { border: 0; width: 100%; height: 440px; border-radius: 18px; box-shadow: var(--shadow); display: block; }
.map-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 18px; }

/* Form hata durumu */
.field .err-msg, .check-row .err-msg { display: block; color: #C93A3A; font-size: 0.8rem; font-weight: 600; margin-top: 5px; }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #C93A3A; background: #FDF3F3; }
.field-note { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 5px; }

/* Görünmez bot koruması alanı */
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

/* ---------- Portal ---------- */
.portal-layout { display: grid; grid-template-columns: 420px 1fr; gap: 44px; align-items: start; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.8); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.05fr 0.95fr 1.05fr 1.4fr;
  gap: 36px 44px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.74); margin: 0 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-social .icon { width: 20px; height: 20px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.74); font-size: 0.94rem; transition: color 0.18s; }
.footer-col a:hover { color: var(--orange); }
.footer-col .f-contact { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; margin-bottom: 12px; line-height: 1.5; }
.footer-col .f-contact .icon { width: 17px; height: 17px; color: var(--orange); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.58);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal a { color: rgba(255, 255, 255, 0.7); }
.footer-legal a:hover { color: var(--orange); }

/* ---------- WhatsApp FAB ---------- */
.fab-whatsapp {
  position: fixed; right: 32px; bottom: 32px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp .icon { width: 28px; height: 28px; }

/* ---------- Çerez Bandı ---------- */
.cookie-bar {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 95;
  max-width: 680px; margin: 0 auto;
  background: var(--navy-dark); color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px; padding: 18px 22px;
  display: flex; align-items: center; gap: 18px;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
}
.cookie-bar { flex-wrap: wrap; }
.cookie-bar a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-actions .btn { flex-shrink: 0; }
.cookie-manage { font-weight: 700; white-space: nowrap; }

/* ---------- Animasyonlar ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.reveal.d1, .reveal-left.d1, .reveal-right.d1 { transition-delay: 0.08s; }
.reveal.d2, .reveal-left.d2, .reveal-right.d2 { transition-delay: 0.16s; }
.reveal.d3, .reveal-left.d3, .reveal-right.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .why-item .icon-badge { transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Yasal sayfalar ---------- */
.legal-body { max-width: 860px; }
.legal-body h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.legal-body h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; color: var(--muted); }
.legal-body ul li { margin-bottom: 6px; }
.legal-body .ph { color: #B04A00; background: rgba(255, 121, 0, 0.1); padding: 0 5px; border-radius: 4px; font-weight: 700; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin: 14px 0; }
.legal-table th, .legal-table td { border: 1px solid var(--line); padding: 9px 11px; text-align: left; color: var(--muted); }
.legal-table th { background: var(--gray); color: var(--navy); font-weight: 700; }
.legal-table-wrap { overflow-x: auto; }
.legal-table-wrap .legal-table { min-width: 560px; }
.notice-box {
  background: rgba(255, 121, 0, 0.08);
  border: 1px solid rgba(255, 121, 0, 0.35);
  border-radius: 12px; padding: 20px 24px;
  color: var(--ink); font-size: 0.94rem; font-weight: 600;
  display: flex; gap: 14px; align-items: flex-start;
}
.notice-box .icon { color: var(--orange); margin-top: 2px; }

/* ---------- Responsive ---------- */

/* Header kademeli daralma: menü öğeleri asla satır kırmaz,
   önce boşluk/punto küçülür, yer kalmayınca hamburger menüye geçilir */
@media (max-width: 1539px) {
  .main-nav > .nav-item > a { font-size: 0.9rem; padding: 9px 10px; }
  .header-inner { gap: 14px; }
}
@media (max-width: 1459px) {
  .main-nav > .nav-item > a { font-size: 0.86rem; padding: 8px 8px; }
  .header-inner { gap: 12px; }
  .header-actions { gap: 10px; }
  .btn-sm { padding: 8px 12px; font-size: 0.8rem; }
  .lang-switch a { font-size: 0.78rem; padding: 4px 5px; }
  .brand-plate { gap: 12px; padding: 6px 12px; }
  .brand-img.smc { height: 38px; }
  .brand-img.ery { height: 25px; }
  .lang-switch { padding-left: 12px; }
}
@media (max-width: 1279px) {
  .main-nav { display: none; }
  .header-actions .btn, .header-actions .lang-switch { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 1100px) {
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat { border-left: none; padding-left: 0; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .digital-card { flex-direction: column; }
  .process-line { flex-wrap: wrap; gap: 20px; }
  .p-step { flex: 1 1 28%; }
  .p-arrow { display: none; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-split { grid-template-columns: 1fr; gap: 36px; }
  .portal-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .quick-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat span { white-space: normal; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .p-step { flex: 1 1 42%; }
  .sector-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .track-form { flex-direction: column; }
  .newsletter { flex-direction: column; }
  .search-bar { flex-direction: column; }
  .cta-band { padding: 48px 24px; }
  .brand-img.ery, .brand-divider { display: none; }
  .brand-img.smc { height: 38px; }
  .brand-plate { gap: 0; padding: 5px 12px; }
  .hero-content { padding-bottom: 110px; }
  .cookie-bar { flex-direction: column; align-items: flex-start; }
  .fab-whatsapp { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .fab-whatsapp .icon { width: 25px; height: 25px; }
}
