/* ═══════════════════════════════════════════════
   BALGÜN HUKUK BÜROSU — style.css
   Palet: gece laciverti + antik altın + fildişi
   ═══════════════════════════════════════════════ */

:root {
  --ink: #0b1120;          /* gece laciverti */
  --ink-2: #101a30;
  --ink-3: #16223d;
  --gold: #c9a96a;
  --gold-bright: #e2c68b;
  --ivory: #f5f1e8;
  --ivory-2: #ece6d8;
  --muted: #8b93a7;
  --line: rgba(201, 169, 106, 0.25);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-dark { background: var(--ink); color: var(--ivory); }

/* ── Tipografi ─────────────────────────────── */
.section-eyebrow {
  font-size: 12px; letter-spacing: 0.32em; font-weight: 500;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 500; line-height: 1.08;
  margin-bottom: 32px;
}
.section-title em {
  font-style: italic; color: var(--gold);
}

/* ── Preloader ─────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-monogram {
  font-family: var(--serif); font-size: 84px; color: var(--gold);
  display: block; line-height: 1;
  animation: fadeUp 0.9s var(--ease) both;
}
.preloader-line {
  display: block; width: 0; height: 1px; background: var(--gold);
  margin: 18px auto; animation: lineGrow 1.1s 0.3s var(--ease) forwards;
}
.preloader-text {
  font-size: 11px; letter-spacing: 0.5em; color: var(--ivory);
  opacity: 0; animation: fadeUp 0.8s 0.6s var(--ease) forwards;
}
@keyframes lineGrow { to { width: 120px; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Nav ───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.45s, box-shadow 0.45s, transform 0.45s;
}
.nav.scrolled {
  background: rgba(11, 17, 32, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 42px; height: 42px; border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 24px; color: var(--gold);
  transition: background 0.3s, color 0.3s;
}
.nav-logo:hover .nav-logo-mark { background: var(--gold); color: var(--ink); }
.nav-logo-text {
  color: var(--ivory); font-weight: 600; font-size: 15px; letter-spacing: 0.14em;
  display: flex; flex-direction: column; line-height: 1.3;
}
.nav-logo-text em {
  font-style: normal; font-weight: 400; font-size: 9px;
  letter-spacing: 0.4em; color: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--ivory); font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; position: relative; padding: 4px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold) !important;
  padding: 10px 22px !important;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; }
.nav-burger span {
  display: block; width: 26px; height: 2px; background: var(--ivory);
  margin: 6px 0; transition: 0.35s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  background: var(--ink); color: var(--ivory);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(201,169,106,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201,169,106,0.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 75%);
}
.hero-glow {
  position: absolute; width: 900px; height: 900px;
  right: -300px; top: -250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,106,0.14) 0%, transparent 60%);
  animation: glowPulse 9s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.12); }
}
.hero-scales {
  position: absolute; right: 6vw; top: 50%;
  width: min(420px, 36vw); transform: translateY(-58%);
  opacity: 0.5;
}
.scales-draw line, .scales-draw path, .scales-draw circle, .scales-draw rect {
  stroke: var(--gold); stroke-width: 1.4; fill: none;
  stroke-dasharray: 900; stroke-dashoffset: 900;
  animation: draw 3.6s 1s var(--ease) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 160px 32px 140px;
  width: 100%;
}
/* Liman fotoğrafı: masaüstünde sağda çerçeveli, mobilde akışta */
.hero-foto {
  position: absolute; right: 32px; top: 170px;
  width: min(460px, 33vw);
  border: 1px solid var(--gold); padding: 10px;
  background: rgba(201, 169, 106, 0.06);
  opacity: 0; animation: fadeUp 1.2s 1.7s var(--ease) forwards;
}
.hero-foto img {
  display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  filter: saturate(0.88) brightness(0.94);
}
.hero-foto::after {
  content: ''; position: absolute; inset: 10px; pointer-events: none;
  background: linear-gradient(160deg, rgba(11,17,32,0.28), transparent 45%, rgba(11,17,32,0.34));
}
@media (max-width: 1024px) {
  .hero-foto {
    position: static; transform: none; width: 100%; max-width: 560px;
    margin-top: 44px;
  }
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.34em; color: var(--gold);
  margin-bottom: 34px; overflow: hidden;
}
.hero-eyebrow span {
  display: inline-block;
  animation: slideUp 1s 0.9s var(--ease) both;
}
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: 1.04; margin-bottom: 36px;
  max-width: 15ch;
}
.hero-title-line { display: block; overflow: hidden; }
.hero-title-line span {
  display: block; transform: translateY(110%);
  animation: slideUp 1.1s var(--ease) forwards;
}
.hero-title-line:nth-child(1) span { animation-delay: 1.0s; }
.hero-title-line:nth-child(2) span { animation-delay: 1.15s; }
.hero-title-line:nth-child(3) span { animation-delay: 1.3s; }
.hero-title-accent span { color: var(--gold); font-style: italic; }
@keyframes slideUp { to { transform: translateY(0); } }

.hero-sub {
  max-width: 560px; color: var(--muted); font-size: 17px; font-weight: 300;
  margin-bottom: 44px; opacity: 0;
  animation: fadeUp 1s 1.7s var(--ease) forwards;
}
.hero-actions {
  display: flex; gap: 18px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1.9s var(--ease) forwards;
}

/* ── Butonlar ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,169,106,0.25); }
.btn-ghost { border: 1px solid rgba(245,241,232,0.3); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-arrow { transition: transform 0.3s var(--ease); }
.btn-ghost:hover .btn-arrow { transform: translateX(6px); }
.btn-lg { padding: 20px 44px; font-size: 16px; }

.hero-notice {
  margin-top: 30px; font-size: 13px; font-style: italic;
  color: var(--gold); letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); padding: 10px 18px;
  background: rgba(201, 169, 106, 0.06);
  opacity: 0; animation: fadeUp 1s 2.1s var(--ease) forwards;
}
.hero-notice::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: noticePulse 2s ease-in-out infinite;
}
@keyframes noticePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ── Hero scroll + marquee ─────────────────── */
.hero-scroll {
  position: absolute; left: 32px; bottom: 120px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll-line {
  width: 1px; height: 60px; background: var(--line); position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--gold);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { to { top: 110%; } }
.hero-scroll-text {
  font-size: 10px; letter-spacing: 0.4em; color: var(--muted);
  writing-mode: vertical-rl;
}
.hero-marquee {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  border-top: 1px solid var(--line);
  background: rgba(11,17,32,0.65); backdrop-filter: blur(8px);
  overflow: hidden; padding: 18px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 48px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 12px; letter-spacing: 0.28em; color: var(--ivory); opacity: 0.75; white-space: nowrap;
}
.marquee-track i { color: var(--gold); font-style: normal; font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Reveal (scroll) ───────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Hakkımızda ────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.about-portrait { margin-top: 44px; }
.about-portrait-frame {
  width: 240px; aspect-ratio: 4/5;
  border: 1px solid var(--gold);
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-3) 100%);
  display: grid; place-items: center;
  position: relative;
}
.about-portrait-frame::after {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid var(--line);
}
.about-portrait-initials {
  font-family: var(--serif); font-size: 72px; color: var(--gold);
}
.about-portrait-caption { margin-top: 16px; display: flex; flex-direction: column; }
.about-portrait-caption strong { font-size: 15px; }
.about-portrait-caption span { font-size: 12px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.about-lead {
  font-family: var(--serif); font-size: 27px; line-height: 1.4;
  margin-bottom: 28px; font-weight: 500;
}
.about-text { color: #4a5265; font-size: 16px; margin-bottom: 56px; }
.about-text strong { color: var(--ink); }
.about-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 32px;
  border-top: 1px solid rgba(11,17,32,0.12); padding-top: 44px;
}
.stat-num, .stat-plus {
  font-family: var(--serif); font-size: 54px; color: var(--ink); line-height: 1;
}
.stat-plus { color: var(--gold); }
.stat-label {
  display: block; margin-top: 10px; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: #6a7186;
}

/* ── Çalışma Alanları ──────────────────────── */
.areas-head { margin-bottom: 64px; }
.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.area-card {
  background: var(--ink); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.45s var(--ease);
}
/* Kart opaklığı düşünce arkadaki ızgara zemini görünüyor;
   bu yüzden kartlarda yalnızca kayma animasyonu kullanılır. */
.area-card.reveal { opacity: 1; transform: translateY(28px); }
.area-card.reveal.in { transform: translateY(0); }
.area-card::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height 0.45s var(--ease);
}
.area-card:hover { background: var(--ink-3); }
.area-card:hover::before { height: 100%; }
.area-num {
  font-family: var(--serif); font-size: 15px; color: var(--gold);
  display: block; margin-bottom: 22px; letter-spacing: 0.1em;
}
.area-card h3 {
  font-family: var(--serif); font-size: 25px; font-weight: 600;
  margin-bottom: 14px; transition: color 0.3s;
}
.area-card:hover h3 { color: var(--gold-bright); }
.area-card p { font-size: 14px; color: var(--muted); font-weight: 300; margin-bottom: 24px; }
.area-tag {
  font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
  border: 1px solid var(--line); padding: 5px 12px;
}

/* ── Süreç ─────────────────────────────────── */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 56px;
}
.process-step {
  position: relative; padding-top: 28px;
  border-top: 1px solid rgba(11,17,32,0.15);
}
.process-step::before {
  content: ''; position: absolute; top: -1px; left: 0;
  width: 48px; height: 1px; background: var(--gold);
  transition: width 0.5s var(--ease);
}
.process-step:hover::before { width: 100%; }
.process-num {
  font-family: var(--serif); font-size: 40px; color: var(--gold);
  display: block; margin-bottom: 14px;
}
.process-step h3 { font-family: var(--serif); font-size: 23px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: #4a5265; }

/* ── Ekip ──────────────────────────────────── */
.team-card {
  margin-top: 56px;
  display: grid; grid-template-columns: 320px 1fr; gap: 60px;
  border: 1px solid var(--line); padding: 48px; align-items: center;
  background: linear-gradient(140deg, var(--ink-2), var(--ink));
}
.team-photo {
  aspect-ratio: 4/5; border: 1px solid var(--gold);
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 20%, var(--ink-3), var(--ink));
}
.team-photo span { font-family: var(--serif); font-size: 90px; color: var(--gold); }
.team-info h3 { font-family: var(--serif); font-size: 36px; font-weight: 600; }
.team-role {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin: 10px 0 24px;
}
.team-bio { color: var(--muted); font-weight: 300; margin-bottom: 26px; }
.team-mail {
  color: var(--gold); font-size: 14px; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line); padding-bottom: 3px;
  transition: border-color 0.3s;
}
.team-mail:hover { border-color: var(--gold); }

/* ── SSS ───────────────────────────────────── */
.faq-container { max-width: 860px; }
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid rgba(11,17,32,0.14);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  padding: 28px 48px 28px 0; position: relative;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-icon {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold);
  transition: transform 0.35s var(--ease);
}
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg) scaleY(0); }
.faq-item p {
  padding: 0 40px 28px 0; color: #4a5265; font-size: 15px;
}

/* ── İki yana yaslı metinler (Word stili) ──── */
.hero-sub, .about-lead, .about-text, .area-card p, .process-step p,
.faq-item p, .article-metin, .footer-note, .contact-list p {
  text-align: justify; text-justify: inter-word; hyphens: auto;
}

/* ── Sosyal medya bağlantıları ─────────────── */
.sosyal-linkler { display: flex; gap: 20px; flex-wrap: wrap; }
.sosyal-linkler a {
  color: var(--gold); font-size: 14px; letter-spacing: 0.08em;
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.sosyal-linkler a:hover { color: var(--gold-bright); border-color: var(--gold); }
.footer-sosyal { display: flex; gap: 18px; }
.footer-sosyal a {
  color: var(--gold); font-size: 12px; letter-spacing: 0.12em;
  border-bottom: 1px solid transparent; transition: border-color 0.3s;
}
.footer-sosyal a:hover { border-color: var(--gold); }

/* ── Makaleler (koyu zemin) ────────────────── */
.articles .faq-list { margin-top: 48px; }
.articles .faq-item { border-bottom: 1px solid var(--line); }
.articles .faq-item summary { color: var(--ivory); }
.articles .faq-item summary:hover { color: var(--gold-bright); }
.articles .faq-item .article-metin,
.articles .faq-item p { color: var(--muted); padding: 0 40px 28px 0; font-size: 15px; font-weight: 300; }
.article-tarih {
  display: inline-block; margin-left: 14px; font-family: var(--sans);
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em; color: var(--gold);
  vertical-align: middle;
}
.articles-bos {
  margin-top: 40px; color: var(--muted); font-style: italic; font-size: 16px;
  border: 1px dashed var(--line); padding: 28px; text-align: center;
}

/* ── CTA Band ──────────────────────────────── */
.cta-band {
  background: linear-gradient(120deg, #a4854a, var(--gold) 45%, var(--gold-bright));
  color: var(--ink); padding: 90px 0;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 50px);
  font-weight: 600; line-height: 1.1;
}
.cta-band em { font-style: italic; }
.cta-band .btn-gold {
  background: var(--ink); color: var(--gold-bright);
}
.cta-band .btn-gold:hover { background: var(--ink-3); box-shadow: 0 12px 30px rgba(11,17,32,0.3); }

/* ── İletişim ──────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start;
}
.contact-list { list-style: none; margin-top: 20px; }
.contact-list li {
  padding: 22px 0; border-bottom: 1px solid rgba(201,169,106,0.15);
}
.contact-label {
  font-size: 10px; letter-spacing: 0.3em; color: var(--gold);
  display: block; margin-bottom: 8px;
}
.contact-list p { color: var(--ivory-2); font-weight: 300; font-size: 16px; }
.contact-list a { border-bottom: 1px solid transparent; transition: border-color 0.3s, color 0.3s; }
.contact-list a:hover { color: var(--gold); border-color: var(--gold); }
.contact-right iframe {
  width: 100%; height: 480px; border: 1px solid var(--line);
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

/* ── Footer ────────────────────────────────── */
.footer {
  background: #070c18; color: var(--muted); padding: 60px 0;
  border-top: 1px solid var(--line);
}
.footer-inner { display: flex; flex-direction: column; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 16px; color: var(--ivory); }
.footer-brand strong { letter-spacing: 0.14em; font-size: 14px; }
.footer-brand p { font-size: 11px; letter-spacing: 0.2em; color: var(--gold); }
.footer-note { font-size: 12px; max-width: 640px; }
.footer-copy { font-size: 12px; }

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { max-width: 300px; }
  .hero-scales { opacity: 0.22; }
}
@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .container { padding: 0 22px; }
  .areas-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-scroll { display: none; }
  .nav-burger { display: block; }
  .nav-links {
    position: fixed; inset: 0; z-index: -1;
    background: rgba(11,17,32,0.97); backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; gap: 30px;
    opacity: 0; visibility: hidden; transition: opacity 0.4s;
  }
  .nav-links.open { opacity: 1; visibility: visible; z-index: 99; }
  .nav-links a { font-size: 20px; }
  .team-card { padding: 28px; }
  .cta-band-inner { justify-content: center; text-align: center; }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
