/* ==========================================================
   SÜT HUKUK & DANIŞMANLIK
   Modern Counsel · 2026
   ========================================================== */

:root {
  /* Renk paleti — klasik hukuk bürosu */
  --navy:        #0A1F3A;
  --navy-deep:   #061327;
  --navy-soft:   #1E3354;
  --navy-light:  #2C4670;
  --gold:        #C9A961;
  --gold-deep:   #A08442;
  --gold-soft:   #E0C68A;
  --cream:       #FAF7F0;
  --cream-2:     #F2EDE0;
  --paper:       #FFFFFF;
  --ink:         #0F1419;
  --text:        #1F2937;
  --text-soft:   #4B5563;
  --muted:       #6B7280;
  --border:      #E5E0D5;
  --border-soft: #F0EBE0;

  /* Tipografi */
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing & misc */
  --container:   1280px;
  --radius:      4px;
  --shadow-sm:   0 1px 2px rgba(10,31,58,.06);
  --shadow:      0 4px 24px -8px rgba(10,31,58,.12);
  --shadow-lg:   0 24px 64px -24px rgba(10,31,58,.28);
  --ease:        cubic-bezier(.22,.61,.36,1);
  --t:           .35s var(--ease);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ICON SIZING — KÜRESEL KURAL: SVG'ler ölçülebilir kalsın */
svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke: currentColor;
}
.icon-sm { width: 14px; height: 14px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 36px; height: 36px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
h3 { font-size: clamp(1.375rem, 2vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 1.4vw, 1.375rem); }
h5 { font-size: 0.875rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

p { color: var(--text-soft); line-height: 1.7; }

.gold { color: var(--gold-deep); }
.italic { font-style: italic; }

/* Yardımcı tipografi */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title .italic, .section-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 640px;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--paper);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--paper);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--paper);
}
.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}
.btn-ghost {
  padding: 8px 0;
  background: transparent;
  color: var(--navy);
  border: none;
  border-bottom: 1.5px solid var(--navy);
  border-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.btn-ghost:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(201,169,97,0.15);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar-info a, .topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(250, 247, 240, 0.85);
  font-weight: 400;
}
.topbar-info a:hover { color: var(--gold-soft); }
.topbar-info svg { width: 13px; height: 13px; color: var(--gold); }
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--gold-soft);
}
.topbar-cta strong { color: var(--paper); font-weight: 600; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.logo-image { max-height: 48px; width: auto; display: block; }
@media (max-width: 760px) { .logo-image { max-height: 38px; } }
.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  border: 2px solid var(--navy);
  position: relative;
}
.logo-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201,169,97,0.3);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.logo-title span { color: var(--gold-deep); }
.logo-sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  letter-spacing: 0.01em;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t);
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--gold-deep); }
.nav-menu > li > a:hover::after, .nav-menu > li > a.active::after { transform: scaleX(1); }

.has-dropdown > a::before {
  content: '▾';
  display: inline-block;
  margin-left: 6px;
  font-size: 10px;
  color: var(--muted);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t);
  z-index: 50;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 500;
  border-left: 2px solid transparent;
  transition: all var(--t);
}
.dropdown a:hover {
  background: var(--cream);
  border-left-color: var(--gold);
  color: var(--gold-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--t);
  border: 1.5px solid var(--navy);
}
.nav-cta:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--paper); }
.nav-cta svg { width: 14px; height: 14px; }

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: relative;
}
.mobile-toggle span::before, .mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}
.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 5px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  color: var(--paper);
  z-index: 200;
  padding: 0;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%);
  z-index: 1;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: var(--navy);
}
.mobile-menu-header .logo-title { color: var(--paper); font-size: 18px; }
.mobile-menu-header .logo-title span { color: var(--gold); }
.mobile-menu-header .logo-sub { color: rgba(255,255,255,0.5); font-size: 9px; }
.mobile-menu-close {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  position: static;
}
.mobile-menu-close svg { width: 16px; height: 16px; stroke-width: 2; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 16px 22px 28px;
  gap: 0;
}
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--paper);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: padding-left var(--t), color var(--t);
}
.mobile-menu nav a::after {
  content: '→';
  color: var(--gold);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--t);
}
.mobile-menu nav a:hover,
.mobile-menu nav a:active,
.mobile-menu nav a.active {
  color: var(--gold);
  padding-left: 4px;
}
.mobile-menu nav a.active::after { opacity: 1; transform: translateX(0); }
.mobile-menu nav a:hover::after { opacity: 1; transform: translateX(0); }
.mobile-menu-cta {
  padding: 22px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-cta .btn {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  margin-bottom: 14px;
}
.mobile-menu-cta .btn:hover { background: var(--paper); border-color: var(--paper); }
.mobile-menu-footer {
  margin-top: auto;
  padding: 20px 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-footer a {
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu-footer a:hover { color: var(--gold); }
.mobile-menu-footer svg { width: 14px; height: 14px; color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 70%, var(--navy-soft) 100%);
  color: var(--paper);
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201,169,97,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(44,70,112,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,97,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.6;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border: 1px solid rgba(201,169,97,0.4);
  background: rgba(201,169,97,0.08);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero h1 em, .hero h1 .italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(250,247,240,0.85);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.hero .btn-primary:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--navy);
}

.hero-trust {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(250,247,240,0.8);
}
.hero-trust-item svg { color: var(--gold); width: 16px; height: 16px; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 620px;
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.9);
  position: relative;
  z-index: 1;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 2px solid var(--gold);
  z-index: 0;
}

.hero-card {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--paper);
  color: var(--navy);
  padding: 28px 32px;
  z-index: 3;
  max-width: 280px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
}
.hero-card-num {
  font-family: var(--serif);
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.hero-card-num sup { font-size: 1rem; color: var(--gold-deep); margin-left: 2px; }
.hero-card-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* ===== METRICS BAR ===== */
.metrics {
  background: var(--cream);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.metric:last-child { border-right: none; }
.metric-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.metric-num em { color: var(--gold-deep); font-style: italic; }
.metric-label {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-visual::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  width: calc(100% + 32px);
  height: calc(100% - 16px);
  background: var(--gold);
  z-index: -1;
}
.about-quote-box {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--navy);
  color: var(--paper);
  padding: 32px;
  max-width: 320px;
  z-index: 2;
}
.about-quote-box::before {
  content: '"';
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.about-quote-box p {
  color: rgba(250,247,240,0.95);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
}
.about-content h2 { margin-bottom: 28px; }
.about-content p { margin-bottom: 18px; }
.about-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--cream-2);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.about-feature-icon svg { width: 20px; height: 20px; }
.about-feature-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 600;
}
.about-feature-text span {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ===== SECTION HEAD ===== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head.center .section-desc { margin: 0 auto; }
.section-head-left { max-width: 720px; }

/* ===== PRACTICE AREAS ===== */
.practice { background: var(--cream); }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.practice-card {
  background: var(--paper);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--t);
  cursor: pointer;
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-card-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--t);
}
.practice-card:hover .practice-card-icon {
  background: var(--navy);
  color: var(--gold);
}
.practice-card-icon svg { width: 26px; height: 26px; stroke-width: 1.6; }
.practice-card h3 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.2;
}
.practice-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.practice-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-transform: uppercase;
}
.practice-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t);
}
.practice-card:hover .practice-card-link { color: var(--gold-deep); }
.practice-card:hover .practice-card-link svg { transform: translateX(4px); }

/* ===== APPROACH / PROCESS ===== */
.approach {
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(201,169,97,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.approach h2 { color: var(--paper); }
.approach .section-desc { color: rgba(250,247,240,0.75); }
.approach .eyebrow { color: var(--gold-soft); }
.approach .eyebrow::before { background: var(--gold); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.process-step {
  position: relative;
  padding: 32px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.process-step:first-child { border-top-color: var(--gold); }
.process-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.process-step h4 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process-step p {
  color: rgba(250,247,240,0.7);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ===== TEAM PREVIEW ===== */
.team { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--paper);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.team-portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(201,169,97,0.25), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(201,169,97,0.15), transparent 50%);
}
.team-initials {
  font-family: var(--serif);
  font-size: 90px;
  font-weight: 500;
  color: var(--gold);
  position: relative;
  z-index: 2;
  letter-spacing: -0.04em;
}
.team-portrait-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.team-portrait-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
}
.team-info { padding: 28px; }
.team-info h3 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-info p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-soft);
}
.team-meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--cream-2);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--paper); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  padding: 36px 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
}
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--serif);
}
.testimonial-name { font-weight: 600; color: var(--navy); font-size: 14.5px; }
.testimonial-type { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ===== INSIGHTS / BLOG ===== */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.insight-card {
  background: var(--paper);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--t);
  cursor: pointer;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.insight-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.insight-card:hover .insight-img img { transform: scale(1.06); }
.insight-img-fallback {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  font-weight: 500;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
}
.insight-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  background: var(--paper);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.insight-body { padding: 28px; }
.insight-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.insight-meta .dot { color: var(--gold); }
.insight-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color var(--t);
}
.insight-card:hover h3 { color: var(--gold-deep); }
.insight-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.insight-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
}

/* ===== FAQ ===== */
.faq-section { background: var(--cream); }
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: 100px;
}
.faq-aside .eyebrow { margin-bottom: 24px; }
.faq-aside h2 { margin-bottom: 24px; }
.faq-aside p { font-size: 1.0625rem; line-height: 1.7; }
.faq-aside .btn { margin-top: 32px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  transition: all var(--t);
}
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  line-height: 1.35;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--cream);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  transition: all var(--t);
  border-radius: 50%;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}
.faq-answer-inner p { margin-bottom: 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner ul {
  list-style: none;
  margin: 12px 0;
  padding: 0;
}
.faq-answer-inner ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-size: 14.5px;
}
.faq-answer-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201,169,97,0.2), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(44,70,112,0.5), transparent 70%);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.cta-band h2 em { color: var(--gold); font-style: italic; }
.cta-band p {
  color: rgba(250,247,240,0.85);
  margin-top: 20px;
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 540px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,97,0.3);
  padding: 32px;
}
.cta-contact-card h4 {
  color: var(--paper);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cta-contact-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.cta-contact-card a:last-child { margin-bottom: 0; }
.cta-contact-card a svg { width: 20px; height: 20px; color: var(--gold-soft); }
.cta-contact-card a:hover { color: var(--paper); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--navy);
  color: var(--paper);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201,169,97,0.12), transparent 50%),
    linear-gradient(180deg, transparent 0%, var(--navy-deep) 100%);
}
.page-header-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(250,247,240,0.7);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(250,247,240,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(250,247,240,0.4); }
.breadcrumb .current { color: var(--gold); font-weight: 500; }
.page-header h1 {
  color: var(--paper);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 900px;
}
.page-header h1 em { color: var(--gold); font-style: italic; }
.page-header .lead {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: rgba(250,247,240,0.85);
  max-width: 720px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-hero-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
}
.about-hero-content h2 { margin-bottom: 28px; }
.about-hero-content p { margin-bottom: 20px; font-size: 1.0625rem; line-height: 1.75; }

.philosophy {
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 5%;
  font-family: var(--serif);
  font-size: 360px;
  color: rgba(201,169,97,0.1);
  line-height: 0.8;
  pointer-events: none;
  font-weight: 500;
}
.philosophy-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--paper);
  letter-spacing: -0.005em;
}
.philosophy-quote em { color: var(--gold); }
.philosophy-attribution {
  margin-top: 36px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.timeline-item {
  padding: 36px 24px 0 24px;
  border-top: 2px solid var(--border);
  position: relative;
}
.timeline-item:first-child { border-top-color: var(--gold); }
.timeline-item::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 24px;
  width: 14px;
  height: 14px;
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: 50%;
}
.timeline-item:first-child::before { border-color: var(--gold); background: var(--gold); }
.timeline-year {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1;
}
.timeline-item h4 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}
.timeline-item p { font-size: 14px; line-height: 1.6; color: var(--text-soft); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--border);
  transition: all var(--t);
}
.value-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.value-card-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.value-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.value-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-soft); }

/* ===== PRACTICE DETAIL PAGE ===== */
.practice-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.practice-sidebar {
  position: sticky;
  top: 100px;
  background: var(--cream);
  padding: 28px;
  border-top: 3px solid var(--gold);
}
.practice-sidebar h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.practice-sidebar ul { display: flex; flex-direction: column; gap: 0; }
.practice-sidebar ul li {
  border-bottom: 1px solid var(--border-soft);
}
.practice-sidebar ul li:last-child { border-bottom: none; }
.practice-sidebar ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.practice-sidebar ul li a:hover { color: var(--gold-deep); }
.practice-sidebar ul li a svg { width: 12px; height: 12px; opacity: 0.5; }

.practice-detail-list { display: flex; flex-direction: column; gap: 0; }
.practice-row {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 28px;
  align-items: start;
  transition: all var(--t);
}
.practice-row:first-child { padding-top: 0; }
.practice-row:hover { padding-left: 12px; }
.practice-row-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  padding-top: 6px;
}
.practice-row-body h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.practice-row-body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.practice-row-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.practice-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--cream);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
}
.practice-row-arrow {
  width: 44px;
  height: 44px;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--t);
  flex-shrink: 0;
}
.practice-row:hover .practice-row-arrow {
  background: var(--gold);
  color: var(--navy);
}
.practice-row-arrow svg { width: 16px; height: 16px; }

/* ===== CASES / DAVA REHBERİ PAGE ===== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.case-card {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  transition: all var(--t);
}
.case-card:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow);
}
.case-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.case-card-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.case-card-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.case-card-head h3 {
  font-size: 1.375rem;
  margin: 0;
  font-weight: 600;
}
.case-card-body p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.case-card-list {
  margin-bottom: 20px;
}
.case-card-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.case-card-list li:last-child { border-bottom: none; }
.case-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.case-card-list li strong { color: var(--navy); font-weight: 600; }
.case-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.case-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}
.case-duration svg { width: 14px; height: 14px; color: var(--gold-deep); }
.case-duration strong { color: var(--navy); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 4px; }
.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-text h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.contact-info-text p, .contact-info-text a {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}
.contact-info-text a:hover { color: var(--gold-deep); }
.contact-info-text small {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 400;
  margin-top: 4px;
}

.emergency-card {
  margin-top: 32px;
  padding: 24px;
  background: var(--navy);
  color: var(--paper);
  border-left: 4px solid var(--gold);
}
.emergency-card h5 { color: var(--gold); margin-bottom: 8px; }
.emergency-card p { color: rgba(250,247,240,0.8); font-size: 14px; margin-bottom: 12px; }
.emergency-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
}
.emergency-card a svg { width: 18px; height: 18px; }

.contact-form-wrap {
  background: var(--cream);
  padding: 48px;
  border-top: 4px solid var(--gold);
}
.contact-form-wrap h3 { margin-bottom: 8px; font-weight: 600; }
.contact-form-wrap > p {
  font-size: 14.5px;
  color: var(--text-soft);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  border-radius: 3px;
  font-family: var(--sans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236B7280' stroke-width='2'%3e%3cpath d='M3 5l3 3 3-3'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.form-checkbox input[type=checkbox] {
  width: 16px; height: 16px;
  margin-top: 3px;
  accent-color: var(--gold-deep);
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  margin: 0;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--t);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: var(--gold-deep); }
.form-submit svg { width: 16px; height: 16px; }
.form-success {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(201,169,97,0.15);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  color: var(--navy);
}

.map-wrap {
  margin-top: 80px;
  aspect-ratio: 21 / 8;
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3); }

/* ===== BLOG ===== */
.blog-featured {
  background: var(--cream);
}
.blog-featured-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.blog-featured-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blog-featured h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 18px;
}
.blog-featured p { font-size: 1.0625rem; line-height: 1.65; margin-bottom: 24px; }
.blog-featured-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-filter {
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--t);
}
.blog-filter:hover { border-color: var(--gold); color: var(--gold-deep); }
.blog-filter.active { background: var(--navy); color: var(--paper); border-color: var(--navy); }

.pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 500;
  background: var(--paper);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold-deep); }
.pagination a.active {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 24px; }
.footer-brand .logo-title { color: var(--paper); }
.footer-brand .logo-title span { color: var(--gold); }
.footer-brand .logo-sub { color: rgba(250,247,240,0.6); }
.footer-brand p {
  color: rgba(250,247,240,0.7);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--gold-soft);
  border-radius: 50%;
  transition: all var(--t);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-social svg { width: 16px; height: 16px; }
.footer h5 {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer ul li { margin-bottom: 12px; }
.footer ul li a {
  color: rgba(250,247,240,0.75);
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-row svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-contact-row > div {
  font-size: 14px;
  color: rgba(250,247,240,0.8);
  line-height: 1.55;
}
.footer-contact-row strong {
  display: block;
  color: var(--paper);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 13px;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(250,247,240,0.5);
}
.footer-bottom a { color: rgba(250,247,240,0.6); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s var(--ease) both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE BREAKPOINTS
   1280  · Desktop refinement
   1100  · Tablet landscape & küçük laptop
    920  · Tablet portrait
    760  · Phone landscape
    520  · Phone portrait
    360  · Small phone
   ============================================ */

/* ===== Util responsive helpers (inline grid yerine kullanılır) ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-asym-l { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.grid-asym-r { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start; }

@media (max-width: 1100px) {
  .hero-inner, .about-grid, .cta-grid, .contact-grid,
  .faq-wrap, .blog-featured-grid, .about-hero { grid-template-columns: 1fr; gap: 56px; }
  .practice-grid, .insights-grid, .team-grid,
  .testimonial-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .practice-layout { grid-template-columns: 1fr; gap: 40px; }
  .practice-sidebar { position: static; }
  .faq-aside { position: static; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .metric { padding: 16px; border-right: 1px solid var(--border); }
  .metric:nth-child(2) { border-right: none; }

  /* Hero visual: aspect-ratio'yu img'a taşı, hero-card içeriden çıksın */
  .hero-visual {
    aspect-ratio: auto;
    max-height: none;
    height: auto;
  }
  .hero-visual > img {
    aspect-ratio: 16/11;
    max-height: 460px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .hero-visual::before { inset: -12px -12px 12px 12px; }
  .hero-card {
    position: static !important;
    inset: auto !important;
    margin-top: 24px;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }

  .about-visual::before { display: none; }
  .grid-asym-l, .grid-asym-r { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .nav-cta { padding: 10px 16px; font-size: 12px; }
  .topbar-info { gap: 14px; font-size: 12px; }
  .topbar-info span:last-child { display: none; }

  .hero { padding: 56px 0 72px; }
  .hero-trust { gap: 14px; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 760px) {
  .container { padding: 0 18px; }
  section { padding: 56px 0; }

  /* Top bar — kompakt */
  .topbar { padding: 8px 0; font-size: 11.5px; }
  .topbar-inner { gap: 12px; }
  .topbar-info { gap: 10px; font-size: 11.5px; }
  .topbar-info > * { gap: 6px; }
  .topbar-info a:nth-of-type(2) { display: none; } /* email kalksın */
  .topbar-info svg { width: 11px; height: 11px; }
  .topbar-cta { display: none; }

  /* Nav — kompakt */
  .nav-inner { padding: 14px 0; gap: 16px; }
  .logo-icon { width: 38px; height: 38px; font-size: 19px; }
  .logo-title { font-size: 18px; }
  .logo-sub { font-size: 9px; letter-spacing: 0.15em; }
  .nav-cta { display: none; }

  /* Typography */
  h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  h2 { font-size: clamp(1.625rem, 6vw, 2.25rem); }
  h3 { font-size: clamp(1.25rem, 5vw, 1.625rem); }
  .section-title { font-size: clamp(1.75rem, 6vw, 2.5rem); margin-bottom: 16px; }
  .section-desc { font-size: 0.9375rem; }
  p { font-size: 15px; line-height: 1.65; }
  .eyebrow { font-size: 10.5px; margin-bottom: 14px; }
  .eyebrow::before { width: 22px; }

  /* Sections */
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }

  /* Hero */
  .hero { padding: 40px 0 56px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.875rem); margin-bottom: 20px; line-height: 1.08; }
  .hero-desc { font-size: 1rem; margin-bottom: 28px; }
  .hero-eyebrow { padding: 6px 14px; font-size: 11px; margin-bottom: 22px; }
  .hero-actions { gap: 12px; width: 100%; }
  .hero-actions .btn { flex: 1; min-width: 0; padding: 14px 16px; font-size: 13px; }
  .hero-trust { margin-top: 32px; padding-top: 22px; gap: 12px 18px; }
  .hero-trust-item { font-size: 12px; gap: 6px; }
  .hero-trust-item svg { width: 14px; height: 14px; }
  .hero-visual { min-height: 0; aspect-ratio: auto; max-height: none; height: auto; }
  .hero-visual > img { aspect-ratio: 16/11; max-height: 340px; }
  .hero-visual::before { inset: -8px -8px 8px 8px; }
  .hero-card { padding: 18px 20px; max-width: 100%; margin-top: 18px; width: 100%; }
  .hero-card-num { font-size: 2.25rem; }
  .hero-card-label { font-size: 11.5px; }

  /* Metrics */
  .metrics { padding: 40px 0; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .metric { padding: 12px 16px; }
  .metric-num { font-size: clamp(2rem, 7vw, 2.5rem); margin-bottom: 8px; }
  .metric-label { font-size: 11px; letter-spacing: 0.04em; }

  /* About */
  .about-features { grid-template-columns: 1fr; }
  .about-feature { gap: 12px; }
  .about-feature-icon { width: 36px; height: 36px; }
  .about-feature-icon svg { width: 18px; height: 18px; }
  .about-feature-text strong { font-size: 1rem; }
  .about-feature-text span { font-size: 13px; }
  .about-quote-box { padding: 24px; margin-top: 16px; }
  .about-quote-box p { font-size: 0.9375rem; line-height: 1.55; }
  .about-quote-box::before { font-size: 60px; margin-bottom: 8px; }

  /* Buttons */
  .btn { padding: 14px 20px; font-size: 13px; }
  .btn-ghost { padding: 6px 0; font-size: 11.5px; }

  /* Practice */
  .practice-grid { grid-template-columns: 1fr; gap: 16px; }
  .practice-card { padding: 28px 24px; }
  .practice-card-icon { width: 48px; height: 48px; margin-bottom: 20px; }
  .practice-card h3 { font-size: 1.1875rem; margin-bottom: 12px; }
  .practice-card p { font-size: 14px; margin-bottom: 18px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-step { padding: 24px 16px 0; }
  .process-num { font-size: 0.875rem; margin-bottom: 12px; }
  .process-step h4 { font-size: 1.1875rem; }
  .process-step p { font-size: 14px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; gap: 24px; }
  .team-portrait { aspect-ratio: 16/11; }
  .team-initials { font-size: 80px; }
  .team-info { padding: 24px 22px; }
  .team-info h3 { font-size: 1.25rem; }
  .team-role { font-size: 11.5px; margin-bottom: 12px; }
  .team-info p { font-size: 14px; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { padding: 28px 24px; }
  .testimonial-quote { font-size: 0.9375rem; margin-bottom: 18px; }

  /* Insights / Blog */
  .insights-grid { grid-template-columns: 1fr; gap: 24px; }
  .insight-body { padding: 22px 20px 24px; }
  .insight-card h3 { font-size: 1.125rem; margin-bottom: 10px; }
  .insight-card p { font-size: 13.5px; margin-bottom: 14px; }
  .insight-meta { font-size: 11px; gap: 10px; }
  .insight-img-fallback { font-size: 44px; }

  /* CTA */
  .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-band h2 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .cta-band p { font-size: 0.9375rem; margin-top: 16px; }
  .cta-band { padding: 64px 0; }
  .cta-contact-card { padding: 24px; }
  .cta-contact-card a { font-size: 1.125rem; }

  /* Page Header */
  .page-header { padding: 48px 0 56px; }
  .page-header h1 { font-size: clamp(2rem, 8vw, 2.75rem); margin-bottom: 16px; }
  .page-header .lead { font-size: 1rem; }
  .breadcrumb { font-size: 12px; margin-bottom: 20px; }

  /* Practice detail rows */
  .practice-row { grid-template-columns: 44px 1fr; gap: 14px; padding: 24px 0; }
  .practice-row:hover { padding-left: 0; padding-right: 0; }
  .practice-row-num { font-size: 1.125rem; padding-top: 0; }
  .practice-row-body h3 { font-size: 1.1875rem; margin-bottom: 10px; }
  .practice-row-body p { font-size: 14px; margin-bottom: 12px; }
  .practice-row-arrow { display: none; }
  .practice-tag { font-size: 11px; padding: 4px 10px; }
  .practice-sidebar { padding: 22px; margin-bottom: 16px; }
  .practice-sidebar h5 { font-size: 11px; margin-bottom: 14px; padding-bottom: 12px; }
  .practice-sidebar ul li a { padding: 10px 0; font-size: 13.5px; }

  /* Case cards (Dava rehberi) */
  .case-grid { grid-template-columns: 1fr; gap: 16px; }
  .case-card { padding: 24px 22px; }
  .case-card-icon { width: 44px; height: 44px; }
  .case-card-icon svg { width: 20px; height: 20px; }
  .case-card-head h3 { font-size: 1.1875rem; }
  .case-card-body p { font-size: 14px; }
  .case-card-list li { font-size: 13.5px; padding: 7px 0 7px 22px; }
  .case-card-foot { gap: 10px; padding-top: 16px; }
  .case-duration { font-size: 12px; }

  /* Values & generic cards */
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-card { padding: 26px 22px; }
  .value-card-num { font-size: 1.75rem; margin-bottom: 14px; }
  .value-card h4 { font-size: 1.125rem; }
  .value-card p { font-size: 14px; }

  /* Timeline */
  .timeline { grid-template-columns: 1fr; gap: 12px; }
  .timeline-item { padding: 24px 0 0; border-top: none; border-left: 2px solid var(--border); padding-left: 24px; margin-left: 12px; }
  .timeline-item:first-child { border-top-color: transparent; border-left-color: var(--gold); }
  .timeline-item::before { top: 24px; left: -8px; }
  .timeline-year { font-size: 1.75rem; }

  /* FAQ */
  .faq-wrap { grid-template-columns: 1fr; gap: 36px; }
  .faq-question { padding: 20px 22px; font-size: 0.9375rem; gap: 16px; }
  .faq-icon { width: 26px; height: 26px; font-size: 14px; }
  .faq-answer-inner { padding: 0 22px 22px; font-size: 14px; }
  .faq-answer-inner ul li { font-size: 13.5px; }

  /* Forms */
  .contact-form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 18px; }
  .form-group label { font-size: 11px; margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 14.5px; }
  .form-checkbox label { font-size: 12.5px; line-height: 1.5; }
  .form-submit { padding: 14px; font-size: 13px; }

  /* Contact */
  .contact-info-item { padding: 18px 0; gap: 14px; }
  .contact-info-icon { width: 38px; height: 38px; }
  .contact-info-icon svg { width: 18px; height: 18px; }
  .contact-info-text h5 { font-size: 10.5px; }
  .contact-info-text p, .contact-info-text a { font-size: 1.0625rem; }
  .contact-info-text small { font-size: 12.5px; }
  .emergency-card { padding: 20px; margin-top: 24px; }
  .emergency-card a { font-size: 1.1875rem; }

  /* Map */
  .map-wrap { aspect-ratio: 4/3; margin-top: 32px; }

  /* Blog */
  .blog-featured { padding: 56px 0; }
  .blog-featured-grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-featured h2 { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 14px; }
  .blog-featured p { font-size: 0.9375rem; line-height: 1.6; margin-bottom: 18px; }
  .blog-featured-meta { gap: 12px; font-size: 12px; margin-bottom: 20px; flex-wrap: wrap; }
  .blog-filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .blog-filter { white-space: nowrap; flex-shrink: 0; }
  .pagination { gap: 4px; }
  .pagination a { min-width: 38px; height: 38px; font-size: 13px; padding: 0 8px; }

  /* Philosophy */
  .philosophy::before { font-size: 220px; top: 0; left: 0; }
  .philosophy-quote { font-size: clamp(1.25rem, 5.5vw, 1.625rem); line-height: 1.4; }
  .philosophy-attribution { font-size: 11px; margin-top: 24px; }

  /* About hero */
  .about-hero { gap: 36px; }
  .about-hero-content p { font-size: 0.9375rem; line-height: 1.7; }

  /* Footer */
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-brand p { font-size: 14px; }
  .footer h5 { font-size: 11.5px; margin-bottom: 18px; }
  .footer ul li { margin-bottom: 10px; }
  .footer ul li a { font-size: 14px; }
  .footer-contact-row { font-size: 13px; }
  .footer-contact-row strong { font-size: 11.5px; }
  .footer-bottom { flex-direction: column; padding-top: 24px; font-size: 12px; gap: 12px; align-items: flex-start; }
  .footer-bottom-links { gap: 18px; }
}

/* === KÜÇÜK TELEFON (520px altı) === */
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  section { padding: 48px 0; }

  /* Topbar daha az */
  .topbar-info { gap: 8px; font-size: 11px; }
  .topbar-info a:nth-of-type(2), .topbar-info span:last-child { display: none; }

  /* Logo daha kompakt */
  .nav-inner { padding: 12px 0; }
  .logo { gap: 10px; }
  .logo-icon { width: 36px; height: 36px; font-size: 17px; }
  .logo-title { font-size: 17px; }
  .logo-sub { display: none; }

  h1 { font-size: clamp(1.875rem, 9vw, 2.5rem); }
  .hero h1 { font-size: clamp(1.875rem, 9vw, 2.5rem); }
  .page-header h1 { font-size: clamp(1.875rem, 9vw, 2.5rem); }

  .hero-eyebrow { font-size: 10px; padding: 5px 12px; gap: 8px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 10px 14px; }
  .hero-trust-item { font-size: 11.5px; }

  /* Metrics tek sütun olabilir ama 2 hala iyi */
  .metric-num { font-size: 1.875rem; }
  .metric-label { font-size: 10.5px; }

  .practice-card { padding: 24px 20px; }
  .case-card { padding: 22px 18px; }
  .contact-form-wrap { padding: 24px 18px; }
  .value-card { padding: 22px 18px; }

  /* Map daha kompakt */
  .map-wrap { aspect-ratio: 1/1; }

  /* CTA button stack */
  .cta-band .btn { width: 100%; }

  /* Mobile menu */
  .mobile-menu { padding: 72px 24px 24px; }
  .mobile-menu nav a { font-size: 1.5rem; padding: 10px 0; }
}

/* === ULTRA-SMALL (360px ve altı) === */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .topbar-info { font-size: 10.5px; }
  .logo-title { font-size: 16px; }
  .practice-card, .case-card, .contact-form-wrap, .value-card { padding: 20px 16px; }
  .form-group input, .form-group select, .form-group textarea { padding: 11px 12px; font-size: 14px; }
  h1 { font-size: 1.75rem; }
  .hero h1 { font-size: 1.875rem; }
  .hero-visual > img { max-height: 280px; }
}

/* === DROPDOWN: tablet'te dokunmatik için kapat === */
@media (hover: none) and (pointer: coarse) {
  .has-dropdown:hover .dropdown {
    opacity: 0;
    visibility: hidden;
  }
}

/* === TOUCH IYILEŞTIRMELERI === */
@media (pointer: coarse) {
  .btn { min-height: 44px; }
  .form-group input, .form-group select, .form-group textarea { min-height: 44px; }
  .nav-cta { min-height: 44px; }
  .mobile-menu nav a { min-height: 48px; }
  .faq-question { min-height: 56px; }
  .pagination a { min-width: 44px; min-height: 44px; }
}

/* === FOOTER CONTACT — mobile düzeltme === */
@media (max-width: 760px) {
  .footer-contact-row { align-items: flex-start; }
  .footer-contact-row a { color: rgba(250,247,240,0.8) !important; }
}

/* === BLOG FILTERS — yatay scroll === */
@media (max-width: 760px) {
  .blog-filters {
    margin: 0 -18px;
    padding: 0 18px 4px;
    width: calc(100% + 36px);
  }
}

/* === ABOUT VISUAL — Mobile sadeleştir === */
/* Mobilde aspect-ratio'yu eleman üzerinden alıp resme veriyoruz ki
   içerideki quote-box konteynırı taşırmasın */
@media (max-width: 1100px) {
  .about-visual {
    aspect-ratio: auto;
    max-height: none;
    height: auto;
    display: block;
  }
  .about-visual > img {
    aspect-ratio: 16/11;
    max-height: 360px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .about-quote-box {
    position: static !important;
    inset: auto !important;
    right: auto !important;
    bottom: auto !important;
    max-width: 100% !important;
    width: 100%;
    margin-top: 0;
    display: block;
  }
}
@media (max-width: 520px) {
  .about-visual > img {
    aspect-ratio: 16/10;
    max-height: 280px;
  }
}

/* === ABOUT HERO IMG (hakkımızda sayfası) === */
@media (max-width: 1100px) {
  .about-hero-img {
    aspect-ratio: auto;
    max-height: none;
    height: auto;
  }
  .about-hero-img > img {
    aspect-ratio: 16/11;
    max-height: 360px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
@media (max-width: 520px) {
  .about-hero-img > img {
    aspect-ratio: 16/10;
    max-height: 240px;
  }
}

/* === SECTION HEAD — Filter butonları taşma engelle === */
@media (max-width: 760px) {
  .section-head > div:last-child {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* === SAFE AREA (iOS notch) — sadece body kenarlarına === */
@supports (padding: env(safe-area-inset-left)) {
  body { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: #25D366;
  color: #FFFFFF !important;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.35s cubic-bezier(.22,.61,.36,1);
}
.wa-float:hover {
  background: #20bd5a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px -8px rgba(37, 211, 102, 0.6), 0 6px 16px rgba(0,0,0,0.2);
  color: #FFFFFF !important;
}
.wa-float:active { transform: translateY(-1px) scale(1); }

.wa-float-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor !important;
  stroke: none !important;
}

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25D366;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 760px) {
  .wa-float {
    bottom: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 50%;
  }
  .wa-float-text { display: none; }
  .wa-float-icon { width: 26px; height: 26px; }
}

/* Ekran üstünde sticky bar varsa overlap için */
@media (max-width: 520px) {
  .wa-float { bottom: 14px; right: 14px; padding: 12px; }
  .wa-float-icon { width: 24px; height: 24px; }
}

/* ============================================
   HIZMETLERIMIZ PAGE
   ============================================ */

.services-intro { background: var(--cream); padding: 64px 0; }
.services-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.services-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--border);
}
.services-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.services-stat:nth-child(even) { border-right: none; }
.services-stat:nth-last-child(-n+2) { border-bottom: none; }
.services-stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.services-stat-num em {
  font-style: italic;
  color: var(--gold-deep);
  font-size: 0.55em;
  margin-left: 4px;
  font-weight: 500;
}
.services-stat-label {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}

.services-main { padding: 100px 0; }

.service-block {
  display: grid;
  grid-template-columns: 80px 80px 1fr;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: padding var(--t);
}
.service-block:first-child { padding-top: 0; }
.service-block:last-child { border-bottom: none; padding-bottom: 0; }
.service-block:hover { padding-left: 8px; }

.service-block-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  position: relative;
}
.service-block-num::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.service-block-icon {
  width: 80px;
  height: 80px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t);
  position: relative;
}
.service-block-icon::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201,169,97,0.25);
  pointer-events: none;
}
.service-block:hover .service-block-icon {
  background: var(--gold);
  color: var(--navy);
}
.service-block-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}
.service-block-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.service-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1.0625rem;
  margin-bottom: 18px;
  line-height: 1.4;
}
.service-block-content > p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 760px;
}
.service-block-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.service-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.service-feat svg {
  width: 16px;
  height: 16px;
  color: var(--gold-deep);
  flex-shrink: 0;
  stroke-width: 2.5;
}

/* WHY US */
.why-us { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--border);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--t);
}
.why-card:hover .why-icon { background: var(--navy); color: var(--gold); }
.why-icon svg { width: 26px; height: 26px; stroke-width: 1.6; }
.why-card h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}
.why-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-soft);
}

/* PRICING */
.pricing { background: var(--paper); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  padding: 40px 36px;
  background: var(--paper);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all var(--t);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pricing-featured {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
  position: relative;
}
.pricing-featured::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  z-index: -1;
}
.pricing-featured h3 { color: var(--paper); }
.pricing-featured .pricing-desc { color: rgba(250,247,240,0.85); }
.pricing-featured .pricing-list li { color: rgba(250,247,240,0.9); border-color: rgba(255,255,255,0.1); }
.pricing-featured .pricing-list li::before { background: var(--gold); }
.pricing-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--cream);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
}
.pricing-featured .pricing-tag {
  background: var(--gold);
  color: var(--navy);
}
.pricing-card h3 {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.pricing-desc {
  font-size: 14.5px;
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.55;
}
.pricing-list {
  margin-bottom: 28px;
  flex: 1;
}
.pricing-list li {
  padding: 12px 0 12px 26px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
  position: relative;
  line-height: 1.5;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.pricing-card .btn { align-self: flex-start; }
.pricing-featured .btn-outline {
  border-color: var(--paper);
  color: var(--paper);
}
.pricing-featured .btn-outline:hover {
  background: var(--paper);
  color: var(--navy);
}
.pricing-note {
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}
.pricing-note strong { color: var(--navy); }

/* === HİZMETLER RESPONSIVE === */
@media (max-width: 1100px) {
  .services-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-block { grid-template-columns: 64px 64px 1fr; gap: 28px; padding: 44px 0; }
  .service-block-num { font-size: 2.75rem; }
  .service-block-icon { width: 64px; height: 64px; }
  .service-block-icon svg { width: 28px; height: 28px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .pricing-featured { order: -1; }
}

@media (max-width: 760px) {
  .services-intro { padding: 48px 0; }
  .services-main { padding: 64px 0; }
  .services-stats { grid-template-columns: 1fr 1fr; }
  .services-stat { padding: 22px 16px; }
  .services-stat-num { font-size: 1.875rem; }
  .services-stat-label { font-size: 10.5px; }

  .service-block {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 36px 0;
    column-gap: 18px;
  }
  .service-block-num {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    font-size: 1.875rem;
    align-self: center;
  }
  .service-block-num::after { display: none; }
  .service-block-icon {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 56px;
    height: 56px;
    justify-self: end;
  }
  .service-block-icon svg { width: 26px; height: 26px; }
  .service-block-content {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
  }
  .service-block-content h2 { font-size: 1.375rem; margin-bottom: 6px; }
  .service-tagline { font-size: 0.9375rem; margin-bottom: 14px; }
  .service-block-content > p { font-size: 14.5px; margin-bottom: 20px; }
  .service-block-features { grid-template-columns: 1fr; gap: 8px; padding-top: 16px; }
  .service-feat { font-size: 13.5px; }
  .service-block:hover { padding-left: 0; }

  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 24px; }
  .why-icon { width: 48px; height: 48px; margin-bottom: 18px; }
  .why-icon svg { width: 22px; height: 22px; }
  .why-card h4 { font-size: 1.125rem; }
  .why-card p { font-size: 14px; }

  .pricing-card { padding: 28px 24px; }
  .pricing-card h3 { font-size: 1.375rem; }
  .pricing-note { padding: 16px 18px; font-size: 13px; }
}

@media (max-width: 520px) {
  .services-stats { grid-template-columns: 1fr 1fr; }
  .service-block-num { font-size: 1.625rem; }
  .service-block-icon { width: 48px; height: 48px; }
  .service-block-icon svg { width: 22px; height: 22px; }
  .service-block-content h2 { font-size: 1.25rem; }
  .pricing-card { padding: 24px 20px; }
}

/* === ZOOM SAFE: yatay kayma engelle === */
img, iframe { max-width: 100%; }
table { display: block; overflow-x: auto; }

/* CTA buttons grup */
.cta-buttons {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 520px) {
  .cta-buttons { flex-direction: column; gap: 12px; }
  .cta-buttons .btn { width: 100%; }
}

/* Quick contact buttons (anasayfa) */
.quick-contacts {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 520px) {
  .quick-contacts { flex-direction: column; }
  .quick-contacts .btn { width: 100%; }
}

/* Newsletter form */
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter-form input[type=email] {
  flex: 1;
  min-width: 240px;
  padding: 16px 18px;
  background: rgba(250,247,240,0.08);
  border: 1px solid rgba(201,169,97,0.3);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14.5px;
  outline: none;
  border-radius: 3px;
}
.newsletter-form input[type=email]::placeholder { color: rgba(250,247,240,0.5); }
.newsletter-form input[type=email]:focus { border-color: var(--gold); }
@media (max-width: 520px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type=email] { min-width: 0; width: 100%; }
  .newsletter-form .btn { width: 100%; }
}

/* Topbar info span fix — mobile için */
@media (max-width: 760px) {
  .topbar-info span { font-size: 11px; }
  .topbar-info a, .topbar-info span { gap: 5px; }
}

/* Section head responsive button row */
.section-head .blog-filters,
.section-head .btn { flex-shrink: 0; }
@media (max-width: 760px) {
  .section-head .btn { font-size: 12px; padding: 12px 16px; }
}
