*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ── NAVBAR (referans: ortalanmış menü, mavi menü düğmesi, pill arama) ── */
.site-header-nav {
  position: sticky; top: 0; z-index: 200;
  background: #faf8f5;
  border-bottom: 1px solid #ebe6df;
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(140px, auto) 1fr minmax(200px, auto);
  align-items: center;
  column-gap: 12px;
  padding: 10px calc(14px + env(safe-area-inset-right, 0px)) 10px calc(10px + env(safe-area-inset-left, 0px));
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.nav-center {
  display: flex;
  justify-content: center;
  min-width: 0;
}

/* Mobil çekmece altı iletişim — dar ekranda @media içinde açılır */
.nav-drawer-contact {
  display: none;
}
.nav-hamburger {
  width: 40px; height: 40px; flex-shrink: 0;
  border: none; border-radius: 50%;
  background: #1a6eff;
  cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(26, 110, 255, 0.35);
  transition: background 0.2s, transform 0.15s;
}
.nav-hamburger:hover { background: #0d5fd9; }
.nav-hamburger:active { transform: scale(0.96); }
.nav-hamburger--inbar { display: none; }
.nav-hamburger span {
  display: block; width: 16px; height: 2px;
  background: #fff; border-radius: 2px;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
  padding: 2px 0;
}
.logo-text {
  font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 900;
  letter-spacing: -1.5px; color: #0a2d6e; line-height: 1;
}
.logo-text .lY { color: #1a6eff; }
.nav-logo-img {
  height: clamp(40px, 11vw, 62px);
  width: auto;
  max-width: min(360px, 72vw);
  object-fit: contain;
  display: block;
}
.nav-logo-img--dark {
  display: none;
}

.nav-links {
  display: flex; align-items: center; list-style: none; gap: 0;
  flex-wrap: nowrap;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
  color: #1a1a1a; text-decoration: none; padding: 10px 14px;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap; letter-spacing: 0.35px; transition: color 0.15s;
}
.nav-links > li > a:hover { color: #1a6eff; }
.arr { font-size: 8px; opacity: 0.55; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  z-index: 300;
  background: #fff;
  border: 1px solid #e6eaf0;
  border-top: 3px solid #1a6eff;
  box-shadow: 0 16px 44px rgba(15, 25, 45, 0.12);
}
.nav-links > li:hover .nav-dropdown { display: block; }

/* KURUMSAL — üç sütunlu mega menü */
.nav-dropdown--mega {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e4e8ef;
  border-top: 3px solid #1a6eff;
  box-shadow: 0 20px 50px rgba(15, 25, 45, 0.14);
}
.nav-mega__inner {
  position: relative;
  background: #fff;
}
.nav-mega__cols {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
  padding: 28px 36px 32px 40px;
  max-width: 100%;
}
.nav-mega__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a1a3a;
  margin: 0 0 14px;
  line-height: 1.3;
}
.nav-mega__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mega__links a {
  display: block;
  padding: 9px 12px 9px 10px;
  margin: 0 -10px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #2d3748;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.nav-mega__links a:hover {
  background: #f0f6ff;
  color: #1a6eff;
  border-left-color: #1a6eff;
}
.nav-mega__deco {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: min(200px, 42%);
  max-height: 88%;
  color: #6aa8ff;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}
.nav-mega__globe {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1101px) {
  /* Mega paneli tüm menü çubuğuna göre ortala; li relative üstünü kesmesin */
  .nav-center {
    position: relative;
  }
  .nav-links > li.nav-item--dropdown {
    position: static;
  }
  .nav-dropdown--mega {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    min-width: min(880px, calc(100vw - 48px));
    max-width: calc(100vw - 32px);
    width: max-content;
    top: 100%;
  }
}

.nav-right {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 10px;
}
.nav-lang {
  font-size: 11.5px; font-weight: 600; color: #222; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 7px 14px; border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.nav-lang:hover { border-color: #1a6eff; color: #1a6eff; }
.nav-search {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 24px;
  cursor: pointer;
  font-size: 11px; color: #333;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  padding: 7px 16px;
  letter-spacing: 0.4px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.nav-search-ic { flex-shrink: 0; opacity: 0.72; }

:root {
  --app-rail-width: 68px;
  /* Üst bar yüksekliği ile senkron (box-sizing: border-box + border) */
  --site-header-height: 85px;
  --nav-drawer-max: 320px;
}

/* Mobil menü: tam ekran karartma (üst barın altında içerik) */
.nav-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(7, 15, 34, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
  cursor: pointer;
}
html.nav-mobile-open .nav-drawer-backdrop,
body.nav-mobile-open .nav-drawer-backdrop {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
html.nav-mobile-open,
body.nav-mobile-open {
  overflow: hidden;
}

@media (min-width: 1101px) {
  .nav-drawer-backdrop {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  html.nav-mobile-open,
  body.nav-mobile-open {
    overflow: unset;
    touch-action: unset;
  }
}

/* ── SOL RAIL + ÜRÜN FLYOUT (hover: dar şerit kapanır, panel genişler) ── */
.app-rail-hover-zone {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 160;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: var(--app-rail-width);
  height: 100vh;
  overflow: hidden;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-rail-hover-zone:hover,
.app-rail-hover-zone:focus-within {
  width: min(304px, calc(100vw - 12px));
}
.app-rail {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: var(--app-rail-width);
  min-width: var(--app-rail-width);
  height: 100vh;
  background: #fff;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 20px;
  box-sizing: border-box;
  overflow: hidden;
  transition:
    width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    min-width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.22s ease,
    border-color 0.2s ease,
    padding 0.2s ease;
}
.app-rail-hover-zone:hover .app-rail,
.app-rail-hover-zone:focus-within .app-rail {
  width: 0;
  min-width: 0;
  opacity: 0;
  padding-left: 0;
  padding-right: 0;
  border-right-color: transparent;
  pointer-events: none;
}
.app-rail-flyout {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 0;
  margin-top: var(--site-header-height);
  height: calc(100vh - var(--site-header-height));
  align-self: flex-start;
  overflow: hidden;
  opacity: 0;
  background: #fff;
  pointer-events: none;
  box-shadow: none;
  border-right: 1px solid transparent;
  border-radius: 0 12px 0 0;
  transition:
    max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.22s ease,
    box-shadow 0.28s ease,
    border-color 0.2s ease;
}
.app-rail-hover-zone:hover .app-rail-flyout,
.app-rail-hover-zone:focus-within .app-rail-flyout {
  max-width: min(300px, calc(100vw - 16px));
  opacity: 1;
  pointer-events: auto;
  border-right-color: #ebe6df;
  box-shadow: 8px 4px 32px rgba(15, 25, 45, 0.1);
}
.app-rail-flyout-inner {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: min(280px, calc(100vw - 32px));
  height: 100%;
  padding: 16px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flyout-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  width: 100%;
  background: #1a6eff;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.35px;
  padding: 11px 16px;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(26, 110, 255, 0.35);
}
.flyout-hamburger {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}
.flyout-hamburger span {
  display: block;
  width: 15px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.flyout-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  flex: 1;
  overflow-y: auto;
}
.flyout-list li { margin: 0; }
.flyout-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  margin: 0 -2px;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
}
.flyout-list a:hover { background: #f5f5f5; }
.flyout-ic {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  background: #f3f6fa;
  border-radius: 10px;
  border: 1px solid #e8ecf2;
}
.flyout-txt { flex: 1; min-width: 0; line-height: 1.35; }
.flyout-arr {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: #c5c5c5;
  font-family: 'Montserrat', sans-serif;
}
.app-rail-menu {
  flex-shrink: 0;
  margin-bottom: 20px;
}
.app-rail .nav-hamburger {
  display: flex;
}
.app-rail-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.site-shell {
  margin-left: var(--app-rail-width);
  min-width: 0;
}

/* İçerik: .site-shell > .main */
.sb-item {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; cursor: pointer; font-size: 20px; line-height: 1;
  color: #555;
  background: #eef5ff;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
}
.sb-item:hover, .sb-item.on {
  background: #dbeaff; color: #1a6eff;
}
.sb-item:active { transform: scale(0.94); }
.sb-item__img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.sb-item__emoji { line-height: 1; }
.sb-item--placeholder {
  cursor: default;
  opacity: 0.45;
}
.flyout-ic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.flyout-list__empty {
  padding: 16px 12px;
  list-style: none;
}

.main { margin-left: 0; flex: 1; }

/* ── HERO (yalnızca görsel slider — tam genişlik, yükseklik görsele göre) ── */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}
.hero-track {
  display: flex;
  align-items: stretch;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: #fff;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.hero-slide--empty {
  min-height: min(42vw, 420px);
  background: #fff;
}

.hero-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.hdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(10,45,110,0.22); cursor: pointer; transition: all 0.2s; }
.hdot.on { background: #1a6eff; width: 22px; border-radius: 4px; }

.harrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  min-width: 44px; min-height: 44px; width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.78); box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  z-index: 10; color: #333; transition: all 0.2s;
}
.harrow:hover { background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
.harrow.lft { left: calc(16px + var(--app-rail-width)); }
.harrow.rgt { right: 16px; }

/* ── GENERIC SECTION ────────────────────────── */
.sec { padding: 48px 52px; }
.sec-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; }
.sec-title { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; color: #0a1a3a; margin-bottom: 3px; }
.sec-sub { font-size: 13px; color: #999; }

.btn-pill {
  background: #0a1a3a; color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.4px; padding: 10px 22px; border: none; border-radius: 24px;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center;
  gap: 5px; white-space: nowrap; transition: background 0.2s;
}
.btn-pill:hover { background: #1a6eff; }

/* ── İş Ortaklarımız (ana sayfa — beyaz kartlar, sonsuz kaydırma) ─── */
.partners-sec {
  background: #f8fafc;
  padding: 44px 0 0;
}
.partners-sec__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 52px;
  box-sizing: border-box;
}
.partners-sec__head {
  margin-bottom: 18px;
}
.partners-sec__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #0a1a3a;
  letter-spacing: -0.02em;
  margin: 0;
}
.partners-marquee__viewport {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 1.5%, #000 98.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 1.5%, #000 98.5%, transparent 100%);
}
.partners-marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
}
.partners-marquee__track--scroll {
  animation: partners-marquee 48s linear infinite;
}
.partners-marquee__track--scroll:hover {
  animation-play-state: paused;
}
@keyframes partners-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partners-marquee__set {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}
.partners-marquee__track:not(.partners-marquee__track--scroll) {
  margin: 0 auto;
}
.partner-card {
  flex: 0 0 auto;
}
.partner-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 188px;
  max-width: 220px;
  min-height: 132px;
  padding: 18px 16px 14px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8ecf2;
  box-shadow: 0 8px 26px rgba(10, 26, 58, 0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
a.partner-card__inner:hover {
  box-shadow: 0 12px 32px rgba(10, 26, 58, 0.14);
  transform: translateY(-2px);
}
.partner-card__logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin-bottom: 10px;
}
.partner-card__logo img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-card__initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(145deg, #eef5ff, #dbeaff);
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1a6eff;
}
.partner-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #0a1a3a;
  margin: 0;
  line-height: 1.35;
}
.partners-sec__rule {
  height: 3px;
  background: linear-gradient(90deg, transparent, #1a6eff 12%, #1a6eff 88%, transparent);
  border-radius: 2px;
  margin-top: 4px;
  opacity: 0.92;
}
@media (prefers-reduced-motion: reduce) {
  .partners-marquee__track--scroll {
    animation: none;
  }
}
@media (max-width: 768px) {
  .partners-sec__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .partners-sec__title {
    font-size: 21px;
  }
  .partner-card__inner {
    min-width: 158px;
    max-width: 176px;
  }
}

/* İş ortakları — iç sayfa (/is-ortaklarimiz) */
.partners-page-body {
  background: #f8fafc;
  padding: 32px 0 64px;
}
.partners-page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  box-sizing: border-box;
}
.partners-page__lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0 0 28px;
  max-width: 720px;
}
.partners-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 22px;
  justify-items: stretch;
}
.partners-page__grid .partner-card {
  height: 100%;
  display: flex;
}
.partners-page__grid .partner-card__inner {
  min-width: 0;
  width: 100%;
  max-width: none;
  min-height: 148px;
  flex: 1;
}
.partners-page__grid .partner-card__logo img {
  max-height: 64px;
}
.partners-page__rule {
  height: 3px;
  background: linear-gradient(90deg, transparent, #1a6eff 12%, #1a6eff 88%, transparent);
  border-radius: 2px;
  margin-top: 36px;
  opacity: 0.92;
}
.partners-page__empty {
  text-align: center;
  padding: 48px 16px;
  font-size: 1rem;
}

/* ── MARKALAR (görsel kartlar — images/markalar/EloTouch-3.jpg) ─── */
.brands-sec {
  background: #fff;
  padding: 48px 0 52px;
}
/* Başlık: ana içerik genişliğinde sol/sağ yaslama; kartlar aşağıda ayrı içerikte */
.brands-sec__head {
  width: 100%;
  box-sizing: border-box;
  padding-left: 52px;
  padding-right: 52px;
  margin-bottom: 24px;
}
.brands-sec__head .sec-hd {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 0;
}
.brands-sec__head .sec-hd > div:first-child {
  text-align: left;
  min-width: 0;
}
.brands-sec__head .sec-hd .btn-pill {
  margin-left: auto;
  flex-shrink: 0;
}
.brands-sec .sec-title {
  font-size: 26px;
  font-weight: 800;
  color: #0a1a3a;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.brands-sec .sec-sub {
  font-size: 13px;
  color: #999;
  font-family: 'Open Sans', sans-serif;
}
.brands-sec .btn-pill {
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.brands-sec .btn-pill:hover { background: #222; }
.brands-sec__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  box-sizing: border-box;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.brand-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  overflow: hidden;
  min-height: 0;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}
.brand-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.brand-card__bg--ph {
  background: linear-gradient(145deg, #dde4ee 0%, #c5d0e0 50%, #aebccf 100%);
}
.brand-card__logo {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  padding: 6px;
  box-sizing: border-box;
}
.brand-card__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-card__logo--text span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(8px, 0.85vw, 11px);
  line-height: 1.1;
  color: #111;
  text-align: center;
  letter-spacing: -0.02em;
  max-width: 42px;
  word-break: break-word;
}
.brand-card[data-slug="starlake"] .brand-card__logo--text span {
  font-size: clamp(7px, 0.72vw, 9px);
  letter-spacing: 0;
}
.brand-card__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px 14px 18px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.48) 42%,
    rgba(0, 0, 0, 0) 100%
  );
}
.brand-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(13px, 1vw, 16px);
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
  line-height: 1.2;
}
.brand-card__cat {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.7vw, 10px);
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
}

/* ── ANA SAYFA — Hizmetlerimiz bölümü (kart ızgarası ile) ───────────────── */
.sol-sec {
  background: #f4f5f7;
  padding: 48px 52px 52px;
}
.sol-sec-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0a1a3a;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  line-height: 1.2;
}
.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 36px;
  align-items: start;
}
.sol-col {
  text-align: left;
}
.sol-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1a6eff;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.sol-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #9aa3ad;
  margin: 0 0 10px;
  line-height: 1.35;
}
.sol-sec .sol-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #0a1a3a;
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.sol-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #5c6678;
  line-height: 1.65;
  margin: 0;
}
.sol-sec__empty {
  margin: 0;
  font-size: 15px;
}

.home-services-sec .home-sv-grid-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.home-services-sec .sv-grid {
  align-items: stretch;
}
.home-services-sec .sv-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-services-sec .sv-card__link {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-services-sec .sv-card__media {
  flex-shrink: 0;
}
.home-services-sec .sv-card__body--home {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 16px 18px 18px;
}
.home-services-sec .sv-card__body--home .sv-card__title {
  margin: 0;
  transition: color 0.2s ease;
}
.home-services-sec .sv-card:hover .sv-card__title {
  color: #1a6eff;
}
.home-services-sec .sv-card__link:focus-visible {
  outline: 2px solid #1a6eff;
  outline-offset: 3px;
  border-radius: 14px;
}

.sol-media {
  margin: 0 0 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e4e8ee;
  background: #fff;
  line-height: 0;
}
.sol-media img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 160px;
  object-fit: cover;
}
.sol-detail-body {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #5c6678;
  line-height: 1.65;
  margin: 0 0 14px;
}
.sol-detail-body p {
  margin: 0 0 0.75em;
}
.sol-detail-body p:last-child {
  margin-bottom: 0;
}
.sol-gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.sol-gallery__item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e4e8ee;
  background: #fff;
  line-height: 0;
}
.sol-gallery__item img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
}

/* ── FOOTER (ortaklık şeridi + yüzen iletişim + CTA + sütunlar) ─── */
footer {
  background: #070f22;
  color: #fff;
}
.foot-partners {
  background: #0a1a3a;
  padding: 36px 52px 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.foot-partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
}
.foot-pname {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}
.foot-float-wrap {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  padding: 0 52px;
  box-sizing: border-box;
}
.foot-contact-bar {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 22px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 32px;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.22);
}
.fcb-brand-img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.fcb-brand-img--dark {
  display: none;
}
.fcb-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.fcb-soc-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #0a1a3a;
}
.fcb-soc-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.fcb-si {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: transform 0.15s, opacity 0.15s;
}
.fcb-si:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}
.fcb-si--fb { background: #1877f2; }
.fcb-si--tw { background: #000; font-size: 11px; }
.fcb-si--em { background: #4a5568; }
.fcb-si--ig { background: linear-gradient(35deg, #f58529, #dd2a7b, #8134af); }
.fcb-si--yt { background: #ff0000; }
.fcb-si--in { background: #0a66c2; }
.fcb-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 32px;
  font-size: 13px;
}
.fcb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2d3748;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.fcb-item:hover { color: #1a6eff; }
.fcb-item .fcb-ic { opacity: 0.55; font-size: 14px; }

.foot-main {
  position: relative;
  background: linear-gradient(165deg, #061022 0%, #0a1a3a 48%, #071428 100%);
  padding: 52px 0 0;
  overflow: hidden;
}
.foot-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 72% 108%, rgba(26, 110, 255, 0.2), transparent 58%),
    radial-gradient(ellipse 55% 45% at 8% 18%, rgba(26, 110, 255, 0.12), transparent 52%);
  pointer-events: none;
}
.foot-main-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px 48px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: 48px 56px;
  align-items: start;
}
.foot-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.foot-cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 420px;
}
.foot-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.foot-cta-btn:hover {
  background: #fff;
  color: #0a1a3a;
}
.foot-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 40px;
}
.foot-col-ft h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 16px;
}
.foot-col-ft ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot-col-ft li { margin-bottom: 8px; }
.foot-col-ft a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-col-ft a:hover { color: #6aaaff; }
.foot-brands-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}
.foot-brands-split ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.foot-bot {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px calc(52px + env(safe-area-inset-right, 0px)) 22px calc(52px + env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.18);
}
.foot-bot-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.foot-bot-mid {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.foot-bot-mid a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.foot-bot-mid a:hover { color: #6aaaff; }
.foot-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #0a1a3a;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}
.foot-top-btn:hover { transform: translateY(-3px); }

/* ── SCROLL FADE ────────────────────────────── */
.fi { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fi.vis { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .app-rail-hover-zone { display: none; }
  .site-shell { margin-left: 0; }
  .nav-hamburger--inbar { display: flex; }
  .harrow.lft { left: max(12px, env(safe-area-inset-left, 0px)); }
  .harrow.rgt { right: max(12px, env(safe-area-inset-right, 0px)); }
  .site-header-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    row-gap: 0;
    padding: 10px 14px 10px 10px;
    min-height: 0;
  }
  .nav-left {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Çekmece (nav-center) aynı nav içinde yüksek z-index’li; kapalıyken bile
       hamburger’ın üstüne binip tıklamayı yutabiliyordu — üst bar her zaman üstte */
    position: relative;
    z-index: 30;
  }
  .nav-right {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
    justify-self: unset;
    flex-shrink: 0;
    gap: 8px;
    position: relative;
    z-index: 30;
  }
  .nav-center {
    order: 3;
    flex: 0 0 100%;
    align-self: flex-start;
    margin: 0;
    border: none;
    position: fixed;
    top: var(--site-header-height);
    left: 0;
    width: min(var(--nav-drawer-max), calc(100vw - 12px));
    max-width: 100%;
    /* height:0 + fixed iOS/Safari'de çekmeceyi sıfır yükseklikte bırakıyordu */
    height: calc(100vh - var(--site-header-height));
    height: calc(100dvh - var(--site-header-height));
    max-height: none;
    display: flex;
    flex-direction: column;
    background: #faf8f5;
    border-right: 1px solid #ebe6df;
    box-shadow: 8px 0 32px rgba(15, 25, 45, 0.12);
    justify-content: flex-start;
    align-items: stretch;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 16px 14px calc(24px + env(safe-area-inset-bottom, 0px));
    padding-left: calc(14px + env(safe-area-inset-left, 0px));
    transform: translate3d(-104%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    mask-image: none;
    pointer-events: none;
    visibility: hidden;
  }
  html.nav-mobile-open .nav-center,
  body.nav-mobile-open .nav-center {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    visibility: visible;
    z-index: 25;
  }
  .nav-links {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 4px;
    width: 100%;
    padding-right: 0;
  }

  .nav-drawer-contact {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(10, 26, 58, 0.08);
    gap: 8px;
  }
  .nav-drawer-contact__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9aa3ad;
    margin: 0 0 4px 2px;
  }
  .nav-drawer-contact__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    background: #fff;
    border: 1px solid #e8e4df;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
  }
  .nav-drawer-contact__row:hover {
    border-color: #1a6eff;
    color: #1a6eff;
    box-shadow: 0 0 0 1px rgba(26, 110, 255, 0.12);
  }
  .nav-drawer-contact__ic {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(145deg, #eef5ff 0%, #e4edfc 100%);
    border: 1px solid #dce6f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    flex-shrink: 0;
  }
  .nav-drawer-contact__txt {
    flex: 1;
    min-width: 0;
    word-break: break-word;
  }
  .nav-drawer-contact__cta {
    margin-top: 6px;
    padding: 13px 16px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    color: #fff;
    background: #0a1a3a;
    border: none;
    box-shadow: 0 4px 14px rgba(10, 26, 58, 0.25);
    transition: background 0.2s, transform 0.15s;
  }
  .nav-drawer-contact__cta:hover {
    background: #1a6eff;
  }
  .nav-drawer-contact__cta:active {
    transform: scale(0.98);
  }
  .nav-links > li > a {
    white-space: normal;
    padding: 14px 12px;
    min-height: 48px;
    border-radius: 12px;
  }
  .nav-links > li:hover .nav-dropdown {
    display: none;
  }
  .nav-item--dropdown.nav-submenu-open .nav-dropdown {
    display: block !important;
  }
  .nav-dropdown {
    position: static;
    min-width: 0;
    width: 100%;
    left: auto;
    transform: none;
    border: none;
    border-radius: 0 0 12px 12px;
    box-shadow: none;
    background: #eef1f6;
    margin: 0 0 6px;
    padding: 6px 0 8px;
  }
  .nav-dropdown--mega {
    min-width: 0;
    max-width: none;
    width: 100%;
    overflow: visible;
    border: none;
    border-radius: 0 0 12px 12px;
    box-shadow: none;
    background: transparent;
    border-top: none;
  }
  .nav-mega__inner {
    background: transparent;
  }
  .nav-mega__cols {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 10px 12px;
  }
  .nav-mega__title {
    margin: 0 0 6px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .nav-mega__deco {
    display: none;
  }
  .nav-mega__links a {
    padding: 11px 12px;
    margin: 0;
    font-size: 13px;
  }
  .nav-lang {
    padding: 6px 10px;
    font-size: 10px;
  }
  .sol-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
  .sec, .sol-sec { padding: 40px 28px; }
  .foot-main-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .foot-links-grid { grid-template-columns: 1fr 1fr; }
  .foot-contact-bar { flex-direction: column; align-items: flex-start; }
  .fcb-contacts { width: 100%; justify-content: flex-start; }
  .foot-float-wrap { padding-left: 28px; padding-right: 28px; }
  .foot-partners { padding-left: 28px; padding-right: 28px; }
  .foot-bot { flex-wrap: wrap; gap: 12px; padding-left: calc(28px + env(safe-area-inset-left, 0px)); padding-right: calc(28px + env(safe-area-inset-right, 0px)); }
  .brands-sec { padding: 40px 0 44px; }
  .brands-sec__head {
    padding-left: 28px;
    padding-right: 28px;
  }
  .brands-sec__inner {
    padding-left: 28px;
    padding-right: 28px;
  }
  .brands-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .main { margin-left: 0; }
}

@media (max-width: 640px) {
  .foot-pname {
    white-space: normal;
    letter-spacing: 0.08em;
  }
  .brands-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .brands-sec .sec-title { font-size: 21px; }
  .brands-sec__head .sec-hd {
    flex-wrap: wrap;
    gap: 10px;
  }
  .brands-sec__head .sec-hd > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }
  .brands-sec__head .sec-hd .btn-pill {
    padding: 9px 14px;
    font-size: 9.5px;
  }
  .sol-grid { grid-template-columns: 1fr; gap: 28px; }
  .sol-sec-heading { font-size: 22px; margin-bottom: 28px; }
  .foot-links-grid { grid-template-columns: 1fr; }
  .foot-brands-split { grid-template-columns: 1fr; }
  .foot-bot {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .foot-bot-mid { justify-content: center; }
  .fcb-item { word-break: break-word; }
}

/* === İletişim sayfası === */
/* —— Sayfa başlığı (koyu + desen) —— */
.cu-pagehead{background:linear-gradient(145deg,#061428 0%,#0a1a3a 55%,#071a32 100%);position:relative;overflow:hidden;padding:48px 52px 56px}
.cu-pagehead::before{content:'';position:absolute;inset:0;background:
  radial-gradient(ellipse 70% 50% at 85% 20%,rgba(26,110,255,.18),transparent 55%),
  radial-gradient(ellipse 50% 40% at 15% 80%,rgba(26,110,255,.12),transparent 50%),
  repeating-linear-gradient(-12deg,transparent,transparent 40px,rgba(26,110,255,.04) 40px,rgba(26,110,255,.04) 41px);pointer-events:none}
.cu-pagehead-inner{position:relative;z-index:1;max-width:1200px;margin:0 auto}
.cu-pagehead h1{font-family:'Montserrat',sans-serif;font-size:clamp(28px,4vw,40px);font-weight:800;color:#fff;letter-spacing:-.02em;margin-bottom:12px}
.cu-crumb{font-size:14px;color:rgba(255,255,255,.75)}
.cu-crumb a{color:#fff;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.35)}
.cu-crumb a:hover{border-bottom-color:#fff}

/* —— 4 kart —— */
.cu-cards-wrap{background:#fff;padding:40px 52px 48px}
.cu-cards{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.cu-card{border-radius:16px;padding:28px 20px;text-align:center;border:1px solid #e4e8ef;box-shadow:0 4px 20px rgba(0,0,0,.06);min-height:220px;display:flex;flex-direction:column;align-items:center}
.cu-card--primary{background:#1a6eff;border-color:#1a6eff;color:#fff;box-shadow:0 8px 28px rgba(26,110,255,.35)}
.cu-card-ic{font-size:28px;margin-bottom:14px;line-height:1;opacity:.95}
.cu-card h2{font-family:'Montserrat',sans-serif;font-size:15px;font-weight:800;margin-bottom:12px}
.cu-card--primary h2{color:#fff}
.cu-card p,.cu-card .cu-lines{font-size:13px;line-height:1.55;color:#3d4a5c}
.cu-card--primary p{color:rgba(255,255,255,.95)}
.cu-lines span{display:block}

/* —— Sosyal şerit —— */
.cu-socbar{background:#fff;border-top:1px solid #eee;border-bottom:1px solid #eee;padding:16px 52px}
.cu-socbar-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.cu-socbar strong{font-family:'Montserrat',sans-serif;font-size:13px;font-weight:700;color:#0a1a3a}
.cu-soc-icons{display:flex;gap:10px;flex-wrap:wrap}
.cu-soc-icons a{width:34px;height:34px;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:12px;font-weight:700;text-decoration:none;font-family:'Montserrat',sans-serif}
.cu-soc-icons a:hover{opacity:.9;transform:translateY(-2px)}
.s-fb{background:#1877f2}.s-tw{background:#000;font-size:11px}.s-in{background:#0a66c2}.s-yt{background:#f00}.s-ig{background:linear-gradient(35deg,#f58529,#dd2a7b,#8134af)}

/* —— Form + harita bloğu —— */
.cu-main{background:linear-gradient(180deg,#e8eef8 0%,#f7f9fc 35%,#fff 100%);padding:48px 52px 64px}
.cu-main-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1.15fr) minmax(0,1fr);gap:32px 36px;align-items:start}
.cu-kicker{font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;letter-spacing:2px;color:#1a6eff;margin-bottom:10px}
.cu-lead h2{font-family:'Montserrat',sans-serif;font-size:clamp(22px,2.4vw,28px);font-weight:800;color:#0a1a3a;margin-bottom:14px;line-height:1.25;letter-spacing:-.02em}
.cu-lead p{font-size:14px;color:#5c6678;line-height:1.65}

.cu-alert{background:#e8f5e9;border:1px solid #a5d6a7;color:#1b5e20;padding:12px 16px;border-radius:10px;font-size:14px;margin-bottom:20px;font-weight:600}
.cu-alert--danger{background:#ffebee;border:1px solid #ef9a9a;color:#b71c1c}
.cu-form{display:flex;flex-direction:column;gap:14px}
.cu-row2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media(max-width:720px){.cu-row2{grid-template-columns:1fr}}
.cu-field label{display:block;font-size:12px;font-weight:600;color:#0a1a3a;margin-bottom:6px;font-family:'Montserrat',sans-serif}
.cu-field label .req{color:#c62828}
.cu-field input,.cu-field textarea{width:100%;padding:11px 14px;border:1px solid #d8dee6;border-radius:10px;font-size:14px;font-family:'Open Sans',sans-serif;transition:border-color .15s}
.cu-field input:focus,.cu-field textarea:focus{outline:none;border-color:#1a6eff}
.cu-field textarea{min-height:120px;resize:vertical}
.cu-submit{align-self:flex-start;margin-top:4px;padding:11px 28px;background:#e2e6ec;border:1px solid #cfd6e0;border-radius:10px;font-family:'Montserrat',sans-serif;font-size:12px;font-weight:700;cursor:pointer;color:#0a1a3a;transition:background .2s,border-color .2s}
.cu-submit:hover{background:#d5dce6}

.cu-map h3{font-family:'Montserrat',sans-serif;font-size:15px;font-weight:800;color:#0a1a3a;margin-bottom:12px}
.cu-map iframe{width:100%;height:min(420px,50vh);min-height:280px;border:0;border-radius:14px;box-shadow:0 4px 24px rgba(0,0,0,.08)}

@media(max-width:1000px){
  .cu-cards{grid-template-columns:repeat(2,1fr)}
  .cu-main-inner{grid-template-columns:1fr}
}
@media(max-width:640px){
  .cu-pagehead,.cu-cards-wrap,.cu-socbar,.cu-main{padding-left:22px;padding-right:22px}
  .cu-cards{grid-template-columns:1fr}
}

/* === Hakkımızda === */
.ha-intro {
  background: #fff;
  padding: 36px 52px 28px;
}
.ha-intro__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.ha-intro__lead {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 700;
  color: #0a1a3a;
  line-height: 1.65;
  margin: 0;
}

.ha-split--light {
  background: #fff;
  padding: 28px 52px 56px;
}
.ha-split__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 48px;
  align-items: start;
}
.ha-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: #0a1a3a;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 18px;
}
.ha-split__text p {
  font-size: 14px;
  color: #3d4a5c;
  line-height: 1.75;
  margin: 0 0 14px;
}
.ha-split__text p:last-child { margin-bottom: 0; }

.ha-split__visual {
  margin-bottom: 48px;
}
.ha-figure {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: visible;
}
.ha-figure__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.ha-stat-card {
  position: absolute;
  left: 20px;
  bottom: -28px;
  width: min(220px, 78%);
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid #e8ecf2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.ha-stat-card__ic {
  display: flex;
  margin-bottom: 4px;
}
.ha-stat-card__num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  color: #1a6eff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ha-stat-card__lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a6eff;
}

.ha-prose {
  background: #fff;
  padding: 0 52px 48px;
}
.ha-prose__inner {
  max-width: 920px;
  margin: 0 auto;
}
.ha-prose__inner p {
  font-size: 14px;
  color: #3d4a5c;
  line-height: 1.75;
  margin: 0;
}

.ha-band--dark {
  background: linear-gradient(165deg, #061022 0%, #0a1a3a 48%, #071428 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 52px 64px;
}
.ha-band--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(26, 110, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 45% at 88% 70%, rgba(26, 110, 255, 0.1), transparent 50%);
  pointer-events: none;
}
.ha-band__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: center;
}
.ha-band__visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.ha-band__img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.ha-band__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 16px;
}
.ha-band__text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin: 0 0 14px;
}
.ha-band__text p:last-child { margin-bottom: 0; }

.ha-vision {
  background: #fff;
  padding: 56px 52px 72px;
}
.ha-vision__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 32px 40px;
  align-items: start;
}
.ha-vision__h {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1a6eff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.ha-vision__col p {
  font-size: 14px;
  color: #3d4a5c;
  line-height: 1.75;
  margin: 0 0 12px;
}
.ha-vision__col p:last-child { margin-bottom: 0; }
.ha-vision__col--img {
  display: flex;
  justify-content: center;
  align-self: stretch;
}
.ha-vision__img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  max-width: 340px;
  width: 100%;
}
.ha-vision__img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 5 / 7;
}

@media (max-width: 1000px) {
  .ha-split__inner,
  .ha-band__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ha-band__visual { order: -1; }
  .ha-vision__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ha-vision__col--img { order: 0; }
  .ha-vision__img-wrap { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .ha-intro,
  .ha-split--light,
  .ha-prose,
  .ha-band--dark,
  .ha-vision {
    padding-left: 22px;
    padding-right: 22px;
  }
  .ha-stat-card {
    left: 12px;
    bottom: -20px;
    width: min(200px, 85%);
    padding: 14px 16px 16px;
  }
}

/* === Tarihçe (timeline) === */
.tl-section {
  background: #fff;
  padding: 48px 24px 72px;
}
.tl-wrap {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 8px 0 0;
}
.tl-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg, #dce3ec 0%, #e8ecf2 50%, #dce3ec 100%);
  border-radius: 2px;
  z-index: 0;
}
.tl-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  gap: 0 8px;
  align-items: center;
  margin-bottom: 40px;
}
.tl-item:last-child {
  margin-bottom: 0;
}
.tl-item__col {
  display: flex;
  min-width: 0;
}
.tl-item__col--start {
  justify-content: flex-end;
  padding-right: clamp(12px, 3vw, 28px);
}
.tl-item__col--end {
  justify-content: flex-start;
  padding-left: clamp(12px, 3vw, 28px);
}
.tl-item--right .tl-item__col--start {
  min-height: 0;
}
.tl-item--left .tl-item__col--end {
  min-height: 0;
}
.tl-item__axis {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1a6eff;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px #d0d8e4;
  flex-shrink: 0;
}
.tl-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 18px;
  max-width: 460px;
  width: 100%;
  background: #fff;
  border: 1px solid #e4e8ef;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 6px 28px rgba(15, 25, 45, 0.08);
  transition: box-shadow 0.25s ease, border-color 0.2s;
}
.tl-card:hover {
  box-shadow: 0 10px 36px rgba(15, 25, 45, 0.12);
  border-color: #d0d8e8;
}
.tl-card__fig {
  margin: 0;
  flex-shrink: 0;
  width: 120px;
  min-height: 88px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8ecf2;
  background: #f3f6fa;
}
.tl-card__fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 88px;
}
.tl-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: left;
}
.tl-item--right .tl-card__body {
  text-align: right;
  align-items: flex-end;
}
.tl-year {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: #1a6eff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.tl-desc {
  margin: 0;
  font-size: 13px;
  color: #2d3748;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .tl-wrap::before {
    left: 22px;
    margin-left: 0;
  }
  .tl-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    column-gap: 16px;
    align-items: flex-start;
  }
  .tl-item__axis {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    padding-top: 8px;
  }
  .tl-item__col--start,
  .tl-item__col--end {
    grid-column: 2;
    grid-row: 1;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }
  .tl-item--left .tl-item__col--end {
    display: none;
  }
  .tl-item--right .tl-item__col--start {
    display: none;
  }
  .tl-card {
    max-width: none;
    flex-direction: column;
    align-items: stretch;
  }
  .tl-card__fig {
    width: 100%;
    min-height: 160px;
  }
  .tl-card__fig img {
    min-height: 160px;
  }
  .tl-item--right .tl-card__body {
    text-align: left;
    align-items: flex-start;
  }
  .tl-item--right .tl-card {
    flex-direction: column;
  }
}

/* === Yasal metin sayfaları (KVKK vb.) === */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.legal-doc {
  background: #fff;
  padding: 40px 52px 64px;
}
.legal-doc__inner {
  max-width: 880px;
  margin: 0 auto;
}
.legal-doc__body {
  font-size: 15px;
  line-height: 1.75;
  color: #2d3748;
}
.legal-doc__body h2,
.legal-doc__body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #0a1a3a;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 1.25em 0 0.65em;
}
.legal-doc__body h2:first-child,
.legal-doc__body h3:first-child {
  margin-top: 0;
}
.legal-doc__body h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}
.legal-doc__body h3 {
  font-size: 1.05rem;
}
.legal-doc__body p {
  margin: 0 0 1em;
}
.legal-doc__body ul,
.legal-doc__body ol {
  margin: 0 0 1em 1.2em;
  padding: 0;
}
.legal-doc__body li {
  margin-bottom: 0.35em;
}
.legal-doc__body a {
  color: #1a6eff;
  font-weight: 600;
  text-decoration: none;
}
.legal-doc__body a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .legal-doc {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* Hizmetler listesi / detay */
.sv-grid-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}
.sv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.sv-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 12px;
}
.sv-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8ecf2;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(10, 26, 58, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.sv-card:hover {
  box-shadow: 0 10px 28px rgba(10, 26, 58, 0.1);
  transform: translateY(-2px);
}
.sv-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.sv-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #eef5ff 0%, #f7f9fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sv-card__media img,
.sv-card__img {
  display: block;
}
.sv-card__img--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv-card__media--icon .sv-card__img--contain {
  width: min(52%, 140px);
  height: min(52%, 140px);
  object-fit: contain;
  margin: auto;
}
.sv-card__emoji {
  font-size: 3rem;
  line-height: 1;
}
.sv-card__body {
  padding: 18px 18px 20px;
}
.sv-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #0a1a3a;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.sv-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4a5568;
  margin: 0 0 12px;
}
.sv-card__more {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a6eff;
}
.sv-detail-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 8px;
}
.sv-detail-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.sv-detail-intro {
  background: #fff;
  padding: 24px 20px 8px;
}
.sv-detail-intro__inner {
  max-width: 880px;
  margin: 0 auto;
}
.sv-detail-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #2d3748;
  margin: 0;
}
.sv-detail-body {
  background: #fff;
  padding: 8px 20px 56px;
}
.sv-detail-body__inner {
  max-width: 880px;
  margin: 0 auto;
}

/* ── Projeler (liste + detay) ─────────────────────────────────── */
.proj-list-wrap {
  background: #f8fafc;
  padding: 28px 20px 56px;
}
.proj-list-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.proj-list-empty {
  text-align: center;
  padding: 48px 16px;
  margin: 0;
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.proj-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8ecf2;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(10, 26, 58, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.proj-card:hover {
  box-shadow: 0 12px 32px rgba(10, 26, 58, 0.12);
  transform: translateY(-2px);
}
.proj-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.proj-card__media {
  aspect-ratio: 16 / 10;
  background: #eef2f6;
  overflow: hidden;
  line-height: 0;
}
.proj-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proj-card__ph {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(145deg, #eef5ff, #e4e9f0);
}
.proj-card__body {
  padding: 18px 18px 20px;
}
.proj-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0a1a3a;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.proj-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4a5568;
  margin: 0 0 12px;
}
.proj-card__more {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a6eff;
}
.proj-detail-hero {
  background: #fff;
  padding: 0 20px 12px;
}
.proj-detail-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proj-detail-hero__inner img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.proj-detail-body-wrap {
  background: #fff;
  padding: 16px 20px 56px;
}
.proj-detail-body-inner {
  max-width: 880px;
  margin: 0 auto;
}
.proj-detail-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #2d3748;
  margin: 0 0 20px;
}
.proj-detail-content {
  margin-bottom: 28px;
}
.proj-gallery__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0a1a3a;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.proj-gallery__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.proj-gallery__item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8ecf2;
  background: #f8fafc;
  line-height: 0;
}
.proj-gallery__link {
  display: block;
}
.proj-gallery__item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.proj-gallery__link:hover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .proj-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proj-gallery__item img {
    height: 110px;
  }
}

/* Kariyer — form üstte, metin ortada */
.page-career .car-top {
  background: #fff;
  padding: 0 52px 40px;
}
.page-career .car-form-panel {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 28px;
}
.page-career .car-form-intro {
  font-size: 14px;
  color: #5c6678;
  line-height: 1.6;
  margin-bottom: 20px;
}
.page-career .cu-field input[type="file"] {
  padding: 9px 12px;
  background: #fafbfc;
  border-radius: 10px;
  border: 1px solid #d8dee6;
  font-size: 14px;
}
.page-career .car-prose-wrap {
  background: #fff;
  padding: 40px 52px 72px;
  border-top: 1px solid #e8ecf0;
}
.page-career .car-prose {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.page-career .car-prose h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: #0a1a3a;
  margin-bottom: 28px;
  line-height: 1.3;
}
.page-career .car-prose p {
  font-size: 15px;
  color: #3d4a5c;
  line-height: 1.75;
  margin-bottom: 18px;
}
.page-career .car-prose p:last-child {
  margin-bottom: 0;
}
.page-career .car-prose strong {
  color: #0a1a3a;
}
@media (max-width: 720px) {
  .page-career .car-top,
  .page-career .car-prose-wrap {
    padding-left: 22px;
    padding-right: 22px;
  }
}
