/* ==========================================================================
   TOKYOL HUKUK — Ana Stil Dosyası
   Renkler doğrudan logodan alınmıştır:
     altın #c39a4c · bordo #5a1a2b · koyu kahve #17110f
   Tipografi: Playfair Display (başlık) + Inter (metin)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Değişkenler
   -------------------------------------------------------------------------- */
:root {
  /* Koyu zemin — logodaki siyaha çalan koyu kahve tonu */
  --brand-900: #0d0908;
  --brand-800: #17110f;
  --brand-700: #241a18;
  --brand-600: #33241f;
  --brand-500: #46312a;

  /* Bordo — logodaki terazi gövdesinin rengi */
  --wine-700: #431320;
  --wine-600: #5a1a2b;
  --wine-500: #74233a;

  /* Altın — logodaki terazi rengi */
  --gold-600: #a67f36;
  --gold-500: #c39a4c;
  --gold-400: #d4b071;
  --gold-300: #e5cda2;

  --cream-100: #ffffff;
  --cream-200: #faf7f3;
  --cream-300: #f3ede4;
  --cream-400: #e7ded1;

  --ink-900: #17110f;
  --ink-700: #3b3330;
  --ink-500: #6b605b;
  --ink-400: #9a8f89;

  --line: rgba(23, 17, 15, 0.10);
  --line-strong: rgba(23, 17, 15, 0.18);
  --line-light: rgba(255, 255, 255, 0.14);

  /* Tipografi */
  --font-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-brand: 'Montserrat', 'Inter', -apple-system, 'Segoe UI', sans-serif;

  /* Ölçüler */
  --container: 1240px;
  --container-narrow: 880px;
  --header-h: 92px;
  --header-h-sm: 68px;
  --radius: 4px;
  --radius-lg: 8px;

  /* Gölge */
  --shadow-sm: 0 1px 3px rgba(23, 17, 15, .07), 0 1px 2px rgba(23, 17, 15, .05);
  --shadow-md: 0 4px 16px rgba(23, 17, 15, .09), 0 2px 6px rgba(23, 17, 15, .06);
  --shadow-lg: 0 18px 48px rgba(23, 17, 15, .16), 0 6px 16px rgba(23, 17, 15, .09);

  /* Geçiş */
  --t: 260ms cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-700);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--brand-800);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.35em; }
li { margin-bottom: .45em; }

strong { color: var(--brand-800); font-weight: 600; }

::selection { background: var(--gold-500); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   3. Yerleşim yardımcıları
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--tight { padding: clamp(48px, 5vw, 72px) 0; }
.section--cream { background: var(--cream-200); }
.section--dark { background: var(--brand-800); color: rgba(255, 255, 255, .78); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}
.section-head--center .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}
.section--dark .eyebrow { color: var(--gold-400); }

.lead { font-size: 1.075rem; color: var(--ink-500); }
.section--dark .lead { color: rgba(255, 255, 255, .72); }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* --------------------------------------------------------------------------
   4. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold-500); color: #fff; }
.btn--gold:hover { background: var(--gold-600); box-shadow: var(--shadow-md); }

.btn--dark { background: var(--brand-800); color: #fff; }
.btn--dark:hover { background: var(--brand-700); box-shadow: var(--shadow-md); }

.btn--ghost { border-color: var(--line-strong); color: var(--brand-800); background: transparent; }
.btn--ghost:hover { border-color: var(--brand-800); background: var(--brand-800); color: #fff; }

.btn--light { border-color: rgba(255, 255, 255, .45); color: #fff; background: transparent; }
.btn--light:hover { background: #fff; color: var(--brand-800); border-color: #fff; }

.btn--sm { padding: 11px 20px; font-size: .76rem; }
.btn--block { width: 100%; }

.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* Metin bağlantısı */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold-600);
  transition: gap var(--t), color var(--t);
}
.link-arrow::after { content: "→"; transition: transform var(--t); }
.link-arrow:hover { color: var(--brand-800); }
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Header / Navigasyon
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--brand-800);
  border-bottom: 1px solid var(--line-light);
  transition: height var(--t), background var(--t), box-shadow var(--t);
}
.site-header.is-transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.is-scrolled {
  height: var(--header-h-sm);
  background: var(--brand-800);
  border-bottom-color: var(--line-light);
  box-shadow: 0 2px 20px rgba(13, 9, 8, .28);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.brand { display: flex; align-items: center; gap: 14px; margin-right: auto; }
.brand__badge {
  display: grid;
  place-items: center;
  height: 54px;
  width: 62px;
  flex-shrink: 0;
  background: var(--cream-200);
  border-radius: var(--radius);
  padding: 8px 10px;
  transition: height var(--t), width var(--t), padding var(--t);
}
.brand__badge img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
.is-scrolled .brand__badge { height: 42px; width: 50px; padding: 6px 8px; }
.brand__text {
  display: flex;
  flex-direction: column;
  align-items: center;      /* HUKUK, TOKYOL'un altında ortalanır */
  gap: 5px;
}
/* Kelimeler logodan kesildiği için yazı tipi birebir logoyla aynıdır */
.brand__word { display: block; width: auto; transition: height var(--t); }
.brand__word--top { height: 19px; }
.brand__word--sub { height: 13px; }
.is-scrolled .brand__word--top { height: 16px; }
.is-scrolled .brand__word--sub { height: 11px; }
@media (max-width: 700px) {
  .brand__word--top { height: 16px; }
  .brand__word--sub { height: 11px; }
}

/* Ana menü */
.nav { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: .845rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .82);
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
  background: none;
  border: 0;
  font-family: var(--font-body);
  cursor: pointer;
}
.nav__link:hover, .nav__item:hover > .nav__link { color: #fff; }
.nav__link.is-active { color: var(--gold-400); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1px;
  background: var(--gold-500);
}
.nav__caret {
  width: 9px; height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--t);
  opacity: .7;
}
.nav__item:hover .nav__caret { transform: rotate(225deg) translate(-3px, -3px); }

/* Açılır menü */
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  list-style: none;
  margin: 0;
}
.dropdown::before {
  content: "";
  position: absolute;
  inset: -18px 0 100% 0;
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 9px 16px;
  font-size: .875rem;
  color: var(--ink-700);
  border-radius: 3px;
  transition: background var(--t), color var(--t), padding-left var(--t);
}
.dropdown a:hover {
  background: var(--cream-300);
  color: var(--brand-800);
  padding-left: 22px;
}
.dropdown--wide { min-width: 560px; columns: 2; column-gap: 6px; }
.dropdown--wide li { break-inside: avoid; }

/* Dil değiştirici */
.lang {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang__btn {
  padding: 7px 11px;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .08em;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.lang__btn:hover { color: #fff; }
.lang__btn.is-active { background: var(--gold-500); color: #fff; }

/* Hamburger */
.burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.5px;
  background: #fff;
  transition: transform var(--t), opacity var(--t);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobil menü */
.mobile-nav {
  position: fixed;
  inset: var(--header-h-sm) 0 0 0;
  z-index: 890;
  background: var(--brand-800);
  overflow-y: auto;
  padding: 24px 0 60px;
  transform: translateX(100%);
  transition: transform var(--t);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav a, .mobile-nav .m-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 24px;
  color: rgba(255, 255, 255, .86);
  font-size: 1rem;
  font-family: var(--font-body);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  cursor: pointer;
}
.mobile-nav .m-sub { display: none; background: var(--brand-900); }
.mobile-nav .m-sub.is-open { display: block; }
.mobile-nav .m-sub a { padding-left: 42px; font-size: .92rem; color: rgba(255, 255, 255, .68); }
.mobile-nav .m-toggle .nav__caret { transform: rotate(45deg); }
.mobile-nav .m-toggle.is-open .nav__caret { transform: rotate(225deg); }
.mobile-nav__cta { padding: 26px 24px; }

/* --------------------------------------------------------------------------
   6. Hero (kenarlara sıfır, tam genişlik)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-900);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 38%;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(13, 9, 8, .93) 0%, rgba(13, 9, 8, .74) 42%, rgba(13, 9, 8, .34) 100%),
    linear-gradient(to top, rgba(13, 9, 8, .7) 0%, transparent 45%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: calc(var(--header-h) + 60px) 24px 100px;
}
.hero__content { max-width: 720px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
}
.hero__eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--gold-500); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.4vw, 4.15rem);
  line-height: 1.12;
  margin-bottom: 26px;
}
.hero h1 em { font-style: normal; font-weight: 700; color: var(--gold-400); }
.hero__text {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  color: rgba(255, 255, 255, .8);
  max-width: 560px;
  margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.hero__scroll span {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: scaleY(.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Sayfa başlığı (iç sayfalar) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 78px) 0 78px;
  background: var(--brand-800);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 82% 15%, rgba(195, 154, 76, .16), transparent 52%),
    radial-gradient(circle at 15% 90%, rgba(90, 26, 43, .5), transparent 55%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255, 255, 255, .7); max-width: 640px; margin: 0; }

/* Breadcrumb */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 18px;
}
.crumbs a { color: var(--gold-400); transition: color var(--t); }
.crumbs a:hover { color: #fff; }
.crumbs span.sep { opacity: .5; }

/* --------------------------------------------------------------------------
   7. Kartlar
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  overflow: hidden;
  height: 100%;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--cream-300);
  color: var(--gold-600);
  margin-bottom: 20px;
  transition: background var(--t), color var(--t);
}
.card__icon svg { width: 25px; height: 25px; }
.card:hover .card__icon { background: var(--wine-600); color: var(--gold-400); }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { font-size: .945rem; color: var(--ink-500); margin-bottom: 18px; }
.card .link-arrow { margin-top: auto; }
.card--link:hover h3 { color: var(--gold-600); }

/* Numaralı kart (hesaplamalar) */
.card__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-400);
  margin-bottom: 12px;
  display: block;
}

/* --------------------------------------------------------------------------
   8. Ekip (Avukatlar)
   -------------------------------------------------------------------------- */
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--brand-700);
  overflow: hidden;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.4, 0, .2, 1);
  filter: grayscale(100%) contrast(1.02);
}
.team-card:hover .team-card__photo img { transform: scale(1.05); filter: grayscale(0%); }
.team-card__ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-400);
  background: linear-gradient(150deg, var(--wine-700), var(--brand-900));
}
.team-card__body { padding: 22px 24px 26px; }
.team-card__body h3 { font-size: 1.16rem; margin-bottom: 4px; }
.team-card__role {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card__meta { font-size: .88rem; color: var(--ink-500); margin-bottom: 16px; }
.team-card__links { display: flex; gap: 10px; }
.team-card__links a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink-500);
  transition: all var(--t);
}
.team-card__links a:hover { background: var(--brand-800); border-color: var(--brand-800); color: #fff; }
.team-card__links svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   9. İstatistikler
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); }
.stat { padding: 38px 24px; text-align: center; background: var(--brand-800); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: .76rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}

/* --------------------------------------------------------------------------
   10. Blog
   -------------------------------------------------------------------------- */
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform var(--t), box-shadow var(--t);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(140deg, var(--brand-700), var(--brand-900));
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  background: var(--wine-600);
  color: var(--gold-300);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.post-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card__date {
  font-size: .76rem;
  color: var(--ink-400);
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.post-card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.post-card p { font-size: .93rem; color: var(--ink-500); margin-bottom: 18px; }
.post-card .link-arrow { margin-top: auto; }

/* Makale gövdesi */
.article { max-width: 760px; }
.article h2 { margin-top: 2em; font-size: 1.75rem; }
.article h3 { margin-top: 1.7em; font-size: 1.3rem; }
.article > *:first-child { margin-top: 0; }
.article ul li::marker { color: var(--gold-500); }
.article blockquote {
  margin: 2em 0;
  padding: 4px 0 4px 26px;
  border-left: 3px solid var(--gold-500);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brand-800);
}

/* --------------------------------------------------------------------------
   11. Formlar
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--brand-800);
}
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(195, 154, 76, .16);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6675' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 42px;
}
.field .hint { font-size: .78rem; color: var(--ink-400); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c0392b; }
.field .error-msg { font-size: .78rem; color: #c0392b; display: none; }
.field.has-error .error-msg { display: block; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .85rem;
  color: var(--ink-500);
  line-height: 1.55;
  cursor: pointer;
}
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold-500); flex-shrink: 0; }
.check a { color: var(--gold-600); text-decoration: underline; }

.form-note {
  font-size: .82rem;
  color: var(--ink-400);
  padding: 14px 16px;
  background: var(--cream-300);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.form-success {
  display: none;
  padding: 20px 22px;
  background: #ecf7ef;
  border: 1px solid #b7e0c2;
  border-left: 3px solid #2e9e52;
  border-radius: var(--radius);
  color: #226b3a;
  font-size: .92rem;
}
.form-success.is-visible { display: block; }

/* Form kutusu */
.form-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   12. Randevu modal
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 9, 8, .72);
  backdrop-filter: blur(3px);
  animation: fadeIn 200ms ease;
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  margin: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: modalIn 280ms cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(22px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__head {
  padding: 26px 30px;
  background: var(--brand-800);
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal__head h3 { color: #fff; margin: 0 0 4px; font-size: 1.35rem; }
.modal__head p { font-size: .87rem; color: rgba(255, 255, 255, .68); margin: 0; }
.modal__close {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .1);
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--t);
}
.modal__close:hover { background: rgba(255, 255, 255, .22); }
.modal__body { padding: 30px; }

/* --------------------------------------------------------------------------
   13. WhatsApp yüzen buton
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0;
  height: 58px;
  padding: 0 17px;
  background: #25d366;
  color: #fff;
  border-radius: 29px;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .42);
  transition: gap var(--t), padding var(--t), transform var(--t);
  overflow: hidden;
}
.wa-float svg { width: 27px; height: 27px; flex-shrink: 0; }
.wa-float span {
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transition: max-width 320ms ease, opacity var(--t), margin var(--t);
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float:hover span { max-width: 220px; opacity: 1; margin-left: 11px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 29px;
  border: 2px solid #25d366;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* --------------------------------------------------------------------------
   14. CTA şeridi
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding: clamp(56px, 7vw, 92px) 0;
  background: var(--brand-800);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 82%, rgba(90, 26, 43, .55), transparent 52%),
    radial-gradient(circle at 88% 12%, rgba(195, 154, 76, .16), transparent 46%);
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, .72); margin: 0; max-width: 520px; }
.cta-band__actions { display: flex; gap: 13px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   15. İki sütun (görsel + metin)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.split__media { position: relative; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}
.split__media::after {
  content: "";
  position: absolute;
  right: -18px; bottom: -18px;
  width: 55%; height: 55%;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius);
  z-index: -1;
}
.split__ph {
  position: absolute;
  inset: 0;
  display: none;          /* görsel yüklenemezse main.js grid yapar */
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--brand-700), var(--brand-900));
  place-items: center;
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
}

/* Değerler listesi */
.value-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.value-list li { display: flex; gap: 15px; margin: 0; }
.value-list__ico {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--cream-300);
  color: var(--gold-600);
  border-radius: var(--radius);
}
.value-list__ico svg { width: 19px; height: 19px; }
.value-list h4 { margin: 0 0 3px; font-family: var(--font-body); font-size: .98rem; font-weight: 600; color: var(--brand-800); }
.value-list p { margin: 0; font-size: .9rem; color: var(--ink-500); }

/* --------------------------------------------------------------------------
   16. Yan menü (alt sayfalar)
   -------------------------------------------------------------------------- */
.with-side { display: grid; grid-template-columns: 1fr 320px; gap: clamp(36px, 5vw, 64px); align-items: start; }
.side { position: sticky; top: calc(var(--header-h-sm) + 26px); display: grid; gap: 24px; }
.side-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.side-box--dark { background: var(--brand-800); border-color: var(--brand-800); }
.side-box--dark h4, .side-box--dark p { color: #fff; }
.side-box--dark p { color: rgba(255, 255, 255, .72); font-size: .9rem; }
.side-box h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
}
.side-nav { list-style: none; padding: 0; margin: 0; }
.side-nav li { margin: 0; border-bottom: 1px solid var(--line); }
.side-nav li:last-child { border-bottom: 0; }
.side-nav a {
  display: block;
  padding: 11px 12px 11px 0;
  font-size: .91rem;
  color: var(--ink-700);
  transition: color var(--t), padding-left var(--t);
}
.side-nav a:hover { color: var(--gold-600); padding-left: 8px; }
.side-nav a.is-active { color: var(--gold-600); font-weight: 600; }

/* --------------------------------------------------------------------------
   17. Hesaplama aracı kutusu
   -------------------------------------------------------------------------- */
.calc {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.calc__form { padding: clamp(24px, 3vw, 36px); }
.calc__result {
  padding: clamp(24px, 3vw, 36px);
  background: var(--brand-800);
  color: rgba(255, 255, 255, .8);
  display: flex;
  flex-direction: column;
}
.calc__result h4 {
  font-family: var(--font-body);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.calc__amount {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.calc__caption { font-size: .84rem; color: rgba(255, 255, 255, .6); }
.calc__lines { list-style: none; padding: 0; margin: 24px 0 0; border-top: 1px solid var(--line-light); }
.calc__lines li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: .89rem;
  margin: 0;
}
.calc__lines b { color: #fff; font-weight: 600; }
.calc__placeholder { color: rgba(255, 255, 255, .5); font-size: .92rem; }
.calc__disclaimer {
  margin-top: 26px;
  font-size: .78rem;
  color: var(--ink-400);
  line-height: 1.6;
}
.badge-soon {
  display: inline-block;
  padding: 4px 11px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: var(--cream-300);
  border-radius: 2px;
  margin-left: 10px;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   18. Akordeon (SSS)
   -------------------------------------------------------------------------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--brand-800);
  text-align: left;
}
.acc__btn::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-500);
  transition: transform var(--t);
  flex-shrink: 0;
}
.acc__item.is-open .acc__btn::after { transform: rotate(45deg); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height 340ms ease; }
.acc__panel-inner { padding: 0 0 24px; color: var(--ink-500); font-size: .95rem; max-width: 780px; }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--brand-900); color: rgba(255, 255, 255, .66); padding: clamp(52px, 6vw, 80px) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 52px;
}
.footer-brand { margin-bottom: 22px; }
.footer-brand img { height: 104px; width: auto; }
.site-footer p { font-size: .9rem; line-height: 1.7; }
.footer-title {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 11px; }
.footer-list a { font-size: .9rem; transition: color var(--t), padding-left var(--t); display: inline-block; }
.footer-list a:hover { color: var(--gold-400); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; margin: 0; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-500); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  transition: all var(--t);
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255, 255, 255, .48);
}
.footer-bottom a:hover { color: var(--gold-400); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   20. Animasyon (görünürlük)
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.4, 0, .2, 1), transform 700ms cubic-bezier(.4, 0, .2, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   21. Duyarlı (Responsive)
   -------------------------------------------------------------------------- */
@media (max-width: 1120px) {
  .nav__link { padding: 10px 10px; font-size: .8rem; }
  .brand__word--sub { display: none; }
}

@media (max-width: 980px) {
  :root { --header-h: 68px; }
  .nav, .header-desktop-cta { display: none; }
  .burger { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 460px; }
  .with-side { grid-template-columns: 1fr; }
  .side { position: static; }
  .calc { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { padding-inline: 20px; }
  .header-inner { padding-inline: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .hero__inner { padding: calc(var(--header-h) + 44px) 20px 84px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { right: 16px; bottom: 16px; height: 54px; }
  .modal { padding: 0; align-items: stretch; }
  .modal__dialog { max-width: none; border-radius: 0; min-height: 100%; }
  .page-hero { padding: calc(var(--header-h) + 48px) 0 48px; }
}

/* Yazdırma */
@media print {
  .site-header, .mobile-nav, .wa-float, .cta-band, .site-footer, .modal { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .hero { min-height: auto; }
}

/* --------------------------------------------------------------------------
   22. Hesaplama aracı — form ve sonuç detayları
   -------------------------------------------------------------------------- */
.calc__title { font-size: 1.25rem; margin-bottom: 22px; }
.calc-fields { gap: 16px; }
.calc-fields .field label { font-size: .82rem; }
.calc-fields .check { margin: 2px 0 4px; }
.calc__caption { font-size: .85rem; color: rgba(255, 255, 255, .6); margin-bottom: 22px; }
.calc__lines { margin-top: 0; }
.calc__lines li:last-child { border-bottom: 0; }
.calc__lines li span { color: rgba(255, 255, 255, .72); }
.calc__lines b { text-align: right; white-space: nowrap; }
.calc__note-wrap { display: block !important; padding: 18px 0 0 !important; border-bottom: 0 !important; }
.calc__notes { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.calc__notes li {
  position: relative;
  padding-left: 16px;
  font-size: .8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .55);
  margin: 0;
}
.calc__notes li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
}
.calc__result { max-height: none; }
@media (min-width: 981px) {
  .calc__result { position: sticky; top: calc(var(--header-h-sm) + 26px); align-self: start; }
}

/* --------------------------------------------------------------------------
   23. Makale içi tablo ve bilgilendirme kutusu
   -------------------------------------------------------------------------- */
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8em 0;
  font-size: .93rem;
  display: block;
  overflow-x: auto;
}
.article table thead th {
  background: var(--brand-800);
  color: #fff;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
}
.article table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.article table tbody tr:nth-child(even) { background: var(--cream-200); }
.article table tbody tr:last-child td { border-bottom: 0; }

.article ol { padding-left: 1.35em; }
.article ol li::marker { color: var(--gold-600); font-weight: 600; }

.article-note {
  margin-top: 3em;
  padding: 20px 24px;
  background: var(--cream-300);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .86rem;
  line-height: 1.65;
  color: var(--ink-500);
}
.article-note strong { color: var(--brand-800); }

.article .acc { margin-top: 1.2em; }

/* --------------------------------------------------------------------------
   24. Süreç adımları (Hakkımızda)
   -------------------------------------------------------------------------- */
.step { position: relative; padding-top: 6px; }
.step__no {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: rgba(255, 255, 255, .62); margin: 0; }
.step::before {
  content: "";
  position: absolute;
  top: 14px; left: 46px; right: -26px;
  height: 1px;
  background: var(--line-light);
}
.step:last-child::before { display: none; }
@media (max-width: 980px) { .step::before { display: none; } }
