/* ==========================================================================
   LONK DIGITAL — Site stilleri
   Tasarım dili: bol beyaz alan, kurumsal mavi, yumuşak gradient, cam yüzeyler,
   ince gölge, akıcı mikro animasyon. Apple benzeri sakin premium yaklaşım.
   ========================================================================== */

/* ---------- 0. Yazı tipi ----------
   Plus Jakarta Sans, siteye gömülü (self-hosted) değişken yazı tipi.
   Dış istek yok: hız ve gizlilik korunur, CSP'ye dokunmaya gerek kalmaz. */
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/pjs-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/pjs-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* ---------- 1. Tasarım değişkenleri ---------- */
:root {
  /* Renk */
  --ink: #0a1020;
  --ink-2: #131a2a;
  --steel: #2a3346;
  --ash: #5a6579;
  --smoke: #8c94a6;
  --line: #e4e8f0;
  --line-soft: #eef1f7;
  --paper: #f6f8fc;
  --white: #ffffff;

  /* TEK MAVİ: --brand-600 (#1f5bf0). Diğer basamaklar nötr yüzey/çizgi tonlarıdır;
     açık mavi tonlar kasıtlı olarak kullanılmaz. */
  --brand-50: #f4f6fa;
  --brand-100: #e6eaf2;
  --brand-200: #d3d9e4;
  --brand-300: #aab3c3;
  --brand-600: #1f5bf0;
  --brand-700: #1747c9;
  --brand-800: #123a9e;

  --wa: #1faf54;
  --wa-dark: #199247;
  --danger: #c0362c;
  --danger-bg: #fdeeec;
  --ok: #17794a;
  --ok-bg: #e8f6ee;

  /* Tipografi */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;

  /* Ölçü */
  --shell: 1240px;
  --pad-x: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  /* Gölge */
  --sh-1: 0 1px 2px rgba(10, 16, 32, 0.04), 0 8px 24px -16px rgba(10, 16, 32, 0.18);
  --sh-2: 0 20px 60px -34px rgba(10, 16, 32, 0.34);
  --sh-3: 0 40px 100px -50px rgba(10, 16, 32, 0.45);
  /* Renkli parıltı yok: düğme gölgesi de nötr */
  --sh-blue: 0 14px 30px -16px rgba(10, 16, 32, 0.35);

  /* Hareket */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms var(--ease);
  --t: 320ms var(--ease);
  --t-slow: 620ms var(--ease);

  --header-h: 74px;
}

/* ---------- 2. Sıfırlama ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { min-width: 0; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 640; letter-spacing: -0.028em; line-height: 1.12; }
table { border-collapse: collapse; width: 100%; }
[hidden] { display: none !important; }

::selection { background: var(--brand-600); color: #fff; }

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

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

.skip-link {
  position: absolute; left: 50%; top: 8px; transform: translate(-50%, -160%);
  z-index: 200; background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 999px; font-size: 14px; font-weight: 600; transition: transform var(--t);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- 3. Yerleşim ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--flush-top { padding-top: 0; }

.stack > * + * { margin-top: 1rem; }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- 4. Tipografi ---------- */
.h1 {
  font-size: clamp(2.15rem, 1.1rem + 4.2vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 660;
}
.h2 {
  font-size: clamp(1.72rem, 1.05rem + 2.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 650;
}
.h3 {
  font-size: clamp(1.16rem, 1rem + 0.7vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 640;
}
.h4 { font-size: 1.02rem; font-weight: 640; letter-spacing: -0.015em; }

.lead {
  font-size: clamp(1rem, 0.95rem + 0.36vw, 1.18rem);
  line-height: 1.66;
  color: var(--ash);
}
.body-text { color: var(--ash); line-height: 1.72; }
.small { font-size: 0.86rem; }
.muted { color: var(--ash); }
.dim { color: var(--smoke); }
.balance { text-wrap: balance; }
.pretty { text-wrap: pretty; }
.mw-52 { max-width: 52ch; }
.mw-60 { max-width: 60ch; }
.center { text-align: center; }
.center .lead, .center .body-text { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-600));
}
.center .eyebrow::after {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--brand-600), transparent);
}
.eyebrow--light { color: rgba(255, 255, 255, 0.62); }
.eyebrow--light::before, .eyebrow--light::after { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55)); }

.section-head { max-width: 62ch; }
.section-head .h2 { margin-top: 0.9rem; }
.section-head .lead { margin-top: 1rem; }
.section-head--center { margin-inline: auto; text-align: center; }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ---------- 5. Düğmeler ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.8rem 1.55rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 620;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
}
.btn .icon { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--brand-600); color: #fff; box-shadow: var(--sh-blue); }
.btn-primary:hover { background: var(--brand-700); }

.btn-dark { background: var(--ink); color: #fff; box-shadow: var(--sh-2); }
.btn-dark:hover { background: var(--ink-2); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  border: 1px solid rgba(10, 16, 32, 0.12);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: #fff; border-color: rgba(10, 16, 32, 0.24); }

.btn-light { background: #fff; color: var(--ink); box-shadow: var(--sh-2); }
.btn-light:hover { background: var(--brand-50); }

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-outline-light:hover { background: #fff; color: var(--ink); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 14px 30px -16px rgba(10, 16, 32, 0.3); }
.btn-wa:hover { background: var(--wa-dark); }

.btn-sm { min-height: 42px; padding: 0.5rem 1.1rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 620;
  font-size: 0.94rem;
  color: var(--brand-600);
}
.link-arrow .icon { width: 18px; height: 18px; transition: transform var(--t); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ---------- 6. Yüzeyler ---------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(10, 16, 32, 0.07);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card--hover:hover { transform: translateY(-5px); border-color: var(--brand-200); box-shadow: var(--sh-2); }

.glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.panel-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: var(--r-xl);
  background:
    radial-gradient(38rem 24rem at 88% -10%, rgba(59, 118, 255, 0.42), transparent 62%),
    radial-gradient(30rem 22rem at 4% 108%, rgba(31, 91, 240, 0.32), transparent 60%),
    linear-gradient(160deg, #0a1020 0%, #101a34 58%, #0a1020 100%);
  box-shadow: var(--sh-3);
}
.panel-dark::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.07;
  pointer-events: none;
}
.panel-dark > * { position: relative; z-index: 1; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 16, 32, 0.08);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 560;
  color: var(--ash);
  backdrop-filter: blur(8px);
}
.chip .icon { width: 15px; height: 15px; color: var(--brand-600); }
.chip--dark { border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.82); }
.chip--dark .icon { color: #fff; }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 15px;
  background: #f5f7fa;
  border: 1px solid var(--line);
  color: var(--brand-600);
  box-shadow: inset 0 1px 0 #fff;
}
.icon-badge .icon { width: 22px; height: 22px; }
.icon-badge--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }

/* ---------- 7. Marka ---------- */
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.34rem;
  min-width: 0;
  transition: opacity var(--t-fast);
}
.brand:hover { opacity: 0.82; }
.brand__name {
  font-size: clamp(1.12rem, 1.02rem + 0.35vw, 1.32rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  color: var(--ink);
  line-height: 1;
}
.brand__suffix {
  font-size: clamp(1.12rem, 1.02rem + 0.35vw, 1.32rem);
  font-weight: 500;
  letter-spacing: -0.024em;
  color: var(--brand-600);
  line-height: 1;
}
.brand--light .brand__name { color: #fff; }
.brand--light .brand__suffix { color: rgba(255, 255, 255, 0.72); }
.brand--lg .brand__name, .brand--lg .brand__suffix { font-size: 1.5rem; }

/* ---------- 8. Üst çubuk ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  /* iOS'ta bulanık zeminli yapışkan çubuk kaydırma sırasında geç boyanıyor;
     kendi katmanına alınca üst çubuk sayfayla birlikte akıyor. */
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.site-header.is-stuck {
  /* Sayfa kaydıkça arkadan içerik sızmasın diye zemin koyulaşır */
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px -30px rgba(10, 16, 32, 0.6);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav a {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 560;
  color: var(--steel);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav a:hover { color: var(--ink); background: rgba(10, 16, 32, 0.05); }
/* Seçili sayfa: belli olsun ama ağır durmasın — hafif koyu, hafif kalın */
.nav a[aria-current="page"] { color: var(--ink); background: transparent; font-weight: 640; }

.header-actions { display: flex; align-items: center; gap: 0.55rem; }
/* Arama ve dünya ikonu tek grup: birbirine yakın, "Teklif al" ile aynı hizada */
.header-icons { display: flex; align-items: center; gap: 2px; }
.header-icons .langmenu { display: flex; align-items: center; }
/* Üst çubuk ikonları: çerçevesiz, HER ZAMAN siyah (hover, tıklama ve açık menü dahil) */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 42px;
  flex: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  transition: color var(--t-fast);
}
/* Renk hiçbir durumda açılmaz; üzerine gelince yalnızca biraz daha koyulaşır */
.icon-btn:hover,
.icon-btn:focus,
.icon-btn:focus-visible,
.icon-btn:active,
.icon-btn[aria-expanded="true"] { color: #000; opacity: 1; }
.icon-btn .icon { color: inherit; }

/* Dil seçme kartı */
.langmenu { position: relative; }
.langmenu__panel {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  right: 0;
  min-width: 208px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -24px rgba(10, 16, 32, 0.35), 0 2px 8px -4px rgba(10, 16, 32, 0.2);
}
.langmenu__title {
  padding: 0.35rem 0.6rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 660;
  color: var(--smoke);
}
.langmenu__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.65rem;
  border-radius: 11px;
  font-size: 0.94rem;
  font-weight: 580;
  color: var(--ink);
}
.langmenu__item.is-active { background: #f1f5fd; font-weight: 660; }
.langmenu__item.is-active .icon { margin-left: auto; color: var(--brand-600); }
.langmenu__item.is-soon { color: var(--smoke); }
.langmenu__item.is-soon small { margin-left: auto; font-size: 0.74rem; }
.langmenu .flag {
  flex: none;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(10, 16, 32, 0.1);
}

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 420px) {
  .header-actions .btn { display: none; }
}

/* Mobil menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgba(246, 248, 252, 0.98);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h);
  padding-inline: var(--pad-x);
  border-bottom: 1px solid var(--line);
}
.mobile-menu__body { padding: 1.5rem var(--pad-x); overflow-y: auto; }
.mobile-menu__body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  font-size: 1.28rem;
  font-weight: 620;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.mobile-menu__body a .icon { color: var(--smoke); width: 20px; height: 20px; }
.mobile-menu__foot {
  padding: 1.25rem var(--pad-x) calc(1.25rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.6rem;
  background: #fff;
}

/* ---------- 9. Giriş bölümü (hero) ---------- */
.hero {
  position: relative;
  padding-top: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  padding-bottom: clamp(3rem, 2rem + 5vw, 6rem);
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
}
.hero__title { margin-top: 1.1rem; }
.hero__title span { display: block; }
.hero__title .accent {
  color: var(--brand-600);
}
.hero__lead { margin-top: 1.4rem; max-width: 54ch; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero__bullets {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 560;
  color: var(--steel);
}
.hero__bullets .icon { width: 18px; height: 18px; color: var(--brand-600); flex: none; }

/* ---------- Hero görseli: 3B katman yığını ---------- */
.hero__visual { position: relative; }

.stage {
  position: relative;
  padding: 1rem 0 1.5rem;
}
.stage__glow {
  position: absolute;
  inset: 8% 2% 10% 6%;
  background:
    radial-gradient(22rem 15rem at 60% 45%, rgba(31, 91, 240, 0.16), transparent 68%),
    radial-gradient(15rem 11rem at 28% 78%, rgba(31, 91, 240, 0.1), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.deck {
  position: relative;
  height: clamp(480px, 38vw, 620px);
  perspective: 1400px;
}
/* Yığının altındaki yumuşak zemin gölgesi — derinliği gerçekçi kılar */
.deck::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 63%;
  width: 58%;
  height: 15%;
  transform: translateX(-50%) rotate(-5deg);
  background: radial-gradient(ellipse at center, rgba(10, 16, 32, 0.24), transparent 70%);
  filter: blur(16px);
  z-index: 0;
  pointer-events: none;
}
.deck__scene, .deck__labels { z-index: 1; }

/* Sahne: izometrik açı */
.deck__scene {
  position: absolute;
  inset: 4% 0 -12% 0;
  transform-style: preserve-3d;
  transform: rotateX(58deg) rotateZ(-38deg);
  animation: deck-breathe 14s ease-in-out infinite alternate;
}
@keyframes deck-breathe {
  from { transform: rotateX(58deg) rotateZ(-38deg) translateZ(0); }
  to   { transform: rotateX(55deg) rotateZ(-34deg) translateZ(8px); }
}

/* Plakalar */
.deck__plate {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(210px, 16vw, 275px);
  height: clamp(210px, 16vw, 275px);
  margin-left: calc(clamp(210px, 16vw, 275px) / -2);
  margin-top: calc(clamp(210px, 16vw, 275px) / -2);
  border-radius: 30px;
  background: linear-gradient(150deg, #ffffff, #f3f6fc);
  border: 1px solid rgba(10, 16, 32, 0.08);
  box-shadow: 0 26px 40px -30px rgba(10, 16, 32, 0.65);
}
.deck__plate::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px dashed rgba(10, 16, 32, 0.09);
}

.deck__plate--1 { transform: translateZ(0px);   opacity: 0.96; }
.deck__plate--2 { transform: translateZ(29px); }
.deck__plate--3 { transform: translateZ(58px); }
.deck__plate--4 { transform: translateZ(87px); }
.deck__plate--5 { transform: translateZ(116px); }
.deck__plate--6 { transform: translateZ(145px); }

/* En üst plaka: teslim edilen site */
.deck__plate--top {
  background: linear-gradient(150deg, var(--brand-600), var(--brand-700));
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 34px 60px -32px rgba(10, 16, 32, 0.45);
}
.deck__plate--top::after {
  inset: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
}

/* Dik duran etiketler — yazılar hep okunur kalır */
.deck__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: 900px;
  transform-style: preserve-3d;
}
.deck__label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(10, 16, 32, 0.08);
  box-shadow: 0 18px 40px -26px rgba(10, 16, 32, 0.55);
  white-space: nowrap;
  transform-style: preserve-3d;
  will-change: transform;
  animation-name: deck-float;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.deck__label b {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.25;
  color: var(--ink);
}
.deck__label small {
  display: block;
  margin-top: 2px;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--smoke);
}
.deck__label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  flex: none;
  border-radius: 9px;
  background: #f4f6fa;
  border: 1px solid var(--line);
  color: var(--brand-600);
}

/* Katmanlara göre konum (aşağıdan yukarıya) */
/* Üstte üç, altta üç kart: sol — orta — sağ.
   Yığının geniş olduğu orta bant boş bırakılır, üstüne binmezler. */
.deck__label--1 { left: 50%;  translate: -50% 0;  bottom: 5%;  animation-duration: 11s;   animation-delay: 0s; }
.deck__label--2 { left: 0%;   bottom: 16%;  animation-duration: 13s;   animation-delay: -2s; }
.deck__label--3 { right: 0%;  bottom: 16%;  animation-duration: 12s;   animation-delay: -4s; }
.deck__label--4 { left: 0%;   top: 16%;    animation-duration: 14s;   animation-delay: -6s; }
.deck__label--5 { right: 0%;  top: 16%;    animation-duration: 12.5s; animation-delay: -8s; }
.deck__label--6 { left: 50%;  translate: -50% 0;  top: 5%;    animation-duration: 13.5s; animation-delay: -10s; }

@keyframes deck-float {
  0%   { transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg); }
  25%  { transform: translate3d(3px, -5px, 16px) rotateX(3deg) rotateY(-4deg); }
  50%  { transform: translate3d(0, -8px, 26px) rotateX(0deg) rotateY(0deg); }
  75%  { transform: translate3d(-3px, -5px, 16px) rotateX(-3deg) rotateY(4deg); }
  100% { transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg); }
}

@media (max-width: 1180px) {
  .deck__label b { font-size: 0.82rem; }
  .deck__label small { font-size: 0.69rem; }
}
@media (max-width: 980px) {
  .deck { height: clamp(320px, 52vw, 420px); }
  .deck__scene { transform: rotateX(54deg) rotateZ(-36deg); animation: none; }
}
@media (max-width: 560px) {
  /* Mobilde kartlar 3B kareye daha yakın dursun: boş dikey alan azaltıldı */
  .deck { height: 370px; }
  .deck__plate {
    width: 168px; height: 168px;
    margin-left: -84px; margin-top: -84px;
    border-radius: 24px;
  }
  .deck__plate--2 { transform: translateZ(22px); }
  .deck__plate--3 { transform: translateZ(44px); }
  .deck__plate--4 { transform: translateZ(66px); }
  .deck__plate--5 { transform: translateZ(88px); }
  .deck__plate--6 { transform: translateZ(110px); }
  .deck__label { padding: 0.42rem 0.55rem; gap: 0.4rem; }
  .deck__label b { font-size: 0.72rem; }
  .deck__label small { display: none; }
  .deck__label-icon { width: 21px; height: 21px; border-radius: 7px; }
  .deck__label--1 { left: 50%; translate: -50% 0; bottom: 6%; }
  .deck__label--2 { left: 0;   bottom: 16%; }
  .deck__label--3 { right: 0;  bottom: 16%; }
  .deck__label--4 { left: 0;   top: 16%; }
  .deck__label--5 { right: 0;  top: 16%; }
  .deck__label--6 { left: 50%; translate: -50% 0; top: 6%; }
}
/* ---------- 10. Güven şeridi ---------- */
.trustbar {
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.trustbar__track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding-block: 0.95rem;
  white-space: nowrap;
  animation: marquee 46s linear infinite;
  width: max-content;
}
.trustbar:hover .trustbar__track { animation-play-state: paused; }
.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 580;
  color: var(--ash);
}
.trustbar__item .icon { width: 17px; height: 17px; color: var(--brand-600); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 11. Sayı kutuları ---------- */
/* Şerit, üstündeki güven çubuğu ile altındaki bölümün tam ortasında durur:
   üst boşluk bölüm boşluğu kadar, alt boşluğu bir sonraki bölüm sağlar. */
.section--stats { padding-top: var(--section-y); padding-bottom: 0; }
/* Kutu içinde kutu görünmesin diye çerçevesiz, ince ayraçlı tek satır */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__item {
  position: relative;
  padding: clamp(1.5rem, 1.2rem + 1vw, 2.2rem) clamp(1.1rem, 0.9rem + 1vw, 1.8rem);
}
.stats__item + .stats__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--line);
}
.stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-600);
  margin-bottom: 0.9rem;
}
.stats__icon .icon { width: 20px; height: 20px; }

.stats__value {
  font-size: clamp(1.5rem, 1.15rem + 1.15vw, 2.1rem);
  font-weight: 720;
  letter-spacing: -0.042em;
  line-height: 1.05;
  color: var(--ink);
}
.stats__label {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  font-weight: 580;
  color: var(--steel);
  line-height: 1.4;
}
.stats__note {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  /* Küçük yazı: okunabilirlik için daha koyu ton (WCAG 4.5:1) */
  color: var(--ash);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats__item:nth-child(3)::before, .stats__item:nth-child(2)::before { top: 0; bottom: 0; }
  .stats__item:nth-child(3) { border-top: 1px solid var(--line); }
  .stats__item:nth-child(4) { border-top: 1px solid var(--line); }
  .stats__item:nth-child(3)::before { display: none; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: minmax(0, 1fr); }
  .stats__item + .stats__item { border-top: 1px solid var(--line); }
  .stats__item + .stats__item::before { display: none; }
}

/* ---------- 12. Özellik kartları ---------- */
.feature { padding: clamp(1.4rem, 1.1rem + 0.8vw, 1.9rem); height: 100%; }
.feature__title { margin-top: 1.1rem; }
.feature__text { margin-top: 0.55rem; color: var(--ash); font-size: 0.95rem; line-height: 1.66; }

/* Hakkımızda: değer kartları */
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
}
.value-card .icon-badge { width: 44px; height: 44px; border-radius: 14px; flex: none; }
.value-card .icon-badge .icon { width: 20px; height: 20px; }
@media (max-width: 480px) {
  .value-card { gap: 0.85rem; padding: 1.15rem 1.2rem; }
}

/* ---------- 13. Hizmet kartları ---------- */
.service {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 1.1rem + 0.8vw, 1.9rem);
  height: 100%;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-700));
  opacity: 0;
  transition: opacity var(--t);
}
.service:hover::before { opacity: 1; }
.service__head { display: flex; align-items: flex-start; gap: 0.95rem; }
.service__title { margin-top: 0.1rem; }
.service__summary { margin-top: 0.7rem; color: var(--ash); font-size: 0.95rem; line-height: 1.66; }
.service__list { margin-top: 1.15rem; display: grid; gap: 0.5rem; }
.service__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--steel);
}
.service__list .icon { width: 17px; height: 17px; color: var(--brand-600); flex: none; margin-top: 2px; }

/* Kart altındaki iki bağlantı: detay sayfası ve teklif */
.service__foot {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}
.link-arrow--muted { color: var(--ash); }
.link-arrow--muted:hover { color: var(--ink); }

/* ---------- 14. Süreç ---------- */
.process { display: grid; gap: 0.9rem; }
.process__row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  align-items: start;
  padding: clamp(1.2rem, 1rem + 0.8vw, 1.7rem) clamp(1.1rem, 1rem + 0.8vw, 1.8rem);
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid rgba(10, 16, 32, 0.07);
  box-shadow: var(--sh-1);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.process__row:hover { transform: translateX(4px); border-color: var(--brand-200); box-shadow: var(--sh-2); }
.process__step {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.5rem + 1.8vw, 3rem);
  line-height: 0.9;
  /* Adım numarası dekoratif ama okunabilir olmalı (büyük yazı için 3:1) */
  color: #7d8698;
  font-weight: 400;
  transition: color var(--t);
}
.process__row:hover .process__step { color: var(--brand-600); }
.process__text { margin-top: 0.5rem; color: var(--ash); font-size: 0.95rem; line-height: 1.66; max-width: 62ch; }
.process__time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #f5f7fa;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 620;
  white-space: nowrap;
}
.process__time .icon { width: 15px; height: 15px; color: var(--brand-600); }
@media (max-width: 780px) {
  .process__row { grid-template-columns: 56px minmax(0, 1fr); }
  .process__time { grid-column: 2; justify-self: start; margin-top: 0.9rem; }
  .process__step { font-size: 2rem; }
}

/* ---------- 15. SEO bölümü (beyaz zemin, ayraçlı liste) ---------- */
.seo-block { position: relative; }
.seo-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 940px) { .seo-block__grid { grid-template-columns: minmax(0, 1fr); } }

.seo-block__intro { position: relative; padding-left: 1.4rem; }
.seo-block__intro::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35rem; bottom: 0.35rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-600), rgba(31, 91, 240, 0));
}
.seo-block__intro .h2 { margin-top: 1rem; }
.seo-block__intro .lead { margin-top: 1.15rem; max-width: 46ch; }
.seo-block__actions { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }

.seo-list {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--sh-1);
  overflow: hidden;
}
.seo-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: clamp(1rem, 0.9rem + 0.4vw, 1.3rem) clamp(1.1rem, 1rem + 0.5vw, 1.6rem);
  transition: background var(--t-fast);
}
.seo-list__item + .seo-list__item { border-top: 1px solid var(--line-soft); }
.seo-list__item:hover { background: #f8fafd; }
.seo-list__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  flex: none;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
}
.seo-list__text { display: block; min-width: 0; }
.seo-list__text b {
  display: block;
  font-size: 0.97rem;
  font-weight: 680;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.seo-list__text span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ash);
}
@media (max-width: 560px) {
  .seo-block__intro { padding-left: 1rem; }
  .seo-list__item { gap: 0.7rem; }
}

/* ---------- 16. Paketler ---------- */
/* Beş paket yan yana; dar ekranlarda kademeli olarak alt alta iner */
.packages {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: stretch;
}
@media (max-width: 1300px) { .packages { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; } }
@media (max-width: 980px)  { .packages { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .packages { grid-template-columns: minmax(0, 1fr); } }

.package {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.2rem 1.35rem;
  height: 100%;
  border-color: var(--brand-600);
}
/* Öne çıkan paket, mavi çerçeveyi kalın ve ışıklı taşır */
.package.card--hover:hover { border-color: var(--brand-600); }
.package--highlight {
  border-color: var(--brand-600);
  border-width: 2px;
  box-shadow: 0 28px 70px -44px rgba(10, 16, 32, 0.4);
  background: linear-gradient(180deg, #fff, #fbfcff);
}
.package__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--brand-600);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: var(--sh-blue);
}
.package__name { font-size: 1.24rem; font-weight: 660; letter-spacing: -0.02em; }
.package__audience { margin-top: 0.25rem; font-size: 0.82rem; color: var(--ash); }
.package__price { margin-top: 1.15rem; display: flex; align-items: baseline; gap: 0.35rem; }
.package__amount {
  font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.package__currency { font-size: 1.1rem; font-weight: 620; color: var(--steel); }
.package__note { margin-top: 0.2rem; font-size: 0.78rem; color: var(--ash); }
.package__summary {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--ash);
  line-height: 1.6;
  min-height: 3.6em;
}
.package__meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.package__features { margin-top: 1.15rem; display: grid; gap: 0.55rem; flex: 1; }
.package__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.5;
}
.package__features .icon { width: 16px; height: 16px; color: var(--brand-600); flex: none; margin-top: 3px; }
.package__cta { margin-top: 1.5rem; }

.premium {
  margin-top: 1rem;
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
}
@media (max-width: 860px) { .premium { grid-template-columns: minmax(0, 1fr); } }
.premium__text { margin-top: 1.15rem; color: rgba(255, 255, 255, 0.72); line-height: 1.72; }
.premium__actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.premium__points { display: grid; gap: 0.55rem; }
.premium__points li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.92rem; color: rgba(255, 255, 255, 0.78);
}
.premium__points .icon { width: 17px; height: 17px; color: #fff; flex: none; margin-top: 2px; }

/* Karşılaştırma tablosu */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--sh-1);
  -webkit-overflow-scrolling: touch;
}
.compare { min-width: 780px; font-size: 0.9rem; }
.compare th, .compare td { padding: 0.95rem 1.05rem; text-align: left; vertical-align: middle; }
.compare thead th {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-weight: 660;
  font-size: 0.95rem;
  z-index: 1;
}
.compare thead th span { display: block; font-size: 0.75rem; font-weight: 540; color: var(--smoke); margin-top: 2px; }
.compare tbody tr + tr { border-top: 1px solid var(--line-soft); }
.compare tbody tr:hover { background: #fbfcff; }
.compare tbody th { font-weight: 580; color: var(--steel); white-space: nowrap; }
.compare td { color: var(--ash); }
.compare .is-highlight { background: linear-gradient(180deg, rgba(31, 91, 240, 0.045), rgba(31, 91, 240, 0.02)); }
.mark-yes { color: var(--brand-600); }
.mark-no { color: #c3c9d6; }

/* ---------- 17. Örnek çalışmalar ---------- */
.showcase { padding: 0; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.showcase__body { padding: clamp(1.4rem, 1.1rem + 0.8vw, 1.9rem); display: flex; flex-direction: column; height: 100%; }
.showcase__head { display: flex; align-items: flex-start; gap: 0.9rem; }
.showcase__list { margin-top: 1.2rem; display: grid; gap: 0.5rem; }
.showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.45;
}
.showcase__list .icon { width: 16px; height: 16px; color: var(--brand-600); flex: none; margin-top: 3px; }
.showcase__sector { font-size: 0.76rem; font-weight: 660; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-600); }
.showcase__title { margin-top: 0.5rem; }
.showcase__text { margin-top: 0.5rem; font-size: 0.9rem; color: var(--ash); line-height: 1.62; }

.empty-note {
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  border-radius: var(--r-lg);
  border: 1px dashed var(--brand-200);
  background: linear-gradient(180deg, var(--brand-50), #fff);
}

/* ---------- 17a. Referans kartı (teslim edilen gerçek işler) ----------
   Üstte sitenin ana sayfa ekran görüntüsü, altında sektör / firma / kısa
   açıklama ve "Siteyi aç" bağlantısı. Blog kartıyla aynı dil, farklı oran. */
.ref-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
}
.ref-card__shot {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--brand-50);
  border-bottom: 1px solid var(--line-soft);
}
/* Açık zeminli ekran görüntüleri beyaz kartın içinde kaybolmasın diye
   nötr saç teli çizgi (renkli parıltı yok). */
.ref-card__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(10, 16, 32, 0.06);
  pointer-events: none;
}
.ref-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  transition: transform var(--t-slow);
}
.card--hover:hover .ref-card__img { transform: scale(1.025); }

.ref-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.15rem, 1rem + 0.6vw, 1.55rem);
}
.ref-card__title { margin-top: 0.5rem; }
.ref-card__text {
  margin-top: 0.6rem;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ash);
}
.ref-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.ref-card__foot .chip { min-height: 44px; padding-inline: 1.05rem; }
.ref-card__link {
  color: var(--ink);
  font-weight: 620;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.ref-card__link:hover { color: var(--brand-600); border-color: rgba(10, 16, 32, 0.18); }

/* ---------- 17b. Blog ---------- */

/* Blogda arama */
.blog-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: min(560px, 100%);
  margin: 2rem auto 0;
  padding: 6px 6px 6px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  transition: border-color var(--t), box-shadow var(--t);
}
.blog-search:focus-within { border-color: var(--brand-300); box-shadow: var(--sh-2); }
.blog-search__icon { flex: none; color: var(--smoke); }
.blog-search input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.2rem;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--ink);
}
.blog-search input:focus { outline: none; }
.blog-search input::placeholder { color: var(--smoke); }
.blog-search input[type="search"]::-webkit-search-cancel-button { appearance: none; }

/* Kategori şeridi */
.cat-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.87rem;
  font-weight: 620;
  color: var(--steel);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.cat-chip:hover { border-color: var(--brand-300); color: var(--ink); }
.cat-chip.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
.cat-chip__n { font-size: 0.74rem; font-weight: 700; color: var(--smoke); }
.cat-chip.is-on .cat-chip__n { color: rgba(255, 255, 255, 0.65); }

/* Yazı kapağı — görsel yoksa markaya uygun ikonlu kapak */
.cover {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: radial-gradient(120% 130% at 50% 0%, #fff 0%, var(--brand-50) 100%);
  border-bottom: 1px solid var(--line-soft);
}
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 91, 240, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 91, 240, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(72% 72% at 50% 45%, #000 0%, transparent 100%);
  mask-image: radial-gradient(72% 72% at 50% 45%, #000 0%, transparent 100%);
}
/* Fotoğraf varsa ızgara dokusunun üstünde durur */
.cover__img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.cover__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  color: var(--brand-600);
}
.cover--lg .cover__mark { width: 78px; height: 78px; border-radius: 24px; }
.cover__tag {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-600);
}

/* Yazı kartı */
.post-card { padding: 0; height: 100%; overflow: hidden; }
.post-card__link { display: flex; flex-direction: column; height: 100%; }
.post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
}
.post-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.post-card__cat {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.post-card__title { margin-top: 0.75rem; font-size: 1.05rem; line-height: 1.4; }
.post-card__excerpt {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ash);
  flex: 1;
}
.post-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line-soft);
}
.post-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--smoke);
}
.post-card__meta .icon { color: var(--brand-600); }
.post-card__date { font-size: 0.78rem; color: var(--smoke); }

/* Öne çıkan yazı */
.feature-post { padding: 0; overflow: hidden; }
.feature-post__link { display: grid; grid-template-columns: 1.02fr 1fr; }
.feature-post .cover {
  aspect-ratio: auto;
  min-height: 300px;
  height: 100%;
  border-bottom: 0;
  border-right: 1px solid var(--line-soft);
}
.feature-post__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.8rem);
}
.feature-post__title { margin-top: 0.9rem; }
.feature-post .body-text { margin-top: 0.9rem; }
.feature-post__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}
.feature-post:hover { border-color: var(--brand-200); box-shadow: var(--sh-2); }

/* Kategori kartı */
.cat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.35rem, 1.15rem + 0.7vw, 1.75rem);
}
.cat-card__mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: var(--brand-50);
  border: 1px solid var(--line-soft);
  color: var(--brand-600);
}
.cat-card__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}
.cat-card__title { font-size: 1.12rem; letter-spacing: -0.025em; }
.cat-card__count {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--brand-50);
  border: 1px solid var(--line-soft);
  font-size: 0.71rem;
  font-weight: 700;
  color: var(--ash);
  white-space: nowrap;
}
.cat-card__text {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ash);
  flex: 1;
}
.cat-card__foot {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

/* Sayfalama */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: clamp(2rem, 1.6rem + 1.5vw, 3rem);
}
.pager__btn, .pager__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-width: 44px;
  height: 44px;
  padding: 0 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 620;
  color: var(--steel);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.pager__num { padding: 0; }
.pager__btn:hover, .pager__num:hover { border-color: var(--brand-300); color: var(--ink); }
.pager__num.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
.pager__gap { padding: 0 0.15rem; color: var(--smoke); }
.pager .icon { width: 16px; height: 16px; transform: rotate(-90deg); }
.pager .pager__prev { transform: rotate(90deg); }

/* Başlık + sağda küçük bilgi */
.section-head--row {
  max-width: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Yazı sayfası */
.readbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 3px;
  pointer-events: none;
}
.readbar__fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--brand-600);
}

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--smoke);
}
.crumbs a { color: var(--ash); transition: color var(--t-fast); }
.crumbs a:hover { color: var(--ink); }

.post-head {
  padding-top: clamp(1.8rem, 1.3rem + 2.5vw, 3rem);
  padding-bottom: clamp(1.5rem, 1.2rem + 2vw, 2.4rem);
  background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
}
.post-head__main { max-width: 80ch; margin-top: 1.3rem; }
.post-head__main .lead { margin-top: 1rem; }
.post-head__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-soft);
}
.post-head .cover {
  margin-top: 1.8rem;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.share { position: relative; display: inline-flex; align-items: center; gap: 0.25rem; }
.share__label { margin-right: 0.4rem; font-size: 0.82rem; color: var(--smoke); }
.share__done {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 0.76rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.share.is-copied .share__done { opacity: 1; transform: none; }

.post-layout {
  display: grid;
  grid-template-columns: 262px minmax(0, 1fr);
  gap: clamp(1.8rem, 1.4rem + 2vw, 3.4rem);
  align-items: start;
}
.post-toc__inner {
  position: sticky;
  top: 96px;
  padding: 1.15rem 1.2rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--sh-1);
}
.post-toc__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
}
.post-toc__title .icon { width: 18px; height: 18px; color: var(--brand-600); }
.post-toc__list {
  counter-reset: toc;
  display: grid;
  gap: 0.1rem;
  margin-top: 0.9rem;
  max-height: min(58vh, 520px);
  overflow: auto;
}
.post-toc__list li { counter-increment: toc; }
.post-toc__list a {
  display: flex;
  gap: 0.5rem;
  padding: 0.42rem 0.55rem;
  border-radius: 10px;
  border-left: 2px solid transparent;
  font-size: 0.87rem;
  line-height: 1.45;
  color: var(--ash);
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.post-toc__list a::before { content: counter(toc) "."; flex: none; font-weight: 700; color: var(--smoke); }
.post-toc__list a:hover { color: var(--ink); background: var(--brand-50); }
.post-toc__list a.is-on {
  color: var(--ink);
  font-weight: 640;
  background: var(--brand-50);
  border-left-color: var(--brand-600);
}

.post-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--smoke);
}
.post-meta .icon { color: var(--brand-600); }

.post-body { max-width: 74ch; }
.post-body .body-text { font-size: 1.02rem; }
.post-body .body-text + .body-text { margin-top: 1.1rem; }
.post-body .h3 { margin-top: 2.4rem; scroll-margin-top: 96px; }
.post-body .h3 + .body-text { margin-top: 0.8rem; }
.post-list { margin-top: 1.1rem; display: grid; gap: 0.6rem; }
.post-list li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--steel); line-height: 1.6; }
.post-list .icon { width: 18px; height: 18px; color: var(--brand-600); flex: none; margin-top: 4px; }

/* Yazı altındaki ilgili hizmet sayfaları */
.post-links {
  margin-top: 2.4rem;
  padding: 1.3rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
}
.post-links__title {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 700;
}
.post-links__list { margin-top: 0.9rem; display: grid; gap: 0.6rem; }

.post-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.8rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #f8fafd;
}
.post-note p { color: var(--steel); line-height: 1.65; }

.post-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.8rem;
  padding: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--brand-600);
  background: #fff;
}

@media (max-width: 980px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-toc__inner { position: static; max-height: none; }
  .post-toc__list { max-height: none; }
  .post-body { max-width: none; }
}
@media (max-width: 860px) {
  .feature-post__link { grid-template-columns: 1fr; }
  .feature-post .cover {
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .post-head .cover { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .blog-search { padding-left: 12px; }
  .blog-search input { font-size: 0.95rem; }
  .post-head__bar { align-items: flex-start; flex-direction: column; gap: 0.9rem; }
  .pager__btn { padding: 0 0.75rem; }
}

/* ---------- 18. SSS ---------- */
.faq { display: grid; gap: 0.65rem; }
.faq__item {
  border-radius: var(--r);
  border: 1px solid rgba(10, 16, 32, 0.08);
  background: #fff;
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq__item[open] { border-color: var(--brand-200); box-shadow: var(--sh-2); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  font-size: 1rem;
  font-weight: 620;
  cursor: pointer;
  list-style: none;
}
.faq__q-text { display: flex; align-items: center; gap: 0.8rem; min-width: 0; }
.faq__q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  flex: none;
  border-radius: 11px;
  background: #f4f6fa;
  border: 1px solid var(--line);
  color: var(--brand-600);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.faq__item[open] .faq__q-icon { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }
.faq__q::-webkit-details-marker { display: none; }
/* Yalnızca oku hedefle; rozet ikonu rengini kutudan alsın */
.faq__q > .icon { width: 20px; height: 20px; color: var(--brand-600); flex: none; transition: transform var(--t); }
.faq__q-icon .icon { width: 18px; height: 18px; color: inherit; }
.faq__item[open] .faq__q > .icon { transform: rotate(180deg); }
.faq__a { padding: 0 1.35rem 1.3rem 3.6rem; color: var(--ash); line-height: 1.72; font-size: 0.95rem; max-width: 82ch; }

/* ---------- 19. Kapanış çağrısı ---------- */
.cta-panel {
  padding: clamp(2rem, 1.4rem + 3vw, 4rem);
  text-align: center;
}
.cta-panel .h2 { color: #fff; margin-top: 1rem; }
.cta-panel__text { margin-top: 1.1rem; color: rgba(255, 255, 255, 0.72); max-width: 58ch; margin-inline: auto; }
.cta-panel__actions { margin-top: 2rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 0.7rem; }
.cta-panel__note { margin-top: 1.2rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

/* ---------- 20. Formlar ---------- */
.form-card { padding: clamp(1.5rem, 1.2rem + 1.4vw, 2.4rem); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 720px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }
.form-row--full { grid-column: 1 / -1; }

.field-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 660;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
}
.field-label span { color: var(--brand-600); }

.field {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(10, 16, 32, 0.12);
  background: #fff;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  appearance: none;
}
.field::placeholder { color: #a9b1c1; }
.field:hover { border-color: rgba(10, 16, 32, 0.22); }
.field:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 4px rgba(31, 91, 240, 0.12);
}
textarea.field { min-height: 140px; resize: vertical; line-height: 1.6; }
select.field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235a6579' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.6rem;
}
.field.has-error { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(192, 54, 44, 0.1); }
.field-error { margin-top: 0.4rem; font-size: 0.82rem; color: var(--danger); font-weight: 560; }

/* Bot tuzağı: gerçek kullanıcı asla görmez */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.alert .icon { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.alert--error { background: var(--danger-bg); border: 1px solid rgba(192, 54, 44, 0.2); color: #8f2a22; }
.alert--ok { background: var(--ok-bg); border: 1px solid rgba(23, 121, 74, 0.2); color: var(--ok); }

.form-consent { font-size: 0.82rem; color: var(--smoke); line-height: 1.6; }
.form-consent a { color: var(--brand-700); text-decoration: underline; text-underline-offset: 2px; }

/* Modern açılır liste — yerel select gizlenir, üstüne kart açılan arayüz kurulur */
.msel { position: relative; }
.msel__native {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  opacity: 0;
  pointer-events: none;
}
.msel__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(10, 16, 32, 0.12);
  background: #fff;
  font-size: 0.98rem;
  font-weight: 560;
  color: var(--ink);
  text-align: left;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.msel__button .icon { color: var(--ash); flex: none; transition: transform var(--t-fast), color var(--t-fast); }
.msel__button:hover { border-color: rgba(10, 16, 32, 0.24); }
.msel__button:focus-visible {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 4px rgba(31, 91, 240, 0.12);
}
.msel.is-open .msel__button {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 4px rgba(31, 91, 240, 0.12);
}
.msel.is-open .msel__button .icon { transform: rotate(180deg); color: var(--brand-600); }
.msel.is-empty .msel__value { color: var(--smoke); font-weight: 500; }
.msel__value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.msel__panel {
  position: absolute;
  z-index: 40;
  left: 0; right: 0;
  top: calc(100% + 8px);
  padding: 6px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -24px rgba(10, 16, 32, 0.35), 0 2px 8px -4px rgba(10, 16, 32, 0.2);
  max-height: 300px;
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: msel-in 0.16s var(--ease);
}
/* Sadece konum canlanır; opaklık animasyonu yok ki hiçbir koşulda görünmez kalmasın */
@keyframes msel-in {
  from { transform: translateY(-6px); }
  to   { transform: none; }
}

.msel__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.62rem 0.75rem;
  border-radius: 10px;
  text-align: left;
  color: var(--steel);
  transition: background var(--t-fast), color var(--t-fast);
}
.msel__option .icon { opacity: 0; color: var(--brand-600); flex: none; }
.msel__option:hover { background: #f4f6fa; color: var(--ink); }
.msel__option:focus-visible { outline: none; background: #eef2f8; color: var(--ink); }
.msel__option.is-selected { background: #f1f5fd; color: var(--ink); }
.msel__option.is-selected .icon { opacity: 1; }
.msel__option-text b { display: block; font-size: 0.95rem; font-weight: 580; letter-spacing: -0.012em; }
.msel__option.is-selected .msel__option-text b { font-weight: 680; }
.msel__option-text small { display: block; margin-top: 1px; font-size: 0.78rem; color: var(--smoke); }


/* Form + yan sütun yerleşimi */
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 1.4rem;
  align-items: start;
}
@media (max-width: 980px) { .split-grid { grid-template-columns: minmax(0, 1fr); } }

/* İletişim kutuları */
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid rgba(10, 16, 32, 0.07);
  box-shadow: var(--sh-1);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.contact-item:hover { transform: translateY(-3px); border-color: var(--brand-200); box-shadow: var(--sh-2); }
.contact-item > span:last-child { display: block; min-width: 0; }
.contact-item__label { display: block; font-size: 0.76rem; font-weight: 660; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); }
.contact-item__value { display: block; margin-top: 0.15rem; font-size: 1rem; font-weight: 620; color: var(--ink); word-break: break-word; }

/* ---------- 21. İçerik sayfaları ---------- */
/* İç sayfa başlıkları: ortalanmış ve dengeli — yan tarafta boşluk kalmaz */
.page-hero {
  padding-top: clamp(2.4rem, 1.8rem + 3vw, 4.2rem);
  padding-bottom: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  text-align: center;
}
.page-hero .section-head {
  margin-inline: auto;
  max-width: none;
}
.page-hero .h1 {
  font-size: clamp(1.95rem, 1.25rem + 2.5vw, 3.3rem);
  line-height: 1.06;
  max-width: 22ch;
  margin-inline: auto;
}
.page-hero .lead { margin-inline: auto; max-width: 62ch; }
.page-hero .eyebrow::after {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--brand-600), transparent);
}
.page-hero .hero__actions { justify-content: center; }
.prose { max-width: 74ch; }
.prose p + p { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose h2 + p, .prose h3 + p { margin-top: 0.8rem; }
.prose ul { margin-top: 1rem; display: grid; gap: 0.55rem; }
.prose ul li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--ash); }
.prose ul li .icon { width: 18px; height: 18px; color: var(--brand-600); flex: none; margin-top: 3px; }


/* ---------- 22. Alt bilgi ---------- */
.site-footer {
  margin-top: clamp(3rem, 2rem + 4vw, 5rem);
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--ash);
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 3rem);
  padding-block: clamp(2.5rem, 2rem + 3vw, 4rem);
}
@media (max-width: 1160px) { .footer__grid { grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); } }
@media (max-width: 900px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: minmax(0, 1fr); } }
.footer__about { margin-top: 1.1rem; font-size: 0.92rem; line-height: 1.7; color: var(--ash); max-width: 44ch; }
/* Sosyal medya ikonları */
.social { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--steel);
  box-shadow: var(--sh-1);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.social__link:hover {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
  transform: translateY(-2px);
}

.footer__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.footer__title::before {
  content: "";
  width: 16px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-600));
}
.footer__list { margin-top: 1.05rem; display: grid; gap: 0.6rem; }
.footer__list a, .footer__list span {
  font-size: 0.93rem;
  color: var(--steel);
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.footer__list a:hover { color: var(--brand-600); transform: translateX(2px); }
.footer__list .icon { width: 16px; height: 16px; color: var(--brand-600); flex: none; }
.footer__bottom {
  border-top: 1px solid var(--line-soft);
  padding-block: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--smoke);
}
.footer__bottom a { color: var(--ash); }
.footer__bottom a:hover { color: var(--brand-600); }

/* ---------- 23. WhatsApp düğmesi ---------- */
.wa-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 640;
  box-shadow: 0 16px 34px -16px rgba(10, 16, 32, 0.32);
  transition: transform var(--t), background var(--t);
}
.wa-fab .icon { width: 20px; height: 20px; }
.wa-fab:hover { transform: translateY(-3px); background: var(--wa-dark); }
@media (max-width: 560px) {
  .wa-fab { padding: 0.85rem; }
  .wa-fab span { display: none; }
}

/* ---------- 24. Hata sayfası ---------- */
.error-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(3rem, 2rem + 5vw, 6rem);
}
.error-code {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 3rem + 9vw, 9rem);
  line-height: 0.9;
  color: #d9dfea;
}

/* ---------- 25. Görünür olunca beliren bölümler ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal-d1 { transition-delay: 0.07s; }
.js .reveal-d2 { transition-delay: 0.14s; }
.js .reveal-d3 { transition-delay: 0.21s; }

/* ---------- 26. Hareket azaltma tercihi ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .trustbar__track { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .btn:hover, .card--hover:hover, .mock:hover { transform: none; }
  .card--hover:hover .ref-card__img { transform: none; }
}

/* ---------- 27. Yazdırma ---------- */
@media print {
  .site-header, .wa-fab, .site-footer, .cta-panel { display: none !important; }
  body { background: #fff; }
}

/* ==========================================================================
   30. Cam etiketler (proje geneli)
   Lonk Digital'de tüm etiketler aynı cam dilini kullanır: yumuşak beyaz
   geçiş, ince kenar, iç parlama ve arkasını hafifçe bulanıklaştıran katman.
   Koyu zeminde kullanılan etiketler (chip--dark) bu kuralın dışındadır.
   ========================================================================== */
.chip:not(.chip--dark),
.cover__tag,
.cat-card__count,
.cat-chip:not(.is-on) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 247, 252, 0.7) 100%);
  border: 1px solid rgba(10, 16, 32, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(10, 16, 32, 0.03),
    0 1px 2px rgba(10, 16, 32, 0.05),
    0 12px 24px -18px rgba(10, 16, 32, 0.4);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
.cat-chip:not(.is-on):hover {
  border-color: rgba(10, 16, 32, 0.14);
  color: var(--ink);
}
