/* ============================================================
   hesapsonuc.com – Page Shell v2
   ============================================================ */

/* ── Global Reset & Typography ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; width: 100%; }
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}
h1 { font-size: clamp(1.6rem, 4vw, 2.25rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: 1.175rem; }
h3 { font-size: 1.05rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
a { color: #0f766e; text-decoration: none; }
a:hover { color: #0d5e57; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.25rem; margin: 0 0 1rem; }
ul:last-child, ol:last-child { margin-bottom: 0; }
li { margin-bottom: 0.35rem; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* Header v2: logo ikonu (inline hs-header-v2 bazı sayfalarda eksik kalırsa yedek) */
.hs-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ── Erişilebilirlik: klavye odak halkası ── */
a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: 2px;
}
/* Odağı outline ile göster; tıklamada gereksiz halka olmasın */
:focus:not(:focus-visible) { outline: none; }

/* ── Hareket hassasiyeti ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Page Shell ── */
.page-shell {
  background: #f8fafc;
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  margin: 0 auto;
}

/* ── Hero – teal gradient (hesaplama + kategori sayfaları aynı stil) ── */
.page-hero {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
  padding: 2.75rem 1.5rem 2.5rem;
  width: 100%;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.page-hero .hero-inner h1,
.page-hero .hero-inner p {
  color: #ffffff;
}
.page-title {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 0.75rem;
}
.page-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}
@media (max-width: 768px) {
  .page-hero { padding: 2rem 1rem 1.75rem; }
}

/* ── Anasayfa (hp-*) – kategori ile aynı header, kendi hero/card stili ── */
.hp-hero {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
  padding: 2.75rem 1.5rem 2.5rem;
  width: 100%;
}
.hp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}
.hp-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 0.75rem;
}
.hp-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.95);
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}
.hp-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.hp-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
}
.hp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hp-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: #334155;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: border-color .2s, box-shadow .2s, color .2s, transform .2s;
}
.hp-card:hover {
  border-color: #0f766e;
  box-shadow: 0 4px 16px rgba(15,118,110,.12), 0 2px 6px rgba(0,0,0,.06);
  color: #0f766e;
  transform: translateY(-2px);
}
.hp-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: inherit;
}
.hp-card-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.hp-card-title {
  font-weight: 600;
  font-size: 0.95rem;
}
.hp-cta {
  text-align: center;
  padding: 2rem 1rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px dashed #e2e8f0;
}
.hp-cta p {
  margin: 0 0 1rem;
  color: #64748b;
}
.hp-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #0f766e;
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}
.hp-btn:hover {
  background: #0d5e57;
}
.hp-btn:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: 2px;
  background: #0d5e57;
}
@media (max-width: 768px) {
  .hp-hero { padding: 2rem 1rem 1.75rem; }
  .hp-main { padding: 1.5rem 1rem 2rem; }
  .hp-card-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

/* iPhone SE, küçük ekranlar (320–480px) */
@media (max-width: 480px) {
  .page-hero { padding: 1.5rem 0.75rem 1.5rem; }
  .page-layout { padding: 1rem 0.75rem 2rem; }
  .hs-breadcrumb nav { padding: 0.5rem 0.75rem; }
  .hs-header-inner { padding: 0 0.75rem !important; }
  .cat-tool-card { padding: 0.85rem 1rem; gap: 0.75rem; font-size: 0.9rem; }
  .cat-read-more { padding: 1rem; margin-bottom: 1rem; }
  .cat-read-more-toggle { padding: 0.45rem 0.75rem; font-size: 0.85rem; }
}

/* ── Kategori sayfası: intro (normal hesaplama sayfası ile aynı beyaz yazı) ── */
.page-hero .cat-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
  margin: 0 0 0.5rem;
  max-width: 720px;
}
.page-hero .cat-count {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}
/* Daha fazla oku / Daha az göster - beyaz buton, yüksek kontrast */
.cat-read-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: none;
  border-radius: 8px;
  color: #0f766e;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.cat-read-more-toggle:hover {
  background: #f0fdfa;
  color: #0d5e57;
}
.cat-read-more-toggle:active {
  transform: scale(0.98);
}
.cat-read-more-toggle:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: 2px;
}
/* Genişleyen içerik hero DIŞINDA - yeşil alan büyümez */
.cat-read-more {
  display: none;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 10px;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  border: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.cat-read-more.is-open {
  display: block;
}
.cat-read-more p {
  margin-bottom: 0.85rem;
}
.cat-read-more p:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .cat-read-more-toggle { padding: 0.5rem 0.85rem; font-size: 0.85rem; }
  .cat-read-more { padding: 1rem 1.25rem; margin-bottom: 1.25rem; }
}

/* ── Two-Column Layout ── */
.page-layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}
@media (max-width: 768px) {
  .page-layout { padding: 1rem 1rem 2rem; }
  .hs-breadcrumb nav { padding: 0.5rem 1rem; }
  .hs-header-inner { padding: 0 1rem !important; }
}
/* iPhone 14 Pro Max, orta boy mobil (430–500px) */
@media (max-width: 500px) {
  .page-layout { padding: 1rem 0.875rem 2rem; }
  .page-hero { padding: 1.75rem 0.875rem 1.5rem; }
  .hs-breadcrumb nav { padding: 0.5rem 0.875rem; }
  .hs-header-inner { padding: 0 0.875rem !important; }
}

/* ── Content Area ── */
.content-area {
  min-width: 0;
}
.page-block {
  margin-bottom: 1.75rem;
}

/* ── Sidebar ── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 1023px) {
  .sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
}
.sidebar-card:last-child { margin-bottom: 0; }
.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.sidebar-card-header svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.sidebar-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Sidebar related links (v2 style: full-width rows with borders) */
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-links li { margin: 0; }
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #0f172a;
  padding: 0.65rem 1.15rem;
  border-bottom: 1px solid #e2e8f0;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links a:hover {
  background: #f8fafc;
  color: #0f766e;
}
.sidebar-links a:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: -2px;
  background: #f0fdfa;
  color: #0f766e;
}
/* Benzer Hesaplayıcılar: ikon gösterme */
.sidebar-card:first-child .sidebar-card-header svg,
.sidebar-links .link-arrow { display: none; }
/* Embed code snippet (dark like v2) */
.embed-snippet {
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  background: #0f172a;
  color: #94a3b8;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin: 0.5rem 1.15rem 1.15rem;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.5;
  cursor: text;
  user-select: all;
}

/* Feedback card (v2 style centered) */
.feedback-body {
  padding: 1.15rem;
  text-align: center;
}
.feedback-body p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}
.feedback-btns {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.feedback-btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1.5px solid #e2e8f0;
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.feedback-btn:disabled { opacity: 0.6; cursor: default; }
.feedback-btn.yes:hover { border-color: #16a34a; background: #f0fdf4; color: #16a34a; }
.feedback-btn.no:hover { border-color: #dc2626; background: #fef2f2; color: #dc2626; }
.feedback-btn:focus-visible { outline: 2px solid #0f766e; outline-offset: 2px; }

/* Share toast – visibility/opacity so mobilde de görünsün */
.share-toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  background: #0f172a;
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 2147483647;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  font-family: inherit;
  max-width: calc(100vw - 2rem);
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.share-toast.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  animation: toastSlideUp .25s ease;
}
@media (max-width: 768px) {
  .share-toast {
    bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
  }
}
@keyframes toastSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Share Buttons (v2 style) ── */
.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.15rem;
}
.share-buttons p {
  font-size: 0.825rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  font-family: inherit;
}
.share-btn:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: 2px;
  border-color: #0f766e;
  color: #0f766e;
  text-decoration: none;
  font-family: inherit;
}
.share-btn:hover {
  border-color: #0f766e;
  color: #0f766e;
  background: #f0fdfa;
}
.share-btn svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.share-btn.share-wa { color: #25d366; border-color: #dcfce7; background: #f0fdf4; }
.share-btn.share-wa:hover { background: #dcfce7; border-color: #25d366; }
.share-btn.share-email { color: #64748b; }
.share-btn.share-email:hover { border-color: #0f766e; color: #0f766e; }
.share-btn.share-tw { color: #1d9bf0; border-color: #dbeafe; background: #eff6ff; }
.share-btn.share-tw:hover { background: #dbeafe; border-color: #1d9bf0; }
.share-copied {
  color: #16a34a;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0;
  display: none;
}

/* ── SEO Content Cards (matches v2 seo-article) ── */
.seo-section, .seo-article {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
}
.seo-section:last-child { margin-bottom: 0; }

.seo-section h2, .seo-article h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #ccfbf1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.seo-section h2::before, .seo-article h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.25em;
  background: #0f766e;
  border-radius: 2px;
  flex-shrink: 0;
}

.seo-section h3, .seo-article h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
  margin: 1.25rem 0 0.5rem;
}

.seo-section p, .seo-article p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #0f172a;
}

.seo-section li, .seo-article li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #0f172a;
}

@media (max-width: 768px) {
  .seo-section {
    padding: 1.25rem;
    border-radius: 12px;
  }
  .seo-section .seo-table-wrap th,
  .seo-section .seo-table-wrap td {
    padding: 0.4rem 0.5rem;
    font-size: 0.875rem;
  }
}

/* Step list */
.seo-section .seo-steps {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.seo-section .seo-steps li { margin-bottom: 0.5rem; }
.seo-section .seo-steps li:last-child { margin-bottom: 0; }

/* Table — mobilde yatay kaydırma (overflow-x) */
.seo-section .seo-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 0.75rem;
  max-width: 100%;
  min-width: 0;
}
.seo-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  color: #1e293b;
}
.seo-section .seo-table-wrap table {
  min-width: 380px;
}
.seo-section th,
.seo-section td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border: 1px solid #e2e8f0;
}
.seo-section th { background: #f8fafc; font-weight: 600; }

/* Trust note */
.seo-note {
  font-size: 0.85rem;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  line-height: 1.5;
}

/* E-E-A-T: footer öncesi standart yasal uyarı */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hs-eeat-trust {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  padding: 1.25rem 0 0;
}
.hs-eeat-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 1.25rem;
}
.hs-eeat-disclaimer {
  border-left: 4px solid #0f766e;
  background: #fff;
  margin-bottom: 0;
}
.hs-eeat-disclaimer p {
  margin: 0;
}
/* Kategori hub: metin içi öne çıkan linkler */
.hs-hub-context {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 1.25rem;
}
.hs-hub-context-p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.hs-hub-context-p a {
  font-weight: 500;
}
.hp-context-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
.hp-context-text {
  max-width: 720px;
  margin: 0 auto 0;
  text-align: center;
  color: #64748b;
  line-height: 1.7;
  font-size: 0.98rem;
}
.hp-context-text a {
  font-weight: 500;
}

/* FAQ — v2 interactive accordion with <details>/<summary> */
.seo-faq {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fffe 100%);
  border-color: rgba(15,118,110,.15);
}
.seo-faq .seo-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.seo-faq .seo-faq-item {
  margin-bottom: 0.75rem;
}
.seo-faq .seo-faq-item:last-child { margin-bottom: 0; }

.faq-accordion {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .15s;
}
.faq-accordion:hover { box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.faq-accordion[open] { box-shadow: 0 2px 8px rgba(0,0,0,.06); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  font-family: inherit;
  list-style: none;
  transition: background .15s, color .15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: #f8fafc; }
.faq-question:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: -2px;
  background: #f0fdfa;
}
.faq-accordion[open] .faq-question {
  background: #ccfbf1;
  color: #0f766e;
}
.faq-accordion[open] .faq-question:focus-visible { background: #99f6e4; }
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: #94a3b8;
  transition: transform .2s ease, color .2s;
}
.faq-accordion[open] .faq-chevron {
  transform: rotate(180deg);
  color: #0f766e;
}
.faq-answer {
  padding: 0 1.15rem 1rem;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.85rem;
}
.faq-answer p { margin: 0; color: inherit; font-size: inherit; }

/* Formula box (v2 style) */
.formula-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0f766e;
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  margin: 1rem 0;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #0d5e57;
  font-weight: 600;
}

/* Example box (v2 style) */
.example-box {
  background: #ccfbf1;
  border: 1px solid rgba(15,118,110,.2);
  border-radius: 12px;
  padding: 1.15rem;
  margin: 1rem 0;
}
.example-box-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 0.4rem;
}
.example-box p {
  margin: 0;
  color: #0d5e57;
}

/* Related tools grid - SEO silo: max 4, 2-col mobile, 4-col desktop */
.seo-links .seo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .seo-links .seo-link-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.seo-link-card {
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: border-color .2s, box-shadow .2s, color .2s;
}
.seo-link-card:hover {
  border-color: #0f766e;
  color: #0f766e;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* Kategori sayfası – hesaplama araçları grid */
.cat-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 380px) {
  .cat-tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 640px) {
  .cat-tools-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .cat-tools-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.cat-tool-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  min-width: 0;
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: border-color .2s, box-shadow .2s, color .2s;
}
.cat-tool-card:hover {
  border-color: #0f766e;
  color: #0f766e;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.cat-tool-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cat-tool-title { flex: 1; }
.cat-tool-arrow {
  width: 18px;
  height: 18px;
  color: #cbd5e1;
  flex-shrink: 0;
  transition: color .15s;
}
.cat-tool-card:hover .cat-tool-arrow { color: #0f766e; }

/* Yüzde hesaplama special modules */
.yuzde-intro {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}
.calc-container-yuzde .yuzde-module {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 1.25rem 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e2e8f0;
}
.calc-container-yuzde .yuzde-module:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.calc-container-yuzde .yuzde-module:first-child {
  padding-top: 0;
}
.yuzde-module-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.yuzde-module-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1em;
  background: #0f766e;
  border-radius: 2px;
  flex-shrink: 0;
}
.yuzde-module-desc {
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 1rem;
}
.yuzde-module-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.yuzde-module-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}
.yuzde-sonuc {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f766e;
  letter-spacing: -0.03em;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ── GEO (Generative Engine Optimization) ── */
.geo-bluf {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  max-width: 680px;
  margin: 0 0 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,.08);
  border-radius: 8px;
  border-left: 4px solid rgba(255,255,255,.5);
}
.geo-bluf--light { color: inherit; background: rgba(0,0,0,.05); border-left-color: #94a3b8; }
/* Değişken tablosu + metodoloji (eski .geo-* sınıfları SEO için yeniden adlandırıldı) */
.seo-vars-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.9rem; }
.seo-vars-table th, .seo-vars-table td { padding: 0.5rem 0.75rem; border: 1px solid #e2e8f0; text-align: left; }
.seo-vars-table th { background: #f1f5f9; font-weight: 600; }
.seo-methodology { font-size: 0.9rem; color: #64748b; }

/* ── Header & Breadcrumb – tam genişlik, içerik ortalanır ── */
.hs-header,
.hs-breadcrumb {
  width: 100%;
}
.hs-header-inner,
.hs-breadcrumb nav {
  margin-left: auto;
  margin-right: auto;
}
/* ── Breadcrumb (kategori ve diğer sayfalar) ── */
.hs-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.hs-breadcrumb nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  font-size: 0.78rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.hs-breadcrumb nav a {
  color: #64748b;
  text-decoration: none;
}
.hs-breadcrumb nav a:hover { color: #0f766e; }

/* ── Header Search Button (tüm sayfalarda aynı: anasayfa + hesaplama) ── */
.hs-search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-family: inherit;
  font-size: 0.82rem;
  color: #64748b;
  cursor: pointer;
  min-width: 190px;
  transition: border-color 0.15s;
  white-space: nowrap;
}
.hs-search-btn:hover { border-color: #0f766e; color: #0f766e; }
.hs-search-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Mobil hamburger: base (masaüstünde gizli), mobilde gösterilir */
.hs-mob-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.hs-mob-toggle svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Header Search Modal ── */
.hs-search-overlay {
  position: fixed; inset: 0; z-index: 9999; background: rgba(15,23,42,.4);
  display: flex; align-items: flex-start; justify-content: center; padding: 8vh 1rem 0;
  opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s;
  overflow-y: auto;
}
.hs-search-overlay.is-open { opacity: 1; visibility: visible; }
.hs-search-modal {
  width: 100%; max-width: 480px; max-height: 70vh; overflow: hidden;
  background: #fff; border-radius: 12px; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  display: flex; flex-direction: column;
  flex-shrink: 0;
}
.hs-search-input-wrap {
  padding: 1rem; border-bottom: 1px solid #e2e8f0;
}
.hs-search-input {
  width: 100%; padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-size: 1rem; border: 1px solid #e2e8f0; border-radius: 8px;
  outline: none; transition: border-color .15s;
}
.hs-search-input:focus { border-color: #0f766e; }
.hs-search-results {
  overflow-y: auto; padding: 0.5rem; flex: 1; min-height: 0;
}
.hs-search-item {
  display: block; padding: 0.6rem 0.85rem; border-radius: 6px;
  color: #334155; text-decoration: none; font-size: 0.95rem;
  transition: background .15s;
}
.hs-search-item:hover { background: #f1f5f9; color: #0f766e; }
.hs-search-item b { color: #0f172a; }
.hs-search-empty { padding: 1.5rem; text-align: center; color: #64748b; font-size: 0.9rem; }

/* Mobil: Arama sadece ikon (kısa), hamburger her zaman görünür */
@media (max-width: 900px) {
  .hs-search-btn {
    font-size: 0;
    padding: 0.5rem !important;
    min-width: auto !important;
    margin-left: auto;
  }
  .hs-search-btn svg {
    font-size: 16px;
    width: 18px;
    height: 18px;
  }
  .hs-mob-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 99;
    min-width: 44px;
  }
  .hs-header-inner {
    flex-wrap: nowrap;
  }
}
@media (max-width: 768px) {
  .hs-search-overlay {
    padding: 1rem;
    align-items: flex-start;
    padding-top: max(1rem, env(safe-area-inset-top, 0px));
  }
  .hs-search-modal {
    max-height: calc(100vh - 3rem);
    width: min(100%, calc(100vw - 2rem));
  }
}

/* ── Footer v3 ── */
.hs-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 2rem 1.5rem 1rem;
  font-size: 0.9rem;
}

.hs-footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: flex-start;
}

.hs-footer-col {
  min-width: 0;
}

.hs-footer-brand .hs-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: #f9fafb;
  text-decoration: none;
}

.hs-footer-brand .hs-footer-logo span:last-child {
  color: var(--hs-primary, #14b8a6);
}

.hs-footer-vision {
  margin: 0.5rem 0 0;
  max-width: 360px;
  color: var(--hs-muted, #9ca3af);
  line-height: 1.6;
}

.hs-footer-social {
  display: flex;
  justify-content: flex-start;
}

.hs-footer-social-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: clamp(8px, 1vw, 12px);
  align-items: center;
}

.hs-social-btn {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.hs-social-btn img {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  min-width: 14px;
  min-height: 14px;
  display: block;
  object-fit: contain;
}

.hs-social-btn:hover {
  color: var(--hs-primary, #14b8a6);
  border-color: var(--hs-primary, #14b8a6);
  background-color: rgba(45, 212, 191, 0.06);
}

.hs-footer-heading {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hs-light, #9ca3af);
}

.hs-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hs-footer-links a {
  color: var(--hs-muted, #9ca3af);
  text-decoration: none;
  transition: color 0.15s ease;
}

.hs-footer-links a:hover {
  color: var(--hs-primary, #14b8a6);
}

.hs-footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin-top: 1.5rem;
  padding-top: 0.75rem;
}

.hs-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--hs-muted, #9ca3af);
  font-size: 0.85rem;
}

.hs-footer-copy {
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .hs-footer-main {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .hs-footer-main {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .hs-footer {
    padding: 1.75rem 1.25rem 0.9rem;
  }

  .hs-footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .hs-footer-brand,
  .hs-footer-col,
  .hs-footer-social {
    text-align: center;
  }

  .hs-footer-social {
    justify-content: center !important;
  }

  .hs-footer-social-icons {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hs-footer-bottom-inner {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hs-footer {
    padding: 1.5rem 1rem 0.8rem;
  }

  .hs-footer-vision {
    max-width: 100%;
  }
}

/* ── İçindekiler (TOC) ── */
.hs-toc {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.hs-toc-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.75rem;
}
.hs-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.hs-toc-list li { margin-bottom: 0.4rem; }
.hs-toc-list a {
  color: #475569;
  text-decoration: none;
  transition: color 0.15s;
}
.hs-toc-list a:hover { color: #0f766e; }

/* ── Favoriler / Son hesaplamalar ── */
.hs-fav-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f766e;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hs-fav-btn:hover { text-decoration: underline; }
.hs-recent-list { list-style: none; padding: 0; margin: 0; }
.hs-recent-list li { margin-bottom: 0.4rem; }
.hs-recent-list a { font-size: 0.9rem; }
.hs-fav-list { list-style: none; padding: 0 1rem 1rem; margin: 0; }
.hs-fav-list li { margin-bottom: 0.4rem; }
.hs-fav-list a { font-size: 0.9rem; }

/* ── Embed modu (?embed=1 veya iframe): yalnızca hesaplayıcı + sonuç ── */
html.hs-embed body {
  background: #f8fafc;
}
html.hs-embed .hs-header,
html.hs-embed .hp-header,
html.hs-embed .hs-breadcrumb,
html.hs-embed .hp-breadcrumb,
html.hs-embed nav.page-breadcrumb,
html.hs-embed #masthead,
html.hs-embed #wrapper > header.site-header,
html.hs-embed main.page-shell > section.page-hero,
html.hs-embed main.page-shell > header.page-hero,
html.hs-embed aside.sidebar,
html.hs-embed .hs-eeat-trust,
html.hs-embed footer.hs-footer,
html.hs-embed .share-toast,
html.hs-embed .embed-snippet,
html.hs-embed .seo-section,
html.hs-embed .hs-toc-sidebar,
html.hs-embed .hs-toc-wrap {
  display: none !important;
}
html.hs-embed .content-area > *:not(.page-block) {
  display: none !important;
}
html.hs-embed .page-block > *:not(.calc-container) {
  display: none !important;
}
html.hs-embed .calc-widget-actions {
  display: none !important;
}
html.hs-embed main.page-shell {
  min-height: 0;
}
html.hs-embed .page-layout {
  display: block;
  max-width: 100%;
}
html.hs-embed .content-area {
  padding: 0;
  max-width: 100%;
}
html.hs-embed .page-block {
  margin: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
}
html.hs-embed .calc-container {
  border-radius: 12px;
  overflow: hidden;
}
