/* Shared chrome — TEK KAYNAK: wrap / header / nav / footer / mobile (sync6)
   Tum sayfalar: chrome.css + pages/{sayfa}.css
   Icerik alani (.wrap), menu ve footer burada; sayfa CSS'inde tekrarlanmaz. */
:root {
  --blue: #2f44d9;
  --blue-btn: #2438c7;
  --navy: #0f1f6b;
  --navy-text: #1a2a6e;
  --muted: #6b7390;
  --line: #e4e9f4;
  --soft: #f3f5fb;
  --hero-wash: #f2f6fd;
  --clients-bg: #eef1f8;
  --footer: #141f36;
  --wrap-max: min(100%, 1680px);
  --pad-x: clamp(20px, 3.5vw, 56px);
  --font: "Poppins", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body.page-site,
body.page-home {
  font-family: var(--font);
  color: #1e293b;
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #eef2f8;
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(240px, 44vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand__tagline {
  display: block;
  max-width: min(220px, 42vw);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  color: #8b93b0;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand__logo--footer {
  height: clamp(34px, 3.5vw, 42px);
  width: auto;
  max-width: min(200px, 55vw);
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.nav > a,
.nav__dd-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-text);
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
}

.nav > a:hover,
.nav__dd-btn:hover { color: var(--blue); }

.nav > a.is-active {
  color: var(--blue);
  font-weight: 600;
}

.nav > a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
}

.nav__dd { position: relative; }

.nav__dd-btn::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid currentColor;
  vertical-align: 1px;
  opacity: 0.65;
}

.nav__dd-menu {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 248px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  padding: 8px;
  padding-top: 12px;
  z-index: 220;
  pointer-events: auto;
}

/* Hover boşluğu: buton → menü arası tıklanabilir köprü */
.nav__dd-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 22px;
}

.nav__dd.is-open .nav__dd-menu,
.nav__dd:hover .nav__dd-menu { display: grid; }

.nav__dd-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.nav__dd-menu a:hover {
  background: #f0f3ff;
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn .ico { width: 16px; height: 16px; flex-shrink: 0; }

.btn--header {
  display: inline-flex;
  align-items: center;
  align-self: center;
  padding: 11px 18px;
  color: #fff;
  background: linear-gradient(90deg, #1e2fbe, #3646e0);
  border-radius: 9px;
  box-shadow: 0 6px 14px rgba(30, 47, 190, 0.25);
  flex-shrink: 0;
  line-height: 1.2;
}

.btn--primary {
  padding: 13px 22px;
  color: #fff;
  background: var(--blue-btn);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(36, 56, 199, 0.22);
  font-size: clamp(14px, 1vw, 16px);
}

.btn--ghost {
  padding: 13px 20px;
  color: var(--blue-btn);
  background: #fff;
  border-color: #3b5bdb;
  border-radius: 999px;
  font-size: clamp(14px, 1vw, 16px);
}

.btn--light {
  padding: 14px 24px;
  color: var(--blue-btn);
  background: #fff;
  border-radius: 10px;
  font-size: clamp(14px, 1vw, 16px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.play {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
}

.play::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #fff;
}

.arrow { font-size: 15px; line-height: 1; }

.eyebrow {
  margin: 0 0 12px;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a84a0;
}

.eyebrow--muted { color: #8b93b0; margin-bottom: 6px; letter-spacing: 0.14em; font-size: clamp(10px, 0.8vw, 11px); }


.nav__dd-btn.is-active {
  color: var(--blue);
  font-weight: 600;
}
.nav__dd-btn.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 14px;
  bottom: 4px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
}

.link-more {
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}
.link-more:hover { text-decoration: underline; }

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

/* ========== TRUST ========== */
.trust {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(16px, 2vw, 22px) 0;
}

.trust__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px clamp(10px, 1.2vw, 18px);
  border-left: 1px solid var(--line);
  min-width: 0;
}

.trust__item:first-child {
  border-left: 0;
  padding-left: 0;
}

.trust__item img {
  width: clamp(40px, 3.5vw, 48px);
  height: clamp(40px, 3.5vw, 48px);
  object-fit: contain;
  flex-shrink: 0;
}

.trust__item strong {
  display: block;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.trust__item span {
  display: block;
  font-size: clamp(12px, 0.95vw, 14px);
  color: var(--muted);
  line-height: 1.35;
}

/* ========== CLIENTS ========== */
.clients {
  padding: clamp(8px, 1.5vw, 16px) 0 clamp(20px, 3vw, 32px);
  background: #fff;
}

.clients__band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title quote"
    "logos logos";
  gap: clamp(14px, 1.8vw, 22px) clamp(16px, 2vw, 28px);
  align-items: start;
  width: 100%;
  box-sizing: border-box;
  background: #eef1f8;
  border-radius: 14px;
  padding: clamp(18px, 2.2vw, 24px) clamp(24px, 3vw, 40px);
  overflow: hidden;
  min-width: 0;
}

.clients__title {
  grid-area: title;
  min-width: 0;
  overflow: hidden;
}

.clients__title h2 {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.clients__logos {
  grid-area: logos;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px 12px;
  min-width: 0;
}

.clients__logos .logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 64px;
  padding: 10px 8px;
  background: #fff;
  border: 1px solid #dce3f0;
  border-radius: 10px;
}

.clients__logos img {
  width: auto;
  height: auto;
  max-height: 36px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.clients__band > blockquote,
.clients__aside {
  grid-area: quote;
  min-width: 0;
  max-width: 28ch;
  justify-self: end;
  text-align: right;
}

.clients__band blockquote {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  padding-left: 16px;
  border-left: 2px solid #c5cde0;
  font-size: clamp(12px, 1vw, 14px);
  color: #8b93b0;
  font-style: italic;
  line-height: 1.45;
}

/* ========== CTA ========== */
.cta {
  padding: clamp(4px, 1vw, 12px) 0 clamp(28px, 4vw, 40px);
  background: #fff;
}

.cta__band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 28px) clamp(18px, 2.4vw, 32px);
  width: 100%;
  box-sizing: border-box;
  padding: clamp(24px, 2.8vw, 34px) clamp(24px, 3vw, 40px);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(100deg, #06183f 0%, #16348f 42%, #3d2fb8 78%, #5a34c8 100%);
  overflow: hidden;
  max-width: 100%;
}

.cta__copy {
  flex: 1 1 300px;
  min-width: 0;
  max-width: 100%;
}

.cta__copy h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cta__copy p {
  margin: 0;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}

.cta__actions .btn--light {
  flex: 0 0 auto;
  white-space: nowrap;
}

.cta__note {
  margin: 0;
  flex: 0 1 180px;
  min-width: 0;
  max-width: 200px;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
  padding-left: 16px;
  padding-right: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ========== FOOTER (Iskelet-benzeri çok kolon + alt bar; Penta navy/mavi) ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  background: #141f36;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
  padding-block: clamp(48px, 5vw, 72px) 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    repeat(3, minmax(0, 0.85fr))
    minmax(0, 1.15fr)
    minmax(0, 1.1fr);
  gap: clamp(24px, 2.8vw, 40px) clamp(20px, 2.2vw, 36px);
  align-items: start;
  width: 100%;
  max-width: 100%;
  padding-bottom: clamp(36px, 4vw, 48px);
}

.site-footer__brand,
.site-footer__nav-col,
.site-footer__contact,
.site-footer__cta-col {
  min-width: 0;
  max-width: 100%;
}

/* İletişim + Bülten sağda sabit — pasif nav kolonu (ör. Destek) boş kalsa da sola kaymaz */
.site-footer__contact {
  grid-column: 5;
}

.site-footer__cta-col {
  grid-column: 6;
}

.site-footer__tagline {
  margin: 14px 0 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
  max-width: 32ch;
}

.site-footer h4 {
  margin: 0 0 16px;
  color: #9eb6ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.site-footer a,
.site-footer li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  line-height: 1.4;
}

.site-footer a:hover { color: #fff; }

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__contact svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #93b4ff;
  opacity: 0.95;
}

.site-footer__cta-text {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  max-width: 28ch;
}

.site-footer__newsletter {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 280px;
}

.site-footer__newsletter input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(158, 182, 255, 0.45);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: #0f1a30;
  color: #fff;
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
}

.site-footer__newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__newsletter input[type="email"]:focus {
  outline: none;
  border-color: #9eb6ff;
}

.site-footer__newsletter button {
  flex: 0 0 44px;
  width: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid #3b6ef5;
  border-radius: 0 8px 8px 0;
  background: #3b6ef5;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.site-footer__newsletter button:hover {
  background: #2f5de0;
  border-color: #2f5de0;
}

.site-footer__brand .social-links {
  margin-top: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(158, 182, 255, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9eb6ff;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.social-links a:hover {
  background: rgba(158, 182, 255, 0.12);
  border-color: rgba(158, 182, 255, 0.8);
  color: #fff;
}

.social-links svg { width: 14px; height: 14px; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-block: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__copy {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.site-footer__legal {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: flex-end;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.site-footer__legal a:hover { color: #fff; }

/* legacy class no-ops (eski HTML kalırsa bozmasın) */
.site-footer__top,
.site-footer__links,
.site-footer__cols,
.site-footer__social-col { display: contents; }
.site-footer__top::after { display: none; }

/* ========== MOBILE BOTTOM NAV + MENÜ SHEET ========== */
.mobile-bottom-nav,
.mobile-menu-sheet {
  display: none;
}

@media (max-width: 900px) {
  body.page-site,
  body.page-home {
    padding-bottom: 0;
  }

  body.page-site.mobile-menu-open, body.page-home.mobile-menu-open {
    overflow: hidden;
  }

  .nav,
  .btn--header {
    display: none;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 110;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 0;
    min-height: 62px;
    padding: 4px 2px calc(4px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #e4e9f4;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    overflow: hidden;
  }

  .mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    max-width: 100%;
    min-height: 48px;
    padding: 2px 1px;
    color: #6b7390;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
  }

  .mobile-bottom-nav-item > span:last-child {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-bottom-nav .icon {
    display: block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .mobile-bottom-nav-item:hover,
  .mobile-bottom-nav-item.active,
  .mobile-bottom-nav-item--menu[aria-expanded="true"] {
    color: var(--blue-btn);
  }

  .mobile-menu-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 120;
    pointer-events: none;
    visibility: hidden;
  }

  .mobile-menu-sheet.is-open {
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-menu-sheet__scrim {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .mobile-menu-sheet.is-open .mobile-menu-sheet__scrim {
    opacity: 1;
  }

  .mobile-menu-sheet__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    max-height: min(92vh, 100vh);
    max-height: min(92dvh, 100dvh);
    padding: 16px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border-radius: 18px 18px 0 0;
    background: #fff;
    box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.18);
    transform: translateY(110%);
    transition: transform 0.22s ease;
    overflow: hidden;
  }

  .mobile-menu-sheet.is-open .mobile-menu-sheet__panel {
    transform: translateY(0);
  }

  .mobile-menu-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef2f8;
  }

  .mobile-menu-sheet__head strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
  }

  .mobile-menu-sheet__close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #e4e9f4;
    background: #fff;
    color: var(--navy);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-sheet__nav {
    display: grid;
    gap: 2px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .mobile-menu-sheet__nav a {
    display: block;
    padding: 12px 8px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-text);
  }

  .mobile-menu-sheet__nav a:hover,
  .mobile-menu-sheet__nav a.is-active {
    background: #f0f3ff;
    color: var(--blue);
  }
}

/* ========== SHARED CHROME RESPONSIVE (home.css ile eş; footer tablet’te erken stack) ========== */
@media (max-width: 1100px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__contact,
  .site-footer__cta-col {
    grid-column: auto;
  }

  .clients__band {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "logos"
      "quote";
    text-align: left;
    overflow: hidden;
    gap: 16px;
  }

  .clients__band > blockquote,
  .clients__aside {
    justify-self: stretch;
    text-align: left;
    max-width: none;
  }

  .clients__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clients__band blockquote {
    border-left: 2px solid #c5cde0;
    padding-left: 16px;
    border-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  /* home.css ile aynı: alt boşluk footer padding ile; body’ye 72px eklenmez */
  .cta {
    padding: 8px 0 16px;
  }

  .cta__band {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    padding: 18px 16px;
    min-height: 0 !important;
    height: auto !important;
  }

  .cta__copy {
    flex: 0 1 auto !important;
    max-width: 100%;
  }

  .cta__copy h2 {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.3;
  }

  .cta__copy p {
    font-size: 13px;
    line-height: 1.45;
  }

  .cta__actions {
    flex: 0 1 auto !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .cta__actions .btn--light {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }

  .cta__note {
    border-left: 0;
    padding-left: 0;
    max-width: none;
    flex: 0 0 auto !important;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
  }

  .clients__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .clients__logos img {
    max-height: 32px;
  }

  /* Footer mobil: sol hizalı dikey stack */
  .site-footer {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer .wrap {
    padding-inline: clamp(20px, 5vw, 32px);
  }

  .site-footer__inner {
    padding-block: 36px 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 28px;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__tagline {
    max-width: none;
  }

  .site-footer h4 {
    margin-bottom: 12px;
  }

  .social-links {
    justify-content: flex-start;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-block: 16px 20px;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }
}

.site-footer__legal .footer-cookie-prefs {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.site-footer__legal .footer-cookie-prefs:hover {
  color: #fff;
}

/* Çerez onayı — Iskelet ile aynı akış, Penta renkleri */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 240;
  padding: 16px 20px;
  border-top: 1px solid #d8deed;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.14);
  font-family: inherit;
}

html.cookie-consent-decided .cookie-consent {
  display: none;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

.cookie-consent-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.cookie-consent-desc {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent-desc a {
  color: var(--blue-btn);
  font-weight: 600;
}

.cookie-consent-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cookie-consent-btn {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--blue-btn);
  background: #fff;
  color: var(--blue-btn);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-consent-btn:hover {
  background: #eef1ff;
}

.cookie-consent-btn[data-cookie-action="accept"] {
  background: var(--blue-btn);
  color: #fff;
}

.cookie-prefs {
  position: fixed;
  inset: 0;
  z-index: 250;
}

.cookie-prefs[hidden] {
  display: none;
}

.cookie-prefs__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 72, 0.45);
}

.cookie-prefs__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 32px));
  margin: 12vh auto 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.cookie-prefs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #e8edf7;
}

.cookie-prefs__head h2 {
  margin: 0;
  font-size: 18px;
  color: var(--navy);
}

.cookie-prefs__close {
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.cookie-prefs__body {
  padding: 16px 18px 20px;
}

.cookie-prefs__body > p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-prefs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f8;
}

.cookie-prefs-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-prefs-copy strong {
  color: var(--navy);
  font-size: 14px;
}

.cookie-prefs-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  width: 48px;
  height: 28px;
}

.cookie-switch input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-switch-locked input {
  cursor: not-allowed;
}

.cookie-switch-ui {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #d8deed;
  transition: background 0.2s;
}

.cookie-switch-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}

.cookie-switch input:checked + .cookie-switch-ui {
  background: var(--blue-btn);
}

.cookie-switch input:checked + .cookie-switch-ui::after {
  transform: translateX(20px);
}

.cookie-prefs-save {
  margin-top: 8px;
  min-height: 42px;
  padding: 8px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--blue-btn);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

body.cookie-prefs-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .cookie-consent {
    bottom: 62px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent-btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 640px) {
  .clients__band {
    padding: 18px 16px;
  }

  .clients__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Yasal metin modal (Gizlilik / KVKK — site teması) ── */
.legal-content-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.legal-content-modal[hidden] {
  display: none !important;
}

body.legal-modal-open {
  overflow: hidden;
}

.legal-content-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 107, 0.45);
}

.legal-content-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-width: 100%;
  max-height: min(82vh, 760px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 31, 107, 0.18);
}

.legal-content-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}

.legal-content-modal-heading {
  margin: 0;
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--navy-text);
  line-height: 1.35;
}

.legal-content-modal-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
}

.legal-content-modal-close:hover,
.legal-content-modal-close:focus-visible {
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 8%, transparent);
}

.legal-content-modal-body {
  padding: 18px 20px 24px;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: #1e293b;
  font-size: 0.95rem;
  line-height: 1.65;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--blue) 40%, var(--line)) var(--soft);
}

.legal-content-modal-body::-webkit-scrollbar {
  width: 8px;
}

.legal-content-modal-body::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--blue) 35%, var(--line));
  border-radius: 999px;
}

.legal-content-modal-body .kvkk-fragment-body,
.legal-content-modal-body .legal-content {
  max-width: none;
  margin: 0;
  padding: 0;
}

.legal-content-modal-body h1,
.legal-content-modal-body h2,
.legal-content-modal-body h3 {
  color: var(--navy-text);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.legal-content-modal-body h1 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  text-transform: none;
}

.legal-content-modal-body h2,
.legal-content-modal-body h3 {
  margin: 1.25rem 0 0.55rem;
  font-size: 1.05rem;
}

.legal-content-modal-body p {
  margin: 0 0 0.85em;
}

.legal-content-modal-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content-modal-body a:hover {
  color: var(--blue-btn);
}

.legal-content-modal-body strong,
.legal-content-modal-body b {
  color: var(--navy-text);
}

.legal-content-modal-loading,
.legal-content-modal-error {
  margin: 0;
  color: var(--muted);
}

.legal-content-modal-error a {
  color: var(--blue);
}

.legal-page .legal-body {
  color: inherit;
  line-height: 1.7;
  max-width: 48rem;
}

