/* ==========================================================================
   LobiWeb — 360° Dijital Pazarlama Ajansı
   Tasarım Sistemi / Design System
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Yüzeyler */
  --ink-950: #050508;
  --ink-900: #08080C;
  --ink-850: #0C0C12;
  --ink-800: #111119;
  --ink-750: #171721;
  --ink-700: #1E1E29;

  /* Marka vurgusu — LobiWeb turuncusu (#E06C0C) üzerinden türetilmiştir.
     Altın temaya dönmek isterseniz yalnızca bu yedi değeri değiştirin. */
  --brand-600: #B85408;
  --brand-500: #E06C0C;
  --brand-400: #F2831F;
  --brand-300: #F7A75C;
  --brand-200: #FBD0A6;
  --brand-glow: rgba(224, 108, 12, .30);
  --brand-soft: rgba(224, 108, 12, .11);

  /* Metin */
  --text: #F4F3EE;
  --text-dim: #B9B7C0;
  --muted: #8B8996;
  --faint: #5C5A67;

  /* Çizgiler */
  --line: rgba(255, 255, 255, .07);
  --line-strong: rgba(255, 255, 255, .13);
  --line-brand: rgba(224, 108, 12, .30);

  /* Tipografi */
  --f-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --f-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --f-serif: 'Playfair Display', Georgia, serif;

  /* Ölçek */
  --wrap: 1240px;
  --wrap-narrow: 880px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Hareket */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .22s;
  --t: .42s;
  --t-slow: .8s;

  /* Header */
  --header-h: 82px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -.006em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure, blockquote, figcaption { margin: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -.032em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 4.6vw, 3.7rem); font-weight: 600; line-height: 1.1; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.12rem; letter-spacing: -.02em; }
p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--brand-500); color: var(--ink-950); }

:focus-visible {
  outline: 2px solid var(--brand-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* İnce kaydırma çubuğu */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink-950); }
::-webkit-scrollbar-thumb { background: #2A2A36; border-radius: 20px; border: 3px solid var(--ink-950); }
::-webkit-scrollbar-thumb:hover { background: var(--brand-600); }

/* ---------- 3. Yardımcı sınıflar ---------- */
.wrap { width: min(100% - 44px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 44px, var(--wrap-narrow)); margin-inline: auto; }

.section { padding: clamp(72px, 9vw, 132px) 0; position: relative; }
.section--tight { padding: clamp(56px, 6vw, 88px) 0; }

.accent { color: var(--brand-300); }
.serif-it { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.center { text-align: center; }
.dim { color: var(--text-dim); }
.muted { color: var(--muted); }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.72;
  color: var(--text-dim);
  font-weight: 350;
}

/* Bölüm başlığı bloğu */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: .715rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--brand-400);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-500));
}
.eyebrow--center::after {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(270deg, transparent, var(--brand-500));
}

.sec-head { max-width: 720px; margin-bottom: clamp(44px, 5vw, 68px); }
.sec-head.center { margin-inline: auto; }
.sec-head p { margin-top: 20px; }

/* ---------- 4. Butonlar ---------- */
.btn {
  --btn-bg: var(--brand-500);
  --btn-fg: var(--ink-950);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.01em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t-fast) linear;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform var(--t-fast) var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px var(--brand-glow); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--line-brand);
  background: var(--brand-soft);
  box-shadow: none;
  color: var(--brand-300);
}

.btn--lg { padding: 18px 38px; font-size: 1rem; }
.btn--sm { padding: 11px 22px; font-size: .84rem; }

/* Metin bağlantısı */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--brand-400);
  transition: gap var(--t-fast) var(--ease), color var(--t-fast);
}
.tlink svg { width: 15px; height: 15px; }
.tlink:hover { gap: 13px; color: var(--brand-300); }

/* ---------- 5. Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background var(--t) var(--ease), height var(--t) var(--ease), border-color var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  height: 68px;
  background: rgba(8, 8, 12, .82);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: var(--line);
}
/* JavaScript kapalıyken header sabit zeminli kalsın — metnin üstüne
   saydam biçimde binmesin. */
html:not(.js) .header {
  background: rgba(8, 8, 12, .93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.header__inner {
  width: min(100% - 44px, 1340px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__img {
  height: 40px;
  width: auto;
  display: block;
  transition: height var(--t) var(--ease), opacity var(--t-fast);
}
.header.scrolled .logo__img { height: 33px; }
.logo:hover .logo__img { opacity: .82; }
.footer .logo__img { height: 50px; }

/* Ana menü */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 9px 15px;
  font-size: .905rem;
  font-weight: 450;
  color: var(--text-dim);
  border-radius: 8px;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px; bottom: 2px;
  height: 1px;
  background: var(--brand-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--brand-300); }

.header__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* Dil değiştirici */
.lang {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang button {
  padding: 5px 12px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  border-radius: 100px;
  transition: all var(--t-fast) var(--ease);
}
.lang button.active { background: var(--brand-500); color: var(--ink-950); }
.lang button:not(.active):hover { color: var(--text); }

/* Mobil menü butonu */
.burger { display: none; width: 42px; height: 42px; position: relative; z-index: 1000; }
.burger span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 24px; width: 14px; }
body.nav-open .burger span:nth-child(1) { top: 20px; transform: rotate(45deg); }
body.nav-open .burger span:nth-child(2) { top: 20px; width: 20px; transform: rotate(-45deg); }

/* Mobil panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 899;
  background: var(--ink-950);
  padding: calc(var(--header-h) + 30px) 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
  overflow-y: auto;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
.mobile-nav a:not(.btn) {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -.035em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
  transition: color var(--t-fast), padding-left var(--t) var(--ease);
}
.mobile-nav a:not(.btn):hover,
.mobile-nav a:not(.btn).active { color: var(--brand-300); padding-left: 10px; }
.mobile-nav .btn { margin-top: 30px; align-self: flex-start; padding: 16px 34px; font-size: 1rem; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--ink-950);
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .95;
  filter: saturate(1.05) contrast(1.04);
}
/* Video yokken çalışan yedek animasyon */
.hero__fallback {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(48% 46% at 22% 30%, rgba(224, 108, 12,.20), transparent 62%),
    radial-gradient(42% 40% at 78% 68%, rgba(70, 105, 160,.16), transparent 65%),
    radial-gradient(60% 55% at 50% 100%, rgba(224, 108, 12,.10), transparent 70%);
  animation: drift 26s var(--ease) infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(3%, -2.5%, 0) scale(1.08); }
  100% { transform: translate3d(-2.5%, 2%, 0) scale(1.03); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,8,12,.78) 0%, rgba(8,8,12,.20) 34%, rgba(8,8,12,.62) 82%, var(--ink-900) 100%),
    linear-gradient(95deg, rgba(8,8,12,.95) 0%, rgba(8,8,12,.86) 30%, rgba(8,8,12,.42) 66%, rgba(8,8,12,.10) 100%);
}

/* Ince grid dokusu */
.grid-tex {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(75% 65% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(75% 65% at 50% 40%, #000 20%, transparent 78%);
  opacity: .3;
  pointer-events: none;
}

.hero__content { max-width: 900px; position: relative; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 18px 8px 10px;
  border: 1px solid var(--line-brand);
  background: rgba(224, 108, 12,.07);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: .795rem;
  font-weight: 500;
  color: var(--brand-200);
  margin-bottom: 30px;
  letter-spacing: -.005em;
}
.hero__badge b {
  background: var(--brand-500);
  color: var(--ink-950);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero h1 { margin-bottom: 26px; }
.hero h1 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-400);
  letter-spacing: -.01em;
}

.hero__lead { max-width: 620px; font-size: clamp(1.03rem, 1.5vw, 1.19rem); color: var(--text-dim); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.hero__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 42px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.hero__strip div { display: flex; flex-direction: column; gap: 3px; }
.hero__strip b {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1;
}
.hero__strip b span { font: inherit; color: inherit; letter-spacing: inherit; }
.hero__strip div > span { font-size: .795rem; color: var(--muted); letter-spacing: -.005em; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: .67rem;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--faint);
  z-index: 2;
}
.scroll-hint i {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--brand-500), transparent);
  animation: hint 2.2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes hint {
  0%, 100% { transform: scaleY(.3); opacity: .4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ---------- 7. Marka şeridi ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  background: var(--ink-850);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track { display: flex; gap: 62px; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee__item {
  font-family: var(--f-display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--faint);
  white-space: nowrap;
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 9px;
}
.marquee__item:hover { color: var(--brand-400); }

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

.card {
  position: relative;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--ink-800), var(--ink-850) 65%);
  overflow: hidden;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), background var(--t);
  isolation: isolate;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(340px 220px at var(--mx, 50%) var(--my, 0%), var(--brand-soft), transparent 72%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.card:hover { border-color: var(--line-brand); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(150deg, rgba(224, 108, 12,.17), rgba(224, 108, 12,.04));
  border: 1px solid var(--line-brand);
  margin-bottom: 22px;
  color: var(--brand-400);
  transition: transform var(--t) var(--ease);
}
.card__icon svg { width: 23px; height: 23px; }
.card:hover .card__icon { transform: scale(1.07) rotate(-3deg); }

.card h3 { margin-bottom: 12px; font-size: 1.22rem; }
.card p { color: var(--muted); font-size: .935rem; line-height: 1.68; }

.card__list { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.card__list li {
  font-size: .865rem;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 2px; top: .62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-500);
}

.card__num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--f-display);
  font-size: 2.9rem;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1;
  color: rgba(255,255,255,.045);
  pointer-events: none;
}

/* Öne çıkan kart */
.card--feature {
  background: linear-gradient(158deg, rgba(224, 108, 12,.11), var(--ink-850) 58%);
  border-color: var(--line-brand);
}

/* ---------- 9. İstatistik ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--ink-850); padding: 40px 30px; text-align: center; transition: background var(--t); }
.stat:hover { background: var(--ink-800); }
.stat b span { font: inherit; color: inherit; letter-spacing: inherit; }
.stat b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 4.4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1;
  background: linear-gradient(160deg, var(--brand-200), var(--brand-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.stat span { font-size: .85rem; color: var(--muted); letter-spacing: -.005em; }

/* ---------- 10. Süreç adımları ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 26px; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-brand), var(--line-brand), transparent);
}
.card .steps::before { display: none; }
.step { position: relative; padding-top: 0; }
.step__dot {
  width: 53px; height: 53px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink-800);
  border: 1px solid var(--line-brand);
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--brand-400);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all var(--t) var(--ease);
}
.step:hover .step__dot { background: var(--brand-500); color: var(--ink-950); box-shadow: 0 0 0 6px var(--brand-soft); }
.step h4 { margin-bottom: 10px; font-size: 1.08rem; }
.step p { font-size: .89rem; color: var(--muted); line-height: 1.65; }

/* ---------- 11. Referans / Yorum ---------- */
.quote {
  padding: 40px 34px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-850);
  position: relative;
  transition: border-color var(--t), transform var(--t) var(--ease);
}
.quote:hover { border-color: var(--line-brand); transform: translateY(-3px); }
.quote__stars { display: flex; gap: 3px; color: var(--brand-400); margin-bottom: 20px; }
.quote__stars svg { width: 15px; height: 15px; }
.quote p {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--text-dim);
  font-weight: 350;
  margin-bottom: 26px;
}
.quote__who { display: flex; align-items: center; gap: 13px; padding-top: 20px; border-top: 1px solid var(--line); }
.quote__av {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--brand-500), var(--brand-600));
  color: var(--ink-950);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.quote__who b { display: block; font-size: .93rem; font-weight: 600; letter-spacing: -.015em; }
.quote__who span { font-size: .8rem; color: var(--muted); }

/* ---------- 11b. Destek kartı (SSS yanı) ---------- */
.support {
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-850);
  transition: border-color var(--t) var(--ease);
}
.support:hover { border-color: var(--line-brand); }
/* Markalı üst panel — stok fotoğraf yerine LW markası */
.support__crest {
  aspect-ratio: 16 / 8.5;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 150% at 18% 0%, rgba(224,108,12,.26), transparent 58%),
    linear-gradient(155deg, var(--ink-750), var(--ink-850) 70%);
}
.support__crest::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 76%);
}
.support__crest img {
  position: relative;
  width: 42%;
  max-width: 170px;
  filter: drop-shadow(0 10px 26px rgba(224, 108, 12, .35));
  transition: transform var(--t-slow) var(--ease);
}
.support:hover .support__crest img { transform: scale(1.05); }
.support__body { padding: 24px 26px 28px; }
.support__body h4 { font-size: 1.14rem; margin-bottom: 8px; }
.support__body p { font-size: .9rem; color: var(--muted); line-height: 1.62; }
.support .footer__people { margin-top: 18px; }
.support .fperson { background: var(--ink-800); }

/* ---------- 12. Akordeon (SSS) ---------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--f-display);
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: -.022em;
  color: var(--text);
  transition: color var(--t-fast);
}
.acc__q:hover { color: var(--brand-300); }
.acc__ic {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: all var(--t) var(--ease);
}
.acc__ic::before, .acc__ic::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.acc__ic::before { width: 11px; height: 1.5px; }
.acc__ic::after  { width: 1.5px; height: 11px; }
.acc__item.open .acc__ic { background: var(--brand-500); border-color: var(--brand-500); color: var(--ink-950); }
.acc__item.open .acc__ic::after { transform: rotate(90deg); opacity: 0; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height var(--t) var(--ease); }
.acc__a > div { padding: 0 60px 28px 4px; color: var(--muted); font-size: .945rem; line-height: 1.75; }

/* ---------- 13. CTA bandı ---------- */
.cta-band {
  position: relative;
  border: 1px solid var(--line-brand);
  border-radius: var(--r-xl);
  padding: clamp(46px, 6vw, 78px) clamp(30px, 5vw, 68px);
  background: linear-gradient(140deg, rgba(224, 108, 12,.14), var(--ink-850) 55%);
  overflow: hidden;
  text-align: center;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  right: -140px; top: -220px;
  background: radial-gradient(circle, var(--brand-glow), transparent 68%);
  pointer-events: none;
}
/* CTA bandında arka plan videosu */
.cta-band__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.cta-band__video video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: saturate(.75) contrast(1.05);
}
.cta-band__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(72% 100% at 50% 50%, rgba(12,12,18,.86) 30%, rgba(12,12,18,.58) 100%),
    linear-gradient(140deg, rgba(224, 108, 12,.16), transparent 60%);
}
.cta-band > *:not(.cta-band__video) { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 18px; position: relative; }
.cta-band p { max-width: 560px; margin-inline: auto; position: relative; }
.cta-band .hero__cta { justify-content: center; position: relative; }

/* ---------- 14. Form ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--text-dim); letter-spacing: -.005em; }
.field label i { color: var(--brand-400); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 17px;
  background: var(--ink-850);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: var(--f-body);
  font-size: .93rem;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.field textarea { resize: vertical; min-height: 132px; line-height: 1.65; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238B8996' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.field select option { background: var(--ink-800); color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  background: var(--ink-800);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.check { display: flex; align-items: flex-start; gap: 11px; font-size: .82rem; color: var(--muted); line-height: 1.6; cursor: pointer; }
.check input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--brand-500); flex-shrink: 0; cursor: pointer; }
.check a { color: var(--brand-400); text-decoration: underline; text-underline-offset: 2px; }

.form-note {
  padding: 15px 18px;
  border-radius: var(--r-md);
  font-size: .87rem;
  line-height: 1.55;
  border: 1px solid var(--line-brand);
  background: var(--brand-soft);
  color: var(--brand-200);
  display: none;
}
.form-note.show { display: block; animation: fadeUp .5s var(--ease); }
/* Hata durumu */
.form-note--error {
  border-color: rgba(226, 84, 68, .45);
  background: rgba(226, 84, 68, .10);
  color: #F3B3AB;
}

/* Bal küpü — ekranda görünmez, ekran okuyucudan da gizli.
   display:none kullanılmaz; bazı botlar onu atlar. */
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ---------- 15. İletişim kutuları ---------- */
.info-item {
  display: flex;
  gap: 17px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.info-item:last-child { border-bottom: 0; }
.info-item__ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand-soft);
  border: 1px solid var(--line-brand);
  color: var(--brand-400);
}
.info-item__ic svg { width: 19px; height: 19px; }
.info-item h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 600; margin-bottom: 6px; font-family: var(--f-body); }
.info-item p, .info-item a { font-size: 1.02rem; color: var(--text); letter-spacing: -.015em; }
.info-item a:hover { color: var(--brand-400); }

/* ---------- 16. Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--ink-950); padding: 76px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.25fr; gap: 46px; padding-bottom: 56px; }
.footer__brand p { color: var(--muted); font-size: .91rem; max-width: 320px; margin-top: 20px; line-height: 1.7; }
.footer h5 {
  font-family: var(--f-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-400);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: .9rem; color: var(--muted); transition: color var(--t-fast), padding-left var(--t) var(--ease); }
.footer__links a:hover { color: var(--brand-300); padding-left: 5px; }

/* Footer — isimli iletişim kartları */
.footer__people { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.fperson {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--ink-900);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease), transform var(--t) var(--ease);
}
.fperson span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
}
.fperson b {
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--text);
  transition: color var(--t-fast);
}
.fperson:hover { border-color: var(--line-brand); background: var(--brand-soft); transform: translateX(3px); }
.fperson:hover b { color: var(--brand-300); }

.footer__addr { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-top: 18px; }

.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 39px; height: 39px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  display: grid; place-items: center;
  color: var(--muted);
  transition: all var(--t) var(--ease);
}
.socials a svg { width: 17px; height: 17px; }
.socials a:hover { border-color: var(--brand-500); color: var(--brand-400); background: var(--brand-soft); transform: translateY(-2px); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--faint);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__bottom a:hover { color: var(--brand-400); }

/* ---------- 17. Sayfa başlığı (iç sayfalar) ---------- */
.pagehead {
  position: relative;
  padding: calc(var(--header-h) + 82px) 0 72px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.pagehead::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(58% 100% at 18% 0%, rgba(224, 108, 12,.15), transparent 62%),
    radial-gradient(45% 80% at 88% 30%, rgba(70, 105, 160,.10), transparent 65%);
}
.pagehead h1 { font-size: clamp(2.05rem, 4.2vw, 3.3rem); max-width: 21ch; }
.pagehead p { margin-top: 22px; max-width: 620px; }
.crumbs { display: flex; align-items: center; gap: 9px; font-size: .81rem; color: var(--faint); margin-bottom: 22px; }
.crumbs a:hover { color: var(--brand-400); }
.crumbs span { color: var(--brand-400); }

/* ---------- 17b. Görselli sayfa başlığı ---------- */
.pagehead__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.pagehead__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .32;
  filter: saturate(.7);
}
.pagehead__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--ink-900) 8%, rgba(8,8,12,.72) 48%, rgba(8,8,12,.55) 100%);
}

/* ---------- 17c. Bölüm kısayolları ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.chips a {
  padding: 9px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: .835rem;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(18,18,26,.6);
  backdrop-filter: blur(8px);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.chips a:hover { border-color: var(--brand-500); color: var(--brand-300); background: var(--brand-soft); }

/* ---------- 17d. Hizmet bloğu ---------- */
.svc { padding: clamp(60px, 7vw, 100px) 0; border-bottom: 1px solid var(--line); scroll-margin-top: 90px; }
.svc:nth-child(even) { background: var(--ink-850); }
.svc:nth-child(even) .split { direction: rtl; }
.svc:nth-child(even) .split > * { direction: ltr; }
.svc__tag {
  display: inline-block;
  font-family: var(--f-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--brand-500);
  margin-bottom: 14px;
}
.svc h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin-bottom: 18px; }
.svc .visual { aspect-ratio: 4/3; }
.svc__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 26px; margin-top: 28px; }
.svc__grid li {
  font-size: .89rem;
  color: var(--text-dim);
  padding-left: 24px;
  position: relative;
  line-height: 1.55;
}
.svc__grid li::before {
  content: '';
  position: absolute;
  left: 0; top: .48em;
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 1px solid var(--line-brand);
  background:
    linear-gradient(var(--brand-500), var(--brand-500)) center/5px 1.5px no-repeat,
    var(--brand-soft);
}

/* ---------- 17e. Bilgi kutusu ---------- */
.note {
  margin-top: 30px;
  padding: 20px 24px;
  border-left: 2px solid var(--brand-500);
  background: linear-gradient(90deg, var(--brand-soft), transparent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.note p { font-size: .89rem; color: var(--text-dim); line-height: 1.68; }
.note b { color: var(--brand-300); font-weight: 600; }

/* ---------- 17f. Tablo ---------- */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); }
table.tbl { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .9rem; }
table.tbl th, table.tbl td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
table.tbl thead th {
  background: var(--ink-800);
  font-family: var(--f-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-400);
}
table.tbl tbody tr:last-child td { border-bottom: 0; }
table.tbl tbody tr:hover { background: rgba(255,255,255,.02); }
table.tbl td:first-child { color: var(--text); font-weight: 500; }
table.tbl td { color: var(--muted); }

/* ---------- 17g. Hukuki metin sayfaları ---------- */
.legal { max-width: 850px; }

.legal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 16px 20px;
  margin-bottom: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--ink-850);
  font-size: .84rem;
  color: var(--muted);
}
.legal__meta b { color: var(--text-dim); font-weight: 600; }

.legal h2 {
  font-size: clamp(1.24rem, 2.1vw, 1.58rem);
  margin: 52px 0 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.legal > h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--brand-300);
  margin: 30px 0 10px;
  letter-spacing: -.02em;
}
.legal p { color: var(--text-dim); font-size: .955rem; line-height: 1.82; margin-bottom: 1.1em; }
.legal strong { color: var(--text); font-weight: 600; }
.legal a:not(.btn):not(.tlink) {
  color: var(--brand-300);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal a:not(.btn):not(.tlink):hover { color: var(--brand-200); }

.legal ul, .legal ol { margin: 18px 0 24px; display: flex; flex-direction: column; gap: 11px; }
.legal li { position: relative; padding-left: 27px; color: var(--text-dim); font-size: .93rem; line-height: 1.72; }
.legal ul > li::before {
  content: '';
  position: absolute;
  left: 7px; top: .74em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-500);
}
.legal ol { counter-reset: legalnum; }
.legal ol > li { counter-increment: legalnum; }
.legal ol > li::before {
  content: counter(legalnum) '.';
  position: absolute;
  left: 0; top: 0;
  color: var(--brand-400);
  font-weight: 700;
  font-size: .84rem;
  line-height: 1.95;
}
.legal li strong { color: var(--text); }

/* Dile göre gösterilen/gizlenen bloklar */
html[lang="en"] .tr-only { display: none; }
html:not([lang="en"]) .en-only { display: none; }

/* ---------- 17h. Blog yazısı sayfası ---------- */
.article { max-width: 780px; margin-inline: auto; }

/* Yazar / tarih şeridi */
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 26px;
  font-size: .85rem;
  color: var(--muted);
}
.byline__av {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--brand-400), var(--brand-600));
  color: var(--ink-950);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
}
.byline b { color: var(--text-dim); font-weight: 600; }
.byline i { font-style: normal; color: var(--faint); }

/* Kapak görseli */
.article__hero {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  margin-bottom: clamp(38px, 5vw, 62px);
  background: var(--ink-850);
}
.article__hero img { width: 100%; height: 100%; object-fit: cover; }

/* İçindekiler */
.toc {
  border: 1px solid var(--line);
  border-left: 2px solid var(--brand-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--ink-850);
  padding: 22px 26px;
  margin-bottom: 44px;
}
.toc h4 {
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-400);
  margin-bottom: 14px;
}
.toc ol { display: flex; flex-direction: column; gap: 9px; counter-reset: toc; }
.toc li { counter-increment: toc; font-size: .9rem; }
.toc a { color: var(--text-dim); transition: color var(--t-fast), padding-left var(--t) var(--ease); display: inline-block; }
.toc a::before { content: counter(toc) '. '; color: var(--faint); }
.toc a:hover { color: var(--brand-300); padding-left: 4px; }

/* Gövde tipografisi — hukuki metinlerle aynı temel, biraz daha ferah */
.article p { color: var(--text-dim); font-size: 1.02rem; line-height: 1.85; margin-bottom: 1.25em; }
.article > p:first-of-type { font-size: 1.14rem; color: var(--text); line-height: 1.75; }
.article h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 56px 0 18px;
  scroll-margin-top: 100px;
}
.article h3 { font-size: 1.12rem; font-weight: 600; margin: 34px 0 12px; color: var(--brand-300); letter-spacing: -.02em; }
.article strong { color: var(--text); font-weight: 600; }
.article a:not(.btn):not(.tlink) {
  color: var(--brand-300);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article ul, .article ol { margin: 20px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.article li { position: relative; padding-left: 28px; color: var(--text-dim); font-size: .99rem; line-height: 1.75; }
.article ul > li::before {
  content: '';
  position: absolute;
  left: 8px; top: .78em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-500);
}
.article ol { counter-reset: artnum; }
.article ol > li { counter-increment: artnum; }
.article ol > li::before {
  content: counter(artnum);
  position: absolute;
  left: 0; top: .18em;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--brand-soft);
  border: 1px solid var(--line-brand);
  color: var(--brand-300);
  font-size: .7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.article .tbl-wrap { margin: 28px 0 34px; }
.article table.tbl { font-size: .88rem; }

/* Vurgu alıntısı */
.pull {
  margin: 40px 0;
  padding: 4px 0 4px 26px;
  border-left: 2px solid var(--brand-500);
}
.pull p {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -.028em;
  color: var(--text);
  margin: 0;
}

/* Sonuç kutusu */
.takeaway {
  margin: 52px 0 0;
  padding: 30px 32px;
  border: 1px solid var(--line-brand);
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--brand-soft), var(--ink-850) 62%);
}
.takeaway h3 { margin: 0 0 16px; color: var(--brand-300); font-size: 1.06rem; }
.takeaway ul { margin: 0; }
.takeaway li { font-size: .95rem; }

/* Yazı sonu yazar kutusu */
.authorbox {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 46px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.authorbox .byline__av { width: 52px; height: 52px; font-size: 1rem; }
.authorbox h4 { margin-bottom: 6px; font-size: 1.02rem; }
.authorbox p { font-size: .9rem; color: var(--muted); line-height: 1.68; margin: 0; }

@media (max-width: 720px) {
  .article__hero { aspect-ratio: 16/10; border-radius: var(--r-lg); }
  .toc { padding: 18px 20px; }
  .takeaway { padding: 24px 22px; }
  .pull { padding-left: 18px; margin: 32px 0; }
}

/* ---------- 18. Blog ---------- */
.post {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-850);
  transition: border-color var(--t), transform var(--t) var(--ease);
  height: 100%;
}
.post:hover { border-color: var(--line-brand); transform: translateY(-4px); }
.post__img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, var(--ink-750), var(--ink-800));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.post:hover .post__img img { transform: scale(1.05); }
.post__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8,8,12,.65));
}
.post__ph { color: var(--faint); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; }
.tag {
  position: absolute;
  top: 15px; left: 15px;
  z-index: 2;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(8,8,12,.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-brand);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-300);
}
.post__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post__meta { display: flex; gap: 14px; font-size: .77rem; color: var(--faint); margin-bottom: 13px; }
.post h3 { font-size: 1.18rem; margin-bottom: 11px; line-height: 1.32; }
.post p { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.post .tlink { margin-top: auto; }

/* ---------- 19. Pazaryeri kartı ---------- */
.mp {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-850);
  transition: all var(--t) var(--ease);
}
.mp:hover { border-color: var(--line-brand); transform: translateY(-4px); background: var(--ink-800); }
.mp__logo {
  height: 46px;
  display: flex;
  align-items: center;
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.035em;
}
.mp p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.mp__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.mp__tags span {
  font-size: .73rem;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--text-dim);
  background: var(--ink-800);
}

/* ---------- 20. Split bölüm ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(38px, 5vw, 76px); align-items: center; }
.split--wide { grid-template-columns: 1.08fr .92fr; }

.visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(150deg, var(--ink-800), var(--ink-850));
  aspect-ratio: 4 / 3.2;
  display: grid;
  place-items: center;
}
.visual img { width: 100%; height: 100%; object-fit: cover; }
.visual__ph {
  text-align: center;
  color: var(--faint);
  font-size: .76rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  padding: 20px;
}
.visual__ph svg { width: 40px; height: 40px; margin: 0 auto 14px; opacity: .5; }

/* Değer listesi */
.vlist { display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.vlist li { display: flex; gap: 15px; }
.vlist__ic {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--brand-soft);
  border: 1px solid var(--line-brand);
  color: var(--brand-400);
}
.vlist__ic svg { width: 16px; height: 16px; }
.vlist h4 { margin-bottom: 5px; font-size: 1.02rem; }
.vlist p { font-size: .89rem; color: var(--muted); line-height: 1.62; }

/* ---------- 20b. Kolaj görsel (üst üste binen ikinci kare) ---------- */
.visual-stack { position: relative; padding-bottom: 40px; padding-right: 26px; }
.visual-stack > .visual { aspect-ratio: 4 / 3.1; }
.visual-stack__sub {
  position: absolute;
  right: 0; bottom: 0;
  width: 47%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-brand);
  box-shadow: 0 26px 56px -18px rgba(0, 0, 0, .85);
  background: var(--ink-850);
}
.visual-stack__sub img { width: 100%; height: 100%; object-fit: cover; }

/* Görsel üstünde duran rakam rozeti */
.visual-badge {
  position: absolute;
  left: -22px; top: 34px;
  z-index: 3;
  padding: 16px 22px;
  border-radius: var(--r-md);
  background: linear-gradient(150deg, var(--brand-400), var(--brand-600));
  color: var(--ink-950);
  box-shadow: 0 18px 40px -12px rgba(224, 108, 12, .5);
  text-align: center;
  line-height: 1.15;
}
.visual-badge b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -.04em;
}
.visual-badge span { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .78; }

/* ---------- 20c. Görsel mozaik ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 205px;
  gap: 14px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-800);
  isolation: isolate;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.02);
  transition: transform 1s var(--ease), filter var(--t);
}
.tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,12,.15) 25%, rgba(6,6,10,.88) 100%);
  transition: background var(--t);
}
.tile:hover { border-color: var(--line-brand); transform: translateY(-3px); }
.tile:hover img { transform: scale(1.07); filter: saturate(1) contrast(1.04); }
.tile:hover::after { background: linear-gradient(180deg, rgba(224, 108, 12,.10) 15%, rgba(6,6,10,.9) 100%); }

.tile__label { position: absolute; left: 22px; right: 18px; bottom: 18px; z-index: 2; }
.tile__label span {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-400);
  margin-bottom: 5px;
}
.tile__label b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--text);
  line-height: 1.25;
}
.tile--a { grid-column: span 2; grid-row: span 2; }
.tile--a .tile__label b { font-size: 1.5rem; }
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }

/* ---------- 20d. Arka planı görselli bölüm ---------- */
.sec-bg { position: relative; isolation: isolate; overflow: hidden; }
.sec-bg__img { position: absolute; inset: 0; z-index: -2; }
.sec-bg__img img { width: 100%; height: 100%; object-fit: cover; opacity: .3; filter: saturate(.6); }
.sec-bg__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink-900) 0%, rgba(8,8,12,.7) 42%, rgba(8,8,12,.82) 70%, var(--ink-900) 100%);
}
/* Açık yüzeyli bölümlerde kenar geçişini eşitler */
.sec-bg--850 .sec-bg__img::after {
  background: linear-gradient(180deg, var(--ink-850) 0%, rgba(12,12,18,.74) 42%, rgba(12,12,18,.84) 70%, var(--ink-850) 100%);
}

/* ---------- 21. Animasyonlar ---------- */
/* Animasyon yalnızca JavaScript çalışıyorsa gizlemeyle başlar.
   <html class="js"> sınıfı head içindeki küçük betikle eklenir.
   Betik çalışmazsa içerik olduğu gibi görünür — hiçbir koşulda
   ziyaretçi boş sayfayla karşılaşmaz. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js [data-reveal].in { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 22. Duyarlı / Responsive ---------- */
@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .steps::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1100px) {
  .mosaic { grid-auto-rows: 170px; }
}

@media (max-width: 980px) {
  :root { --header-h: 70px; }
  .nav { display: none; }
  .burger { display: block; }
  .header__actions .btn { display: none; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--wide { grid-template-columns: 1fr; }
  .split .visual, .split .visual-stack { order: -1; }
  .split .visual { aspect-ratio: 16/10; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .visual-stack { padding-right: 0; padding-bottom: 0; }
  .visual-stack > .visual { aspect-ratio: 16/10; }
  .visual-stack__sub { display: none; }
  .visual-badge { left: 14px; top: 14px; padding: 12px 17px; }
  .visual-badge b { font-size: 1.3rem; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap, .wrap-narrow { width: calc(100% - 34px); }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 148px; gap: 11px; }
  .tile--a { grid-column: span 2; grid-row: span 2; }
  .tile--wide { grid-column: span 2; }
  .tile--tall { grid-row: span 1; }
  .tile__label { left: 15px; right: 12px; bottom: 13px; }
  .tile__label b { font-size: .92rem; }
  .tile--a .tile__label b { font-size: 1.18rem; }
  .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 54px); padding-bottom: 70px; }
  .hero__strip { gap: 22px 32px; }
  .hero__strip b { font-size: 1.5rem; }
  .hero__cta .btn { width: 100%; }
  .scroll-hint { display: none; }
  .acc__a > div { padding-right: 10px; }
  .card { padding: 28px 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .mobile-nav a { font-size: 1.5rem; }
  /* Dokunma hedeflerini büyüt — 24px parmakla isabet ettirmek için küçük */
  .footer__links a { padding: 8px 0; }
  .info-item a { display: inline-block; padding: 5px 0; }
  .footer__links { gap: 2px; }
  .footer__bottom nav { gap: 4px 22px; }
  .footer__bottom nav a { padding: 7px 0; }
  .tlink { padding: 7px 0; }
  .crumbs a { padding: 5px 0; }
}

@media (max-width: 420px) {
  .hero__badge { font-size: .73rem; }
  .stats { grid-template-columns: 1fr; }
}

/* ---------- 23. Yazdırma ---------- */
@media print {
  .header, .mobile-nav, .scroll-hint, .marquee, .cta-band { display: none; }
  body { background: #fff; color: #000; }
}
