/* ============================================
   Avukatarama — Design System
   ============================================ */

:root {
  /* Color tokens */
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --surface-alt: #F4F1EA;
  --ink: #0E1B2C;
  --ink-soft: #1F2937;
  --text: #2A2F3C;
  --text-muted: #6B7280;
  --text-faint: #9CA3AF;
  --border: #E8E4DC;
  --border-strong: #D6CFC0;
  --accent: #B08144;
  --accent-deep: #8A6532;
  --accent-soft: #F1EBDD;
  --danger: #A6463A;
  --shadow-sm: 0 1px 2px rgba(14, 27, 44, 0.04);
  --shadow-md: 0 4px 16px -4px rgba(14, 27, 44, 0.08);

  /* Type scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.875rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --container: 1120px;
  --container-narrow: 880px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
}

/* ============================================
   Reset & base
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" on, "cv11" on;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.2;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* ============================================
   Header
   ============================================ */

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--sp-6);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.site-logo__mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--surface);
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  position: relative;
}

.site-logo__mark::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--surface);
}

.site-nav {
  display: none;
  gap: var(--sp-6);
  align-items: center;
  margin-left: auto;
  margin-right: var(--sp-4);
}

@media (min-width: 768px) {
  .site-nav { display: flex; }
}

.site-nav a {
  font-size: var(--fs-sm);
  color: var(--text);
  font-weight: 500;
  transition: color 0.15s;
}

.site-nav a:hover { color: var(--accent-deep); }

.header-cta {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.5rem 0.9rem;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: background 0.15s;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .header-cta { display: inline-flex; }
}

.header-cta:hover { background: #1A2738; }

.header-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
  .header-menu-btn { display: none; }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: var(--sp-16) 0 var(--sp-12);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.35rem 0.7rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 100px;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  font-size: var(--fs-3xl);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: var(--sp-4);
  line-height: 1.1;
  max-width: 720px;
}

@media (min-width: 768px) {
  .hero h1 { font-size: var(--fs-4xl); }
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-deep);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: var(--accent-soft);
  z-index: -1;
}

.hero__lead {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: var(--sp-10);
  line-height: 1.5;
}

/* Search */
.search-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-3);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: 1fr;
  max-width: 760px;
}

@media (min-width: 720px) {
  .search-card {
    grid-template-columns: 1fr 1fr auto;
    gap: 0;
    padding: var(--sp-2);
  }
}

.search-field {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-4);
  border-radius: var(--radius);
}

@media (min-width: 720px) {
  .search-field + .search-field {
    border-left: 1px solid var(--border);
    border-radius: 0;
  }
}

.search-field__icon {
  color: var(--text-faint);
  flex-shrink: 0;
}

.search-field__content {
  flex: 1;
  min-width: 0;
}

.search-field__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.search-field input,
.search-field select {
  width: 100%;
  border: none;
  background: transparent;
  font: inherit;
  font-size: var(--fs-md);
  color: var(--ink);
  outline: none;
  padding: 0;
  font-weight: 500;
}

.search-field input::placeholder { color: var(--text-faint); font-weight: 400; }

.search-btn {
  background: var(--ink);
  color: var(--surface);
  border: none;
  border-radius: var(--radius);
  padding: 0 var(--sp-6);
  font-size: var(--fs-md);
  font-weight: 500;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  transition: background 0.15s;
}

.search-btn:hover { background: #1A2738; }

/* Hero stats */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px dashed var(--border-strong);
}

.hero__stat-num {
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   Sections
   ============================================ */

.section {
  padding: var(--sp-16) 0;
}

.section-narrow {
  padding: var(--sp-12) 0;
}

.section-header {
  margin-bottom: var(--sp-10);
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.section-header__title {
  font-size: var(--fs-2xl);
  letter-spacing: -0.03em;
}

.section-header__subtitle {
  font-size: var(--fs-base);
  color: var(--text-muted);
  margin-top: var(--sp-2);
  max-width: 540px;
}

.section-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
}

.section-link:hover { color: var(--ink); }

/* Section eyebrow numbering */
.eyebrow-num {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}

.eyebrow-num::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}

/* ============================================
   City / Specialty grids
   ============================================ */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

@media (min-width: 600px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .tile-grid { grid-template-columns: repeat(4, 1fr); } }

.tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: all 0.15s;
  position: relative;
}

.tile:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tile__name {
  font-weight: 600;
  color: var(--ink);
  font-size: var(--fs-md);
  letter-spacing: -0.01em;
}

.tile__meta {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.tile__arrow {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  color: var(--text-faint);
  transition: all 0.15s;
}

.tile:hover .tile__arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

/* Pill list */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.55rem 0.95rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: var(--fs-sm);
  color: var(--text);
  font-weight: 500;
  transition: all 0.15s;
}

.pill:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.pill__count {
  color: var(--text-faint);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   Baro list (homepage)
   ============================================ */

.baro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 700px) {
  .baro-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .baro-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.baro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-2);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  gap: var(--sp-3);
}

.baro-row:hover { background: var(--surface); }

.baro-row__name {
  font-weight: 500;
  color: var(--ink);
  font-size: var(--fs-base);
}

.baro-row__count {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* ============================================
   Breadcrumb
   ============================================ */

.breadcrumb {
  padding: var(--sp-5) 0 var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
}

.breadcrumb a { color: var(--text-muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb__sep {
  color: var(--text-faint);
  margin: 0 2px;
}
.breadcrumb__current {
  color: var(--ink);
  font-weight: 500;
}

/* ============================================
   Avukat profile header
   ============================================ */

.profile-header {
  padding: var(--sp-6) 0 var(--sp-10);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.profile-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
}

@media (min-width: 700px) {
  .profile-card { grid-template-columns: auto 1fr auto; }
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
}

@media (min-width: 700px) {
  .avatar { width: 112px; height: 112px; font-size: 2.25rem; }
}

.profile-meta__role {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-2);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.profile-meta__role::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--accent);
}

.profile-meta h1 {
  font-size: var(--fs-2xl);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}

@media (min-width: 768px) {
  .profile-meta h1 { font-size: var(--fs-3xl); }
}

.profile-meta__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
}

.baro-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.4rem 0.8rem;
  background: var(--surface-alt);
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  border: 1px solid var(--border);
}

.baro-chip__dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.unverified-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.4rem 0.8rem;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  border: 1px dashed var(--border-strong);
}

.claim-cta {
  display: inline-flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-5);
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius);
  text-align: left;
  align-self: stretch;
  min-width: 220px;
}

.claim-cta__label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.claim-cta__action {
  font-size: var(--fs-md);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ============================================
   Profile body
   ============================================ */

.profile-body {
  padding: var(--sp-10) 0 var(--sp-12);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}

@media (min-width: 900px) {
  .profile-grid { grid-template-columns: 1fr 340px; }
}

.profile-section {
  margin-bottom: var(--sp-10);
}

.profile-section:last-child { margin-bottom: 0; }

.profile-section__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.profile-section__title::before {
  content: '';
  width: 3px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
}

.profile-section__body {
  color: var(--text);
  line-height: 1.7;
  font-size: var(--fs-md);
}

.profile-section__body p + p { margin-top: var(--sp-4); }

/* Empty state notice */
.empty-notice {
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: var(--fs-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.empty-notice__icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.empty-notice strong { color: var(--ink); font-weight: 600; }

.empty-notice a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }

/* Sidebar baro card */
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-6);
  position: sticky;
  top: 92px;
}

.sidebar-card__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}

.sidebar-card__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-5);
}

.info-list {
  display: flex;
  flex-direction: column;
}

.info-list__row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
}

.info-list__row:last-child { border-bottom: none; }

.info-list__key {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.info-list__val {
  font-size: var(--fs-sm);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}

.info-list__val a { color: var(--accent-deep); }
.info-list__val a:hover { color: var(--ink); }

/* ============================================
   Lawyer card grid
   ============================================ */

.lawyer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

@media (min-width: 600px) { .lawyer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .lawyer-grid { grid-template-columns: 1fr 1fr 1fr; } }

.lawyer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  transition: all 0.15s;
  position: relative;
}

.lawyer-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.lawyer-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.lawyer-card__body { flex: 1; min-width: 0; }

.lawyer-card__name {
  font-weight: 600;
  color: var(--ink);
  font-size: var(--fs-md);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lawyer-card__baro {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
   Listing page header
   ============================================ */

.list-header {
  padding: var(--sp-4) 0 var(--sp-10);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}

.list-header__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.list-header__eyebrow::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--accent);
}

.list-header h1 {
  font-size: var(--fs-3xl);
  letter-spacing: -0.035em;
  margin-bottom: var(--sp-4);
  max-width: 740px;
}

@media (min-width: 768px) {
  .list-header h1 { font-size: var(--fs-4xl); }
}

.list-header__lead {
  font-size: var(--fs-md);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: var(--sp-8);
}

/* Quick info bar */
.quick-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

@media (min-width: 700px) {
  .quick-info {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }
}

.quick-info__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quick-info__key {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.quick-info__val {
  font-size: var(--fs-sm);
  color: var(--ink);
  font-weight: 500;
}

.quick-info__val a { color: var(--ink); }
.quick-info__val a:hover { color: var(--accent-deep); }

/* List toolbar */
.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}

.list-toolbar__count {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.list-toolbar__count strong {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.list-toolbar__sort {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.list-toolbar__sort select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  font: inherit;
  font-size: var(--fs-sm);
  color: var(--ink);
}

/* Alphabetical letter index */
.alpha-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}

.alpha-index__letter {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all 0.15s;
}

.alpha-index__letter:hover {
  background: var(--surface-alt);
  color: var(--ink);
}

.alpha-index__letter--active {
  background: var(--ink);
  color: var(--surface);
}

.alpha-index__letter--disabled {
  color: var(--text-faint);
  pointer-events: none;
  opacity: 0.4;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--sp-1);
  margin-top: var(--sp-12);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
}

.pagination a, .pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500;
  background: var(--surface);
  transition: all 0.15s;
  font-variant-numeric: tabular-nums;
}

.pagination a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.pagination .pagination__current {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

.pagination .pagination__gap {
  border: none;
  background: transparent;
  color: var(--text-faint);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-16) 0 var(--sp-8);
  margin-top: var(--sp-20);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 700px) {
  .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.site-footer__brand h3 {
  color: var(--surface);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.site-footer__brand p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__col h4 {
  color: var(--surface);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
  font-weight: 600;
}

.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.site-footer__col a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s;
}

.site-footer__col a:hover { color: var(--accent); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-8);
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.site-footer__copy {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__legal {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.site-footer__legal a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__legal a:hover { color: var(--accent); }

/* ============================================
   Sub CTA strip
   ============================================ */

.cta-strip {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-10) 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.cta-strip h3 {
  font-size: var(--fs-xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}

.cta-strip p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  max-width: 480px;
}

.cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--ink);
  color: var(--surface);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: var(--fs-sm);
}

.cta-strip__btn:hover { background: #1A2738; }

/* === Statik içerik sayfaları === */
.static-content { font-size: var(--fs-md); line-height: 1.7; color: var(--ink); }
.static-content h2 { font-size: var(--fs-xl); font-weight: 600; margin: var(--sp-7) 0 var(--sp-3); }
.static-content h2:first-child { margin-top: 0; }
.static-content p { margin: 0 0 var(--sp-4); }
.static-content ul { margin: 0 0 var(--sp-4); padding-left: var(--sp-5); }
.static-content ul li { margin-bottom: var(--sp-2); }
.static-content a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.static-content em { color: var(--text-muted); font-style: italic; font-size: var(--fs-sm); }
.static-content strong { font-weight: 600; }

/* ============================================================
   MOBİL HAMBURGER MENÜ
   ============================================================ */
body.no-scroll { overflow: hidden; }

@media (max-width: 767.98px) {

  /* Hamburger butonu — viewport'a sabitle, asla aşağı gitmez */
  .header-menu-btn {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 1000;
    margin: 0;
  }

  /* Menü kapalıyken nav + CTA görünmez */
  .site-nav,
  .site-header .header-cta { display: none; }

  /* === MENÜ AÇIKKEN === */
  .site-header.is-menu-open {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: #ffffff;
    overflow-y: auto;
  }

  /* Inner: artık FLEX değil, basit BLOCK akış */
  .site-header.is-menu-open .site-header__inner {
    display: block !important;
    height: auto !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  /* Logo üstte, padding ile */
  .site-header.is-menu-open .site-logo {
    display: block;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
  }

  /* Açıkken görsel geri bildirim (zaten fixed, konum aynı) */
  .site-header.is-menu-open .header-menu-btn {
    background: #ffffff;
    border-color: #0f172a;
  }

  /* Nav linkleri: SOLA hizalı, full-width, alt çizgili */
  .site-header.is-menu-open .site-nav {
    display: block;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  .site-header.is-menu-open .site-nav a {
    display: block;
    width: 100%;
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 500;
    color: #0f172a;
    text-decoration: none;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
  }
  .site-header.is-menu-open .site-nav a:active {
    background: #f3f4f6;
  }

  /* CTA linklerin altına bir buton olarak */
  .site-header.is-menu-open .header-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px;
    padding: 16px 20px;
    background: #0f172a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    border-radius: 12px;
  }
}

/* === Baro/Buro detay info kartları === */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}

@media (min-width: 600px) {
  .info-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .info-cards { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}

.info-card:hover {
  border-color: var(--accent-deep);
  box-shadow: 0 4px 14px rgba(15,23,42,.06);
}

.info-card__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft, rgba(37,99,235,.08));
  color: var(--accent-deep);
}

.info-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.info-card__key {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}

.info-card__val {
  font-size: var(--fs-sm);
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
  line-height: 1.45;
}

.info-card__val a { color: var(--ink); text-decoration: none; }
.info-card__val a:hover { color: var(--accent-deep); }

/* === Arama sayfası hero === */
.search-hero {
  padding: var(--sp-8) 0 var(--sp-6);
  background: linear-gradient(180deg, var(--surface) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.search-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 4px 12px;
  background: var(--accent-soft, rgba(37,99,235,.08));
  color: var(--accent-deep);
  font-size: var(--fs-xs);
  font-weight: 500;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: var(--sp-3);
}

.search-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-deep);
  border-radius: 50%;
}

.search-hero__title {
  font-size: clamp(1.5rem, 3vw + .5rem, 2.25rem);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 var(--sp-5);
  max-width: 720px;
}

.search-hero__title em {
  font-style: normal;
  color: var(--accent-deep);
}

/* Büyük arama varyantı */
.search-card--lg {
  box-shadow: 0 8px 28px rgba(15,23,42,.06);
}

/* Aktif filtre chip'leri */
.active-filters {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: var(--sp-4);
}

.active-filters__label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--fs-sm);
  color: var(--ink);
  font-weight: 500;
  transition: border-color .15s, color .15s;
}

.filter-chip:hover { border-color: var(--accent-deep); color: var(--accent-deep); }

.filter-chip--clear {
  background: transparent;
  border-color: transparent;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Browse blokları (boş arama durumunda) */
.browse-block { margin-bottom: var(--sp-9); }

.browse-block:last-child { margin-bottom: 0; }

.browse-block__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}

/* === Search hero — compact mod === */
.search-hero--compact { padding: var(--sp-6) 0 var(--sp-5); }
.search-hero--compact .search-hero__title {
  font-size: clamp(1.25rem, 2vw + .5rem, 1.75rem);
  margin-bottom: var(--sp-4);
}

/* === Arama sonuçları grid (sidebar + main) === */
.search-results { padding: 0 0 var(--sp-9); }

.search-results__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 900px) {
  .search-results__grid {
    grid-template-columns: 260px 1fr;
    gap: var(--sp-6);
  }
}

/* === Filter sidebar === */
.filter-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  align-self: start;
  position: sticky;
  top: var(--sp-4);
}

.filter-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.filter-sidebar__title {
  margin: 0;
  font-size: var(--fs-md);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.filter-sidebar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--accent-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
}

.filter-sidebar__clear {
  font-size: var(--fs-xs);
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mobil drawer kapama butonu */
.filter-sidebar__close {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.filter-form { display: flex; flex-direction: column; gap: var(--sp-5); }

.filter-group { display: flex; flex-direction: column; gap: var(--sp-2); }

.filter-group__title {
  margin: 0;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  font-weight: 600;
}

.filter-group select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  background: #fff;
  font-family: inherit;
}

.filter-group__link {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-decoration: none;
}
.filter-group__link:hover { color: var(--accent-deep); }

/* Soyad harf butonları */
.harf-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.harf-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 0;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, border-color .15s, color .15s;
}
.harf-btn:hover { border-color: var(--accent-deep); color: var(--accent-deep); }
.harf-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* === Results toolbar === */
.results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.results-toolbar__count { font-size: var(--fs-sm); color: var(--ink); }
.results-toolbar__count strong { font-size: var(--fs-md); }
.results-toolbar__page { color: var(--text-muted); margin-left: 4px; }

.results-toolbar__right { display: flex; align-items: center; gap: var(--sp-3); }

.results-toolbar__sort label { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-xs); color: var(--text-muted); }
.results-toolbar__sort select {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  background: #fff;
  font-family: inherit;
}

.filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}
@media (max-width: 899.98px) {
  .filter-toggle { display: inline-flex; }
}

/* === Lawyer-row (yatay liste kartı) === */
.lawyer-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.lawyer-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}

.lawyer-row:hover {
  border-color: var(--accent-deep);
  box-shadow: 0 4px 14px rgba(15,23,42,.06);
}

.lawyer-row__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft, rgba(37,99,235,.08));
  color: var(--accent-deep);
  border-radius: 50%;
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: .02em;
}

.lawyer-row__body { flex: 1; min-width: 0; }

.lawyer-row__name {
  font-size: var(--fs-md);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.lawyer-row__verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(34,197,94,.15);
  color: #16a34a;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.lawyer-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: 2px;
}

.lawyer-row__sep { opacity: .5; }

.lawyer-row__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 18px;
  opacity: 0;
  transition: opacity .15s, transform .15s;
}
.lawyer-row:hover .lawyer-row__arrow {
  opacity: 1;
  transform: translateX(2px);
  color: var(--accent-deep);
}

/* === Mobil drawer (filter-sidebar) === */
@media (max-width: 899.98px) {
  .filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 90vw);
    z-index: 50;
    border-radius: 0;
    border: 0;
    border-right: 1px solid var(--border);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .25s ease-out;
    box-shadow: 0 0 40px rgba(0,0,0,.2);
  }
  .filter-sidebar.is-open { transform: translateX(0); }
  .filter-sidebar__close { display: inline-flex; align-items: center; justify-content: center; }

  body.filter-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.5);
    z-index: 49;
  }
}

.search-results__main { align-self: start; min-width: 0; }
.filter-sidebar { align-self: start; }

/* === SEO bölümü (listing sayfaları altı) === */
.seo-section {
  padding: 32px 0 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.seo-prose { margin-bottom: 28px; }
@media (min-width: 980px) {
  .seo-prose { column-count: 2; column-gap: 40px; }
  .seo-prose__title { column-span: all; }
  .seo-prose p { break-inside: avoid; margin-bottom: 14px; }
}
.seo-prose__title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.seo-prose__sub {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 12px;
}
.seo-prose p { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin: 0 0 12px; }
.seo-prose strong { color: var(--ink); font-weight: 600; }
.seo-prose a { color: var(--accent); }
.seo-prose a:hover { color: var(--accent-deep); }
.seo-disclaimer { font-size: 13px; color: var(--text-muted); margin-top: 18px; }

.seo-link-grid {
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.seo-link {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
  transition: border-color .12s, background .12s, color .12s;
}
.seo-link:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-deep); }
.seo-link__count {
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  background: var(--surface); padding: 2px 8px; border-radius: 999px; flex: none;
}
.seo-link:hover .seo-link__count { background: #fff; color: var(--accent-deep); }

/* === Mahkemeler sayfası === */
.mh-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 16px; margin: 24px 0 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.mh-nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  font-size: 13px; font-weight: 600;
  background: #fff; border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink); text-decoration: none;
  transition: border-color .12s, background .12s;
}
.mh-nav__link:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-deep); }
.mh-nav__count {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  background: var(--surface); padding: 1px 6px; border-radius: 999px;
}

.mh-group { margin: 40px 0 32px; }
.mh-group__title {
  font-size: 1.2rem; font-weight: 700; color: var(--ink);
  margin: 0 0 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  letter-spacing: -0.01em;
  scroll-margin-top: 90px;
}
.mh-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.mh-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  transition: border-color .12s, box-shadow .12s;
}
.mh-card:hover { border-color: var(--accent); box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.mh-card__title {
  font-size: 0.98rem; font-weight: 700;
  color: var(--ink); margin: 0 0 10px;
  line-height: 1.35;
}
.mh-card__meta {
  margin: 0; display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  font-size: 13.5px;
}
.mh-card__meta dt {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--text-muted); font-weight: 600;
  white-space: nowrap;
}
.mh-card__meta dt svg { opacity: .7; }
.mh-card__meta dd { margin: 0; color: var(--ink); line-height: 1.4; }

.mh-disclaimer {
  margin-top: 40px;
  padding: 16px 18px;
  background: #fff8eb;
  border: 1px solid #f7d99e;
  border-radius: 10px;
  font-size: 13.5px; color: #6b4d1a;
}
.mh-disclaimer p { margin: 0; line-height: 1.55; }

/* Mahkemeler banner (şehir listing'inde) */
.mh-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 80%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  color: var(--ink); text-decoration: none;
  transition: transform .12s, box-shadow .12s;
}
.mh-banner:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.mh-banner__body strong { display: block; font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; }
.mh-banner__body span  { display: block; font-size: 13.5px; color: var(--text-muted); }
.mh-banner__cta { font-weight: 700; color: var(--accent-deep); white-space: nowrap; }

/* === Mahkeme profil sayfası === */
.mh-profile-hero {
  padding: 28px 0 22px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, transparent 100%);
}
.mh-profile-hero__eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: .05em; margin-bottom: 8px;
}
.mh-profile-hero__title {
  font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 700;
  color: var(--ink); margin: 0 0 6px; letter-spacing: -0.015em;
}
.mh-profile-hero__lead { font-size: 15px; color: var(--text-muted); margin: 0; }

.mh-profile__grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .mh-profile__grid { grid-template-columns: 1fr 300px; }
  .mh-profile__side { position: relative; }
}

.mh-section__title {
  font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin: 0 0 14px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.mh-map { margin-top: 4px; border-radius: 10px; overflow: hidden; }
.mh-prose p { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin: 0 0 12px; }

.mh-side-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
}
.mh-side-card--note {
  background: #fff8eb; border-color: #f7d99e; color: #6b4d1a; font-size: 13px;
}
.mh-side-card--note p { line-height: 1.55; margin: 0; }
.mh-side-card__title {
  font-size: 0.95rem; font-weight: 700; color: var(--ink);
  margin: 0 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mh-side-list { list-style: none; padding: 0; margin: 0 0 10px; }
.mh-side-list li { padding: 6px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
.mh-side-list li:last-child { border-bottom: 0; }
.mh-side-list a { color: var(--ink); text-decoration: none; }
.mh-side-list a:hover { color: var(--accent-deep); }
.mh-side-card__cta {
  display: inline-block; margin-top: 8px;
  font-size: 13px; font-weight: 700; color: var(--accent);
}

.mh-card__title a { color: var(--ink); text-decoration: none; }
.mh-card:hover .mh-card__title a { color: var(--accent-deep); }

/* === mh-info-list — mahkeme profil iletişim bilgileri === */
.mh-info-list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.mh-info-list dt {
  font-size: 12.5px; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .02em; text-transform: uppercase;
  padding: 12px 16px 4px;
  margin: 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.mh-info-list dt svg { opacity: .65; }
.mh-info-list dd {
  margin: 0; padding: 0 16px 12px;
  font-size: 14.5px; color: var(--ink);
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.mh-info-list dd:last-of-type { border-bottom: 0; }
.mh-info-list dd a { color: var(--accent); }
.mh-info-list dd a:hover { color: var(--accent-deep); }

@media (min-width: 640px) {
  .mh-info-list {
    grid-template-columns: 160px 1fr;
  }
  .mh-info-list dt {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    background: var(--surface);
    align-self: stretch;
  }
  .mh-info-list dd {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    align-self: stretch;
    display: flex; align-items: center;
  }
  .mh-info-list dt:last-of-type,
  .mh-info-list dd:last-of-type { border-bottom: 0; }
}

/* === Mahkeme arama kutusu === */
.mh-search {
  position: relative;
  margin: 24px 0;
  display: flex; align-items: center;
}
.mh-search__input {
  flex: 1;
  width: 100%;
  padding: 14px 110px 14px 44px;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  outline: none;
  transition: border-color .12s, box-shadow .12s;
}
.mh-search__input::placeholder { color: var(--text-muted); }
.mh-search__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.mh-search__icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}
.mh-search__count {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  background: var(--surface); padding: 4px 10px; border-radius: 999px;
  pointer-events: none;
}
.mh-empty {
  padding: 32px 24px; text-align: center;
  font-size: 14.5px; color: var(--text-muted);
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 12px;
  margin-top: 24px;
}

/* === İletişim sayfası === */
.ic-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .ic-grid { grid-template-columns: 300px 1fr; }
}

.ic-side { display: grid; gap: 14px; align-content: start; }
.ic-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.ic-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--accent-soft); color: var(--accent-deep);
  border-radius: 10px; margin-bottom: 12px;
}
.ic-card__title { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.ic-card__lead  { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.ic-card__lead strong { color: var(--ink); }

.ic-form-wrap { min-width: 0; }
.ic-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: grid; gap: 16px;
}
.ic-field { display: grid; gap: 6px; }
.ic-field label {
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.ic-field .ic-opt { font-weight: 400; color: var(--text-muted); }
.ic-field input,
.ic-field select,
.ic-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14.5px; font-family: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  outline: none;
  transition: border-color .12s, box-shadow .12s;
}
.ic-field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.ic-field input:focus,
.ic-field select:focus,
.ic-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.ic-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}
.ic-hint { font-size: 12.5px; color: var(--text-muted); }

.ic-grid-row {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .ic-grid-row { grid-template-columns: 1fr 1fr; }
}

.ic-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 18px;
  font-size: 15px; font-weight: 700;
  background: var(--accent); color: #fff;
  border: 0; border-radius: 10px;
  cursor: pointer;
  transition: background .12s, transform .12s;
}
.ic-submit:hover { background: var(--accent-deep); transform: translateY(-1px); }
.ic-tos { font-size: 12.5px; color: var(--text-muted); text-align: center; margin: 0; }
.ic-tos a { color: var(--accent); }

.ic-hp { position: absolute; left: -9999px; }

.ic-flash {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 10px; margin-bottom: 16px;
}
.ic-flash--success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.ic-flash--error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

.ic-banner {
  display: grid; gap: 4px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 80%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  margin-bottom: 16px;
}
.ic-banner__eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--accent-deep); }
.ic-banner strong { font-size: 1.05rem; color: var(--ink); }
.ic-banner__sub { font-size: 13.5px; color: var(--text-muted); }
.ic-banner a { color: var(--accent-deep); font-weight: 600; }

/* === Site Footer — SEO odaklı === */
.site-footer__stats {
  display: flex; flex-wrap: wrap; gap: 14px 18px;
  margin-top: 14px;
  font-size: 13.5px; color: var(--text-muted);
}
.site-footer__stats strong { color: var(--ink); font-weight: 700; }

.site-footer__seo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
@media (min-width: 720px) {
  .site-footer__seo {
    grid-template-columns: repeat(3, 1fr);
  }
  .seo-block--wide { grid-column: 1 / -1; }
}

.seo-block__title {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.seo-block__list,
.seo-block__cross {
  list-style: none; padding: 0; margin: 0;
}
.seo-block__list li { margin: 0 0 6px; }
.seo-block__list a {
  font-size: 13.5px; color: var(--text-muted);
  text-decoration: none;
  transition: color .12s;
}
.seo-block__list a:hover { color: var(--accent-deep); text-decoration: underline; }

.seo-block__cross {
  display: flex; flex-wrap: wrap; gap: 6px 8px;
}
.seo-block__cross li { margin: 0; }
.seo-block__cross a {
  display: inline-flex;
  padding: 4px 10px;
  font-size: 12.5px; color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .12s, color .12s, background .12s;
}
.seo-block__cross a:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  background: var(--accent-soft);
}

.site-footer__cities {
  padding: 24px 0 8px;
  border-top: 1px solid var(--border);
}
.cities-strip {
  display: flex; flex-wrap: wrap; gap: 4px 6px;
}
.cities-strip a {
  display: inline-block;
  padding: 3px 9px;
  font-size: 12.5px; color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  transition: color .12s, background .12s, border-color .12s;
}
.cities-strip a:hover {
  color: var(--accent-deep);
  background: var(--accent-soft);
  border-color: var(--border);
}

/* === Footer dark-theme renk override === */
.site-footer .site-footer__stats strong { color: #fff; }
.site-footer .site-footer__stats { color: rgba(255,255,255,.65); }

.site-footer .seo-block__title {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.12);
}
.site-footer .seo-block__list a { color: rgba(255,255,255,.62); }
.site-footer .seo-block__list a:hover { color: #fff; }

.site-footer .seo-block__cross a {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.70);
}
.site-footer .seo-block__cross a:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.30);
  color: #fff;
}

.site-footer .site-footer__cities { border-top-color: rgba(255,255,255,.10); }
.site-footer .cities-strip a { color: rgba(255,255,255,.55); }
.site-footer .cities-strip a:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}

.site-footer .site-footer__seo { border-top-color: rgba(255,255,255,.10); }

/* === Mobil/Tablet overflow garanti === */
html, body { max-width: 100vw; overflow-x: clip; }
.container { box-sizing: border-box; }
.lawyer-grid { min-width: 0; width: 100%; }
.lawyer-card { min-width: 0; max-width: 100%; box-sizing: border-box; }
.lawyer-card__body { min-width: 0; max-width: 100%; flex: 1 1 0; }
.lawyer-card__name,
.lawyer-card__baro {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
}

/* === Footer logo (beyaz) === */
.site-footer__logo { display: inline-block; margin-bottom: 12px; }
.site-footer__logo-img {
  height: 28px; width: auto; display: block;
  filter: brightness(0) invert(1); /* lacivert → beyaz */
}

/* === Footer SEO toggle (mobilde "Daha fazla göster / Daha az göster") === */
.site-footer__seo-wrap > summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: block;
  padding: 14px 0;
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.site-footer__seo-wrap > summary::-webkit-details-marker { display: none; }
.site-footer__seo-wrap > summary .site-footer__seo-toggle-less { display: none; }
.site-footer__seo-wrap[open] > summary .site-footer__seo-toggle-more { display: none; }
.site-footer__seo-wrap[open] > summary .site-footer__seo-toggle-less { display: inline; }

/* Desktop: toggle butonunu gizle, içerik daima görünür */
@media (min-width: 720px) {
  .site-footer__seo-wrap > summary { display: none; }
  .site-footer__seo-wrap > .site-footer__seo { display: grid !important; }
}

/* === İletişim/Kayıt formu — checkbox satırı === */
.ic-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
  transition: border-color .12s, background .12s;
}
.ic-checkbox:hover { border-color: var(--accent); }
.ic-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
  flex: none;
  cursor: pointer;
}
.ic-checkbox a { color: var(--accent); }
.ic-checkbox a:hover { color: var(--accent-deep); }

/* === Profil ara (avukat-kayit ref'siz) === */
.pa-form {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.pa-form input[type="search"] {
  flex: 1;
  height: 54px;
  padding: 0 16px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  outline: none;
}
.pa-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.pa-form button {
  height: 54px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 600;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
}
.pa-form button:hover { background: #000; }
@media (max-width: 559.98px) {
  .pa-form { flex-direction: column; }
  .pa-form button { width: 100%; }
}

.pa-list { display: grid; gap: 8px; }
.pa-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .12s, box-shadow .12s, transform .12s;
}
.pa-row:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
  transform: translateY(-1px);
}
.pa-row__main strong { display: block; font-size: 1rem; }
.pa-row__meta { display: block; font-size: 13px; color: var(--text-muted); margin-top: 3px; }
.pa-row__cta { font-size: 13.5px; font-weight: 700; color: var(--accent-deep); white-space: nowrap; }

/* avasistan promo */
.pa-promo {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  margin: 32px 0 24px;
  background: linear-gradient(135deg, #fef3c7 0%, #fff8e1 100%);
  border: 1px solid #fbbf24;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
}
.pa-promo__icon {
  font-size: 2rem;
  flex: none;
}
.pa-promo__body strong {
  display: block;
  font-size: 1rem;
  color: #92400e;
  margin-bottom: 4px;
}
.pa-promo__body p {
  margin: 0;
  font-size: 13.5px;
  color: #78350f;
  line-height: 1.6;
}
.pa-promo__body a { color: #92400e; }

.pa-note {
  padding: 14px 18px;
  background: var(--surface);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.pa-note strong { color: var(--ink); display: block; margin-bottom: 4px; }
.pa-note a { color: var(--accent); }

/* === Avasistan reklam banner (avukat profil + diğer sayfalar) === */
.avasistan-banner { padding: 20px 0; }
.avasistan-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #312e81 100%);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .15);
  transition: transform .15s, box-shadow .15s;
  overflow: hidden;
  position: relative;
}
.avasistan-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(250, 204, 21, .25) 0%, transparent 70%);
  pointer-events: none;
}
.avasistan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, .25);
}
.avasistan-card__icon {
  flex: none;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 16px;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, .35);
}
.avasistan-card__body { flex: 1; min-width: 0; }
.avasistan-card__eyebrow {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fbbf24;
  background: rgba(251, 191, 36, .12);
  border-radius: 999px;
  margin-bottom: 6px;
}
.avasistan-card__title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.avasistan-card__lead {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}
.avasistan-card__lead strong { color: #fbbf24; font-weight: 700; }
.avasistan-card__cta {
  flex: none;
  padding: 12px 22px;
  background: #fbbf24;
  color: #0f172a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .avasistan-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .avasistan-card__cta { align-self: stretch; text-align: center; }
}

/* Avasistan indirim kodu */
.avasistan-card__code-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 6px 8px 6px 14px;
  background: rgba(0, 0, 0, .25);
  border: 1px dashed rgba(251, 191, 36, .4);
  border-radius: 999px;
}
.avasistan-card__code-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.avasistan-card__code {
  display: inline-block;
  padding: 4px 12px;
  background: #fbbf24;
  color: #0f172a;
  border-radius: 999px;
  font-family: 'SF Mono', Menlo, monospace;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  cursor: copy;
  user-select: all;
  position: relative;
  transition: transform .1s;
}
.avasistan-card__code:hover { transform: scale(1.05); }
.avasistan-card__code::after {
  content: '📋';
  margin-left: 6px;
  font-size: 11px;
}
.avasistan-card__code.is-copied {
  background: #10b981;
  color: #fff;
}
.avasistan-card__code.is-copied::after {
  content: '✓ Kopyalandı';
  font-weight: 700;
}

/* === Avasistan banner — FRESH renkli versiyonu (override) === */
.avasistan-card {
  background: linear-gradient(135deg, #fb7185 0%, #a855f7 35%, #6366f1 70%, #06b6d4 100%) !important;
  box-shadow: 0 10px 40px rgba(168, 85, 247, .35) !important;
  position: relative;
}
.avasistan-card::before {
  content: '' !important;
  position: absolute;
  top: -30%; right: -10%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(253, 224, 71, .4) 0%, transparent 65%) !important;
  pointer-events: none;
}
.avasistan-card::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(34, 211, 238, .35) 0%, transparent 65%);
  pointer-events: none;
}
.avasistan-card:hover {
  box-shadow: 0 16px 50px rgba(168, 85, 247, .5) !important;
}

.avasistan-card__icon {
  background: linear-gradient(135deg, #fde047 0%, #f97316 100%) !important;
  box-shadow: 0 6px 20px rgba(253, 224, 71, .55), inset 0 0 0 3px rgba(255,255,255,.3) !important;
  color: #0f172a;
}

.avasistan-card__body { position: relative; z-index: 1; }
.avasistan-card__eyebrow {
  background: rgba(255,255,255,.18) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
}
.avasistan-card__title { text-shadow: 0 1px 3px rgba(0,0,0,.2); }
.avasistan-card__lead { color: rgba(255,255,255,.92) !important; }

/* Code chip */
.avasistan-card__code-row {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.4) !important;
  backdrop-filter: blur(8px);
}
.avasistan-card__code-label { color: rgba(255,255,255,.85) !important; }
.avasistan-card__code {
  background: linear-gradient(135deg, #fde047 0%, #facc15 100%) !important;
  color: #7c2d12 !important;
  box-shadow: 0 2px 8px rgba(253, 224, 71, .5);
}

.avasistan-card__cta {
  background: #fff !important;
  color: #6366f1 !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  position: relative; z-index: 1;
  font-weight: 800 !important;
}
.avasistan-card:hover .avasistan-card__cta {
  background: #fde047 !important;
  color: #0f172a !important;
}

/* === Avasistan banner — MINIMAL profesyonel (tüm önceki override'ları sil) === */
.avasistan-card {
  background: #fff !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, .06) !important;
  color: #0f172a !important;
}
.avasistan-card::before,
.avasistan-card::after { content: none !important; display: none !important; }
.avasistan-card:hover {
  border-color: #6366f1;
  box-shadow: 0 8px 24px rgba(99, 102, 241, .12) !important;
}

.avasistan-card__icon {
  background: #eef2ff !important;
  color: #6366f1 !important;
  box-shadow: none !important;
  border: 1px solid #c7d2fe;
}

.avasistan-card__eyebrow {
  background: #eef2ff !important;
  color: #4f46e5 !important;
  border: 1px solid #c7d2fe;
  backdrop-filter: none !important;
}
.avasistan-card__title {
  color: #0f172a !important;
  text-shadow: none !important;
}
.avasistan-card__lead { color: #475569 !important; }
.avasistan-card__lead strong { color: #0f172a !important; }

.avasistan-card__code-row {
  background: #fffbeb !important;
  border: 1px dashed #f59e0b !important;
  backdrop-filter: none !important;
}
.avasistan-card__code-label { color: #92400e !important; }
.avasistan-card__code {
  background: #f59e0b !important;
  color: #fff !important;
  box-shadow: none !important;
}
.avasistan-card__code.is-copied {
  background: #10b981 !important;
}

.avasistan-card__cta {
  background: #0f172a !important;
  color: #fff !important;
  box-shadow: none !important;
}
.avasistan-card:hover .avasistan-card__cta {
  background: #6366f1 !important;
  color: #fff !important;
}
