/* ============================================================
   Avukat İmren Taşkın Şahin — Stylesheet
   ============================================================ */

:root {
  --bg: #0b0b0c;
  --bg-elev: #131316;
  --bg-card: #17171b;
  --border: #27272d;
  --border-strong: #3a3a42;
  --text: #ece9e2;
  --text-muted: #a09c93;
  --text-dim: #6e6a62;
  --accent: #c8a25b;
  --accent-soft: rgba(200, 162, 91, 0.14);
  --accent-strong: #d8b577;
  --accent-text: #1a1408;
  --header-bg-rgb: 11, 11, 12;
  --max-w: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

:root[data-theme="light"] {
  --bg: #faf8f3;
  --bg-elev: #f1ede2;
  --bg-card: #ffffff;
  --border: #e6e0d0;
  --border-strong: #cfc6b0;
  --text: #1a1814;
  --text-muted: #4f4a3e;
  --text-dim: #8a8472;
  --accent: #9c7a2e;
  --accent-soft: rgba(156, 122, 46, 0.10);
  --accent-strong: #836524;
  --accent-text: #ffffff;
  --header-bg-rgb: 250, 248, 243;
  --shadow: 0 20px 40px -20px rgba(80, 60, 20, 0.18);
}

html { transition: background-color .35s ease, color .35s ease; }
body, .site-header, .site-footer, .practice-card, .info-card, .contact-form, .faq-item, .process-steps li, .cookie-banner, #intro-screen {
  transition: background-color .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Hafif arka plan animasyonu — yavaş hareket eden altın ışık küreleri */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(200, 162, 91, 0.10), transparent 38%),
    radial-gradient(circle at 82% 75%, rgba(200, 162, 91, 0.07), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(200, 162, 91, 0.04), transparent 55%);
  animation: bg-drift 28s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(200, 162, 91, 0.05) 1px, transparent 1.5px);
  background-size: 80px 80px;
  opacity: 0.4;
  animation: bg-grain 60s linear infinite;
}

main, header, footer, .cookie-banner, .whatsapp-float { position: relative; z-index: 1; }

@keyframes bg-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(2%, -1.5%) scale(1.05); }
  100% { transform: translate(-2%, 1.5%) scale(1); }
}
@keyframes bg-grain {
  0%   { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none !important; }
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-strong); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  color: var(--text);
}

p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 8px 16px;
  background: var(--accent);
  color: #000;
  border-radius: 6px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(var(--header-bg-rgb), 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  background: rgba(var(--header-bg-rgb), 0.88);
  border-bottom-color: var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand-icon { color: var(--accent); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-icon { width: 44px; height: 44px; }
.brand-pre {
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.brand-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.05;
}
.nav-bar { height: 104px; }
.site-header.is-scrolled .nav-bar { height: 84px; }
.site-header.is-scrolled .brand-name { font-size: 25px; }
.site-header.is-scrolled .brand-icon { width: 36px; height: 36px; }
.site-header.is-scrolled .brand-pre { font-size: 11px; }

.primary-nav ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.primary-nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color .2s;
}
.primary-nav a:hover { color: var(--text); }

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 11px 20px !important;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: #1a1408 !important;
  font-weight: 600 !important;
  font-size: 14.5px !important;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 0 rgba(200, 162, 91, 0.6);
  animation: nav-cta-pulse 2.4s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta:hover {
  background: var(--accent-strong);
  color: #1a1408 !important;
  transform: translateY(-1px) scale(1.03);
  animation-play-state: paused;
  box-shadow: 0 8px 24px rgba(200, 162, 91, 0.45);
}
.nav-cta-icon {
  animation: phone-ring 2.5s ease-in-out infinite;
  transform-origin: center;
}
.nav-cta:hover .nav-cta-icon { animation-play-state: paused; }

@keyframes nav-cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 162, 91, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(200, 162, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 162, 91, 0); }
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  transition: all .25s ease;
  position: relative;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(15deg);
}
.theme-icon {
  position: absolute;
  transition: transform .4s cubic-bezier(.2,.9,.3,1.1), opacity .25s ease;
}
.icon-sun  { opacity: 0; transform: rotate(-90deg) scale(.4); }
.icon-moon { opacity: 1; transform: rotate(0)      scale(1);  }
:root[data-theme="light"] .icon-sun  { opacity: 1; transform: rotate(0)      scale(1);  }
:root[data-theme="light"] .icon-moon { opacity: 0; transform: rotate(90deg)  scale(.4); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 42px; height: 42px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  transition: transform .2s, opacity .2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Hero */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(200, 162, 91, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200, 162, 91, 0.05), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 500;
}
.eyebrow.center { text-align: center; }

.hero-title {
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin: 0 0 28px;
  font-weight: 500;
}
.hero-title span { color: var(--accent); display: inline-block; }

.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all .2s ease;
  border: 1px solid transparent;
  text-transform: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: var(--accent-text);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-block { width: 100%; justify-content: center; }

.hero-meta {
  list-style: none;
  margin: 0; padding: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
}
.hero-meta li { display: flex; flex-direction: column; gap: 4px; }
.meta-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.meta-value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text);
}

/* Sections */
.section { padding: 100px 0; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 500;
}
.section-title.center { text-align: center; }

.section-lede {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  color: var(--text-muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.bullet-list {
  list-style: none;
  padding: 0; margin: 24px 0 0;
}
.bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-muted);
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 1px;
  background: var(--accent);
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.info-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.info-card dl { margin: 0; }
.info-card dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 18px;
}
.info-card dt:first-child { margin-top: 0; }
.info-card dd {
  margin: 4px 0 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 17px;
}

/* Practice */
.practice {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.practice-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.practice-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.practice-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
a.practice-card.practice-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.practice-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity .2s, transform .2s;
}
.practice-link:hover .practice-arrow {
  opacity: 1;
  transform: translateX(4px);
}
.practice-card p {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

.disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin: 48px 0 0;
  font-style: italic;
}

/* Process */
.process-steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: steps;
}
.process-steps li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.step-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.process-steps h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.process-steps p {
  font-size: 14.5px;
  margin: 0;
}

/* Hızlı Hizmet Seçici */
.quick-select {
  padding: 60px 0 40px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text) !important;
  text-decoration: none;
  transition: all .25s ease;
}
.quick-card svg { color: var(--accent); margin-bottom: 12px; }
.quick-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}
.quick-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.quick-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .quick-select { padding: 40px 0 24px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  /* 5. kartı (tek başına kalan) tam genişlik yap */
  .quick-grid .quick-card:nth-child(5):last-child {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    padding: 14px 16px;
  }
  .quick-grid .quick-card:nth-child(5):last-child svg { margin-bottom: 0; }
  .quick-grid .quick-card:nth-child(5):last-child .quick-title { margin-bottom: 0; }
  .quick-grid .quick-card:nth-child(5):last-child .quick-desc { display: none; }
  .quick-card { padding: 16px 10px; }
  .quick-card svg { width: 26px; height: 26px; margin-bottom: 8px; }
  .quick-title { font-size: 14.5px; }
  .quick-desc { font-size: 11.5px; }
}

/* FAQ */
.faq {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform .25s ease, color .2s;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-body {
  padding: 0 26px 24px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 4px;
}
.faq-body p { margin: 0; font-size: 15px; line-height: 1.75; }
.faq-body a { color: var(--accent); }

/* Harita bölümü */
.map-section {
  padding-top: 80px;
  padding-bottom: 60px;
}
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-card);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 450px;
}
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 20px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
@media (max-width: 720px) {
  .map-wrap iframe { height: 320px; }
  .map-actions { padding: 16px 12px; }
  .map-actions .btn { flex: 1; min-width: 0; justify-content: center; padding: 12px 16px; font-size: 13px; }
}

/* Contact */
.contact-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.contact-list li {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-list li:last-child { border-bottom: 1px solid var(--border); }
.contact-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-list a, .contact-list span:not(.contact-label) {
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
}
.contact-list a:hover { color: var(--accent); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label > span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; }

.checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.checkbox input { width: auto !important; margin-top: 4px; }
.checkbox span {
  display: inline !important;
  font-size: 13px !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: var(--text-muted) !important;
}
.checkbox a { color: var(--accent); }

.form-note {
  font-size: 12px;
  color: var(--text-dim);
  margin: 16px 0 0;
  font-style: italic;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  margin: 0 0 12px;
  font-weight: 600;
}
.footer-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  max-width: 360px;
}
.footer-heading {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-list {
  list-style: none;
  margin: 0; padding: 0;
}
.footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-list a { color: var(--text-muted); }
.footer-list a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-bottom p { margin: 0; color: var(--text-dim); font-size: 12px; }
.footer-bottom-left { display: flex; flex-direction: column; gap: 6px; }
.footer-credit { font-size: 12px; color: var(--text-dim); }
.footer-credit a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-credit a:hover { color: var(--accent); }
.footer-disc { max-width: 640px; text-align: right; line-height: 1.6; }

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 150;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: whatsapp-bounce 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1da851;
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0, 0, 0, 0.4);
}
.whatsapp-pulse {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: #25D366;
  animation: whatsapp-pulse 2s ease-out infinite;
  z-index: -1;
  opacity: 0.6;
}
.whatsapp-float svg { position: relative; z-index: 1; }

@keyframes whatsapp-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes whatsapp-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Hemen Ara — telefon zili animasyonu */
.btn-ghost svg {
  animation: phone-ring 2.5s ease-in-out infinite;
  transform-origin: center;
}
.btn-ghost:hover svg { animation-play-state: paused; }

@keyframes phone-ring {
  0%, 60%, 100% { transform: rotate(0); }
  5%, 15%, 25%  { transform: rotate(-15deg); }
  10%, 20%, 30% { transform: rotate(15deg); }
  35%           { transform: rotate(0); }
}

.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btn-shine 3.5s ease-in-out infinite;
}
@keyframes btn-shine {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float, .whatsapp-pulse, .btn-ghost svg, .btn-primary::after {
    animation: none !important;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 200;
}
.cookie-banner[hidden] { display: none; }
.cookie-text { flex: 1; line-height: 1.55; }
.cookie-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  background: var(--accent);
  color: var(--accent-text);
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13.5px;
  white-space: nowrap;
  transition: background .2s;
}
.cookie-accept:hover { background: var(--accent-strong); }
.cookie-close {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all .2s;
}
.cookie-close:hover { color: var(--text); border-color: var(--border-strong); }

/* Responsive */
@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: rgba(var(--header-bg-rgb), 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .primary-nav a {
    padding: 8px 0;
    font-size: 16px;
  }
  .nav-cta { text-align: center; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .footer-disc { text-align: left; }
  .hero { padding: 140px 0 70px; }
  .section { padding: 70px 0; }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; padding-bottom: 80px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ============================================================
   Mobil (≤720px) için kompakt düzen
   ============================================================ */
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .hero { padding: 110px 0 50px; }
  .hero-lede { font-size: 16px; margin-bottom: 24px; }
  .hero-actions { gap: 10px; margin-bottom: 36px; }
  .hero-actions .btn { padding: 12px 22px; font-size: 13px; }
  .hero-meta { padding-top: 22px; gap: 12px; }
  .hero-meta li { flex-direction: row; justify-content: space-between; align-items: baseline; gap: 12px; padding: 6px 0; border-bottom: 1px solid var(--border); }
  .hero-meta li:last-child { border-bottom: none; }
  .meta-label { font-size: 10px; }
  .meta-value { font-size: 14px; }

  /* Çalışma alanları: 2 sütunlu kompakt grid */
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .practice-card {
    padding: 18px 14px;
    border-radius: 12px;
  }
  .practice-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .practice-icon svg { width: 20px; height: 20px; }
  .practice-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .practice-card p {
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0;
    /* Açıklamayı 3 satırla kısıtla, gerisi tıklayınca okunsun (linkli kartlarda) */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .practice-arrow {
    font-size: 11px;
    margin-top: 8px;
  }
  .section-title.center { font-size: 26px; margin-bottom: 14px; }
  .section-lede { font-size: 14px; margin-bottom: 32px; }
  .disclaimer { margin-top: 28px; font-size: 11px; }

  /* Süreç adımları: 2 sütun */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .process-steps li { padding: 20px 16px; }
  .step-num { font-size: 28px; margin-bottom: 8px; }
  .process-steps h3 { font-size: 16px; }
  .process-steps p { font-size: 13px; }

  /* SSS bölümü: daha kompakt */
  .faq-item summary { padding: 16px 18px; font-size: 15.5px; }
  .faq-body { padding: 14px 18px 18px; }
  .faq-body p { font-size: 14px; }

  /* İletişim listesi: daha sıkı */
  .contact-list li { padding: 12px 0; }
  .contact-list a, .contact-list span:not(.contact-label) { font-size: 15.5px; }
  .contact-form { padding: 24px 20px; }

  /* Footer: kompakt */
  .site-footer { padding: 40px 0 24px; }
  .footer-grid { gap: 28px; margin-bottom: 28px; }
  .footer-bottom { padding-top: 20px; gap: 12px; }
}

/* Mobil — logo, footer ve banner yerleşim düzeltmeleri */
@media (max-width: 720px) {
  /* Logo'yu mobilde kompaktlaştır — taşmasın */
  .brand { gap: 8px; }
  .brand-icon { width: 30px; height: 30px; }
  .brand-pre { font-size: 9px; letter-spacing: 0.2em; }
  .brand-name { font-size: 17px; white-space: nowrap; }
  .nav-bar { height: 68px; gap: 10px; }
  .site-header.is-scrolled .nav-bar { height: 64px; }
  .site-header.is-scrolled .brand-icon { width: 28px; height: 28px; }
  .site-header.is-scrolled .brand-name { font-size: 16px; }
  .site-header.is-scrolled .brand-pre { font-size: 9px; }
  .theme-toggle { width: 36px; height: 36px; }
  .nav-toggle { width: 38px; height: 38px; }
  .container { padding: 0 18px; }

  /* Hero üst boşluğunu kompaktlaştır */
  .hero { padding: 90px 0 50px; }

  /* Footer açıklaması mobilde alta tüm genişlikte taşmasın */
  .footer-disc {
    max-width: 100%;
    text-align: left;
    word-break: break-word;
  }
  .footer-bottom p { font-size: 11.5px; line-height: 1.6; }

  /* Çerez banner + WhatsApp çakışması — banner WhatsApp'in üstünde dursun */
  .cookie-banner {
    bottom: 88px;
    left: 12px;
    right: 12px;
    padding: 14px 16px;
    padding-bottom: 14px;
    font-size: 12.5px;
  }
  .cookie-actions { gap: 6px; }
  .cookie-accept { padding: 8px 16px; font-size: 12.5px; }
  .cookie-close { width: 30px; height: 30px; }
}

/* Çok küçük ekranlarda (≤380px) yine 2 sütun, ama daha sıkı */
@media (max-width: 380px) {
  .practice-card { padding: 14px 12px; }
  .practice-card h3 { font-size: 13.5px; }
  .practice-card p { font-size: 11.5px; -webkit-line-clamp: 2; }
  .practice-icon { width: 32px; height: 32px; margin-bottom: 8px; }
  .practice-icon svg { width: 18px; height: 18px; }
  .brand-name { font-size: 15px; }
  .brand-pre { font-size: 8.5px; }
  .container { padding: 0 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Animasyonlar — Intro, Reveal, Tilt, Cursor, Progress
   ============================================================ */

/* 1. Açılış intro ekranı */
.intro-active { overflow: hidden; }
.intro-active body { overflow: hidden; }
#intro-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease;
}
#intro-screen.intro-fade { opacity: 0; pointer-events: none; }
.intro-logo {
  width: 96px;
  height: 96px;
  color: var(--accent);
  opacity: 0;
  transform-origin: 50% 14px;
  animation:
    intro-fade-in .9s cubic-bezier(.2,.9,.3,1.05) .1s forwards,
    intro-swing 1.4s ease-in-out 1s;
  filter: drop-shadow(0 0 24px rgba(200, 162, 91, 0.45));
}
.intro-line {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: intro-draw 1s ease-out .25s forwards;
}
.intro-cup {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: intro-draw 1s ease-out .65s forwards;
}
@keyframes intro-fade-in {
  0%   { opacity: 0; transform: scale(.7); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes intro-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes intro-swing {
  0%, 100% { transform: rotate(0); }
  30%      { transform: rotate(-7deg); }
  70%      { transform: rotate(7deg); }
}

/* 2. Hero harf harf */
.hero-title span { display: inline-block; }
.hero-title span .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(4deg);
  animation: letter-in .9s cubic-bezier(.2,.9,.3,1.05) forwards;
}
.hero-title span.letters-ready { opacity: 1; }
@keyframes letter-in {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

/* 3. Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.9,.3,1), transform .9s cubic-bezier(.2,.9,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Kart grupları için kademeli geliş */
.practice-card.reveal:nth-child(1)  { transition-delay: .02s; }
.practice-card.reveal:nth-child(2)  { transition-delay: .08s; }
.practice-card.reveal:nth-child(3)  { transition-delay: .14s; }
.practice-card.reveal:nth-child(4)  { transition-delay: .20s; }
.practice-card.reveal:nth-child(5)  { transition-delay: .26s; }
.practice-card.reveal:nth-child(6)  { transition-delay: .32s; }
.practice-card.reveal:nth-child(7)  { transition-delay: .38s; }
.practice-card.reveal:nth-child(8)  { transition-delay: .44s; }
.process-steps li.reveal:nth-child(1) { transition-delay: .05s; }
.process-steps li.reveal:nth-child(2) { transition-delay: .15s; }
.process-steps li.reveal:nth-child(3) { transition-delay: .25s; }
.process-steps li.reveal:nth-child(4) { transition-delay: .35s; }
.faq-item.reveal:nth-child(odd)  { transition-delay: .05s; }
.faq-item.reveal:nth-child(even) { transition-delay: .12s; }

/* 4. 3D Practice card tilt */
.practice-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.practice-card .practice-icon,
.practice-card h3 { transform: translateZ(20px); }

/* 5. Cursor spotlight */
.cursor-spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(200, 162, 91, 0.10) 0%, rgba(200, 162, 91, 0.04) 35%, transparent 65%);
  z-index: 1;
  opacity: 0;
  transition: opacity .4s ease;
  will-change: transform;
  mix-blend-mode: screen;
}

/* 6. Okuma ilerleme çubuğu */
#reading-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 200;
  transition: transform .12s ease-out;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(200, 162, 91, 0.5);
}

/* Mıknatıs etkisi: hero butonlar için ek micro-interaction */
.hero-actions .btn {
  transition: transform .25s cubic-bezier(.2,.9,.3,1.1), box-shadow .25s, background .25s, color .25s;
}
.hero-actions .btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

@media (max-width: 920px), (pointer: coarse) {
  .cursor-spotlight { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-title span .letter, .intro-logo, .intro-line, .intro-cup,
  .cursor-spotlight, #reading-progress, .practice-card {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  #intro-screen { display: none !important; }
}

/* Sub-pages */
.legal-page { padding: 140px 0 80px; max-width: 820px; margin: 0 auto; }
.legal-page h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}
.legal-page .updated {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 24px;
  margin: 40px 0 14px;
}
.legal-page p, .legal-page li {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
}
.legal-page ul { padding-left: 20px; margin: 12px 0 20px; }
.legal-page a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted) !important;
  letter-spacing: 0.04em;
}
.back-link:hover { color: var(--accent) !important; }

/* ============================================================
   Sözlük (glossary) sayfası
   ============================================================ */
.glossary-page {
  padding: 130px 24px 80px;
  max-width: 920px;
}
.glossary-page h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 14px;
}
.glossary-intro {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 720px;
  line-height: 1.7;
}
.glossary-search-wrap {
  position: relative;
  margin-bottom: 24px;
}
.glossary-search {
  width: 100%;
  padding: 16px 50px 16px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.glossary-search:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.search-clear:hover { background: var(--accent-soft); color: var(--accent); }
.search-clear[hidden],
.glossary-empty[hidden],
.glossary-letter[hidden],
dt[hidden], dd[hidden] { display: none !important; }
.glossary-alphabet[hidden] { display: none !important; }

.glossary-alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 40px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.alpha-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-muted) !important;
  text-decoration: none;
  transition: all .2s;
}
.alpha-link:hover {
  background: var(--accent-soft);
  color: var(--accent) !important;
  transform: translateY(-2px);
}

.glossary-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
  font-style: italic;
}

.glossary-letter {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}
.glossary-letter h2 {
  font-size: 56px;
  color: var(--accent);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.glossary-letter dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.glossary-letter dt {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.glossary-letter dd {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 15.5px;
  padding-left: 0;
}
.glossary-letter dt[hidden] + dd[hidden] { display: none; }

.glossary-cta {
  margin-top: 64px;
  padding: 48px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.glossary-cta h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.glossary-cta p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 24px;
}

/* ============================================================
   SEO Landing sayfaları (her hukuk dalı için)
   ============================================================ */
.landing-page {
  padding: 130px 24px 80px;
  max-width: 920px;
  margin: 0 auto;
}
.landing-hero {
  margin-bottom: 56px;
}
.landing-hero h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.1;
  margin: 12px 0 20px;
}
.landing-hero .lede {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 28px;
}
.landing-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-page section {
  margin-bottom: 48px;
}
.landing-page h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 18px;
  color: var(--text);
}
.landing-page h3 {
  font-size: 20px;
  margin: 28px 0 10px;
  color: var(--text);
}
.landing-page p, .landing-page li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}
.landing-page ul, .landing-page ol {
  padding-left: 22px;
  margin: 14px 0;
}
.landing-page li { margin-bottom: 8px; }

.info-box {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 28px 0;
}
.info-box strong { color: var(--text); }

.landing-faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.landing-faq summary {
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.landing-faq summary::-webkit-details-marker { display: none; }
.landing-faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--accent);
  transition: transform .25s;
}
.landing-faq details[open] summary::after { transform: rotate(45deg); }
.landing-faq details > div {
  padding: 0 22px 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.landing-cta-section {
  margin-top: 56px;
  padding: 44px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.landing-cta-section h2 { margin-bottom: 12px; }
.landing-cta-section p { margin-bottom: 24px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* Hızlı Araçlar (ana sayfa) */
.tools-section {
  padding: 70px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 32px auto 0;
}
.tool-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text) !important;
  text-decoration: none;
  transition: all .25s ease;
}
.tool-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.2);
}
.tool-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tool-content { flex: 1; }
.tool-content h3 {
  font-size: 19px;
  margin: 0 0 6px;
  line-height: 1.3;
}
.tool-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.55;
}
.tool-arrow {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform .2s;
  display: inline-block;
}
.tool-card:hover .tool-arrow { transform: translateX(4px); }

@media (max-width: 720px) {
  .tools-section { padding: 44px 0; }
  .tools-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
  .tool-card { padding: 18px 16px; gap: 14px; }
  .tool-icon { width: 46px; height: 46px; border-radius: 10px; }
  .tool-icon svg { width: 26px; height: 26px; }
  .tool-content h3 { font-size: 16px; }
  .tool-content p { font-size: 13px; margin-bottom: 8px; }
}

/* Hesaplayıcı stilleri */
.calc-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto 40px;
}
.calc-form { display: flex; flex-direction: column; gap: 18px; }
.calc-label { display: flex; flex-direction: column; gap: 6px; }
.calc-label > span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.calc-label input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color .2s;
}
.calc-label input:focus { outline: none; border-color: var(--accent); }
.calc-result {
  margin-top: 28px;
  padding: 24px 22px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
}
.calc-result h3 {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.calc-amount {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--accent);
  margin: 4px 0 12px;
  font-weight: 600;
}
.calc-detail { font-size: 13.5px; color: var(--text-muted); margin: 4px 0 12px; }
.calc-note {
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}
.calc-cta-box {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.calc-cta-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}
.calc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.calc-cta-actions .btn {
  flex: 1 1 220px;
  text-align: center;
  justify-content: center;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.info-table th, .info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.info-table th { background: var(--bg-elev); color: var(--text); font-size: 14px; }
.info-table td { color: var(--text-muted); font-size: 14px; }
.info-table tr:last-child td { border-bottom: none; }

.related-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.related-service {
  display: block;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text) !important;
  font-family: var(--serif);
  font-size: 17px;
  transition: all .2s;
}
.related-service:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .glossary-letter h2 { font-size: 42px; }
  .alpha-link { width: 30px; height: 30px; font-size: 15px; }
}

/* ============================================================
   Form Trust Notice
   ============================================================ */
.form-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 10px 12px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

/* ============================================================
   Form Select (Konu dropdown)
   ============================================================ */
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a09c93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
}

/* ============================================================
   Mobile Sticky CTA Bar (Telefon + WhatsApp)
   ============================================================ */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 720px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
    background: rgba(var(--header-bg-rgb), 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 30px -10px rgba(0, 0, 0, 0.35);
  }

  .mobile-cta-bar > a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 10px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform .15s ease, opacity .15s ease;
  }

  .mobile-cta-bar > a:active {
    transform: scale(0.97);
    opacity: 0.92;
  }

  .mobile-cta-call {
    background: var(--accent);
    color: var(--accent-text);
  }

  .mobile-cta-wa {
    background: #25D366;
    color: #ffffff;
  }

  /* WhatsApp float'ı mobilde gizle — sticky bar onun yerini alıyor */
  .whatsapp-float {
    display: none;
  }

  /* Cookie banner + body içerik sticky bar tarafından kapanmasın */
  body {
    padding-bottom: 72px;
  }
  .cookie-banner {
    bottom: 72px;
  }
}

/* ============================================================
   Blog
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-decoration: none;
  color: var(--text);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
}
.blog-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--text);
}
.blog-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 18px;
  flex-grow: 1;
}
.blog-card .blog-readmore {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 8px;
}
.post-meta a { color: var(--accent); }
.post-cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 24px 26px;
  margin: 36px 0;
}
.post-cta-box h3 { margin: 0 0 8px; }
.post-cta-box p { margin: 0 0 16px; }
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Çerez onay bandı — Reddet butonu */
.cookie-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.cookie-reject:hover { color: var(--text); border-color: var(--border-strong); }
