/* ============================================================
   Prosthetics Care — Tasarım Sistemi
   İskandinav / Sıcak Minimal (Kil & Bej)
   ============================================================ */

/* ---------- Değişkenler ---------- */
:root {
  /* Renkler */
  --bg:          #FAF8F5;   /* ana zemin */
  --bg-soft:     #F3EFE9;   /* yumuşak bölüm zemini */
  --beige:       #EDE6DC;   /* bej */
  --line:        #E3DBCF;   /* ince çizgi / kenarlık */
  --ink:         #2A2724;   /* ana yazı */
  --ink-soft:    #6B645C;   /* ikincil yazı */
  --clay:        #B5705A;   /* vurgu (kil) */
  --clay-deep:   #97594A;   /* koyu kil (hover) */
  --clay-tint:   #C9A88F;   /* açık vurgu */
  --clay-wash:   #F1E6DF;   /* çok açık kil arka plan */
  --whatsapp:    #25D366;
  --whatsapp-d:  #1da851;
  --white:       #FFFFFF;

  /* Tipografi */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Ölçü */
  --container: 1160px;
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow:    0 1px 2px rgba(42,39,36,.04), 0 8px 24px rgba(42,39,36,.06);
  --shadow-lg: 0 12px 40px rgba(42,39,36,.10);
  --space:     clamp(56px, 8vw, 104px);
}

/* ---------- Reset / Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--clay-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p  { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--clay); color: #fff; }
.btn-primary:hover { background: var(--clay-deep); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--clay); color: var(--clay-deep); background: var(--clay-wash); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-d); color: #fff; }
.btn-danger { background: #C0392B; color: #fff; cursor: default; }
.btn-danger:hover { background: #C0392B; color: #fff; transform: none; }
.btn svg { width: 1.15em; height: 1.15em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,245,.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 74px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.32rem;
  color: var(--ink); text-decoration: none; letter-spacing: -.02em;
  white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--clay); color: #fff;
  display: grid; place-items: center;
  font-size: 1.05rem; font-weight: 600; flex: none;
}
.brand small { display: block; font-family: var(--font-body); font-size: .62rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; }
.brand-logo { height: 52px; width: auto; display: block; }
.site-header .brand-logo { mix-blend-mode: multiply; }
.site-footer .brand-logo { height: 54px; border-radius: 10px; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.32rem; color: var(--ink); letter-spacing: -.02em; white-space: nowrap; }
.site-footer .brand-name { color: #fff; }
@media (max-width: 480px) { .brand-logo { height: 44px; } .brand-name { font-size: 1.08rem; } }

/* Navigasyon */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a, .nav-trigger {
  font-size: .97rem; font-weight: 500; color: var(--ink);
  padding: 10px 14px; border-radius: 9px; background: none; border: none;
  font-family: var(--font-body); cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
}
.main-nav a:hover, .nav-trigger:hover { background: var(--beige); text-decoration: none; color: var(--clay-deep); }
.main-nav a[aria-current="page"] { color: var(--clay-deep); }

.has-dropdown { position: relative; }
.nav-trigger::after {
  content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .2s ease; opacity: .6;
}
.has-dropdown.open .nav-trigger::after { transform: rotate(-135deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 248px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .18s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 8px; font-size: .94rem; color: var(--ink); }
.dropdown a:hover { background: var(--clay-wash); color: var(--clay-deep); }
.dropdown a strong { display: block; font-weight: 600; }
.dropdown a span { display: block; font-size: .8rem; color: var(--ink-soft); margin-top: 1px; }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 11px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .25s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 7vw, 92px) 0 var(--space); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--clay-deep); background: var(--clay-wash); padding: 7px 14px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { margin-bottom: 18px; }
.hero p.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 40ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; display: flex; min-height: 100%; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -18px; bottom: 28px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; gap: 12px; align-items: center; max-width: 260px;
}
.hero-badge .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--clay-wash); color: var(--clay-deep); display: grid; place-items: center; flex: none; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.hero-badge span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Bölüm başlıkları ---------- */
section { scroll-margin-top: 90px; }
.section { padding: var(--space) 0; }
.section.alt { background: var(--bg-soft); }
.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 12px; }
.section-head p { font-size: 1.1rem; color: var(--ink-soft); margin: 0; }

/* ---------- Ürün kartları (3'lü grid) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; box-shadow: var(--shadow);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card .thumb { aspect-ratio: 16/11; overflow: hidden; background: var(--beige); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .thumb img { transform: scale(1.04); }
.product-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { margin-bottom: 8px; }
.product-card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 18px; }
.card-link { margin-top: auto; font-weight: 600; color: var(--clay-deep); display: inline-flex; align-items: center; gap: 6px; }
.card-link::after { content: "→"; transition: transform .2s ease; }
.product-card:hover .card-link::after { transform: translateX(4px); }

/* ---------- Özellik satırı (resim + metin) ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row .feature-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 5/4; }
.feature-text .eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 12px; }
.feature-text ul { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 10px; }
.feature-text ul li { padding-left: 30px; position: relative; color: var(--ink-soft); }
.feature-text ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--clay); font-weight: 700; }

/* ---------- Fiyat bölümü ---------- */
.price-band { background: var(--ink); color: #F4EEE7; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 60px); position: relative; overflow: hidden; }
.price-band h2 { color: #fff; }
.price-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.price-band p { color: #D9CFC4; }
.price-factors { display: grid; gap: 14px; margin: 22px 0 0; padding: 0; list-style: none; }
.price-factors li { display: flex; gap: 12px; align-items: flex-start; color: #EDE4DA; }
.price-factors li .n { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,.1); color: var(--clay-tint); display: grid; place-items: center; font-weight: 700; font-size: .85rem; flex: none; }
.price-cta { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 28px; text-align: center; }
.price-cta .big { font-family: var(--font-head); font-size: 1.5rem; color: #fff; margin-bottom: 8px; }
.price-cta p { font-size: .92rem; margin-bottom: 20px; }

/* ---------- Adımlar ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; position: relative; }
.step .num { font-family: var(--font-head); font-size: 2.4rem; color: var(--clay-tint); line-height: 1; margin-bottom: 14px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* ---------- Teaser (ortez / parça) ---------- */
.teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.teaser {
  display: grid; grid-template-columns: 150px 1fr; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.teaser:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); text-decoration: none; }
.teaser img { width: 100%; height: 100%; object-fit: cover; }
.teaser .body { padding: 24px; }
.teaser h3 { margin-bottom: 6px; }
.teaser p { color: var(--ink-soft); font-size: .92rem; margin: 0 0 12px; }
.teaser .card-link { color: var(--clay-deep); font-weight: 600; }

/* ---------- Hizmet / güven grid ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trust-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.trust-item .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--clay-wash); color: var(--clay-deep); display: grid; place-items: center; margin-bottom: 16px; }
.trust-item .ico svg { width: 24px; height: 24px; }
.trust-item h3 { font-size: 1.12rem; margin-bottom: 6px; }
.trust-item p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* ---------- SSS ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--font-head); font-size: 1.12rem; font-weight: 600; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--clay); font-family: var(--font-body); transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 44px 22px 0; color: var(--ink-soft); }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ---------- CTA bandı ---------- */
.cta-band { background: var(--clay); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 68px); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #FCEFE9; font-size: 1.12rem; max-width: 52ch; margin: 0 auto 28px; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--clay-deep); }
.cta-band .btn-primary:hover { background: #FBEFE9; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .87rem; color: var(--ink-soft); padding: 22px 0 0; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--clay-deep); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* ---------- İçerik sayfası tipografisi ---------- */
.page-hero { padding: 30px 0 8px; }
.page-hero h1 { margin-bottom: 12px; max-width: 20ch; }
.page-hero .lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 60ch; }
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.3em; color: var(--ink); margin: 0 0 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose img { border-radius: var(--radius); margin: 1.5em 0; box-shadow: var(--shadow); }
.prose .lead { font-size: 1.18rem; color: var(--ink-soft); }
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }
.sidebar { position: sticky; top: 96px; display: grid; gap: 20px; }
.side-card { background: var(--clay-wash); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.side-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.side-card p { font-size: .92rem; color: var(--ink-soft); }
.side-card .btn { width: 100%; margin-top: 6px; }
.side-nav { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; }
.side-nav h4 { font-family: var(--font-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); padding: 10px 12px 6px; margin: 0; }
.side-nav a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .92rem; color: var(--ink); }
.side-nav a:hover { background: var(--clay-wash); color: var(--clay-deep); text-decoration: none; }
.side-nav a[aria-current="page"] { background: var(--clay-wash); color: var(--clay-deep); font-weight: 600; }

/* ---------- Formlar ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px var(--clay-wash); }
.field textarea { resize: vertical; min-height: 130px; }
.field .err { color: #b3261e; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b3261e; }
.field.invalid .err { display: block; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }
.form-msg { display: none; padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: .94rem; }
.form-msg.ok  { display: block; background: #E7F4EC; color: #1f6b3b; border: 1px solid #bfe2cc; }
.form-msg.bad { display: block; background: #FBE9E7; color: #b3261e; border: 1px solid #f3c8c2; }

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--clay-wash); color: var(--clay-deep); display: grid; place-items: center; flex: none; }
.contact-list strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.contact-list a { color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #CFC7BD; padding: clamp(48px, 6vw, 72px) 0 30px; margin-top: var(--space); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #9a9088; }
.footer-about p { color: #A89F95; font-size: .94rem; max-width: 34ch; margin-top: 16px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin: 4px 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: #CFC7BD; font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.footer-social a:hover { background: var(--clay); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #8c847a; }
.footer-bottom a { color: #8c847a; }

/* ---------- Yüzen WhatsApp ---------- */
.float-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .2s ease;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; }

/* ---------- Yardımcılar ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.hide { display: none !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; align-items: start; }
  .hero-media { max-width: 100%; min-height: 0; }
  .hero-media img { height: auto; aspect-ratio: 16/10; }
  .price-grid { grid-template-columns: 1fr; gap: 30px; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 860px) {
  /* Mobil navigasyon */
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 14px 20px 22px;
    max-height: calc(100vh - 74px); overflow-y: auto; transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: all .22s ease; box-shadow: var(--shadow-lg);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a, .nav-trigger { width: 100%; justify-content: space-between; padding: 13px 14px; font-size: 1.05rem; border-radius: 10px; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none;
    background: var(--bg-soft); margin: 2px 0 6px; max-height: 0; overflow: hidden; padding: 0 8px; transition: max-height .25s ease, padding .25s ease;
  }
  .has-dropdown.open .dropdown { max-height: 520px; padding: 6px 8px; }
  .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; } /* hover'ı mobilde devre dışı bırakmak için open kullanılır */
  .header-cta .btn-text { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .card-grid, .steps, .trust-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-text { order: 0; }
  .form-wrap { grid-template-columns: 1fr; gap: 32px; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 12px; right: 12px; max-width: none; }
  .teaser { grid-template-columns: 110px 1fr; }
}

@media (max-width: 460px) {
  .container { padding-inline: 18px; }
  .teaser { grid-template-columns: 1fr; }
  .teaser img { aspect-ratio: 16/10; }
}

/* ============================================================
   Zengin içerik sayfası bileşenleri (ör. bacak protezleri)
   ============================================================ */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill { display: inline-flex; align-items: center; gap: 7px; background: var(--clay-wash); color: var(--clay-deep); border: 1px solid var(--line); padding: 9px 15px; border-radius: 999px; font-size: .87rem; font-weight: 600; }
.pill svg { width: 16px; height: 16px; }

.lead-narrow { max-width: 760px; }
.lead-narrow.center { margin-inline: auto; text-align: center; }

/* Tür kartları */
.info-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.info-card .tag { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--clay-deep); background: var(--clay-wash); padding: 5px 10px; border-radius: 6px; margin-bottom: 14px; }
.info-card h3 { margin-bottom: 10px; }
.info-card > p { color: var(--ink-soft); font-size: .95rem; }
.info-card .sub { border-top: 1px solid var(--line); margin-top: 18px; padding-top: 16px; display: grid; gap: 14px; }
.info-card .sub > div strong { display: block; font-size: .92rem; margin-bottom: 2px; }
.info-card .sub > div span { font-size: .86rem; color: var(--ink-soft); }

/* Süreç adımları (4'lü) */
.steps.four { grid-template-columns: repeat(4, 1fr); }
.step .when { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--clay-deep); background: var(--clay-wash); padding: 4px 11px; border-radius: 999px; margin-bottom: 10px; }

/* Fiyat kademeleri */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; box-shadow: var(--shadow); }
.tier h3 { font-size: 1.15rem; margin-bottom: 4px; }
.tier .price { font-family: var(--font-head); font-size: 1.6rem; color: var(--clay-deep); margin: 10px 0 6px; }
.tier p { color: var(--ink-soft); font-size: .9rem; margin: 0; }
.tier.feature { background: var(--ink); border-color: var(--ink); }
.tier.feature h3 { color: #fff; }
.tier.feature .price { color: var(--clay-tint); }
.tier.feature p { color: #C9BFB4; }

/* Bilgilendirme kutusu */
.note-box { background: var(--clay-wash); border: 1px solid var(--line); border-left: 4px solid var(--clay); border-radius: var(--radius); padding: 18px 22px; color: var(--ink); font-size: .95rem; }
.note-box strong { color: var(--clay-deep); }

/* İki sütun bilgi (SGK / haklar) */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.panel .tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--clay-deep); background: var(--clay-wash); padding: 5px 10px; border-radius: 6px; margin-bottom: 14px; }
.panel h3 { margin-bottom: 10px; }
.panel ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 12px; }
.panel ul li { padding-left: 28px; position: relative; color: var(--ink-soft); font-size: .95rem; }
.panel ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--clay); font-weight: 700; }

@media (max-width: 860px) {
  .info-card-grid, .tier-grid, .split-2 { grid-template-columns: 1fr; }
  .steps.four { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps.four { grid-template-columns: 1fr; }
}

/* ---- Detay sayfası zengin bölümleri (tam genişlik) ---- */
/* Çeşit kartları: foto sol + metin sağ, alt alta */
.type-stack { display: grid; gap: 22px; }
.type-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; display: grid; grid-template-columns: 300px 1fr; }
.type-card .ph { background: var(--beige); }
.type-card .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.type-card .body { padding: 28px 30px; }
.type-card .tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--clay-deep); background: var(--clay-wash); padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.type-card h3 { margin: 0 0 8px; }
.type-card .body > p { color: var(--ink-soft); font-size: .96rem; margin: 0 0 16px; }
.type-card .pts { display: grid; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.type-card .pts div { font-size: .9rem; color: var(--ink-soft); }
.type-card .pts strong { display: block; color: var(--ink); }
@media (max-width: 720px) {
  .type-card { grid-template-columns: 1fr; }
  .type-card .ph { background: #fff; }
  .type-card .ph img { aspect-ratio: 1 / 1; object-fit: contain; object-position: center; padding: 10px; }
}
/* Fotoğrafsız (metin) çeşit kartı */
.type-card.plain { grid-template-columns: 1fr; }

/* Fiyat: 3 yan yana kart */
.price3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--clay); border-radius: var(--radius-lg); padding: 30px 24px; text-align: center; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pcard h3 { font-size: 1.1rem; margin: 0 0 14px; }
.pcard .amount { font-family: var(--font-head); font-size: 1.5rem; color: var(--clay-deep); margin-top: auto; }
.pcard .amount small { display: block; font-family: var(--font-body); font-size: .8rem; color: var(--ink-soft); font-weight: 500; margin-top: 6px; }
@media (max-width: 760px) { .price3 { grid-template-columns: 1fr; } }

/* SGK kartları — PC 2'li, mobil alt alta */
.sgk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; margin: 0 auto; }
.sgk-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; text-align: center; box-shadow: var(--shadow); }
.sgk-card h3 { font-size: 1.1rem; margin: 0 0 4px; }
.sgk-card .amount { font-family: var(--font-head); font-size: 1.55rem; color: var(--clay-deep); margin: 8px 0; }
.sgk-card p { font-size: .86rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 600px) { .sgk-grid { grid-template-columns: 1fr; } }

/* Süreç: 2x2 kart (steps.two) */
.steps.two { grid-template-columns: repeat(2, 1fr); }
.step .when { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--clay-deep); background: var(--clay-wash); padding: 4px 11px; border-radius: 999px; margin-bottom: 10px; }
@media (max-width: 600px) { .steps.two { grid-template-columns: 1fr; } }

/* İş kazası — foto sol, metin sağ; mobilde alt alta */
.is-kazasi { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.is-kazasi .ik-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.is-kazasi h2 { margin-top: 0; }
.is-kazasi ul { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.is-kazasi ul li { padding-left: 28px; position: relative; color: var(--ink-soft); }
.is-kazasi ul li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-weight: 700; }
.is-kazasi .fine { font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 760px) { .is-kazasi { grid-template-columns: 1fr; gap: 24px; } }

/* Biz kimiz mini şerit */
.about-strip { text-align: center; max-width: 680px; margin-inline: auto; color: var(--ink-soft); }
.about-strip a { font-weight: 600; }

/* Video gömme alanı (YouTube) */
.video-embed { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--ink); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 20px; background: linear-gradient(135deg, #3a3531, #2A2724); color: #EDE4DA; }
.video-placeholder .play { width: 64px; height: 64px; border-radius: 50%; background: var(--clay); display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,.3); }
.video-placeholder .play svg { width: 26px; height: 26px; fill: #fff; margin-left: 4px; }
.video-placeholder span { font-size: .9rem; opacity: .85; }

/* Uzun yürüme cihazı kartları (tek satır: metin sol / foto sağ) */
.lyc-stack { display: grid; gap: 22px; }
.lyc-card { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.lyc-card .body { padding: 30px 34px; display: flex; flex-direction: column; align-items: flex-start; }
.lyc-card .tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--clay-deep); background: var(--clay-wash); padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.lyc-card h3 { margin: 0 0 6px; font-size: 1.35rem; }
.lyc-card .body h4 { font-family: var(--font-body); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--clay-deep); margin: 16px 0 8px; }
.lyc-card .body ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; width: 100%; }
.lyc-card .body ul li { padding-left: 24px; position: relative; color: var(--ink-soft); font-size: .95rem; }
.lyc-card .body ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--clay); font-weight: 700; }
.lyc-card .body ul li strong { color: var(--ink); }
.lyc-card .btn { margin-top: 22px; }
.lyc-card .ph { background: var(--beige); min-height: 100%; }
.lyc-card .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) {
  .lyc-card { grid-template-columns: 1fr; }
  .lyc-card .ph { order: 2; min-height: 0; }
  .lyc-card .ph img { aspect-ratio: 16/10; }
}

/* ---- Süspansiyon kılıfı (dizlik) sayfası bileşenleri ---- */
/* Özet (snippet) kutusu */
.snippet-box { background: var(--clay-wash); border: 1px solid var(--line); border-left: 5px solid var(--clay); border-radius: var(--radius); padding: 18px 22px; font-size: 1.05rem; line-height: 1.65; color: var(--ink); margin: 0 0 26px; }

/* İçindekiler — yapışkan menü */
.toc-bar { position: sticky; top: 80px; z-index: 30; background: rgba(250,248,245,.94); backdrop-filter: saturate(160%) blur(10px); border: 1px solid var(--line); border-radius: 999px; padding: 8px 10px; display: flex; gap: 6px; flex-wrap: wrap; margin: 0 0 30px; box-shadow: var(--shadow); }
.toc-bar a { font-size: .86rem; font-weight: 600; color: var(--ink); padding: 7px 13px; border-radius: 999px; }
.toc-bar a:hover { background: var(--clay-wash); color: var(--clay-deep); text-decoration: none; }
.detail-body [id] { scroll-margin-top: 150px; }

/* Karşılaştırma tablosu */
.cmp-table { width: 100%; border-collapse: collapse; margin: 8px 0 6px; font-size: .95rem; }
.cmp-table th, .cmp-table td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.cmp-table thead th { background: var(--clay-wash); color: var(--clay-deep); font-family: var(--font-head); }
.cmp-table tbody th { background: var(--bg-soft); font-weight: 600; width: 28%; }

/* İki sütunlu marka karşılaştırma kartları */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 10px 0 6px; }
.compare-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.compare-card .ccap { background: var(--ink); color: #fff; padding: 18px 22px; }
.compare-card .ccap h3 { color: #fff; margin: 0; font-size: 1.18rem; }
.compare-card .ccap span { display: block; font-size: .82rem; color: var(--clay-tint); margin-top: 3px; }
.compare-card .crows { padding: 6px 22px 18px; }
.compare-card .crow { display: grid; grid-template-columns: 42% 1fr; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.compare-card .crow:last-child { border-bottom: 0; }
.compare-card .crow .k { color: var(--ink-soft); }
.compare-card .crow .v { font-weight: 600; color: var(--ink); }
.compare-card .cfoot { margin-top: auto; padding: 0 22px 22px; }
.compare-card .cfoot .btn { width: 100%; }
@media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } }

/* Vurgulu uyarı kutusu (callout) */
.callout { background: #EAF1F6; border: 1px solid #CFE0EA; border-left: 5px solid #5B8AA6; border-radius: var(--radius); padding: 16px 20px; margin: 20px 0; color: var(--ink); font-size: .96rem; line-height: 1.6; }
.callout strong { color: #2c5f77; }
.callout.warn { background: #F7EFE9; border-color: #E8D6C8; border-left-color: var(--clay); }
.callout.warn strong { color: var(--clay-deep); }

/* Fiyat harekete geçirme bandı */
.price-action { background: var(--clay-wash); border: 1px solid var(--line); border-left: 5px solid var(--clay); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); text-align: center; margin: 10px 0; }
.price-action h3 { font-size: 1.4rem; margin: 0 0 8px; }
.price-action p { color: var(--ink-soft); max-width: 60ch; margin: 0 auto; }
.price-action .pill-row { justify-content: center; margin: 18px 0 22px; }

/* İş kazası teaser bandı (metin + fotoğraf) */
.ik-band { background: var(--clay-wash); border: 1px solid var(--line); border-left: 5px solid var(--clay); border-radius: var(--radius-lg); padding: clamp(22px, 3.5vw, 34px); display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.ik-band h3 { margin: 0 0 8px; font-size: 1.35rem; }
.ik-band p { margin: 0 0 18px; color: var(--ink-soft); }
.ik-band .ik-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ik-band .ik-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16/10; object-fit: cover; display: block; }
@media (max-width: 760px) { .ik-band { grid-template-columns: 1fr; gap: 20px; } }

/* Detay gövdesi: tek sütun, ortalanmış, okunaklı genişlik */
.detail-body { color: var(--ink); max-width: 920px; margin-inline: auto; }
.detail-body > h2 { margin-top: 2.8rem; }
.detail-body > h2:first-child { margin-top: 0; }
.detail-body > p { margin: 0 0 1rem; font-size: 1.02rem; }
.detail-body .lead-narrow { max-width: none; }
.detail-body .type-stack, .detail-body .price3, .detail-body .steps, .detail-body .sgk-grid, .detail-body .is-kazasi, .detail-body .faq { margin-top: 20px; }
.detail-body .sgk-grid { max-width: none; }
.detail-body .is-kazasi { gap: 30px; }

/* Erişilebilirlik */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
:focus-visible { outline: 3px solid var(--clay-tint); outline-offset: 2px; border-radius: 4px; }
