:root {
  /* Renk paleti — derin gece mavisi + teknoloji mavisi */
  --ay-bg: #f6f8fc;
  --ay-yuzey: #ffffff;
  --ay-gece: #07111f;
  --ay-gece-2: #0d1c31;
  --ay-gece-3: #12253d;
  --ay-mavi: #1d7fe0;
  --ay-mavi-acik: #38bdf8;
  --ay-mavi-koyu: #0b5fb0;
  --ay-metin: #0f1b2d;
  --ay-metin-2: #55657c;
  --ay-cizgi: #e4eaf3;
  --ay-cizgi-koyu: rgba(255, 255, 255, 0.1);

  --ay-grad-marka: linear-gradient(135deg, var(--ay-mavi) 0%, var(--ay-mavi-acik) 100%);
  --ay-grad-gece: linear-gradient(160deg, #07111f 0%, #0d203a 55%, #0a1930 100%);
  --ay-grad-parlak: radial-gradient(120% 140% at 15% 0%, rgba(56, 189, 248, 0.22) 0%, transparent 60%);

  --ay-golge-sm: 0 2px 10px rgba(7, 17, 31, 0.06);
  --ay-golge: 0 14px 36px -14px rgba(7, 17, 31, 0.22);
  --ay-golge-lg: 0 34px 70px -28px rgba(7, 17, 31, 0.42);
  --ay-golge-mavi: 0 14px 30px -12px rgba(29, 127, 224, 0.55);

  --ay-r-sm: 10px;
  --ay-r: 14px;
  --ay-r-lg: 20px;
  --ay-r-xl: 28px;
  --ay-gecis: 220ms cubic-bezier(0.22, 0.8, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--ay-bg);
  color: var(--ay-metin);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

::selection { background: var(--ay-mavi-acik); color: #04101d; }

:where(a, button, summary):focus-visible {
  outline: 2px solid var(--ay-mavi-acik);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 999;
  background: var(--ay-gece);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--ay-r-sm) var(--ay-r-sm);
  font-weight: 600;
  transition: top var(--ay-gecis);
}
.skip-link:focus { top: 0; }

/* ============================ Butonlar ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font: inherit;
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--ay-gecis), box-shadow var(--ay-gecis), background var(--ay-gecis),
    color var(--ay-gecis), border-color var(--ay-gecis);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ay-grad-marka);
  color: #fff;
  box-shadow: var(--ay-golge-mavi);
}
.btn--primary:hover { filter: saturate(1.08) brightness(1.04); }

.btn--ghost {
  background: transparent;
  border-color: var(--ay-cizgi);
  color: var(--ay-metin);
}
.btn--ghost:hover { background: #eef3fb; border-color: #cfdcee; }

.btn--sm { padding: 10px 18px; font-size: 0.86rem; }

.btn--header-solid {
  background: var(--ay-gece);
  background-image: linear-gradient(135deg, rgba(29, 127, 224, 0), rgba(56, 189, 248, 0));
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--ay-golge-sm);
  white-space: nowrap;
  transition: background-image var(--ay-gecis), box-shadow var(--ay-gecis), transform var(--ay-gecis);
}
.btn--header-solid:hover {
  background-image: var(--ay-grad-marka);
  box-shadow: var(--ay-golge-mavi);
  transform: translateY(-1px);
  color: #fff;
}


/* ============================ Topbar ============================ */
.topbar {
  background: var(--ay-gece);
  background-image: var(--ay-grad-parlak);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar-group { display: flex; align-items: center; gap: 22px; }
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
  transition: color var(--ay-gecis);
}
.topbar a:hover { color: var(--ay-mavi-acik); }
.topbar a svg { opacity: 0.65; }
.topbar-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: #bfe6fb;
  font-weight: 600;
}
@media (max-width: 860px) {
  .topbar-tagline { display: none; }
  .topbar-group { gap: 14px; font-size: 0.78rem; }
}

/* ============================ Header ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--ay-cizgi);
  transition: box-shadow var(--ay-gecis), background var(--ay-gecis);
}
.site-header.is-stuck,
.site-header.is-scrolled { box-shadow: var(--ay-golge); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ay-metin);
  margin-right: auto;
  padding-right: 10px;
  flex: none;
}
.logo-mark {
  display: grid;
  place-items: center;
  /* width: 46px; */
  /* height: 46px; */
  border-radius: 14px;
  background: var(--ay-grad-gece);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.25), var(--ay-golge-sm);
  flex: none;
  overflow: hidden;
  transition: transform var(--ay-gecis), box-shadow var(--ay-gecis);
}
.logo:hover .logo-mark {
  transform: translateY(-1px) rotate(-2deg);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.45), var(--ay-golge-mavi);
}
.logo-mark img {width: 100%;height: 100%;/* object-fit: contain; */}
.logo--image .logo-mark {
  /* width: auto; */
  /* height: 46px; */
  min-width: 100%;
  padding: 4px 8px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.logo--image .logo-mark img {height: 100%;/* width: auto; */}
.logo--image:hover .logo-mark { transform: none; box-shadow: none; }
.logo-text { display: grid; gap: 3px; line-height: 1.1; }
.logo-name { font-weight: 800; font-size: 1.04rem; letter-spacing: -0.02em; white-space: nowrap; }
.logo-sub {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ay-mavi);
  white-space: nowrap;
}

/* ---- Ana menü ---- */
.site-nav { display: block; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #24354c;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--ay-gecis), color var(--ay-gecis);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  translate: -50% 0;
  background: var(--ay-grad-marka);
  transition: width var(--ay-gecis);
}
.nav-link:hover { background: #eff5fe; color: var(--ay-mavi-koyu); }
.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after { width: 46%; }
.nav-link .caret { transition: transform var(--ay-gecis); opacity: 0.55; }
.nav-item:hover > .nav-link .caret { transform: rotate(180deg); }
.nav-item.is-current > .nav-link {
  color: var(--ay-mavi-koyu);
  background: #e7f0fd;
}
.nav-item.is-current > .nav-link::after { width: 46%; }

@media (max-width: 1240px) {
  .nav-link { padding: 9px 10px; font-size: 0.85rem; }
  .header-cta .btn--header-solid { padding: 11px 16px; font-size: 0.84rem; }
  .logo-sub { display: none; }
}


/* ---- Mega menü ---- */
/* Genişlik parent (.nav-item) değil viewport’a göre — 100% menüyü daraltıyordu */
.site-header,
.site-nav,
.nav-list,
.nav-item {
  overflow: visible;
}
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  width: min(940px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  background:
    linear-gradient(180deg, #f7fafe, #ffffff 34%);
  border: 1px solid rgba(29, 127, 224, 0.14);
  border-radius: 22px;
  box-shadow: 0 30px 70px -30px rgba(7, 17, 31, 0.38), 0 6px 18px -12px rgba(7, 17, 31, 0.24);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.985);
  transform-origin: top center;
  transition: opacity 0.22s ease, transform 0.26s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.22s;
  z-index: 140;
  pointer-events: none;
}
.mega::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
}
.mega::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  translate: -50% 0;
  rotate: 45deg;
  background: #f7fafe;
  border-left: 1px solid rgba(29, 127, 224, 0.14);
  border-top: 1px solid rgba(29, 127, 224, 0.14);
  border-radius: 3px 0 0 0;
}
.mega--sm {
  width: min(660px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
}
.nav-item.has-mega:hover > .mega,
.nav-item.has-mega:focus-within > .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mega-inner {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 10px;
}
.mega--sm .mega-inner {grid-template-columns: 2fr 1.5fr;}
.mega-col { padding: 16px 18px; }
.mega-title {
  margin: 0 0 14px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ay-mavi);
}
.mega-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.mega-col--services .mega-links { grid-template-columns: 1fr 1fr; }
.mega-links a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--ay-r);
  text-decoration: none;
  color: var(--ay-metin);
  border: 1px solid transparent;
  transition: background var(--ay-gecis), border-color var(--ay-gecis), transform var(--ay-gecis);
}
.mega-links a:hover {
  background: #f2f7fe;
  border-color: #dbe8fa;
  transform: translateY(-1px);
}
.mega-ic {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  flex: none;
  background: var(--ay-grad-marka);
  color: #fff;
  box-shadow: var(--ay-golge-mavi);
}
.mega-ic svg { width: 18px; height: 18px; }
.mega-tx { display: grid; gap: 3px; min-width: 0; }
.mega-tx strong { font-size: 0.92rem; font-weight: 700; }
.mega-tx small {
  font-size: 0.78rem;
  color: var(--ay-metin-2);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega-links--plain { grid-template-columns: 1fr 1fr; }
.mega-links--plain a { padding: 10px 12px; font-weight: 600; font-size: 0.9rem; }

.mega-col--cta { padding: 10px; }
.mega-card {
  height: 100%;
  border-radius: var(--ay-r-lg);
  padding: 22px;
  background: var(--ay-grad-gece);
  background-image: var(--ay-grad-parlak), var(--ay-grad-gece);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.18);
}
.mega-card .eyebrow {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ay-mavi-acik);
}
.mega-card h4 { margin: 0; font-size: 1.06rem; line-height: 1.3; font-weight: 800; }
.mega-card p { margin: 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.72); line-height: 1.55; }
.mega-card .btn { margin-top: auto; align-self: flex-start; }
.mega-card--compact { padding: 18px; }

.mega-seeall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px;
  padding: 13px;
  border-radius: var(--ay-r);
  background: #f4f7fc;
  color: var(--ay-mavi-koyu);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background var(--ay-gecis), gap var(--ay-gecis);
}
.mega-seeall:hover { background: #e7f0fd; gap: 14px; }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border-radius: 12px;
  border: 1px solid var(--ay-cizgi);
  background: #fff;
  cursor: pointer;
  transition: border-color var(--ay-gecis), background var(--ay-gecis), box-shadow var(--ay-gecis);
}
.nav-toggle-btn:hover,
.nav-toggle-btn[aria-expanded="true"] {
  border-color: rgba(29, 127, 224, 0.35);
  background: #f2f7fe;
  box-shadow: var(--ay-golge-sm);
}
.nav-toggle-btn span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ay-gece);
  transition: transform var(--ay-gecis), opacity var(--ay-gecis), width var(--ay-gecis);
}
.nav-toggle-btn span:nth-child(2) { width: 70%; }
.nav-toggle-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .site-nav { display: none !important; }
  .nav-toggle-btn { display: flex !important; }
  .header-inner { min-height: 66px; }
}
@media (max-width: 560px) {
  .header-cta .btn--header-solid { padding: 10px 14px; font-size: 0.8rem; }
  .logo-sub { display: none; }
}

/* ============================ Drawer ============================ */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(370px, 88%);
  z-index: 300;
  background: var(--ay-yuzey);
  display: flex;
  flex-direction: column;
  transform: translate3d(-105%, 0, 0);
  transition: transform 300ms cubic-bezier(0.22, 0.8, 0.36, 1);
  box-shadow: var(--ay-golge-lg);
  visibility: hidden;
  pointer-events: none;
  will-change: transform;
}
.drawer.is-open,
.drawer[aria-hidden="false"] {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--ay-grad-gece);
  color: #fff;
}
.drawer-title { font-weight: 800; letter-spacing: 0.02em; }
.drawer-x {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}
.drawer nav { flex: 1; overflow-y: auto; padding: 10px 12px; }
.drawer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px;
  border-radius: var(--ay-r);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--ay-metin);
  text-decoration: none;
  cursor: pointer;
  list-style: none;
}
.drawer-link::-webkit-details-marker { display: none; }
.drawer-link:hover { background: #f2f7fe; color: var(--ay-mavi-koyu); }
.drawer-acc[open] > .drawer-link { background: #eaf2fd; color: var(--ay-mavi-koyu); }
.drawer-acc[open] > .drawer-link .caret { transform: rotate(180deg); }
.drawer-link .caret { transition: transform var(--ay-gecis); opacity: 0.55; }
.drawer-sub {
  list-style: none;
  margin: 2px 0 8px;
  padding: 4px 0 4px 14px;
  border-left: 2px solid var(--ay-cizgi);
  display: grid;
  gap: 1px;
}
.drawer-sub a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--ay-r-sm);
  color: var(--ay-metin-2);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.drawer-sub a:hover { background: #f4f7fc; color: var(--ay-mavi-koyu); }
.drawer-sub-all a { color: var(--ay-mavi); }
.drawer-foot {
  display: grid;
  gap: 2px;
  padding: 14px;
  border-top: 1px solid var(--ay-cizgi);
  background: #f7f9fd;
}
.drawer-foot a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--ay-r-sm);
  color: var(--ay-metin);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.drawer-foot a:hover { background: #fff; box-shadow: var(--ay-golge-sm); }
.drawer-foot a svg { color: var(--ay-mavi); }
.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: rgba(7, 17, 31, 0.55);
  backdrop-filter: blur(3px);
}
.drawer-scrim[hidden] { display: none; }

/* ============================ Footer ============================ */
.site-footer {
  background: var(--ay-gece);
  background-image:
    radial-gradient(900px 420px at 12% -10%, rgba(29, 127, 224, 0.28), transparent 70%),
    radial-gradient(700px 360px at 88% 0%, rgba(56, 189, 248, 0.18), transparent 70%),
    var(--ay-grad-gece);
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--ay-grad-marka);
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 62%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 62%);
}
.site-footer .container { position: relative; z-index: 1; }
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 68px 0 50px;
}
.footer-col p { margin: 0; font-size: 0.9rem; line-height: 1.75; color: rgba(255, 255, 255, 0.66); }
.footer-col h3 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ay-mavi-acik);
  position: relative;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--ay-grad-marka);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col ul a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color var(--ay-gecis), gap var(--ay-gecis);
}
.footer-col ul a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex: none;
  background: var(--ay-mavi-acik);
  opacity: 0.45;
  transition: opacity var(--ay-gecis), box-shadow var(--ay-gecis);
}
.footer-col ul a:hover { color: #fff; gap: 13px; }
.footer-col ul a:hover::before { opacity: 1; box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16); }

.site-footer .logo { color: #fff; margin-right: 0; padding-right: 0; }
.site-footer .logo-name { color: #fff; }
.site-footer .logo-mark {/* background: rgba(255, 255, 255, 0.07); */}

/* İletişim kartları — ikon solda, metin sağda hizalı */
.footer-contact { display: grid; gap: 10px; }
.footer-contact > a,
.footer-contact > div,
.footer-contact > p {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color var(--ay-gecis), background var(--ay-gecis), transform var(--ay-gecis);
  margin: 0;
  word-break: break-word;
}
.footer-contact > a > svg,
.footer-contact > div > svg,
.footer-contact > p > svg {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  justify-self: center;
  box-sizing: content-box;
  width: 16px;
  height: 16px;
  padding: 9px;
  border-radius: 11px;
  background: rgba(56, 189, 248, 0.13);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: var(--ay-mavi-acik);
  flex: none;
  margin: 0;
  transition: background var(--ay-gecis), color var(--ay-gecis);
}
.footer-contact > a > span,
.footer-contact > div > span,
.footer-contact > p > span {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  min-width: 0;
}
.footer-contact > a:hover {
  border-color: rgba(56, 189, 248, 0.42);
  background: rgba(56, 189, 248, 0.09);
  transform: translateY(-2px);
  color: #fff;
}
.footer-contact > a:hover > svg { background: var(--ay-grad-marka); color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--ay-mavi-acik); }

@media (max-width: 980px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 50px 0 36px; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
  .site-footer { margin-top: 48px; }
  .footer-bottom { justify-content: center; text-align: center; }
}


/* ============================ WhatsApp FAB ============================ */
.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 200;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(140deg, #25d366, #12a85a);
  color: #fff;
  box-shadow: 0 16px 34px -12px rgba(18, 168, 90, 0.75);
  transition: transform var(--ay-gecis), box-shadow var(--ay-gecis);
}
.wa-fab::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: ay-nabiz 2.4s ease-out infinite;
}
@keyframes ay-nabiz {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.2); opacity: 0; }
}
.wa-fab:hover { transform: translateY(-3px) scale(1.04); }
@media (max-width: 780px) { .wa-fab { bottom: max(18px, env(safe-area-inset-bottom, 0px)); } }
@media (prefers-reduced-motion: reduce) { .wa-fab::after { animation: none; } }

/* ============================ Mobil tabbar — KAPALI ============================ */
.tabbar { display: none !important; }
.tabbar-item {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 7px 2px;
  border: 0;
  background: none;
  border-radius: 14px;
  color: var(--ay-metin-2);
  font-size: 0.66rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.tabbar-item:hover,
.tabbar-item:focus-visible { color: var(--ay-mavi-koyu); background: #f2f7fe; }
.tabbar-wa { color: #12a85a; }
.tabbar-wa-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-top: -22px;
  border-radius: 50%;
  background: linear-gradient(140deg, #25d366, #12a85a);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(18, 168, 90, 0.8);
  border: 3px solid #fff;
}

/* ============================ Çerez barı / modal ============================ */
.cookie-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 400;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--ay-cizgi);
  border-radius: var(--ay-r-lg);
  box-shadow: var(--ay-golge-lg);
  padding: 16px 18px;
}
.cookie-bar[hidden] { display: none; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin-inline: auto;
}
.cookie-text { margin: 0; display: grid; gap: 4px; font-size: 0.86rem; color: var(--ay-metin-2); }
.cookie-text strong { color: var(--ay-metin); font-size: 0.95rem; }
.cookie-text a { color: var(--ay-mavi); font-weight: 600; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions .btn--ghost,
.cookie-modal-actions .btn--ghost {
  background: #fff !important;
  border: 1px solid var(--ay-cizgi) !important;
  color: var(--ay-metin) !important;
}
.cookie-actions .btn--ghost:hover,
.cookie-modal-actions .btn--ghost:hover {
  background: #eef3fb !important;
  border-color: #cfdcee !important;
  color: var(--ay-mavi-koyu) !important;
}
.cookie-actions .btn--primary,
.cookie-modal-actions .btn--primary {
  color: #fff !important;
}
@media (max-width: 780px) {
  .cookie-bar {
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    left: 10px;
    right: 10px;
  }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1 1 auto; min-height: 44px; }
}

.cookie-modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 16px; }
.cookie-modal[hidden] { display: none; }
.cookie-modal-scrim { position: absolute; inset: 0; background: rgba(7, 17, 31, 0.6); backdrop-filter: blur(4px); }
.cookie-modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  background: var(--ay-yuzey);
  border-radius: var(--ay-r-xl);
  box-shadow: var(--ay-golge-lg);
  padding: 28px;
}
.cookie-x {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  border: 1px solid var(--ay-cizgi);
  background: #fff;
  cursor: pointer;
  color: var(--ay-metin-2);
}
.cookie-eyebrow {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ay-mavi);
}
.cookie-modal-panel h2 { margin: 8px 0 10px; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; }
.cookie-muted { margin: 0 0 18px; font-size: 0.88rem; color: var(--ay-metin-2); line-height: 1.65; }
.cookie-muted a { color: var(--ay-mavi); }
.cookie-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--ay-cizgi);
  border-radius: var(--ay-r);
  margin-bottom: 10px;
  background: #fbfcfe;
}
.cookie-opt-tx { display: grid; gap: 3px; }
.cookie-opt-tx strong { font-size: 0.92rem; }
.cookie-opt-tx span { font-size: 0.8rem; color: var(--ay-metin-2); }

.switch { position: relative; display: inline-block; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track {
  display: block;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #cbd6e6;
  transition: background var(--ay-gecis);
}
.switch .track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--ay-golge-sm);
  transition: transform var(--ay-gecis);
}
.switch input:checked + .track { background: var(--ay-mavi); }
.switch input:checked + .track::after { transform: translateX(20px); }
.switch input:disabled + .track { opacity: 0.6; }

.cookie-liste { margin: 6px 0 14px; border-top: 1px solid var(--ay-cizgi); padding-top: 12px; }
.cookie-liste summary { cursor: pointer; font-weight: 700; font-size: 0.88rem; color: var(--ay-mavi-koyu); }
.cookie-table-wrap { overflow-x: auto; margin-top: 12px; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.cookie-table th,
.cookie-table td { padding: 9px 10px; border-bottom: 1px solid var(--ay-cizgi); text-align: left; }
.cookie-table th { background: #f4f7fc; font-weight: 700; color: var(--ay-metin); }
.cookie-table td { color: var(--ay-metin-2); }
.cookie-last { font-size: 0.78rem; color: var(--ay-metin-2); }
.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
@media (max-width: 520px) {
  .cookie-modal-panel { padding: 22px 18px; }
  .cookie-modal-actions .btn { flex: 1 1 auto; }
}

/* =====================================================================
   MOBİL OPTİMİZASYON 2026 — tüm çözünürlükler (320px → 1920px)
   Kullanıcı odaklı: 44px dokunma alanı, güvenli alan (notch), taşma yok
   ===================================================================== */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body { overflow-x: clip; width: 100%; }
img, svg, video, canvas, iframe { max-width: 100%; height: auto; }
.site-header, .topbar, .site-footer { max-width: 100%; }
/* 100vw scrollbar yüzünden yatay kaydırma yapar — kullanma */
/* mega max-width yukarıda viewport ile tanımlı — parent % kullanma */
.drawer { max-width: 100%; }

/* Odak görünürlüğü (klavye + ekran okuyucu) */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.65);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Güvenli alan (iPhone çentik/ev çubuğu) — tabbar yok */
.wa-fab { right: max(18px, env(safe-area-inset-right)); }
@media (max-width: 780px) {
  .wa-fab { bottom: max(18px, env(safe-area-inset-bottom, 0px)); }
  .cookie-bar { bottom: max(18px, env(safe-area-inset-bottom, 0px)); }
  body { padding-bottom: env(safe-area-inset-bottom, 0px); }
}

/* ---------- Topbar ---------- */
@media (max-width: 900px) {
  .topbar-inner { justify-content: center; }
}
@media (max-width: 640px) {
  .topbar { font-size: 0.76rem; }
  .topbar-inner { padding-block: 4px; }
  .topbar-group { gap: 10px; }
  .topbar-group a { min-height: 34px; align-items: center; }
  /* dar ekranda e-postayı gizle, telefonu bırak (asıl dönüşüm kanalı) */
  .topbar-group a[href^="mailto"] { display: none; }
}
@media (max-width: 380px) {
  .topbar { display: none; }
}

/* ---------- Header (mobil temel; detaylı hizalama dosya sonunda) ---------- */
@media (max-width: 900px) {
  .logo-name { font-size: 1rem; }
  .logo-sub { display: none; }
  .logo-mark {/* width: 40px; *//* height: 40px; */}
}
@media (max-width: 600px) {
  .logo-name { font-size: 0.94rem; line-height: 1.15; }
  .header-cta .btn--header-solid {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
}
@media (max-width: 430px) {
  /* numara sığmıyorsa "Ara" etiketiyle dokunulabilir kalsın */
  .header-cta .btn--header-solid {
    font-size: 0;
    width: 44px;
    padding: 0;
    justify-content: center;
  }
  .header-cta .btn--header-solid::before {
    content: "";
    width: 20px;
    height: 20px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center / 20px 20px no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center / 20px 20px no-repeat;
  }
}
@media (max-width: 340px) {
  .logo-text { display: none; }
}

/* Mega menü asla dokunmatikte açılmasın (yanlış hover tetiklemesi) */
@media (hover: none) {
  .nav-item.has-mega:hover > .mega { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ---------- Drawer (mobil menü) ---------- */
.drawer {
  width: min(370px, 92%);
  height: 100%;
  height: 100dvh;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  overscroll-behavior: contain;
}
.drawer nav { -webkit-overflow-scrolling: touch; }
.drawer-link { min-height: 48px; align-items: center; }
.drawer-sub a { min-height: 44px; display: flex; align-items: center; }
.drawer-x { width: 44px; height: 44px; }
@media (max-width: 400px) {
  .drawer { width: 100%; max-width: 100%; }
  .drawer-foot { grid-template-columns: 1fr; }
}
@media (max-height: 520px) and (orientation: landscape) {
  .drawer-head { padding-block: 8px; }
  .drawer-link { min-height: 40px; }
  .drawer-foot { display: none; }
}
body.drawer-acik,
body.menu-open {
  overflow: hidden !important;
  touch-action: none;
  overscroll-behavior: none;
}

/* ---------- Footer ---------- */
@media (max-width: 1080px) {
  .footer-main { gap: 34px 28px; }
}
@media (max-width: 720px) {
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 28px; }
  .footer-col h4,
  .footer-col .footer-title { font-size: 0.98rem; }
  .footer-contact > * { align-items: center; }
  .footer-col a { min-height: 40px; display: inline-flex; align-items: center; }
}
@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 0.78rem;
    padding-bottom: 34px;
  }
  .footer-contact { gap: 10px; }
  .footer-contact span,
  .footer-contact a { font-size: 0.86rem; word-break: break-word; }
}

/* ---------- Mobil tabbar dokunma hedefleri ---------- */
@media (max-width: 780px) {
  .tabbar-item { min-height: 52px; font-size: 0.68rem; }
  .tabbar-wa-btn { min-height: 52px; }
}
@media (max-width: 360px) {
  .tabbar-item span,
  .tabbar-item small { font-size: 0.62rem; }
}

/* ---------- Çerez bileşeni ---------- */
@media (max-width: 480px) {
  .cookie-bar { left: 8px; right: 8px; padding: 14px; }
  .cookie-actions .btn { min-height: 44px; }
  .cookie-opt { align-items: flex-start; }
}

/* ---------- Geniş ekran konforu ---------- */
@media (min-width: 1600px) {
  .container { max-width: 1360px; }
}

:root {
  --ay-sayfa-bosluk: clamp(52px, 7vw, 96px);
  --ay-kart-r: 20px;
}

main { display: block; }

/* Erişilebilirlik yardımcıları */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Reveal: JS'siz de içerik görünür kalır (SEO + CLS güvenli) */
@keyframes ay-reveal {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: none; }
}
.reveal {
  animation: ay-reveal 0.55s cubic-bezier(0.22, 0.8, 0.36, 1) both;
  animation-delay: var(--d, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
}

/* ------------------------------ Bölümler ---------------------------- */
.section {
  position: relative;
  padding: var(--ay-sayfa-bosluk) 0;
}
.section--soft {
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(56, 189, 248, 0.12), transparent 60%),
    linear-gradient(180deg, #f6f9fe, #eef4fb);
  border-block: 1px solid var(--ay-cizgi);
}
.section--dark {
  background:
    radial-gradient(700px 340px at 85% 0%, rgba(56, 189, 248, 0.22), transparent 62%),
    linear-gradient(160deg, #0a1526 0%, #07111f 60%, #060d18 100%);
  color: #eaf2fb;
}
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p { color: rgba(233, 242, 252, 0.76); }

.sec-head {
  max-width: 780px;
  margin: 0 auto clamp(28px, 4vw, 46px);
  text-align: center;
}
.sec-head h2 {
  margin: 10px 0 0;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--ay-metin);
  text-wrap: balance;
}
.sec-head p {
  margin: 12px 0 0;
  font-size: clamp(0.94rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--ay-metin-2);
}
.sec-head--sol { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ay-mavi);
}
.eyebrow::before {
  content: "";
  width: 20px; height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.6;
}
.section--dark .eyebrow { color: var(--ay-mavi-acik); }

/* ------------------------------ Sayfa hero -------------------------- */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(38px, 6vw, 74px) 0 clamp(42px, 6vw, 78px);
  background:
    radial-gradient(760px 380px at 78% -20%, rgba(56, 189, 248, 0.26), transparent 62%),
    radial-gradient(520px 300px at 6% 110%, rgba(37, 99, 235, 0.28), transparent 64%),
    linear-gradient(155deg, #0b1728 0%, #07111f 58%, #050b14 100%);
  color: #fff;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(70% 90% at 50% 0%, #000 25%, transparent 85%);
  -webkit-mask-image: radial-gradient(70% 90% at 50% 0%, #000 25%, transparent 85%);
}
.page-hero-inner { max-width: 900px; }
.page-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(1.7rem, 1.15rem + 2.9vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  text-wrap: balance;
}
.page-hero p {
  margin: 14px 0 0;
  max-width: 62ch;
  font-size: clamp(0.95rem, 0.9rem + 0.35vw, 1.13rem);
  line-height: 1.72;
  color: rgba(233, 242, 252, 0.8);
}
.page-hero .btn-row { margin-top: 26px; }
.post-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px !important;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem !important;
  color: #cfe4f7 !important;
}

/* ------------------------------ Breadcrumb -------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 0.8rem;
  color: rgba(226, 240, 253, 0.6);
}
.breadcrumb a {
  color: rgba(226, 240, 253, 0.78);
  text-decoration: none;
  padding: 4px 2px;
  border-radius: 6px;
  transition: color var(--ay-gecis);
}
.breadcrumb a:hover { color: var(--ay-mavi-acik); text-decoration: underline; }
.breadcrumb svg { opacity: 0.45; flex: none; }
.breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ------------------------------ Butonlar ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--ay-gecis), box-shadow var(--ay-gecis), background var(--ay-gecis), color var(--ay-gecis), border-color var(--ay-gecis);
}
.btn:active { transform: translateY(1px); }
.btn--lg { min-height: 54px; padding: 16px 26px; font-size: 1rem; border-radius: 14px; }
.btn--sm { min-height: 38px; padding: 9px 15px; font-size: 0.83rem; border-radius: 10px; }
.btn--primary {
  background-image: linear-gradient(135deg, #2f8ef7, #1d63d6);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(29, 99, 214, 0.7);
}
.btn--primary:hover { box-shadow: 0 20px 40px -16px rgba(29, 99, 214, 0.8); transform: translateY(-2px); }
/* Açık zemin ghost (form, cookie bar, paneller) */
.btn--ghost {
  background: #fff;
  border-color: var(--ay-cizgi);
  color: var(--ay-metin);
}
.btn--ghost:hover {
  background: #eef3fb;
  border-color: #cfdcee;
  color: var(--ay-mavi-koyu);
  transform: translateY(-2px);
}
/* Koyu zemin ghost (hero, dark section, cta) */
.page-hero .btn--ghost,
.section--dark .btn--ghost,
.cta-band .btn--ghost,
.mega-card .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(6px);
}
.page-hero .btn--ghost:hover,
.section--dark .btn--ghost:hover,
.cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.btn--outline {
  background: #fff;
  border-color: var(--ay-cizgi);
  color: var(--ay-mavi-koyu);
}
.btn--outline:hover {
  border-color: var(--ay-mavi);
  color: var(--ay-mavi);
  box-shadow: var(--ay-golge-sm);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background-image: linear-gradient(135deg, #25d366, #12a85a);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(18, 168, 90, 0.7);
}
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(18, 168, 90, 0.8); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.tool-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* -------------------------------- Grid ------------------------------ */
.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 292px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 232px), 1fr)); }
.split { display: grid; gap: clamp(20px, 3vw, 34px); align-items: start; }
.split--2 { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
@media (max-width: 900px) {
  .split--2 { grid-template-columns: 1fr; }
}

/* -------------------------------- Kartlar --------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.2vw, 26px);
  background: #fff;
  border: 1px solid var(--ay-cizgi);
  border-radius: var(--ay-kart-r);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(9, 25, 48, 0.04);
  transition: transform var(--ay-gecis), box-shadow var(--ay-gecis), border-color var(--ay-gecis);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background-image: linear-gradient(90deg, #38bdf8, #2563eb);
  opacity: 0;
  transition: opacity var(--ay-gecis);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 26px 50px -28px rgba(9, 25, 48, 0.35);
}
.card:hover::before { opacity: 1; }
.card h3 {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ay-metin);
}
.card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.68;
  color: var(--ay-metin-2);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-body { display: grid; gap: 8px; }
.card-footer { margin-top: auto; padding-top: 14px; }
.card .ico,
.card-ic {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 4px;
  border-radius: 14px;
  background: linear-gradient(140deg, #e8f2fe, #d7e8fd);
  color: var(--ay-mavi-koyu);
  border: 1px solid rgba(37, 99, 235, 0.14);
}
.card .ico svg { width: 22px; height: 22px; }
.card-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ay-mavi);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ay-mavi);
}
.card-link svg { transition: transform var(--ay-gecis); }
.card:hover .card-link svg { transform: translateX(4px); }
.card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin: -4px 0 8px;
  background: #eef3fa;
}
.card--blog p { -webkit-line-clamp: 3; }
.region-center { font-size: 0.86rem !important; color: var(--ay-metin-2); }
.region-center strong { color: var(--ay-metin); }

/* -------------------------------- Panel ----------------------------- */
.panel {
  padding: clamp(22px, 2.6vw, 32px);
  background: #fff;
  border: 1px solid var(--ay-cizgi);
  border-radius: var(--ay-kart-r);
  box-shadow: 0 18px 46px -34px rgba(9, 25, 48, 0.4);
}
.panel h2 {
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 10px 0 6px;
}
.panel h3 { font-size: 1.1rem; font-weight: 750; }
.panel p { color: var(--ay-metin-2); line-height: 1.72; }

.panel-uyari {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 14px;
  border: 1px solid;
  font-size: 0.9rem;
  line-height: 1.6;
}
.panel-uyari--ok { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.panel-uyari--hata { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

/* ------------------------------- Formlar ---------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.field {
  display: grid;
  grid-template-rows: auto auto;
  gap: 8px;
  min-width: 0;
  position: relative;
}
.field--full { grid-column: 1 / -1; }
.field label {
  display: block;
  margin: 0;
  font-size: 0.83rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--ay-metin);
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding: 0 14px;
  margin: 0;
  font: inherit;
  font-size: 1rem; /* iOS zoom engeli */
  line-height: 48px;
  color: var(--ay-metin);
  background: #fbfcfe;
  border: 1px solid var(--ay-cizgi);
  border-radius: 12px;
  transition: border-color var(--ay-gecis), box-shadow var(--ay-gecis), background var(--ay-gecis);
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2355657c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}
.field textarea {
  height: auto;
  min-height: 140px;
  max-height: none;
  padding: 12px 14px;
  line-height: 1.65;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background-color: #fff;
  border-color: var(--ay-mavi);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: #f87171; }
.field small { font-size: 0.76rem; color: var(--ay-metin-2); }

/* Panel içindeki iletişim kartları (footer stilleri beyaz yazıyordu) */
.panel .footer-contact { gap: 10px; }
.panel .footer-contact > a,
.panel .footer-contact > div,
.panel .footer-contact > p {
  border: 1px solid var(--ay-cizgi);
  background: #f6f9fe;
  color: var(--ay-metin);
}
.panel .footer-contact > a > svg,
.panel .footer-contact > div > svg,
.panel .footer-contact > p > svg {
  background: linear-gradient(140deg, #e8f2fe, #d7e8fd);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--ay-mavi-koyu);
}
.panel .footer-contact > a:hover {
  border-color: rgba(29, 127, 224, 0.35);
  background: #eef5fe;
  color: var(--ay-mavi-koyu);
  transform: translateY(-2px);
}
.panel .footer-contact > a:hover > svg {
  background: var(--ay-grad-marka);
  color: #fff;
  border-color: transparent;
}

/* Blog arama */
.blog-ara {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto clamp(26px, 3vw, 40px);
}
.blog-ara input[type="search"] {
  width: 100%;
  min-height: 50px;
  padding: 13px 18px;
  font: inherit;
  font-size: 1rem;
  background: #fff;
  border: 1px solid var(--ay-cizgi);
  border-radius: 14px;
  box-shadow: 0 10px 26px -22px rgba(9, 25, 48, 0.5);
  appearance: none;
}
.blog-ara input[type="search"]:focus {
  outline: none;
  border-color: var(--ay-mavi);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}
.blog-ara .btn { min-height: 50px; }
.ne-arandi {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ay-metin-2);
  margin: -12px 0 26px;
}
.ne-arandi a { color: var(--ay-mavi); font-weight: 600; }

/* ------------------------------ Sayfalama --------------------------- */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(28px, 3vw, 44px);
}
.pager .btn { min-height: 44px; }
.pager-info { font-size: 0.86rem; color: var(--ay-metin-2); font-weight: 600; }

/* --------------------------- İçerik (WYSIWYG) ----------------------- */
.icerik-alani {
  max-width: 74ch;
  font-size: clamp(0.97rem, 0.94rem + 0.2vw, 1.06rem);
  line-height: 1.8;
  color: var(--ay-metin-2);
  overflow-wrap: anywhere;
}
.icerik-alani[data-tam="1"] { max-width: none; }
.icerik-alani > *:first-child { margin-top: 0; }
.icerik-alani h2 {
  margin: 1.9em 0 0.5em;
  font-size: clamp(1.28rem, 1.1rem + 0.8vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--ay-metin);
  scroll-margin-top: 96px;
}
.icerik-alani h3 {
  margin: 1.5em 0 0.45em;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.32rem);
  font-weight: 750;
  color: var(--ay-metin);
  scroll-margin-top: 96px;
}
.icerik-alani h4 { margin: 1.3em 0 0.4em; font-size: 1.02rem; font-weight: 700; color: var(--ay-metin); }
.icerik-alani p { margin: 0 0 1.1em; }
.icerik-alani a { color: var(--ay-mavi-koyu); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.icerik-alani a:hover { color: var(--ay-mavi); }
.icerik-alani ul,
.icerik-alani ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.icerik-alani li { margin-bottom: 0.5em; }
.icerik-alani ul { list-style: none; padding-left: 0; }
.icerik-alani ul li {
  position: relative;
  padding-left: 26px;
}
.icerik-alani ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 0.62em;
  width: 8px; height: 8px;
  border-radius: 3px;
  background-image: linear-gradient(135deg, #38bdf8, #2563eb);
}
.icerik-alani img,
.icerik-alani iframe,
.icerik-alani video {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 1.4em 0;
}
.icerik-alani iframe { aspect-ratio: 16 / 9; width: 100%; height: auto; border: 0; }
.icerik-alani blockquote {
  margin: 1.6em 0;
  padding: 16px 20px;
  border-left: 4px solid var(--ay-mavi);
  border-radius: 0 14px 14px 0;
  background: #f4f8fe;
  color: var(--ay-metin);
  font-size: 1.02em;
}
.icerik-alani pre {
  margin: 1.4em 0;
  padding: 16px 18px;
  overflow-x: auto;
  background: #0b1728;
  color: #dbeafe;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.6;
  -webkit-overflow-scrolling: touch;
}
.icerik-alani code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #eef3fa;
  font-size: 0.9em;
}
.icerik-alani pre code { padding: 0; background: none; }
.icerik-alani table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  font-size: 0.9rem;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.icerik-alani th,
.icerik-alani td { padding: 11px 14px; border: 1px solid var(--ay-cizgi); text-align: left; }
.icerik-alani th { background: #f4f7fc; color: var(--ay-metin); font-weight: 700; }
.icerik-alani hr { margin: 2em 0; border: 0; border-top: 1px solid var(--ay-cizgi); }

/* Otomatik içindekiler (data-toc) */
.icerik-alani .toc,
.icerik-toc {
  margin: 0 0 1.8em;
  padding: 18px 20px;
  background: #f6f9fe;
  border: 1px solid var(--ay-cizgi);
  border-radius: 16px;
}
.icerik-toc strong { display: block; margin-bottom: 8px; font-size: 0.92rem; color: var(--ay-metin); }

/* -------------------------------- CTA ------------------------------- */
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3vw, 40px);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}
.cta-band h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.35rem, 1.1rem + 1.3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
  text-wrap: balance;
}
.cta-band p { margin: 0; font-size: 0.95rem; line-height: 1.7; color: rgba(233, 242, 252, 0.75); }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #d9f0fe;
  font-weight: 750;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--ay-gecis), transform var(--ay-gecis);
}
.cta-phone:hover { background: rgba(56, 189, 248, 0.24); transform: translateY(-2px); }

/* İletişim bilgi listesi (iletisim.php) */
.placeholder-val {     border-color: rgba(56, 189, 248, 0.42);
    background: rgba(56, 189, 248, 0.09);
    transform: translateY(-2px);
    color: #fff; }

/* ============================ MOBİL / RESPONSIVE ==================== */
@media (max-width: 1080px) {
  .icerik-alani h2 { scroll-margin-top: 80px; }
  .icerik-alani h3 { scroll-margin-top: 80px; }
}
@media (max-width: 900px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .btn-row .btn { flex: 1 1 200px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 30px 0 38px; }
  .page-hero p { font-size: 1rem; }
  .sec-head { text-align: left; margin-inline: 0; }
  .section { padding: 46px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .card p { -webkit-line-clamp: 4; line-clamp: 4; }
}
@media (max-width: 600px) {
  .breadcrumb { font-size: 0.75rem; }
  .breadcrumb [aria-current="page"] { max-width: 20ch; }
  .btn-row .btn { flex: 1 1 100%; }
  .btn--lg { min-height: 50px; padding: 14px 20px; font-size: 0.95rem; }
  .card { padding: 18px; border-radius: 18px; }
  .panel { padding: 20px 18px; border-radius: 18px; }
  .cta-band { padding: 22px 18px; border-radius: 20px; }
  .blog-ara { grid-template-columns: 1fr; }
  .blog-ara .btn { width: 100%; }
  .pager { gap: 8px; }
  .pager .btn { flex: 1 1 40%; }
  .pager-info { flex: 1 1 100%; text-align: center; order: -1; }
  .icerik-alani { font-size: 1rem; line-height: 1.78; }
  .icerik-alani blockquote { padding: 14px 16px; }
}
@media (max-width: 400px) {
  .page-hero h1 { font-size: 1.55rem; }
  .card .ico { width: 42px; height: 42px; }
  .cta-phone { width: 100%; justify-content: center; }
  .btn { padding: 12px 16px; font-size: 0.88rem; }
}

/* Yatay mod: hero yüksekliğini kıs */
@media (max-height: 520px) and (orientation: landscape) {
  .page-hero { padding: 22px 0 26px; }
  .section { padding: 34px 0; }
}

/* Yazdırma (Google/kullanıcı dostu) */
@media print {
  .topbar, .site-header, .drawer, .drawer-scrim, .wa-fab, .tabbar,
  .cookie-bar, .cookie-modal, .btn-row, .pager { display: none !important; }
  .page-hero { background: none; color: #000; padding: 0 0 18px; }
  .page-hero h1, .page-hero p { color: #000; }
  .icerik-alani { max-width: none; color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}

/* ==========================================================================
   TOC — İçindekiler (nav.toc / .toc-liste)
   ========================================================================== */
nav.toc,
.toc {
  margin: 0 0 1.8em;
  padding: 0;
  background: #fff;
  border: 1px solid var(--ay-cizgi);
  border-radius: var(--ay-kart-r, 20px);
  box-shadow: 0 10px 30px -22px rgba(9, 25, 48, 0.28);
  overflow: hidden;
}
.toc-bas,
nav.toc > p.toc-bas {
  margin: 0;
  padding: 16px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ay-mavi);
  background:
    linear-gradient(180deg, #f7fafe, #eef4fb);
  border-bottom: 1px solid var(--ay-cizgi);
}
.toc-liste,
nav.toc ol.toc-liste {
  list-style: none;
  margin: 0;
  padding: 10px 12px 14px;
  display: grid;
  gap: 2px;
  counter-reset: toc;
}
.toc-liste > li,
.toc-h2 {
  margin: 0;
  padding: 0;
}
.toc-liste a,
.toc-h2 a {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ay-metin);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--ay-gecis), border-color var(--ay-gecis), color var(--ay-gecis), transform var(--ay-gecis);
}
.toc-liste a::before,
.toc-h2 a::before {
  counter-increment: toc;
  content: counter(toc);
  display: grid;
  place-items: center;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ay-mavi-koyu);
  background: linear-gradient(140deg, #e8f2fe, #d7e8fd);
  border: 1px solid rgba(37, 99, 235, 0.14);
}
.toc-liste a:hover,
.toc-h2 a:hover {
  background: #f2f7fe;
  border-color: #dbe8fa;
  color: var(--ay-mavi-koyu);
  transform: translateX(2px);
}
.toc-liste a.toc-aktif,
.toc-h2 a.toc-aktif {
  background: #e7f0fd;
  border-color: rgba(29, 127, 224, 0.22);
  color: var(--ay-mavi-koyu);
}
.toc-liste a.toc-aktif::before,
.toc-h2 a.toc-aktif::before {
  background: var(--ay-grad-marka);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--ay-golge-mavi);
}
.toc-h3 a {
  padding-left: 40px;
  font-size: 0.86rem;
  font-weight: 550;
  color: var(--ay-metin-2);
}
@media (max-width: 600px) {
  .toc-bas,
  nav.toc > p.toc-bas { padding: 14px 16px; }
  .toc-liste,
  nav.toc ol.toc-liste { padding: 8px 10px 12px; }
  .toc-liste a,
  .toc-h2 a { padding: 12px 12px; font-size: 0.9rem; min-height: 44px; }
}

/* ==========================================================================
   Regions — Hizmet bölgeleri grid
   ========================================================================== */
.regions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin: 0;
  padding: 0;
}
.region-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(18px, 2vw, 24px);
  background: #fff;
  border: 1px solid var(--ay-cizgi);
  border-radius: var(--ay-kart-r, 20px);
  box-shadow: 0 1px 2px rgba(9, 25, 48, 0.04);
  transition: transform var(--ay-gecis), box-shadow var(--ay-gecis), border-color var(--ay-gecis);
  overflow: hidden;
}
.region-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background-image: linear-gradient(90deg, #38bdf8, #2563eb);
  opacity: 0;
  transition: opacity var(--ay-gecis);
}
.region-block:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 26px 50px -28px rgba(9, 25, 48, 0.32);
}
.region-block:hover::before { opacity: 1; }
.region-block h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ay-metin);
}
.region-block h3 .ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 12px;
  background: linear-gradient(140deg, #e8f2fe, #d7e8fd);
  color: var(--ay-mavi-koyu);
  border: 1px solid rgba(37, 99, 235, 0.14);
}
.region-block h3 .ico svg { width: 18px; height: 18px; }
.region-block p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.68;
  color: var(--ay-metin-2);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.region-block .btn {
  align-self: flex-start;
  margin-top: 4px;
}
.region-block .btn--ghost {
  background: #f4f7fc;
  border-color: var(--ay-cizgi);
  color: var(--ay-mavi-koyu);
}
.region-block .btn--ghost:hover {
  background: #e7f0fd;
  border-color: rgba(29, 127, 224, 0.28);
  color: var(--ay-mavi);
}
@media (max-width: 600px) {
  .regions { grid-template-columns: 1fr; gap: 12px; }
  .region-block { padding: 16px; border-radius: 16px; }
  .region-block h3 { font-size: 0.98rem; }
  .region-block h3 .ico { width: 36px; height: 36px; border-radius: 10px; }
}

/* ==========================================================================
   Mobil header — logo SOLDA, menü (hamburger) SAĞDA
   ========================================================================== */
@media (max-width: 1080px) {
  .header-cta { display: none !important; }
  .header-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 12px;
    min-height: 62px;
  }
  .logo {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
    margin-inline: 0 !important;
    justify-self: start;
    max-width: 100%;
    min-width: 0;
    padding-right: 0;
  }
  .nav-toggle-btn {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    display: flex !important;
    width: 44px;
    height: 44px;
    flex: none;
  }
  .logo-mark { flex: none; }
  .logo-text {
    min-width: 0;
    overflow: hidden;
  }
  .logo-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(220px, 55vw);
  }
  .logo--image .logo-mark {
    /* height: 40px; */
    max-width: min(180px, 55vw);
  }
  .logo--image .logo-mark img {
    /* height: 100%; */
    /* width: auto; */
    /* max-width: 100%; */
    /* object-fit: contain; */
  }
  .site-nav { display: none !important; }
}
@media (max-width: 600px) {
  .header-inner {
    min-height: 56px;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) 44px;
  }
  .logo-name { max-width: min(200px, 58vw); font-size: 0.92rem; }
  .logo--image .logo-mark {/* height: 36px; *//* max-width: min(160px, 55vw); */}
}
@media (max-width: 340px) {
  .logo-text { display: none; }
  .logo--image .logo-text { display: none; }
}

/* Drawer açıkken scrim */
.drawer-scrim:not([hidden]) { display: block; }
body.drawer-acik .drawer-scrim,
body.menu-open .drawer-scrim { display: block; }

/* ==========================================================================
   Yatay kayma engeli — sadece html/body (alt elemanlara overflow-x:hidden
   VERME: overflow-x:hidden → overflow-y:auto olur, dikey scrollbar çıkar)
   ========================================================================== */
html {
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  overscroll-behavior-x: none;
}
body {
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
  overscroll-behavior-x: none;
  margin:0px;
}
.wa-fab { contain: layout paint; }
.wa-fab::after { pointer-events: none; }
.drawer { contain: layout paint; }
.drawer-scrim { contain: layout paint; }
.container {
  width: 100%;
  max-width: 1240px;
  padding-inline: max(16px, env(safe-area-inset-left, 0px)) max(16px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
main,
#main {
  max-width: 100%;
  width: 100%;
}
/* topbar / header / hero / section — overflow KOYMA (telefon & breadcrumb scrollbar yapıyordu) */
.topbar,
.site-header,
.page-hero,
.section,
.site-footer {
  max-width: 100%;
}
/* tabbar kapalı */
.tabbar {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
@media (max-width: 1080px) {
  .header-cta { display: none !important; }
  .mega,
  .mega--sm {
    display: none !important;
    pointer-events: none !important;
  }
  .wa-fab::after {
    animation: none !important;
    display: none !important;
  }
  .icerik-alani,
  .regions,
  .grid,
  .split,
  .card,
  .panel {
    max-width: 100%;
  }
  .icerik-alani table,
  .icerik-alani pre {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
