/* ===========================================================
   ELZEY HUKUK — Master Stylesheet (UI/UX Pro Max Edition)
   Color philosophy: deep ink + bone + warm gold + umber
   No blue, no purple. High contrast, WCAG 2.1 AA compliant.
   =========================================================== */

:root {
  --ink: #0E0E0C;
  --ink-soft: #1A1815;
  --bone: #F4EFE6;
  --parchment: #E8DCC4;
  --parchment-deep: #D9C8A4;
  --gold: #B89968;
  --gold-deep: #8C6E3F;
  --gold-darker: #6E5328;
  --gold-soft: #CFB47A;
  --umber: #3B2A1A;
  --umber-deep: #251810;
  --mist: #8A7E6E;
  --mist-light: #C4B9A8;
  --line: rgba(184, 153, 104, 0.25);
  --line-strong: rgba(184, 153, 104, 0.5);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1440px;
  --pad: 32px;
}

/* ===========================================================
   RESET & ACCESSIBILITY BASE
   =========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bone);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Skip to main content (a11y) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 24px;
  z-index: 9999;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: top 0.3s var(--ease);
}
.skip-link:focus {
  top: 20px;
}

/* Focus visible styling */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

/* Reading Progress Bar */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-soft));
  width: 0%;
  z-index: 10000;
  transition: width 0.1s ease-out;
}

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

.serif { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.uppercase { text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; font-weight: 500; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold-deep);
}

/* ===========================================================
   NAVIGATION
   =========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(14, 14, 12, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--bone);
  z-index: 110;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  color: var(--bone);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold-soft); }
.nav-cta {
  padding: 12px 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 0.3s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-cta:hover {
  background: transparent;
  color: var(--gold);
}
.nav-cta:active { transform: scale(0.98); }

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 110;
  cursor: pointer;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--bone);
  transition: all 0.3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 12, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s;
}
.hero-video.loaded { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,12,0.5) 0%, rgba(14,14,12,0.25) 40%, rgba(14,14,12,0.9) 100%);
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 120px 0 80px;
  color: var(--bone);
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.hero-top .eyebrow { color: var(--gold-soft); }
.hero-top .eyebrow::before { background: var(--gold-soft); }
.hero-date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--mist-light);
}

.hero-wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(80px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--bone);
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1.2s var(--ease-out) 0.3s forwards;
}
.hero-wordmark em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.35;
  max-width: 640px;
  color: var(--bone);
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1.2s var(--ease-out) 0.6s forwards;
}
.hero-tagline em { color: var(--gold-soft); font-style: italic; }

.hero-meta {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--mist-light);
  line-height: 2;
  opacity: 0;
  animation: rise 1.2s var(--ease-out) 0.9s forwards;
}
.hero-meta strong { color: var(--bone); font-weight: 500; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 32px;
  min-height: 48px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--bone);
}
.btn-ghost:hover {
  background: var(--bone);
  color: var(--ink);
}
.btn-dark {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(6px); }
.btn:active { transform: scale(0.98); }

/* ===========================================================
   SECTIONS
   =========================================================== */
section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.section-dark { background: var(--ink); color: var(--bone); }
.section-bone { background: var(--bone); }
.section-parchment { background: var(--parchment); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--gold-deep); }
.section-dark .section-title em { color: var(--gold-soft); }
.section-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ===========================================================
   MANIFESTO
   =========================================================== */
.manifesto {
  background: var(--ink);
  color: var(--bone);
  padding: 160px 0;
  text-align: center;
  position: relative;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.manifesto-text em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}
.manifesto-sig {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mist);
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ===========================================================
   PRACTICE GRID (Home)
   =========================================================== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.practice-card {
  background: var(--bone);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.4s;
  cursor: pointer;
  position: relative;
  min-height: 360px;
}
.practice-card:hover { background: var(--parchment); }
.practice-card:active { transform: scale(0.99); }
.practice-card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  font-weight: 600;
}
.practice-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: sepia(0.2) saturate(0.9);
  transition: transform 0.6s var(--ease);
}
.practice-card:hover .practice-card-img { transform: scale(1.04); }
.practice-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.practice-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.85;
}
.practice-card-link {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===========================================================
   STATS BAR
   =========================================================== */
.stats {
  background: var(--ink);
  color: var(--bone);
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.stat {
  padding: 48px 32px;
  background: var(--ink);
  text-align: left;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.stat-num sup {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--bone);
  font-weight: 400;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist-light);
}

/* ===========================================================
   TEAM (2 Lawyers)
   =========================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.team-card {
  position: relative;
}
.team-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.6s;
  margin-bottom: 24px;
}
.team-card:hover .team-img { filter: grayscale(0.4) contrast(1.05); }
.team-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 16px;
}
.team-bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ===========================================================
   TESTIMONIALS & CONTROLS
   =========================================================== */
.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
  color: var(--bone);
  margin-bottom: 40px;
  position: relative;
  padding: 0 40px;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.35;
  font-family: var(--font-display);
  line-height: 1;
}
.testimonial-author {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  background: transparent;
  font-size: 18px;
}
.testimonial-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.testimonial-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}
.testimonial-dot {
  width: 32px;
  height: 2px;
  background: var(--mist);
  cursor: pointer;
  transition: background 0.3s, height 0.3s;
}
.testimonial-dot.active {
  background: var(--gold);
  height: 3px;
}

/* ===========================================================
   BLOG CARDS
   =========================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.blog-card {
  display: block;
  cursor: pointer;
}
.blog-card.featured {
  grid-row: span 2;
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: sepia(0.15) saturate(0.95);
  margin-bottom: 24px;
  transition: transform 0.6s;
}
.blog-card:hover .blog-card-img { transform: scale(1.03); }
.blog-card.featured .blog-card-img { aspect-ratio: 4/5; }
.blog-card-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.blog-card.featured .blog-card-title { font-size: 32px; }
.blog-card:hover .blog-card-title { color: var(--gold-deep); }
.blog-card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.8;
}

/* ===========================================================
   CTA BANNER
   =========================================================== */
.cta-banner {
  position: relative;
  padding: 160px 0;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 1;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 24px;
}
.cta-title em { font-style: italic; color: var(--gold-soft); }
.cta-text {
  font-size: 18px;
  color: var(--mist-light);
  max-width: 540px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--umber-deep);
  color: var(--mist-light);
  padding: 100px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-brand .brand-mark { font-size: 36px; color: var(--bone); }
.footer-brand .brand-sub { color: var(--gold); }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--mist-light);
  max-width: 360px;
  margin-bottom: 24px;
}
.footer-contact-line {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--mist-light);
  line-height: 2;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--mist-light);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(184, 153, 104, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist-light);
}
.footer-social { display: flex; gap: 24px; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 60px;
  overflow-x: auto;
}
.faq-tab {
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mist);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all 0.3s;
}
.faq-tab.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.faq-tab:hover { color: var(--gold-deep); }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold-deep); }
.faq-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-left: 24px;
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-answer-inner { padding-bottom: 32px; max-width: 800px; }

/* ===========================================================
   CALCULATORS
   =========================================================== */
.calc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.calc-tab {
  padding: 20px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--mist);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.calc-tab small {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
}
.calc-tab.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.calc-tab.active small { color: var(--gold-deep); font-weight: 600; }
.calc-tab:hover { color: var(--gold-deep); }

.calc-panel { display: none; }
.calc-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.calc-form { display: flex; flex-direction: column; gap: 24px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.calc-input,
.calc-select {
  padding: 16px 20px;
  background: var(--bone);
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ink);
  transition: border 0.3s;
}
.calc-input:focus,
.calc-select:focus {
  outline: none;
  border-color: var(--gold);
}
.calc-hint {
  font-size: 12px;
  color: var(--mist);
  font-style: italic;
  margin-top: 4px;
}
.calc-submit {
  margin-top: 16px;
  padding: 20px 32px;
  background: var(--ink);
  color: var(--bone);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.3s;
}
.calc-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.calc-submit:active { transform: scale(0.98); }

.calc-result {
  background: var(--ink);
  color: var(--bone);
  padding: 48px 40px;
  position: sticky;
  top: 120px;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.calc-result-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
  font-weight: 600;
}
.calc-result-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  word-break: break-all;
}
.calc-result-currency {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--mist-light);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.calc-breakdown {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--mist-light);
}
.calc-breakdown-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 4px 0;
}
.calc-breakdown-line span:last-child { color: var(--bone); }
.calc-formula {
  font-size: 12px;
  color: var(--mist);
  font-style: italic;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px dashed var(--line);
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.contact-info-block { margin-bottom: 40px; }
.contact-info-block h3 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-info-block p {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.3;
  color: var(--ink);
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-field { display: flex; flex-direction: column; gap: 8px; }
.contact-field input,
.contact-field textarea,
.contact-field select {
  padding: 18px 20px;
  background: var(--bone);
  border: 1px solid var(--line-strong);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border 0.3s;
}
.contact-field textarea { resize: vertical; min-height: 140px; }
.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ===========================================================
   PAGE HERO (Inner pages)
   =========================================================== */
.page-hero {
  background: var(--ink);
  color: var(--bone);
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero .eyebrow::before { background: var(--gold-soft); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0;
  max-width: 1000px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--mist-light);
  max-width: 680px;
}

/* ===========================================================
   BLOG PAGE & DETAIL
   =========================================================== */
.blog-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.blog-filter {
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.3s;
}
.blog-filter.active,
.blog-filter:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

.article-wrap { max-width: 780px; margin: 0 auto; }
.article-hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: sepia(0.15) saturate(0.95);
  margin-bottom: 48px;
  border-radius: 2px;
}
.article-body { font-size: 18px; line-height: 1.85; color: var(--ink); }
.article-body p { margin-bottom: 24px; }
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.2;
  margin: 56px 0 24px;
  color: var(--ink);
}
.article-body h2 em { font-style: italic; color: var(--gold-deep); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 0 16px 32px;
  margin: 40px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink-soft);
  background: rgba(232, 220, 196, 0.2);
}
.article-body ul { margin: 24px 0; padding-left: 24px; list-style: disc; }
.article-body li { margin-bottom: 12px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--parchment);
  color: var(--gold-deep);
  font-weight: 600;
  margin-right: 8px;
}
.article-author {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 60px 0;
}
.article-author-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}
.article-author-info { font-size: 14px; color: var(--ink-soft); }
.article-author-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

/* Social Share Bar */
.social-share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  margin: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.share-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-right: 8px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--parchment);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s;
}
.share-btn svg { width: 14px; height: 14px; fill: currentColor; }
.share-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ===========================================================
   ABOUT PAGE
   =========================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: sepia(0.15) saturate(0.95);
}
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 80px;
}
.value-card {
  padding: 32px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}
.value-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--ink);
}
.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.85;
}

/* ===========================================================
   PRACTICE AREAS ACCORDION / DRAWER (alanlar.html)
   =========================================================== */
.areas-accordion {
  display: flex;
  flex-direction: column;
}
.area-item {
  border-top: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.area-item:last-child {
  border-bottom: 1px solid var(--line);
}
.area-header {
  display: grid;
  grid-template-columns: 80px 1.4fr 1.6fr 1fr 60px;
  gap: 32px;
  align-items: center;
  padding: 36px 20px;
  cursor: pointer;
  background: transparent;
  width: 100%;
  text-align: left;
  border: none;
  font-family: inherit;
  transition: background 0.3s;
}
.area-item:hover .area-header,
.area-item.open .area-header {
  background: var(--parchment);
}
.area-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  font-weight: 600;
}
.area-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  color: var(--ink);
}
.area-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.9;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tag {
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(184, 153, 104, 0.2);
  color: var(--gold-deep);
  font-weight: 600;
}
.area-toggle-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-deep);
  transition: transform 0.3s, background 0.3s;
}
.area-item.open .area-toggle-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
}
.area-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
  background: rgba(232, 220, 196, 0.35);
}
.area-drawer-inner {
  padding: 36px 32px 48px 100px;
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 48px;
}
.area-drawer-content h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 16px;
}
.area-drawer-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.area-drawer-content li {
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  padding-left: 20px;
}
.area-drawer-content li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-size: 14px;
}
.area-drawer-side {
  background: var(--bone);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.area-drawer-side h5 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
}
.area-drawer-side p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ===========================================================
   SOCIAL ICONS
   =========================================================== */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  transition: all 0.3s var(--ease);
  background: transparent;
}
.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-icon:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.social-icon.whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.social-icon.whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: white;
}

/* ===========================================================
   WHATSAPP FLOATING BUTTON
   =========================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: #25D366;
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.4s var(--ease);
  text-decoration: none;
  font-family: var(--font-body);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.whatsapp-float:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: white;
  flex-shrink: 0;
}
.whatsapp-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.whatsapp-float-text small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 2px;
}
.whatsapp-float-text strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.whatsapp-float-pulse {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 9px;
  height: 9px;
  background: white;
  border-radius: 50%;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===========================================================
   RESPONSIVE BREAKPOINTS
   =========================================================== */
@media (max-width: 1024px) {
  :root { --pad: 24px; }
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-inner { padding: 100px 0 60px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 40px; }
  .hero-meta { text-align: left; }
  .section-head { grid-template-columns: 1fr; gap: 32px; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 480px; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; gap: 60px; }
  .blog-card.featured { grid-row: auto; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-actions { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: 1fr; }
  .area-header { grid-template-columns: 60px 1fr 60px; gap: 20px; }
  .area-desc, .area-tags { display: none; }
  .area-name { font-size: 24px; }
  .area-drawer-inner { padding: 24px 20px; grid-template-columns: 1fr; gap: 32px; }
  .blog-list { grid-template-columns: 1fr; }
  .calc-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .calc-result { position: static; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }
  body { font-size: 16px; }
  .practice-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .manifesto { padding: 100px 0; }
  .faq-question { font-size: 18px; }
  .calc-tab { padding: 16px 20px; font-size: 16px; }
  .calc-result-value { font-size: 38px; }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px 12px 14px;
  }
  .whatsapp-float-text { display: none; }
}

/* ===========================================================
   LEGAL MODAL & MAP EMBED
   =========================================================== */
.legal-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 12, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.legal-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.legal-modal-content {
  background: var(--bone);
  border: 1px solid var(--gold);
  color: var(--ink);
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.legal-modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--parchment);
}
.legal-modal-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}
.legal-modal-close {
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 8px;
}
.legal-modal-body {
  padding: 32px;
  overflow-y: auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal-modal-body p { margin-bottom: 16px; }

.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 450px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===========================================================
   PRINT & PDF SPECIFIC STYLES (A4 Portrait)
   =========================================================== */
@media print {
  @page {
    size: A4 portrait;
    margin: 8mm 12mm;
  }

  .nav,
  .mobile-menu,
  .mobile-menu-backdrop,
  .page-hero,
  .calc-tabs,
  .calc-form,
  .section-parchment,
  .cta-banner,
  .footer,
  .whatsapp-float,
  .legal-modal-backdrop,
  .skip-link,
  #reading-progress,
  button[type="button"] {
    display: none !important;
  }

  html, body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 9pt !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  section {
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
  }

  .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .calc-panel.active {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .calc-result {
    position: static !important;
    background: #ffffff !important;
    color: #000000 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    margin: 0 !important;
    page-break-inside: avoid !important;
  }

  .calc-result::before {
    content: "ELZEY HUKUK BÜROSU\A Hukuki Hesaplama Döküm Raporu (2026)";
    white-space: pre-wrap;
    display: block;
    font-family: var(--font-display);
    font-size: 14pt !important;
    font-weight: bold;
    text-align: center;
    color: #000000 !important;
    margin-bottom: 8px !important;
    padding-bottom: 6px !important;
    border-bottom: 1.5px solid #000000 !important;
  }

  .calc-result-label {
    color: #444444 !important;
    font-size: 8.5pt !important;
    text-transform: uppercase;
    margin-bottom: 2px !important;
  }

  .calc-result-value {
    color: #000000 !important;
    font-size: 18pt !important;
    margin-bottom: 2px !important;
  }

  .calc-result-currency {
    color: #666666 !important;
    font-size: 8pt !important;
    margin-bottom: 8px !important;
  }

  .calc-breakdown {
    border-top: 1px solid #000000 !important;
    padding-top: 6px !important;
    color: #000000 !important;
  }

  .calc-breakdown div,
  .calc-breakdown span,
  .calc-breakdown strong,
  .calc-breakdown p {
    color: #000000 !important;
  }

  .calc-breakdown-line {
    border-bottom: 1px dashed #d0d0d0 !important;
    padding: 3px 0 !important;
    font-size: 8.5pt !important;
  }

  .calc-breakdown > div {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    padding: 6px 8px !important;
    border: 1px solid #cccccc !important;
    background: #fafafa !important;
    border-radius: 3px !important;
    page-break-inside: avoid !important;
  }

  .calc-formula {
    border-top: 1px solid #000000 !important;
    color: #444444 !important;
    margin-top: 8px !important;
    padding-top: 4px !important;
    font-size: 7.5pt !important;
  }
}
