.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: #0d2d4a; color: #fff; padding: 10px 22px; border-radius: 0 0 10px 10px; font-size: 14px; font-weight: 600; text-decoration: none; z-index: 9999; transition: top .2s ease; white-space: nowrap; }
.skip-link:focus { top: 0; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d2d4a; --navy-mid: #1a3f5e;
  --teal: #4dc5ce; --teal-light: #7dd8e0; --teal-pale: #d4f2f5; --teal-muted: #e8f7f9;
  --surface: #f8fbfd; --surface-alt: #eef5f8; --white: #ffffff;
  --text-1: #0d1f2e; --text-2: #4a6275; --text-3: #8aa0b0; --border: #d5e5ed;
  --r-card: 16px; --r-pill: 9999px;
  --shadow-sm: 0 2px 12px rgba(13,45,74,.08),0 1px 4px rgba(13,45,74,.04);
  --shadow-md: 0 8px 32px rgba(13,45,74,.13),0 2px 8px rgba(13,45,74,.06);
  --f-d: 'Outfit', system-ui, sans-serif;
  --f-b: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--f-b); background: var(--surface); color: var(--text-1); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: var(--f-d); line-height: 1.08; letter-spacing: -.022em; }
p { color: var(--text-2); line-height: 1.7; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--r-pill); font-family: var(--f-b); font-size: 15px; font-weight: 500; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s cubic-bezier(.16,1,.3,1), background .18s ease, border-color .18s ease; white-space: nowrap; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); box-shadow: 0 6px 20px rgba(13,45,74,.28); }
.btn-teal { background: var(--teal); color: var(--navy); border-color: var(--teal); font-weight: 600; }
.btn-teal:hover { background: var(--teal-light); border-color: var(--teal-light); box-shadow: 0 6px 20px rgba(77,197,206,.38); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--navy); background: var(--surface-alt); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.38); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-navy:active, .btn-teal:active, .btn-ghost:active, .btn-ghost-white:active { transform: scale(.97) translateY(1px); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 70px; background: rgba(248,251,253,1); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); transition: box-shadow .3s ease; }
.nav.scrolled { box-shadow: 0 2px 24px rgba(13,45,74,.09); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { height: 38px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav-brand-name { font-family: var(--f-d); font-size: 16px; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.nav-brand-sub { font-size: 10.5px; color: var(--text-3); letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-2); text-decoration: none; transition: color .18s; white-space: nowrap; }
.nav-links a:hover { color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 14px; font-weight: 500; color: var(--text-2); text-decoration: none; transition: color .18s; white-space: nowrap; }
.nav-phone:hover { color: var(--navy); }

/* HAMBURGER & MOBILE NAV */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .28s cubic-bezier(.16,1,.3,1), opacity .2s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { position: fixed; inset: 0; top: 70px; background: #fff; z-index: 998; display: flex; flex-direction: column; padding: 32px 24px 40px; transform: translateX(100%); transition: transform .35s cubic-bezier(.16,1,.3,1); overflow-y: auto; }
.nav-mobile.open { transform: translateX(0); box-shadow: -4px 0 32px rgba(13,45,74,.12); }
.nav-mobile-links { display: flex; flex-direction: column; border-top: 1px solid var(--border); margin-bottom: 32px; }
.nav-mobile-links a { font-family: var(--f-d); font-size: 20px; font-weight: 600; color: var(--navy); text-decoration: none; padding: 16px 0; border-bottom: 1px solid var(--border); display: block; transition: color .18s; }
.nav-mobile-links a:hover { color: var(--teal); }
.nav-mobile-cta { display: flex; flex-direction: column; gap: 12px; }
.nav-mobile-cta .btn { text-align: center; width: 100%; }
.nav-mobile-phone { text-align: center; font-size: 15px; color: var(--text-2); text-decoration: none; padding: 8px 0; display: block; }

/* READING PROGRESS */
.read-progress { position: fixed; top: 70px; left: 0; height: 3px; width: 0; background: var(--teal); z-index: 199; transition: width .1s linear; }

/* LEGAL NAV */
.legal-nav { background: var(--navy); padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.back-link { color: rgba(255,255,255,.8); text-decoration: none; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.back-link:hover { color: var(--teal); }
.site-name { color: #fff; font-family: var(--f-d); font-weight: 600; font-size: 15px; }
.legal-footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 24px 32px; text-align: center; font-size: 13px; }
.legal-footer a { color: rgba(255,255,255,.8); text-decoration: none; margin: 0 8px; transition: color .18s; }
.legal-footer a:hover { color: var(--teal); }

/* LEGAL HERO + CONTENT */
.legal-hero { background: var(--surface-alt); padding: 56px 32px 48px; border-bottom: 1px solid var(--border); }
.legal-hero .container { max-width: 760px; margin: 0 auto; }
.legal-hero h1 { font-size: clamp(28px, 5vw, 40px); font-weight: 700; letter-spacing: -.025em; color: var(--navy); }
.legal-hero .subtitle { margin-top: 8px; color: var(--text-2); font-size: 15px; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 52px 32px 80px; }
.legal-content h2 { font-size: 18px; font-weight: 600; margin: 40px 0 12px; color: var(--navy); padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 12px; line-height: 1.75; color: var(--text-2); }
.legal-content a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--teal); }

@media (max-width: 640px) {
  .legal-nav { padding: 14px 20px; }
  .legal-hero { padding: 36px 20px 32px; }
  .legal-content { padding: 36px 20px 60px; }
  .legal-footer { padding: 20px; }
}

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .45s cubic-bezier(.16,1,.3,1), transform .45s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

/* SECTION HEADER */
.s-header { margin-bottom: 52px; }
.s-header.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.s-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.s-title { font-size: clamp(28px, 3vw, 42px); font-weight: 700; color: var(--navy); letter-spacing: -.025em; margin-bottom: 14px; }
.s-body { font-size: 17px; color: var(--text-2); line-height: 1.65; max-width: 58ch; }
.s-header.center .s-body { margin: 0 auto; }

/* PAGE HERO (Root-Seiten) */
.page-hero { background: var(--navy); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(77,197,206,.12) 0%, transparent 65%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; bottom: -80px; left: 10%; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(77,197,206,.06) 0%, transparent 65%); pointer-events: none; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb a:hover { color: var(--teal); }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,.25); }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; }
.page-hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.page-hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: center; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(38px, 4vw, 60px); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 20px; line-height: 1.04; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 56ch; margin-bottom: 36px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-card); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 28px; }
.phc-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; }
.phc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.phc-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.5; }
.phc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 5px; }

/* BREADCRUMB (Artikel - heller Hintergrund) */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 13px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-3); text-decoration: none; transition: color .18s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--teal); font-weight: 500; }

/* INTRO SECTION */
.intro-section { padding: 96px 0; background: var(--white); }
.intro-inner { display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: start; }
.intro-lead { font-family: var(--f-d); font-size: 20px; font-weight: 500; color: var(--text-1); line-height: 1.55; margin-bottom: 20px; }
.intro-text { font-size: 16px; color: var(--text-2); line-height: 1.78; margin-bottom: 16px; }
.info-box { background: var(--teal-muted); border: 1px solid var(--teal-pale); border-radius: var(--r-card); padding: 28px; position: sticky; top: 92px; }
.info-box-title { font-family: var(--f-d); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.info-box-title svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.info-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(77,197,206,.2); font-size: 14px; }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row-label { color: var(--text-2); }
.info-row-value { font-weight: 600; color: var(--navy); text-align: right; }

/* CONTENT SECTION */
.content-section { padding: 92px 0; }
.content-section.alt { background: var(--surface-alt); }
.content-section.white { background: var(--white); }
.content-narrow { max-width: 860px; margin: 0 auto; }
.prose h2 { font-size: clamp(26px, 2.6vw, 38px); font-weight: 700; color: var(--navy); letter-spacing: -.025em; margin: 0 0 18px; }
.prose h3 { font-family: var(--f-d); font-size: 21px; font-weight: 600; color: var(--navy); margin: 40px 0 12px; letter-spacing: -.01em; }
.prose p { font-size: 16px; color: var(--text-2); line-height: 1.8; margin-bottom: 18px; }
.prose strong { color: var(--text-1); font-weight: 600; }
.prose ul { margin: 0 0 18px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.prose ul li { position: relative; padding-left: 26px; font-size: 16px; color: var(--text-2); line-height: 1.7; }
.prose ul li::before { content: ''; position: absolute; left: 5px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.prose ul li strong { color: var(--navy); }

/* FIGURE */
.figure { margin: 36px 0; border: 1.5px dashed var(--teal); border-radius: var(--r-card); background: var(--teal-muted); padding: 40px 28px; text-align: center; }
.figure-icon { width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 12px; background: var(--white); border: 1px solid var(--teal-pale); display: flex; align-items: center; justify-content: center; }
.figure-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.figure-label { font-family: var(--f-d); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.figure-cap { font-size: 14px; color: var(--text-2); line-height: 1.55; max-width: 52ch; margin: 0 auto; }

/* KEY CALLOUT */
.key-callout { background: var(--navy); border-radius: var(--r-card); padding: 40px 44px; margin: 40px 0; position: relative; overflow: hidden; }
.key-callout::before { content: ''; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(77,197,206,.12) 0%, transparent 65%); pointer-events: none; }
.key-callout-inner { position: relative; z-index: 1; }
.key-callout-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.key-callout h3 { font-size: 23px; font-weight: 700; color: #fff; margin: 0 0 14px; letter-spacing: -.02em; }
.key-callout p { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 14px; }
.key-callout p:last-child { margin-bottom: 0; }
.key-callout strong { color: #fff; font-weight: 600; }

/* OPT GRID */
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 30px 0; }
.opt-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); padding: 26px; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s cubic-bezier(.16,1,.3,1), border-color .2s ease; }
.content-section.white .opt-card { background: var(--surface); }
.opt-card-head { display: flex; align-items: center; gap: 13px; margin-bottom: 12px; }
.opt-card-tag { width: 34px; height: 34px; border-radius: 9px; background: var(--teal-muted); border: 1px solid var(--teal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--f-d); font-size: 14px; font-weight: 700; color: var(--teal); }
.opt-card-tag svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.opt-card h4 { font-family: var(--f-d); font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.opt-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; margin: 0; }
.opt-card .opt-meta { font-size: 12.5px; color: var(--teal); font-weight: 500; margin-top: 10px; }

/* SYMPTOME SECTION */
.symptome-section { padding: 92px 0; background: var(--surface-alt); }
.symptome-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.symptome-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.symptome-item { display: flex; align-items: flex-start; gap: 14px; }
.symptome-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.symptome-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.symptome-text h4 { font-family: var(--f-d); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.symptome-text p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin: 0; }
.warning-box { background: rgba(13,45,74,.04); border: 1.5px solid rgba(13,45,74,.12); border-radius: var(--r-card); padding: 24px 26px; margin-top: 28px; }
.warning-box-title { font-family: var(--f-d); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.warning-box-title svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.warning-box p { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.65; }

/* REHA SECTION */
.reha-section { padding: 92px 0; background: var(--white); }
.reha-timeline { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.reha-item { display: grid; grid-template-columns: 120px 1fr; gap: 0; position: relative; }
.reha-item:not(:last-child)::after { content: ''; position: absolute; left: 59px; top: 26px; bottom: -1px; width: 2px; background: var(--border); }
.reha-time { display: flex; flex-direction: column; align-items: center; padding-top: 4px; padding-right: 28px; flex-shrink: 0; }
.reha-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--teal); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--teal-pale); flex-shrink: 0; }
.reha-phase { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-top: 8px; text-align: center; }
.reha-content { padding: 0 0 48px 28px; }
.reha-content h3 { font-family: var(--f-d); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.reha-content p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin: 0; }
.reha-item:last-child .reha-content { padding-bottom: 0; }

/* WEITERE SECTION */
.weitere-section { padding: 92px 0; background: var(--surface-alt); }
.weitere-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.weitere-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); padding: 22px 20px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s cubic-bezier(.16,1,.3,1), border-color .2s ease; }
.weitere-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-pale); }
.weitere-card-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--teal-muted); border: 1px solid var(--teal-pale); display: flex; align-items: center; justify-content: center; }
.weitere-card-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.weitere-card h3 { font-family: var(--f-d); font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.35; }
.weitere-card-arrow { margin-top: auto; display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: var(--teal); }
.weitere-card-arrow svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.weitere-card:hover .weitere-card-arrow svg { transform: translateX(3px); }

/* CTA STRIP - Root-Seiten (teal Hintergrund) */
.cta-strip { padding: 80px 0; background: var(--teal-muted); border-top: 1px solid var(--teal-pale); border-bottom: 1px solid var(--teal-pale); position: relative; overflow: hidden; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-strip h2 { font-size: clamp(22px, 2.5vw, 34px); font-weight: 700; color: var(--navy); letter-spacing: -.02em; margin-bottom: 8px; }
.cta-strip p { font-size: 16px; color: var(--text-2); max-width: 52ch; margin: 0; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* CTA STRIP DARK - Artikel (navy Hintergrund) */
.cta-strip--dark { background: var(--navy); border-top: none; border-bottom: none; }
.cta-strip--dark::before { content: ''; position: absolute; top: -120px; right: -80px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(77,197,206,.12) 0%, transparent 65%); }
.cta-strip--dark .cta-strip-inner { position: relative; z-index: 1; }
.cta-strip--dark h2 { color: #fff; }
.cta-strip--dark p { color: rgba(255,255,255,.6); }

/* FAQ SECTION */
.faq-section { padding: 92px 0; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 4px; font-family: var(--f-d); font-size: 17px; font-weight: 600; color: var(--navy); background: none; border: none; cursor: pointer; text-align: left; line-height: 1.35; }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s ease, border-color .2s ease; }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--text-2); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s cubic-bezier(.16,1,.3,1), stroke .2s ease; }
.faq-item.open .faq-icon { background: var(--teal-muted); border-color: var(--teal-pale); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); stroke: var(--teal); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.faq-answer-inner { padding: 0 4px 22px; font-size: 15px; color: var(--text-2); line-height: 1.75; max-width: 720px; }
.faq-answer-inner a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; transition: color .18s ease; }
.faq-answer-inner a:hover { color: var(--teal); }
.faq-item.open .faq-answer { max-height: 800px; }

/* ARTICLE HERO */
.article-hero { background: var(--surface-alt); padding: 122px 0 52px; border-bottom: 1px solid var(--border); }
.article-hero-inner { max-width: 820px; }
.article-cat { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); background: var(--teal-muted); border: 1px solid var(--teal-pale); border-radius: var(--r-pill); padding: 6px 14px; margin-bottom: 22px; }
.article-cat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.article-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.06; margin-bottom: 20px; }
.article-lead { font-size: clamp(18px, 1.8vw, 21px); color: var(--text-2); line-height: 1.6; max-width: 64ch; }
.article-byline { margin-top: 20px; font-size: 14px; color: var(--text-3); line-height: 1.5; }
.article-byline a { color: var(--navy); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--teal-pale); }
.article-byline a:hover { border-color: var(--teal); }

/* ARTICLE LAYOUT */
.article-wrap { display: grid; grid-template-columns: 230px 1fr; gap: 60px; max-width: 1080px; margin: 0 auto; padding: 56px 40px 80px; align-items: start; }
.article-aside { position: sticky; top: 94px; display: flex; flex-direction: column; gap: 24px; }
.aside-author { display: flex; align-items: center; gap: 12px; }
.aside-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid rgba(77,197,206,.5); flex-shrink: 0; display: block; }
.aside-author-name { font-family: var(--f-d); font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.aside-author-role { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.aside-meta { display: flex; flex-direction: column; gap: 8px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.aside-meta-row { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-2); }
.aside-meta-row svg { width: 15px; height: 15px; stroke: var(--text-3); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.toc-title { font-family: var(--f-d); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; border-left: 2px solid var(--border); padding-left: 14px; }
.toc-list a { font-size: 13.5px; color: var(--text-2); text-decoration: none; line-height: 1.4; transition: color .18s; display: block; }
.toc-list a:hover { color: var(--teal); }
.share-row { display: flex; gap: 8px; }
.share-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .18s, background .18s, transform .18s; }
.share-btn:hover { border-color: var(--teal-pale); background: var(--teal-muted); transform: translateY(-2px); }
.share-btn svg { width: 16px; height: 16px; stroke: var(--text-2); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ARTICLE BODY */
.article-body { max-width: 720px; }
.article-figure { margin: 0 0 40px; }
.article-figure-box { border: 1.5px dashed var(--teal); border-radius: var(--r-card); background: var(--teal-muted); aspect-ratio: 16 / 8; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 24px; }
.article-figure-box svg { width: 40px; height: 40px; stroke: var(--teal); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.article-figure-box span { font-family: var(--f-d); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.article-figcaption { font-size: 13px; color: var(--text-3); margin-top: 10px; line-height: 1.5; padding-left: 2px; }
.article-body > p { font-size: 17px; color: var(--text-2); line-height: 1.85; margin-bottom: 22px; }
.article-body > p.first::first-letter { font-family: var(--f-d); font-size: 58px; font-weight: 700; color: var(--navy); float: left; line-height: .82; margin: 6px 12px 0 0; }
.article-body h2 { font-size: clamp(24px, 2.4vw, 31px); font-weight: 700; color: var(--navy); letter-spacing: -.02em; margin: 48px 0 16px; scroll-margin-top: 92px; }
.article-body h3 { font-family: var(--f-d); font-size: 20px; font-weight: 600; color: var(--navy); margin: 32px 0 12px; }
.article-body strong { color: var(--text-1); font-weight: 600; }
.article-body ul { margin: 0 0 22px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.article-body ul li { position: relative; padding-left: 26px; font-size: 17px; color: var(--text-2); line-height: 1.7; }
.article-body ul li::before { content: ''; position: absolute; left: 5px; top: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

.takeaways { background: var(--teal-muted); border: 1px solid var(--teal-pale); border-radius: var(--r-card); padding: 26px 30px; margin: 0 0 40px; }
.takeaways-title { font-family: var(--f-d); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.takeaways-title svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.takeaways ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.takeaways li { position: relative; padding-left: 24px; font-size: 15px; color: var(--text-2); line-height: 1.6; }
.takeaways li::before { content: ''; position: absolute; left: 3px; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--teal); }

.pullquote { margin: 40px 0; padding: 8px 0 8px 28px; border-left: 4px solid var(--teal); }
.pullquote p { font-family: var(--f-d); font-size: clamp(21px, 2.4vw, 27px); font-weight: 600; color: var(--navy); line-height: 1.35; letter-spacing: -.02em; }

.faq-block { margin: 40px 0 0; }

.author-box { display: flex; gap: 20px; align-items: flex-start; background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--r-card); padding: 28px; margin-top: 56px; }
.author-box-avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid rgba(77,197,206,.5); flex-shrink: 0; display: block; }
.author-box-name { font-family: var(--f-d); font-size: 17px; font-weight: 700; color: var(--navy); }
.author-box-role { font-size: 13px; color: var(--teal); font-weight: 500; margin: 2px 0 10px; }
.author-box-text { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* RELATED */
.related-section { padding: 84px 0; background: var(--white); }
.related-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; }
.related-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.related-title { font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; color: var(--navy); letter-spacing: -.025em; }
.related-all { font-size: 14px; font-weight: 500; color: var(--teal); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.related-all svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.related-all:hover svg { transform: translateX(3px); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s cubic-bezier(.16,1,.3,1); }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card-img { height: 150px; display: flex; align-items: center; justify-content: center; }
.related-card:nth-child(1) .related-card-img { background: linear-gradient(135deg, #0d2d4a 0%, #1a4060 100%); }
.related-card:nth-child(2) .related-card-img { background: linear-gradient(135deg, #0d3845 0%, #0d2d4a 100%); }
.related-card:nth-child(3) .related-card-img { background: linear-gradient(315deg, #1a3f5e 0%, #0d2d4a 100%); }
.related-card-img svg { width: 38px; height: 38px; stroke: rgba(255,255,255,.5); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.related-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.related-card-cat { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.related-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 8px; }
.related-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.related-card-meta { font-size: 12px; color: var(--text-3); }

/* FOOTER */
.footer { background: #081b2c; padding: 60px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-name { font-family: var(--f-d); font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -.01em; margin-bottom: 10px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.6; max-width: 260px; }
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-ci { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.5; }
.footer-ci svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .18s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,.28); line-height: 1.65; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.06); margin-top: 28px; }

.mobile-cta-bar { display: none; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
  .weitere-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .article-wrap { grid-template-columns: 1fr; gap: 0; max-width: 760px; }
  .article-aside { position: static; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 20px 28px; padding-bottom: 36px; margin-bottom: 36px; border-bottom: 1px solid var(--border); }
  .aside-meta { flex-direction: row; gap: 18px; border: none; padding: 0; }
  .article-toc { display: none; }
  .article-body { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .info-box { position: static; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-phone, .nav-right .btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .article-hero { padding: 104px 0 40px; }
  .article-wrap { padding: 40px 20px 64px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .page-hero { padding: 120px 0 56px; }
  .symptome-inner { grid-template-columns: 1fr; gap: 36px; }
  .opt-grid { grid-template-columns: 1fr; }
  .reha-item { grid-template-columns: 90px 1fr; }
  .reha-item:not(:last-child)::after { left: 44px; }
  .weitere-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 26px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .author-box { flex-direction: column; gap: 16px; }
  .key-callout { padding: 32px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .mobile-cta-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: var(--white); border-top: 1px solid var(--border); padding: 12px 20px; gap: 10px; box-shadow: 0 -4px 20px rgba(13,45,74,.10); }
  .mobile-cta-bar .btn { flex: 1; justify-content: center; font-size: 14px; padding: 12px 16px; }
  body { padding-bottom: 70px; }
  .legal-nav { padding: 16px 20px; }
}
@media (max-width: 480px) {
  .weitere-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
}
@media (hover: hover) and (pointer: fine) {
  .btn-navy:hover, .btn-teal:hover, .btn-ghost:hover, .btn-ghost-white:hover { transform: translateY(-2px); }
  .opt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-pale); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .read-progress { transition: none; }
  .btn-navy:hover, .btn-teal:hover, .btn-ghost:hover, .btn-ghost-white:hover { transform: none; }
}

/* =============================================
   KNIE-WISSEN HUB STYLES (knie-wissen.php)
   ============================================= */

.kw-hero { background: var(--surface-alt); padding: 122px 0 56px; border-bottom: 1px solid var(--border); }
.kw-hero-inner { max-width: 760px; }
.kw-cat { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); background: var(--teal-muted); border: 1px solid var(--teal-pale); border-radius: var(--r-pill); padding: 6px 14px; margin-bottom: 20px; }
.kw-cat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.kw-hero h1 { font-size: clamp(36px, 4.4vw, 58px); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.04; margin-bottom: 18px; }
.kw-hero-lead { font-size: clamp(17px, 1.7vw, 20px); color: var(--text-2); line-height: 1.6; max-width: 60ch; }

.kw-catnav { position: sticky; top: 70px; z-index: 100; background: rgba(248,251,253,.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.kw-catnav-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.kw-catnav-inner::-webkit-scrollbar { display: none; }
.kw-catnav a { flex-shrink: 0; padding: 15px 4px; margin-right: 18px; font-size: 13.5px; font-weight: 500; color: var(--text-2); text-decoration: none; border-bottom: 2px solid transparent; transition: color .18s, border-color .18s; white-space: nowrap; }
.kw-catnav a:hover { color: var(--navy); border-color: var(--teal-pale); }

.cat-section { padding: 48px 0; }
.cat-section + .cat-section { border-top: 1px solid var(--border); }
.cat-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; scroll-margin-top: 130px; }
.cat-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--teal-muted); border: 1px solid var(--teal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cat-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cat-title { font-family: var(--f-d); font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; color: var(--navy); letter-spacing: -.025em; }
.cat-count { font-size: 13px; color: var(--text-3); white-space: nowrap; }
.cat-line { flex: 1; height: 1px; background: var(--border); min-width: 20px; }

.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr)); gap: 14px; }
.kw-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; text-decoration: none; display: flex; flex-direction: row; align-items: stretch; transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s cubic-bezier(.16,1,.3,1), border-color .2s ease; }
.kw-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-pale); }
.kw-card-img { width: 72px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; }
.kw-card-img svg { width: 26px; height: 26px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.kw-card:nth-child(3n+1) .kw-card-img { background: linear-gradient(160deg, #0d2d4a 0%, #1a4060 100%); }
.kw-card:nth-child(3n+2) .kw-card-img { background: linear-gradient(160deg, #0d3845 0%, #0d2d4a 100%); }
.kw-card:nth-child(3n+3) .kw-card-img { background: linear-gradient(200deg, #1a3f5e 0%, #0d2d4a 100%); }
.kw-card-body { padding: 15px 18px; flex: 1; min-width: 0; display: flex; flex-direction: column; }
.kw-card-tag { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 5px; }
.kw-card h3 { font-size: 15.5px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kw-card p { font-size: 13px; color: var(--text-2); line-height: 1.55; margin-bottom: 11px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kw-card-meta { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-3); margin-top: auto; }
.kw-card-meta svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 768px) {
  .kw-hero { padding: 104px 0 40px; }
  .kw-catnav-inner { padding: 0 20px; }
  .cat-section { padding: 36px 0; }
  .article-grid { gap: 10px; }
  .kw-card-img { width: 60px; }
  .kw-card-body { padding: 13px 15px; }
  .kw-card p { display: none; }
  .kw-card h3 { margin-bottom: 7px; }
}
@media (hover: hover) and (pointer: fine) {
  .kw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
}
@media (prefers-reduced-motion: reduce) {
  .kw-card:hover { transform: none; box-shadow: none; }
}

/* =============================================
   HOMEPAGE-SPECIFIC STYLES (index.php)
   ============================================= */

.delay-5 { transition-delay: .40s; }

/* HERO */
.hero { min-height: 100dvh; display: grid; grid-template-columns: 55% 45%; padding-top: 70px; }
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 72px 64px 72px 0; padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px)); overflow: hidden; border-right: 5px solid transparent; }
.hero-text-wrap { position: relative; display: flex; flex-direction: column; gap: 0; }
.hero-logo-bg { position: absolute; top: -11%; left: -11%; width: 122%; height: 122%; background-image: url('/Bilder/logo_ohneName.webp'); background-position: center; background-size: contain; background-repeat: no-repeat; opacity: .07; pointer-events: none; z-index: 0; animation: logoPulse 8s ease-in-out infinite; }
.hero-text-wrap > *:not(.hero-logo-bg) { position: relative; z-index: 1; }
.hero-text-wrap .btn-ghost { background: rgba(255,255,255,0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border-color: rgba(13,45,74,0.35); }
@keyframes logoPulse { 0%, 100% { opacity: .07; transform: scale(1); } 50% { opacity: .13; transform: scale(1.05); } }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 22px; }
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.hero-h1 { font-size: clamp(42px,4.6vw,66px); font-weight: 800; color: var(--navy); line-height: 1.04; letter-spacing: -.03em; margin-bottom: 22px; }
.hero-h1-name { display: block; font-size: .48em; font-weight: 500; color: var(--teal); letter-spacing: -.01em; margin-top: .18em; }
.hero-sub { font-size: 17px; line-height: 1.7; color: var(--text-2); max-width: 46ch; margin-bottom: 38px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-osteofit { margin-top: 32px; }
.osteofit-box { display: inline-block; background: color-mix(in srgb, var(--navy) 60%, transparent); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 14px 18px; }
.osteofit-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #f8f9fa; margin-bottom: 10px; }
.osteofit-badge { display: inline-flex; align-items: center; gap: 12px; padding: 10px 16px 10px 12px; background: #f8f9fa; border: 1px solid rgba(197,160,89,.55); border-radius: 10px; text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease; }
.osteofit-badge:hover { border-color: #c5a059; box-shadow: 0 2px 12px rgba(197,160,89,.25); }
.osteofit-logo-img { height: 38px; width: auto; flex-shrink: 0; }
.osteofit-divider { width: 1px; height: 30px; background: rgba(197,160,89,.35); flex-shrink: 0; }
.osteofit-text { display: flex; flex-direction: column; gap: 3px; }
.osteofit-name { font-family: var(--f-d); font-size: 15px; font-weight: 700; letter-spacing: .01em; line-height: 1.2; }
.of-osteo { color: #2f353b; }
.of-fit { color: #c5a059; }
.osteofit-tagline { font-size: 11px; font-weight: 600; color: #7a8693; letter-spacing: .06em; text-transform: uppercase; }
.hero-visual { position: relative; overflow: hidden; }
.hero-visual-carousel { position: absolute; inset: 0; }
.hvc-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 1.2s ease; }
.hvc-slide.hvc-active { opacity: 1; }
.hero-visual-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg,rgba(13,45,74,.82) 0%,rgba(13,45,74,.55) 55%,rgba(77,197,206,.22) 100%); }
.hero-visual-card { position: absolute; bottom: 48px; left: 48px; z-index: 2; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: var(--r-card); padding: 22px 26px; max-width: 300px; }
.hero-visual-card-label { font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.hero-visual-card-text { font-family: var(--f-d); font-size: 18px; font-weight: 600; color: #fff; line-height: 1.3; }

/* STATS */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.stats-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid var(--border); }
.stat-item { padding: 36px 32px; border-right: 1px solid var(--border); }
.stat-value { font-family: var(--f-d); font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -.025em; line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-3); margin-top: 6px; line-height: 1.35; }

/* WARUM */
.warum { padding: 96px 0; background: var(--surface-alt); }
.warum-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.warum-intro { font-size: 17px; color: var(--text-2); line-height: 1.7; margin-bottom: 12px; }
.warum-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 24px; }
.warum-item { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--text-1); line-height: 1.45; }
.warum-check { width: 22px; height: 22px; border-radius: 50%; background: var(--teal-muted); border: 1.5px solid var(--teal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.warum-check svg { width: 11px; height: 11px; stroke: var(--teal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.warum-cta { margin-top: 36px; }

/* ERKRANKUNGEN */
.erkrankungen { padding: 112px 0; background: var(--white); }
.erk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.erk-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 36px; display: flex; flex-direction: column; transition: transform .28s cubic-bezier(.16,1,.3,1),box-shadow .28s cubic-bezier(.16,1,.3,1),border-color .22s ease; }
.erk-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--teal-muted); border: 1px solid var(--teal-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.erk-icon svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.erk-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -.02em; }
.erk-card p { font-size: 15px; line-height: 1.65; flex: 1; margin-bottom: 28px; }
.erk-link { display: inline-flex; align-items: center; gap: 7px; padding: 11px 20px; background: var(--navy); color: #fff; border-radius: var(--r-pill); font-size: 14px; font-weight: 500; text-decoration: none; align-self: flex-start; transition: background .18s ease, box-shadow .22s cubic-bezier(.16,1,.3,1), transform .22s cubic-bezier(.16,1,.3,1); }
.erk-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s cubic-bezier(.16,1,.3,1); }

/* SCHWERPUNKTE */
.schwerpunkte { padding: 112px 0; background: var(--surface-alt); }
.sp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sp-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); padding: 28px 24px; display: block; text-decoration: none; color: inherit; transition: border-color .2s, box-shadow .2s, transform .2s; }
a.sp-item:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(13,148,136,.12); transform: translateY(-2px); }
.sp-tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.sp-item h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.sp-item p { font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.sp-link { font-size: 13px; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 5px; }

/* BEHANDLUNGSANSATZ */
.ansatz { padding: 112px 0; background: var(--navy); position: relative; overflow: hidden; }
.ansatz::before { content: ''; position: absolute; bottom: -200px; left: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle,rgba(77,197,206,.07) 0%,transparent 68%); pointer-events: none; }
.ansatz-header { max-width: 700px; margin: 0 0 64px; }
.ansatz-title { font-size: clamp(28px,3vw,46px); font-weight: 700; color: #fff; letter-spacing: -.025em; margin-bottom: 14px; }
.ansatz-body { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.7; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.step-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 32px 28px; }
.step-item:first-child { border-radius: var(--r-card) 0 0 var(--r-card); }
.step-item:last-child { border-radius: 0 var(--r-card) var(--r-card) 0; }
.step-num { font-family: var(--f-d); font-size: 52px; font-weight: 800; color: rgba(77,197,206,.2); line-height: 1; margin-bottom: 20px; letter-spacing: -.04em; }
.step-item h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.step-item p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; }
.step-meta { font-size: 12px; color: rgba(77,197,206,.65); margin-top: 8px; }

/* VORTEILE + TESTIMONIALS */
.vorteile { padding: 112px 0; background: var(--white); }
.vorteile-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.vorteile-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.vorteile-item { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 500; color: var(--text-1); }
.vorteile-check { width: 28px; height: 28px; border-radius: 8px; background: var(--teal-muted); border: 1px solid var(--teal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vorteile-check svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.testi-col { display: flex; flex-direction: column; gap: 18px; }
.t-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.testi-carousel-wrap { display: grid; grid-template-columns: 1fr; }
.testi-carousel-wrap .t-card { grid-area: 1 / 1; opacity: 0; pointer-events: none; transition: opacity .5s cubic-bezier(.16,1,.3,1); }
.testi-carousel-wrap .t-card.testi-active { opacity: 1; pointer-events: auto; }
.testi-dots { display: flex; gap: 8px; margin-top: 16px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; transition: background .25s ease, transform .25s ease; }
.testi-dot.testi-dot-active { background: var(--teal); transform: scale(1.3); }
.t-stars { display: flex; gap: 3px; }
.t-stars span { color: var(--teal); font-size: 14px; }
.t-text { font-size: 14px; color: var(--text-1); line-height: 1.72; flex: 1; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.t-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.t-avatar-init { width: 36px; height: 36px; border-radius: 50%; background: var(--teal-pale); color: var(--navy); font-family: var(--f-d); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: .03em; }
.t-name { font-family: var(--f-d); font-size: 13px; font-weight: 600; color: var(--navy); }
.t-meta { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* ABOUT */
.about { padding: 112px 0; background: var(--surface); }
.about-inner { display: grid; grid-template-columns: 1fr 1.45fr; gap: 80px; align-items: start; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-card); display: block; }
.about-pills { position: absolute; bottom: -16px; right: -16px; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.pill { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 7px 14px; font-size: 12px; font-weight: 500; color: var(--navy); white-space: nowrap; box-shadow: var(--shadow-sm); }
.about-lead { font-family: var(--f-d); font-size: 19px; font-weight: 500; color: var(--text-2); line-height: 1.55; margin-bottom: 20px; }
.about-text { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 18px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.about-item { background: var(--surface-alt); border-radius: 12px; padding: 18px 20px; }
.about-item-title { font-family: var(--f-d); font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.about-item-text { font-size: 13px; color: var(--text-3); line-height: 1.5; }
.about-more { margin-top: 28px; }

/* KNIE-WISSEN (Homepage) */
.wissen { padding: 112px 0; background: var(--white); }
.wissen-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.art-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; display: flex; flex-direction: column; transition: transform .28s cubic-bezier(.16,1,.3,1),box-shadow .28s cubic-bezier(.16,1,.3,1); }
.art-img-wrap { height: 160px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.art-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.art-icon svg { width: 24px; height: 24px; stroke: rgba(255,255,255,.85); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.art-card:nth-child(1) .art-img-wrap { background: linear-gradient(135deg, #0d2d4a 0%, #1a4060 100%); }
.art-card:nth-child(2) .art-img-wrap { background: linear-gradient(135deg, #0d3845 0%, #0d2d4a 100%); }
.art-card:nth-child(3) .art-img-wrap { background: linear-gradient(225deg, #112e4a 0%, #163a52 100%); }
.art-card:nth-child(4) .art-img-wrap { background: linear-gradient(315deg, #1a3f5e 0%, #0d2d4a 100%); }
.art-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.art-tag { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.art-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; flex: 1; }
.art-excerpt { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.art-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 500; color: var(--teal); text-decoration: none; }
.art-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s cubic-bezier(.16,1,.3,1); }
.wissen-cta { text-align: center; margin-top: 48px; }
.wissen-cta .btn svg { transition: transform .2s cubic-bezier(.16,1,.3,1); }
.wissen-cta .btn:hover svg { transform: translateX(3px); }

/* KONTAKT */
.kontakt-section { padding: 112px 0; background: var(--white); }
.kontakt-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.kontakt-info { display: flex; flex-direction: column; }
.ki-row { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.ki-row:first-child { padding-top: 0; }
.ki-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--teal-muted); border: 1px solid var(--teal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ki-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ki-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.ki-value { font-size: 16px; font-weight: 500; color: var(--text-1); line-height: 1.5; }
.ki-value a { color: inherit; text-decoration: none; }
.ki-btn { margin-top: 10px; display: inline-flex; }
.maps-wrap { margin-top: 24px; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--border); height: 220px; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; }
.maps-note { font-size: 13px; color: var(--text-3); text-align: center; line-height: 1.6; padding: 20px; }
.contact-form { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--r-card); padding: 36px; }
.form-title { font-family: var(--f-d); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.span-2 { grid-column: span 2; }
.form-label { font-size: 13px; font-weight: 500; color: var(--text-2); }
.form-input, .form-textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--f-b); font-size: 15px; color: var(--text-1); background: var(--white); transition: border-color .18s ease, box-shadow .18s ease; outline: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(77,197,206,.1); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-privacy { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-privacy input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; accent-color: var(--teal); width: 15px; height: 15px; cursor: pointer; }
.form-privacy-text { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.form-privacy-text a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.form-privacy-text a:hover { color: var(--navy); }
.form-submit { width: 100%; justify-content: center; }

/* FOOTER additional */
.footer-brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 14px; }
.footer-brand-logo img { height: 38px; width: auto; filter: brightness(10); flex-shrink: 0; }
.footer-brand-logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.footer-brand-sub { font-size: 10.5px; color: rgba(255,255,255,.45); letter-spacing: .06em; text-transform: uppercase; }

/* WAHLARZT BOX */
.wahlarzt-box { background: var(--teal-muted); border: 1px solid var(--teal-pale); border-radius: var(--r-card); padding: 24px 28px; margin-bottom: 40px; display: flex; gap: 20px; align-items: flex-start; }
.wahlarzt-box-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--white); border: 1px solid var(--teal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wahlarzt-box-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.wahlarzt-box-content h3 { font-family: var(--f-d); font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.wahlarzt-box-items { display: flex; flex-direction: column; gap: 6px; }
.wahlarzt-box-item { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--text-2); line-height: 1.5; }
.wahlarzt-box-item::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* HOMEPAGE RESPONSIVE */
@media (max-width: 1100px) {
  .wissen-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .step-item:first-child { border-radius: var(--r-card) 0 0 0; }
  .step-item:nth-child(2) { border-radius: 0 var(--r-card) 0 0; }
  .step-item:nth-child(3) { border-radius: 0 0 0 var(--r-card); }
  .step-item:last-child { border-radius: 0 0 var(--r-card) 0; }
  .sp-grid { grid-template-columns: repeat(2,1fr); }
  .erk-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 48px 20px 52px; }
  .hero-visual { height: 260px; order: -1; }
  .hero-logo-bg { display: none; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .stats-bar { display: none; }
  .warum-inner { grid-template-columns: 1fr; gap: 32px; }
  .warum, .erkrankungen, .schwerpunkte, .wissen, .ansatz, .vorteile, .about, .faq-section, .kontakt-section { padding-top: 52px; padding-bottom: 52px; }
  .erk-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sp-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .erk-card { padding: 14px 14px 16px; position: relative; }
  .erk-icon { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 10px; }
  .erk-icon svg { width: 20px; height: 20px; }
  .erk-card h3 { font-size: 15px; margin-bottom: 0; letter-spacing: -.01em; }
  .erk-card p { display: none; }
  .erk-link { position: absolute; inset: 0; padding: 0; background: transparent; border: 0; font-size: 0; align-self: stretch; }
  .erk-link svg { display: none; }
  .sp-item { padding: 14px; }
  .sp-tag { margin-bottom: 6px; }
  .sp-item h3 { font-size: 15px; margin-bottom: 0; }
  .sp-item p, .sp-link { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 2px; }
  .step-item { border-radius: 0 !important; padding: 15px 16px; }
  .step-item:first-child { border-radius: var(--r-card) var(--r-card) 0 0 !important; }
  .step-item:last-child { border-radius: 0 0 var(--r-card) var(--r-card) !important; }
  .step-num { font-size: 26px; margin-bottom: 3px; }
  .step-item h3 { font-size: 15.5px; margin-bottom: 5px; }
  .step-item p { font-size: 13px; line-height: 1.55; }
  .step-meta { font-size: 11.5px; margin-top: 6px; }
  .ansatz-header { margin-bottom: 26px; }
  .vorteile-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-img { max-height: 380px; object-fit: cover; width: 100%; }
  .about-pills { display: none; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .wissen-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .art-card { position: relative; }
  .art-img-wrap { height: 64px; }
  .art-icon { width: 34px; height: 34px; border-radius: 9px; }
  .art-icon svg { width: 18px; height: 18px; }
  .art-body { padding: 12px 13px 14px; }
  .art-tag { margin-bottom: 5px; }
  .art-card h3 { font-size: 14px; margin-bottom: 0; line-height: 1.3; flex: none; }
  .art-excerpt { display: none; }
  .art-link { position: absolute; inset: 0; font-size: 0; gap: 0; }
  .art-link svg { display: none; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: span 1; }
  .testi-carousel-wrap { min-height: 280px; }
  .wahlarzt-box { flex-direction: column; gap: 14px; padding: 20px; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .s-title { font-size: clamp(22px, 6vw, 32px); }
  .hero-h1 { font-size: clamp(34px, 9vw, 48px); }
  .testi-carousel-wrap { min-height: 320px; }
}
@media (hover: hover) and (pointer: fine) {
  .erk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-pale); }
  .erk-link:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,45,74,.22); }
  .erk-link:hover svg { transform: translateX(3px); }
  .art-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .art-link:hover svg { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-bg { animation: none; }
  .hvc-slide { transition: none; }
  .testi-carousel-wrap .t-card { transition: none; }
  .erk-card:hover, .art-card:hover { transform: none; box-shadow: none; }
  .erk-link svg, .art-link svg { transition: none; transform: none; }
}

/* =============================================
   KOSTEN / HONORAR (kosten.php)
   ============================================= */
.preis-list { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; max-width: 860px; margin: 0 auto; }
.content-section.white .preis-list { background: var(--surface); }
.preis-row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 17px 24px; border-bottom: 1px solid var(--border); }
.preis-row:last-child { border-bottom: 0; }
.preis-name { font-size: 16px; font-weight: 600; color: var(--navy); }
.preis-note { display: block; font-size: 13.5px; font-weight: 400; color: var(--text-3); line-height: 1.5; margin-top: 3px; }
.preis-value { font-size: 17px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.preis-value.soft { font-size: 14px; font-weight: 600; color: var(--text-3); white-space: normal; text-align: right; }
.preis-hint { font-size: 14px; color: var(--text-3); line-height: 1.65; max-width: 860px; margin: 16px auto 0; }
.zahlung-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; max-width: 860px; margin: 8px auto 0; }
.zahlung-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); padding: 18px 16px; text-align: center; }
.content-section.white .zahlung-item { background: var(--surface); }
.zahlung-item-title { font-size: 15px; font-weight: 600; color: var(--navy); }
.zahlung-item-note { font-size: 12.5px; color: var(--text-3); margin-top: 4px; }
.service-box { background: var(--teal-muted); border: 1px solid var(--teal-pale); border-radius: var(--r-card); padding: 22px 26px; max-width: 860px; margin: 22px auto 0; }
.service-box-title { display: flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-box-title svg { width: 19px; height: 19px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.service-box p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin: 0; }

@media (max-width: 768px) {
  .preis-row { padding: 13px 16px; gap: 12px; }
  .preis-name { font-size: 14.5px; }
  .preis-note { font-size: 12.5px; }
  .preis-value { font-size: 15.5px; }
  .preis-value.soft { font-size: 12.5px; }
  .zahlung-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .zahlung-item { padding: 14px 12px; }
  .service-box { padding: 16px 18px; }
}
