/* ==========================================================================
   Karaman Hukuk & Danışmanlık — modern & minimal hukuk bürosu
   Tasarım sistemi / global stiller
   ========================================================================== */

:root {
  /* Renk paleti */
  --bg: #ffffff;
  --bg-alt: #f2f1ec;
  --bg-dark: #17181d;
  --ink: #16171a;
  --ink-soft: #43454b;
  --muted: #6c6a63;
  --line: #e7e4dc;
  --line-strong: #d7d3c8;

  --brand: #202329;      /* antrasit */
  --brand-700: #15171b;
  --brand-600: #2e323b;
  --accent: #c9a227;     /* altın */
  --accent-600: #8a6c12;
  --accent-soft: rgba(201, 162, 39, .13);

  /* Tipografi */
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  /* Ölçek */
  --container: 1160px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(20, 23, 28, .04), 0 1px 3px rgba(20, 23, 28, .06);
  --shadow-md: 0 10px 30px -12px rgba(20, 23, 28, .18);
  --shadow-lg: 0 24px 60px -20px rgba(19, 27, 46, .28);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Reset / temel */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--brand); color: #fff; }

/* Tipografi */
h1, h2, h3, h4 { line-height: 1.16; color: var(--ink); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.005em; }
h1 { font-size: clamp(2.2rem, 1.2rem + 4vw, 4rem); line-height: 1.08; }
h2 { font-size: clamp(1.75rem, 1.1rem + 2.5vw, 2.8rem); }
h3 { font-size: 1.34rem; }
h4 { font-family: var(--font); font-weight: 720; letter-spacing: -.01em; }
p { color: var(--ink-soft); }

/* Yerleşim yardımcıları */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 7vw, 112px) 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: clamp(48px, 5vw, 76px) 0; }
.center { text-align: center; }
.narrow { max-width: 720px; }
.narrow.center { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-600);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--accent); display: inline-block; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 16px; font-size: 1.06rem; }
.lead { font-size: 1.14rem; color: var(--ink-soft); }

/* Butonlar */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 650; font-size: .98rem; letter-spacing: -.01em;
  padding: 13px 24px; border-radius: 999px;
  transition: transform .25s var(--ease), background .2s, color .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--accent); color: var(--brand); }
.btn--accent:hover { background: #d9b33c; color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 650; color: var(--brand);
  transition: gap .2s var(--ease), color .2s;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--accent-600); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Header / Navigasyon
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(20,23,28,.02); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(150deg, var(--brand), var(--brand-600));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.05rem;
  letter-spacing: .02em; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand__mark span { position: relative; top: -1px; }
.brand__name { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name b { font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; color: var(--ink); }
.brand__name small { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a {
  padding: 9px 15px; border-radius: 8px; font-size: .96rem; font-weight: 550; color: var(--ink-soft);
  transition: color .18s, background .18s;
}
.nav__menu a:hover { color: var(--ink); background: var(--bg-alt); }
.nav__menu a.is-active { color: var(--brand); font-weight: 650; }
.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav__toggle span { position: relative; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding: clamp(72px, 9vw, 140px) 0 clamp(56px, 6vw, 100px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(55% 55% at 50% -5%, var(--accent-soft), transparent 62%),
    radial-gradient(45% 40% at 50% 118%, rgba(32,35,41,.05), transparent 60%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 5vw, 76px); align-items: center; }
.hero__title { margin-top: 22px; }
.hero__title em { font-style: normal; color: var(--accent-600); }
.hero__sub { margin-top: 22px; font-size: 1.16rem; max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }

/* Ortalanmış hero varyantı */
.hero--center { text-align: center; }
.hero--center .hero__content { max-width: 840px; margin: 0 auto; }
.hero--center .eyebrow { justify-content: center; }
.hero--center .hero__title { margin-top: 20px; }
.hero--center .hero__sub { max-width: 640px; margin-left: auto; margin-right: auto; font-size: 1.2rem; }
.hero--center .hero__cta { justify-content: center; }
.hero--center .hero__meta { justify-content: center; gap: 44px; }
.hero__points { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; margin-top: 38px; }
.hero__points li { display: inline-flex; align-items: center; gap: 9px; font-size: .95rem; color: var(--ink-soft); font-weight: 550; }
.hero__points svg { width: 18px; height: 18px; flex: none; color: var(--accent-600); }
.hero__meta .num { font-size: 1.9rem; font-weight: 800; color: var(--brand); letter-spacing: -.03em; }
.hero__meta .lbl { font-size: .86rem; color: var(--muted); margin-top: 2px; }

.hero__panel {
  position: relative; border-radius: 20px; padding: 34px;
  background: linear-gradient(160deg, var(--brand), var(--brand-700));
  color: #fff; box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero__panel::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(177,137,79,.35), transparent 70%);
}
.hero__panel .kicker { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; }
.hero__panel h3 { color: #fff; margin-top: 14px; font-size: 1.5rem; font-weight: 750; }
.hero__panel p { color: rgba(255,255,255,.72); margin-top: 12px; font-size: .98rem; }
.hero__panel ul { margin-top: 22px; display: grid; gap: 14px; }
.hero__panel li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: rgba(255,255,255,.9); }
.hero__panel li svg { width: 20px; height: 20px; flex: none; color: var(--accent); margin-top: 1px; }

/* Güven şeridi */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.trust__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 22px 0; }
.trust__row span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 650; }

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

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__icon {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-600); margin-bottom: 20px;
}
.card__icon svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .97rem; }
.card__link { margin-top: 18px; }

/* Çalışma alanı kartı (link olarak) */
a.area {
  display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; transition: transform .26s var(--ease), box-shadow .26s, border-color .26s;
}
a.area:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand); }
a.area .card__icon { transition: background .26s, color .26s; }
a.area:hover .card__icon { background: var(--brand); color: #fff; }
a.area h3 { margin-bottom: 8px; font-size: 1.16rem; }
a.area p { font-size: .94rem; }
a.area .more { margin-top: auto; padding-top: 18px; font-weight: 650; color: var(--brand); font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
a.area .more svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
a.area:hover .more svg { transform: translateX(4px); }

/* ==========================================================================
   Yaklaşım / iki sütun
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.value-list { display: grid; gap: 18px; margin-top: 28px; }
.value-list li { display: flex; gap: 16px; align-items: flex-start; }
.value-list .vi { width: 42px; height: 42px; border-radius: 11px; background: var(--brand); color: #fff; display: grid; place-items: center; flex: none; }
.value-list .vi svg { width: 21px; height: 21px; }
.value-list h4 { font-size: 1.05rem; font-weight: 720; margin-bottom: 3px; }
.value-list p { font-size: .95rem; }

.figure { position: relative; border-radius: 18px; overflow: hidden; background: var(--bg-alt); border: 1px solid var(--line); aspect-ratio: 4 / 5; }
.figure--dark { background: linear-gradient(160deg, var(--brand), var(--brand-700)); border: none; display: grid; place-items: center; padding: 40px; }
.figure__quote { color: #fff; }
.figure__quote .mark { font-size: 3.4rem; line-height: .6; color: var(--accent); font-weight: 800; }
.figure__quote p { color: rgba(255,255,255,.92); font-size: 1.3rem; font-weight: 600; line-height: 1.45; margin-top: 18px; letter-spacing: -.01em; }
.figure__quote cite { display: block; margin-top: 22px; font-style: normal; color: rgba(255,255,255,.6); font-size: .9rem; }

/* İstatistik şeridi */
.stats { background: var(--bg-dark); color: #fff; }
.stats .grid--4 { gap: 0; }
.stat { padding: 14px 24px; text-align: center; border-left: 1px solid rgba(255,255,255,.09); }
.stat:first-child { border-left: none; }
.stat .num { font-size: clamp(2.2rem, 1.4rem + 2vw, 3rem); font-weight: 800; letter-spacing: -.03em; }
.stat .num em { font-style: normal; color: var(--accent); }
.stat .lbl { color: rgba(255,255,255,.62); font-size: .92rem; margin-top: 4px; }

/* ==========================================================================
   Ekip
   ========================================================================== */
.member { text-align: left; }
.member__photo {
  aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px;
  background: linear-gradient(160deg, #e8ebf1, #dfe3ea); display: grid; place-items: center;
  color: var(--brand); position: relative;
}
.member__photo .initials { font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; opacity: .5; }
.member h3 { font-size: 1.16rem; margin-bottom: 2px; }
.member .role { color: var(--accent-600); font-weight: 650; font-size: .92rem; }
.member .bio { font-size: .93rem; margin-top: 10px; }
.member .baro { font-size: .82rem; color: var(--muted); margin-top: 10px; }

/* ==========================================================================
   Blog / makale kartları
   ========================================================================== */
a.post {
  display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--bg); transition: transform .26s var(--ease), box-shadow .26s, border-color .26s;
}
a.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.post__cover { aspect-ratio: 16 / 9; background: linear-gradient(150deg, var(--brand-600), var(--brand-700)); position: relative; overflow: hidden; }
.post__cover .tag { position: absolute; left: 16px; top: 16px; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); color: #fff; font-size: .74rem; font-weight: 650; padding: 5px 11px; border-radius: 999px; letter-spacing: .02em; }
.post__cover .glyph { position: absolute; right: -20px; bottom: -20px; font-size: 8rem; font-weight: 800; color: rgba(255,255,255,.06); line-height: 1; }
.post__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post__meta { font-size: .82rem; color: var(--muted); display: flex; gap: 10px; align-items: center; }
.post__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-strong); }
.post__body h3 { margin: 12px 0 10px; font-size: 1.18rem; }
.post__body p { font-size: .95rem; }
.post__body .more { margin-top: auto; padding-top: 18px; }

/* Makale içeriği */
.article { max-width: 760px; margin: 0 auto; }
.article__head { padding: clamp(40px, 5vw, 64px) 0 clamp(28px, 3vw, 40px); }
.article__head .tag { color: var(--accent-600); font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.article__head h1 { margin: 16px 0 18px; font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.9rem); }
.article__head .meta { color: var(--muted); font-size: .92rem; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.article__cover { aspect-ratio: 21 / 9; border-radius: var(--radius); background: linear-gradient(150deg, var(--brand), var(--brand-700)); margin-bottom: 40px; position: relative; overflow: hidden; }
.article__cover .glyph { position: absolute; right: -10px; bottom: -30px; font-size: 12rem; font-weight: 800; color: rgba(255,255,255,.06); }
.prose > * + * { margin-top: 22px; }
.prose h2 { font-size: 1.6rem; margin-top: 44px; }
.prose h3 { font-size: 1.24rem; margin-top: 32px; }
.prose p, .prose li { font-size: 1.06rem; color: var(--ink-soft); line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; display: grid; gap: 10px; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose blockquote { border-left: 3px solid var(--accent); padding: 6px 0 6px 22px; color: var(--ink); font-size: 1.14rem; font-weight: 500; font-style: italic; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-strong); }
.prose a:hover { text-decoration-color: var(--brand); }
.prose strong { color: var(--ink); font-weight: 700; }
.disclaimer { margin-top: 48px; padding: 20px 24px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: .9rem; color: var(--muted); }

/* ==========================================================================
   Sayfa başlığı (iç sayfalar)
   ========================================================================== */
.page-head { padding: clamp(52px, 6vw, 96px) 0 clamp(36px, 4vw, 56px); background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.page-head .breadcrumb { font-size: .86rem; color: var(--muted); margin-bottom: 16px; }
.page-head .breadcrumb a:hover { color: var(--brand); }
.page-head h1 { max-width: 780px; }
.page-head p { margin-top: 18px; max-width: 640px; font-size: 1.12rem; }

/* ==========================================================================
   CTA bandı
   ========================================================================== */
.cta-band { background: linear-gradient(150deg, var(--brand), var(--brand-700)); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(177,137,79,.28), transparent 70%); }
.cta-band__inner { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.75); margin-top: 14px; font-size: 1.08rem; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-band__actions .btn { width: 100%; }

/* ==========================================================================
   İletişim
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.info-list { display: grid; gap: 26px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ii { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; flex: none; }
.info-list .ii svg { width: 22px; height: 22px; }
.info-list h4 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.info-list a, .info-list p { color: var(--ink); font-weight: 550; font-size: 1.04rem; }
.info-list a:hover { color: var(--brand); }

.form { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 650; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .98rem; color: var(--ink); background: var(--bg); transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(27,42,74,.1); }
.form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--muted); margin: 4px 0 20px; }
.form .consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--brand); }
.form .consent a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 7; margin-top: 40px; background: var(--bg-alt); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Not / placeholder rozeti (gerçek içerik gelene kadar) */
.todo { display: inline-block; background: #fff4e5; color: #92600a; border: 1px dashed #e0a94f; font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 6px; letter-spacing: .02em; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.72); padding: clamp(56px, 6vw, 84px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand__name b { color: #fff; }
.site-footer .brand__name small { color: rgba(255,255,255,.5); }
.footer-about { margin-top: 18px; font-size: .95rem; color: rgba(255,255,255,.6); max-width: 300px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .95rem; color: rgba(255,255,255,.68); transition: color .18s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; margin-bottom: 13px; color: rgba(255,255,255,.72); }
.footer-contact svg { width: 18px; height: 18px; flex: none; color: var(--accent); margin-top: 2px; }
.footer-bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .fb-links { display: flex; gap: 20px; }

/* ==========================================================================
   Reveal animasyonu
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__panel { order: -1; }
  .split, .contact-grid, .cta-band__inner { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.09); padding: 22px; }
  .stat:first-child { border-top: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band__actions .btn { width: auto; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__menu, .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__actions { gap: 0; }

  /* Mobil menü */
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg); padding: 16px 20px 24px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }
  body.nav-open .nav__menu { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav__menu a { padding: 13px 12px; font-size: 1.02rem; border-radius: 10px; }
  .nav__menu .btn { display: inline-flex; margin-top: 10px; }

  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__meta { gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   v2 — Profesyonel yükseltme (state of the art)
   ========================================================================== */

/* Scroll ilerleme çubuğu */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 300;
  background: linear-gradient(90deg, var(--accent-600), var(--accent) 60%, #e0be4e); transition: width .08s linear; }

/* Üst iletişim şeridi */
.topbar { background: var(--bg-dark); color: rgba(255,255,255,.62); font-size: .82rem; position: relative; z-index: 90; }
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 42px; }
.topbar a { color: rgba(255,255,255,.78); transition: color .18s; }
.topbar a:hover { color: #fff; }
.topbar__left { display: inline-flex; align-items: center; gap: 9px; letter-spacing: .01em; }
.topbar__left .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.topbar__right { display: inline-flex; align-items: center; gap: 24px; }
.topbar__right span, .topbar__right a { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar__right svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
@media (max-width: 820px) { .topbar { display: none; } }

/* Header — kaydırınca daralt + nav underline */
.site-header .nav { transition: height .3s var(--ease); }
.site-header.scrolled .nav { height: 64px; }
.nav__menu a:not(.btn) { position: relative; }
.nav__menu a:not(.btn)::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: center; transition: transform .28s var(--ease); }
.nav__menu a:not(.btn):hover::after, .nav__menu a.is-active::after { transform: scaleX(1); }
.nav__menu a.is-active { background: transparent; }

/* Hero — giriş animasyonu, scroll cue, ince arka plan dokusu */
.hero__content > * { opacity: 0; transform: translateY(18px); animation: heroUp .7s var(--ease) forwards; }
.hero__content > *:nth-child(1) { animation-delay: .05s; }
.hero__content > *:nth-child(2) { animation-delay: .14s; }
.hero__content > *:nth-child(3) { animation-delay: .23s; }
.hero__content > *:nth-child(4) { animation-delay: .32s; }
.hero__content > *:nth-child(5) { animation-delay: .41s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(20,23,26,.055) 1px, transparent 0);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(62% 60% at 50% 34%, #000, transparent 78%);
  mask-image: radial-gradient(62% 60% at 50% 34%, #000, transparent 78%); opacity: .45; }

.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--muted); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  animation: cueFloat 2.4s ease-in-out infinite; }
.scroll-cue svg { width: 20px; height: 20px; color: var(--accent-600); }
@keyframes cueFloat { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* Öne çıkan çalışma alanları (ana sayfa) */
.featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { position: relative; display: flex; flex-direction: column; background: var(--bg);
  border: 1px solid var(--line); border-radius: 16px; padding: 34px 30px; overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .32s, border-color .32s; }
.feature-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--accent), transparent); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .badge-featured { position: absolute; top: 22px; right: 22px; font-size: .66rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent-600); background: var(--accent-soft); padding: 5px 11px; border-radius: 999px; }
.feature-card .fc-icon { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--brand), var(--brand-600)); color: #fff; margin-bottom: 22px; transition: transform .35s var(--ease); }
.feature-card:hover .fc-icon { transform: rotate(-6deg) scale(1.06); }
.feature-card .fc-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.42rem; margin-bottom: 12px; }
.feature-card > p { font-size: .98rem; }
.feature-card .fc-list { margin-top: 20px; display: grid; gap: 11px; }
.feature-card .fc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.feature-card .fc-list li svg { width: 17px; height: 17px; color: var(--accent-600); flex: none; margin-top: 2px; }
.feature-card .fc-link { margin-top: auto; padding-top: 24px; }

/* Diğer alanlar — kompakt */
.areas-more { margin-top: 20px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
a.mini-area { display: flex; flex-direction: column; gap: 12px; padding: 20px 18px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--bg); transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
a.mini-area:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow-sm); }
a.mini-area .mi { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; transition: background .25s, color .25s; }
a.mini-area:hover .mi { background: var(--brand); color: #fff; }
a.mini-area .mi svg { width: 21px; height: 21px; }
a.mini-area b { font-size: .95rem; font-weight: 650; color: var(--ink); letter-spacing: -.01em; line-height: 1.3; }

/* Çalışma alanları sayfası — öne çıkan kart rozeti */
.card { position: relative; }
.card--featured { order: -1; border-color: var(--accent-600); box-shadow: 0 0 0 1px var(--accent-soft), var(--shadow-sm); }
.area-badge { position: absolute; top: 20px; right: 20px; font-size: .66rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-600); background: var(--accent-soft); padding: 5px 11px; border-radius: 999px; }

/* Yukarı çık düğmesi */
.to-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s; z-index: 95; border: none; cursor: pointer; }
.to-top svg { width: 20px; height: 20px; }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--brand-700); }

/* Footer altın aksan */
.site-footer { border-top: 2px solid var(--accent); }

/* Staggered reveal (JS transition-delay ile desteklenir) */

@media (max-width: 960px) {
  .featured { grid-template-columns: 1fr; }
  .areas-more { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .areas-more { grid-template-columns: 1fr 1fr; }
  /* Mobil menü — tam ekran panel */
  .nav__menu { inset: 76px 0 auto 0; height: calc(100vh - 76px); padding: 24px 24px 40px; justify-content: flex-start; gap: 4px; }
  .nav__menu a:not(.btn)::after { display: none; }
}

/* Hareket azaltma tercihi — hero içeriğini görünür tut */
@media (prefers-reduced-motion: reduce) {
  .hero__content > * { opacity: 1 !important; transform: none !important; animation: none !important; }
  .scroll-cue { animation: none !important; }
}
