*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --anthrazit: #2C2C2C; --mint: #5C9E8A; --mint-lt: #7BB8A6;
  --mint-pale: #EBF4F1; --offwhite: #F7F6F4; --warm-white: #FDFCFB;
  --mid: #6B6B6B; --light-line: #E4E2DE; --text-body: #3A3A3A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1200px; --nav-h: 110px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--warm-white); color: var(--text-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* NAVBAR */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(253,252,251,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--light-line); transition: box-shadow .3s; }
.nav.scrolled { box-shadow: 0 2px 20px rgba(44,44,44,0.07); }
.nav-top { display: flex; align-items: center; justify-content: center; position: relative; padding: 20px 56px 16px; }
.nav-logo { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-sub { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mint); font-weight: 500; margin-top: 4px; }
.nav-cta { position: absolute; right: 56px; top: 50%; transform: translateY(-50%); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; background: var(--mint); color: white; padding: 13px 26px; transition: background .2s; white-space: nowrap; }
.nav-cta:hover { background: var(--anthrazit); }
.nav-bottom { display: flex; justify-content: center; border-top: 1px solid var(--light-line); }
.nav-links { display: flex; list-style: none; flex-wrap: wrap; justify-content: center; }
.nav-links a { display: block; font-size: 15px; font-weight: 400; letter-spacing: 0.03em; color: var(--mid); padding: 14px 24px; transition: color .2s; white-space: nowrap; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 22px; right: 22px; height: 2px; background: var(--anthrazit); transform: scaleX(0); transform-origin: center; transition: transform .25s; }
.nav-links a:hover { color: var(--anthrazit); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--anthrazit); }
.nav-links a.is-active::after { transform: scaleX(1); background: var(--mint); }
.nav-burger { display: none; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.nav-burger span { display: block; width: 26px; height: 2px; background: var(--anthrazit); transition: transform .25s ease, opacity .2s ease; transform-origin: center; }

/* HERO */
.hero { margin-top: var(--nav-h); display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; background: var(--warm-white); }
.hero-img { position: relative; overflow: hidden; min-height: 540px; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-slideshow .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease-in-out; }
.hero-slideshow .hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-slideshow .hero-slide { transition: none; } }
.hero-card { display: flex; flex-direction: column; justify-content: center; padding: 88px 72px; background: var(--warm-white); border-left: 3px solid var(--mint); }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mint); font-weight: 600; margin-bottom: 20px; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--mint); }
.hero h1 { font-family: var(--font-display); font-size: clamp(34px, 3.4vw, 52px); font-weight: 300; line-height: 1.1; color: var(--anthrazit); letter-spacing: -0.01em; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--mint); }
.hero-sub { font-size: 17px; color: var(--mid); line-height: 1.7; font-weight: 300; margin-bottom: 34px; max-width: 460px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* SUBHERO */
.subhero { margin-top: var(--nav-h); display: grid; grid-template-columns: 1fr 1fr; background: var(--offwhite); }
.subhero-text { padding: 88px 64px 80px 80px; display: flex; flex-direction: column; justify-content: center; }
.subhero-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mint); font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.subhero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--mint); }
.subhero h1 { font-family: var(--font-display); font-size: clamp(34px, 3.6vw, 54px); font-weight: 300; line-height: 1.1; color: var(--anthrazit); letter-spacing: -0.01em; margin-bottom: 24px; }
.subhero h1 em { font-style: italic; color: var(--mint); }
.subhero-lead { font-size: 18px; color: var(--mid); line-height: 1.75; font-weight: 300; max-width: 500px; }
.subhero-img { position: relative; min-height: 460px; overflow: hidden; }
.subhero-img img { width: 100%; height: 100%; object-fit: cover; }

/* BUTTONS */
.btn-primary { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; background: var(--mint); color: white; padding: 16px 32px; transition: background .2s; white-space: nowrap; display: inline-block; }
.btn-primary:hover { background: var(--anthrazit); }
.btn-ghost { font-size: 14px; font-weight: 400; color: var(--mid); display: inline-flex; align-items: center; gap: 8px; transition: color .2s; border-bottom: 1px solid var(--light-line); padding-bottom: 3px; white-space: nowrap; }
.btn-ghost:hover { color: var(--anthrazit); border-color: var(--anthrazit); }
.btn-ghost svg { transition: transform .2s; }
.btn-ghost:hover svg { transform: translateX(3px); }
.btn-outline-mint { display: inline-block; width: fit-content; font-size: 14px; font-weight: 600; letter-spacing: 0.06em; color: var(--mint-lt); border: 1px solid var(--mint); padding: 15px 32px; transition: all .2s; }
.btn-outline-mint:hover { background: var(--mint); color: white; }
.btn-white { display: inline-block; width: fit-content; font-size: 14px; font-weight: 600; letter-spacing: 0.06em; color: var(--anthrazit); background: white; padding: 16px 36px; transition: background .2s; }
.btn-white:hover { background: var(--offwhite); }
.btn-anthrazit { display: inline-block; width: fit-content; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: white; background: var(--mint); padding: 16px 36px; transition: background .2s; border: none; cursor: pointer; font-family: var(--font-body); }
.btn-anthrazit:hover { background: var(--anthrazit); }

/* USP BAR */
.usp-bar { background: var(--anthrazit); padding: 60px 80px; }
.usp-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.usp-item { display: flex; gap: 22px; align-items: flex-start; }
.usp-icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--mint-lt); margin-top: 2px; }
.usp-item h3 { font-size: 15px; font-weight: 600; letter-spacing: 0.06em; color: white; margin-bottom: 9px; text-transform: uppercase; }
.usp-item p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 300; }

/* SECTION */
.section { padding: 96px 80px; }
.section--pale { background: var(--offwhite); }
.container { max-width: var(--max-w); margin: 0 auto; }
.container--narrow { max-width: 820px; margin: 0 auto; }
.section-label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mint); font-weight: 600; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; display: block; width: 26px; height: 1px; background: var(--mint); }
h2.section-title { font-family: var(--font-display); font-size: clamp(34px, 3.5vw, 52px); font-weight: 300; line-height: 1.15; color: var(--anthrazit); letter-spacing: -0.01em; margin-bottom: 22px; }
h2.section-title em { font-style: italic; }
.section-intro { font-size: 18px; color: var(--mid); line-height: 1.75; max-width: 580px; font-weight: 300; margin-bottom: 56px; }

/* LEISTUNGEN */
.leistungen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--light-line); }
.leistung-card { background: var(--warm-white); padding: 56px 52px; transition: background .25s; position: relative; }
.leistung-card:hover { background: var(--mint-pale); }
.leistung-num { font-family: var(--font-display); font-size: 72px; font-weight: 300; font-style: italic; line-height: 1; letter-spacing: -0.01em; color: var(--mint); margin-bottom: 24px; display: block; opacity: 0.9; }
.leistung-card h3 { font-family: var(--font-display); font-size: 30px; font-weight: 400; color: var(--anthrazit); margin-bottom: 16px; line-height: 1.2; }
.leistung-card p { font-size: 16px; color: var(--mid); line-height: 1.75; font-weight: 300; }

/* ZITAT */
.zitat-section { background: var(--mint-pale); padding: 96px 80px; }
.zitat-inner { max-width: 820px; margin: 0 auto; }
.zitat-kuerzel { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mint); font-weight: 600; margin-bottom: 36px; display: flex; align-items: center; gap: 12px; }
.zitat-kuerzel::before { content: ''; display: block; width: 40px; height: 1px; background: var(--mint); }
.zitat-main { font-family: var(--font-display); font-size: clamp(28px, 3vw, 44px); font-weight: 300; font-style: italic; color: var(--anthrazit); line-height: 1.35; margin-bottom: 40px; }
.zitat-main strong { font-style: normal; font-weight: 600; color: var(--mint); }
.zitat-meta { display: flex; align-items: center; gap: 20px; padding-top: 32px; border-top: 1px solid rgba(92,158,138,0.25); }
.zitat-portrait { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 2px solid var(--mint-lt); flex-shrink: 0; }
.zitat-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.zitat-person strong { display: block; font-size: 14px; font-weight: 600; color: var(--anthrazit); margin-bottom: 3px; }
.zitat-person span { font-size: 13px; color: var(--mid); font-weight: 300; }

/* SPLIT */
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.split-img { position: relative; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.split-text { background: var(--anthrazit); display: flex; flex-direction: column; justify-content: center; padding: 80px 72px; }
.split-text .section-label { color: rgba(255,255,255,0.4); }
.split-text .section-label::before { background: rgba(255,255,255,0.25); }
.split-text h2 { font-family: var(--font-display); font-size: clamp(30px, 2.8vw, 46px); font-weight: 300; color: white; line-height: 1.2; margin-bottom: 24px; }
.split-text h2 em { font-style: italic; color: var(--mint-lt); }
.split-text p { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.8; font-weight: 300; margin-bottom: 14px; }
.differenz-liste { list-style: none; margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.differenz-liste li { font-size: 15px; color: rgba(255,255,255,0.78); display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.differenz-liste li::before { content: ''; display: block; width: 16px; height: 1px; background: var(--mint-lt); flex-shrink: 0; margin-top: 9px; }

/* PARTNER */
.partner-section { padding: 80px; background: var(--offwhite); border-top: 1px solid var(--light-line); }
.partner-header { max-width: var(--max-w); margin: 0 auto 48px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.partner-label { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mint); font-weight: 600; display: flex; align-items: center; gap: 12px; }
.partner-label::before, .partner-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--mint); }
.partner-sub { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 30px); font-weight: 300; font-style: italic; color: var(--anthrazit); line-height: 1.4; }
.partner-carousel { max-width: var(--max-w); margin: 0 auto; position: relative; overflow: hidden; }
.partner-track { display: flex; align-items: stretch; transition: transform .6s cubic-bezier(0.4,0,0.2,1); }
.partner-slide { flex: 0 0 20%; display: flex; align-items: center; justify-content: center; padding: 12px; }
.partner-slide-inner { width: 100%; height: 110px; background: var(--warm-white); border: 1px solid var(--light-line); display: flex; align-items: center; justify-content: center; padding: 18px 22px; transition: border-color .25s, transform .25s; }
.partner-slide-inner:hover { border-color: var(--mint); transform: translateY(-2px); }
.partner-slide img { max-height: 60px; max-width: 100%; width: auto; height: auto; object-fit: contain; filter: grayscale(0.3) opacity(0.9); transition: filter .3s; }
.partner-slide-inner:hover img { filter: grayscale(0) opacity(1); }
.partner-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.partner-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--light-line); cursor: pointer; border: none; padding: 0; transition: background .3s; }
.partner-dot.active { background: var(--mint); }

/* KUNDENSTIMME */
.kundenstimme { background: var(--offwhite); padding: 80px; }
.kundenstimme-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.kundenstimme-quote { font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 34px); font-weight: 300; font-style: italic; color: var(--anthrazit); line-height: 1.4; position: relative; padding-left: 32px; }
.kundenstimme-quote::before { content: '\201C'; position: absolute; left: 0; top: -8px; font-size: 60px; color: var(--mint); line-height: 1; font-style: normal; }
.kundenstimme-source { margin-top: 20px; font-style: normal; font-size: 14px; color: var(--mid); font-family: var(--font-body); font-weight: 500; letter-spacing: 0.04em; }
.kundenstimme-right { display: flex; flex-direction: column; gap: 16px; }
.kundenstimme-right p { font-size: 16px; color: var(--mid); line-height: 1.75; font-weight: 300; }

/* STIMMEN-GRUPPEN */
.stimmen-block { margin-bottom: 80px; }
.stimmen-block:last-child { margin-bottom: 0; }
.stimmen-titel { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--anthrazit); margin-bottom: 32px; line-height: 1.2; }
.stimmen-titel em { font-style: italic; color: var(--mint); }
.stimmen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 24px; }
.stimme-card { background: var(--warm-white); padding: 36px 30px; border-left: 2px solid var(--mint); display: flex; flex-direction: column; }
.stimme-card blockquote { font-family: var(--font-display); font-size: 20px; font-weight: 400; font-style: italic; color: var(--anthrazit); line-height: 1.45; }
.stimmen-kommentar { font-size: 16px; color: var(--mid); line-height: 1.75; font-weight: 300; font-style: italic; max-width: 720px; }

/* THEMEN-KARTEN */
.themen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.themen-card { background: var(--warm-white); border: 1px solid var(--light-line); display: flex; flex-direction: column; transition: border-color .25s, transform .25s; overflow: hidden; }
.themen-card:hover { border-color: var(--mint); transform: translateY(-2px); }
.themen-card-img { width: 100%; height: 220px; overflow: hidden; }
.themen-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.themen-card:hover .themen-card-img img { transform: scale(1.03); }
.themen-card-body { padding: 36px 36px 40px; }
.themen-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--anthrazit); margin-bottom: 14px; line-height: 1.25; }
.themen-card p { font-size: 16px; color: var(--mid); line-height: 1.75; font-weight: 300; }

/* PRAXIS */
.praxis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--light-line); border: 1px solid var(--light-line); }
.praxis-card { background: var(--warm-white); padding: 44px 36px; }
.praxis-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--anthrazit); margin-bottom: 14px; line-height: 1.3; }
.praxis-card p { font-size: 15px; color: var(--mid); line-height: 1.75; font-weight: 300; }

/* MINI STATEMENT */
.mini-statement { padding: 80px 24px; background: var(--warm-white); text-align: center; }
.mini-statement p { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 38px); font-weight: 300; font-style: italic; color: var(--anthrazit); line-height: 1.4; max-width: 760px; margin: 0 auto; }

/* BLOG */
.blog-liste { display: flex; flex-direction: column; border-top: 1px solid var(--light-line); }
.blog-eintrag { padding: 36px 0; border-bottom: 1px solid var(--light-line); display: grid; grid-template-columns: 200px 1fr auto; gap: 40px; align-items: center; }
a.blog-eintrag { text-decoration: none; cursor: pointer; transition: opacity .2s; }
a.blog-eintrag:hover { opacity: 0.78; }
a.blog-eintrag:hover .blog-link { color: var(--anthrazit); }
a.blog-eintrag:hover .blog-link svg { transform: translateX(3px); }
.blog-meta { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mint); font-weight: 600; }
.blog-titel { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--anthrazit); line-height: 1.3; }
.blog-link { font-size: 13px; color: var(--mid); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.blog-link:hover { color: var(--anthrazit); }
.blog-link svg { transition: transform .2s; }
.blog-link:hover svg { transform: translateX(3px); }

/* CTA SPLIT */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; }
.cta-img { position: relative; overflow: hidden; min-height: 400px; }
.cta-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-text { background: var(--mint); display: flex; flex-direction: column; justify-content: center; padding: 72px 64px; }
.cta-text .section-label { color: rgba(255,255,255,0.6); }
.cta-text .section-label::before { background: rgba(255,255,255,0.4); }
.cta-text h2 { font-family: var(--font-display); font-size: clamp(30px, 2.8vw, 44px); font-weight: 300; color: white; line-height: 1.2; margin-bottom: 20px; }
.cta-text h2 em { font-style: italic; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.75; font-weight: 300; margin-bottom: 32px; }
.cta-kontakt { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.cta-kontakt a { font-size: 16px; color: white; font-weight: 400; display: flex; align-items: center; gap: 12px; transition: opacity .2s; }
.cta-kontakt a:hover { opacity: 0.75; }
.cta-kontakt svg { flex-shrink: 0; opacity: 0.75; }

/* FORM */
.form-section { padding: 96px 80px; background: var(--offwhite); }
.form-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.form-info h2 { font-family: var(--font-display); font-size: clamp(28px, 2.8vw, 40px); font-weight: 300; color: var(--anthrazit); line-height: 1.2; margin-bottom: 24px; }
.form-info h2 em { font-style: italic; color: var(--mint); }
.form-info p { font-size: 16px; color: var(--mid); line-height: 1.8; font-weight: 300; margin-bottom: 18px; }
.form-info-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.form-info-list li { font-size: 15px; color: var(--mid); line-height: 1.65; display: flex; align-items: flex-start; gap: 12px; }
.form-info-list li::before { content: ''; display: block; width: 14px; height: 1px; background: var(--mint); flex-shrink: 0; margin-top: 11px; }
.form-info-list--cols li { display: grid; grid-template-columns: 14px 88px 1fr; align-items: start; column-gap: 12px; }
.form-info-list--cols .info-key { color: var(--anthrazit); font-weight: 500; }
.form-microcopy { font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.65; margin-bottom: 24px; padding-left: 14px; border-left: 2px solid var(--mint); }
.form-microcopy strong { color: var(--anthrazit); font-weight: 500; }
.kontaktformular { display: flex; flex-direction: column; gap: 20px; background: white; padding: 40px; box-shadow: 0 4px 24px rgba(44,44,44,0.05); border: 1px solid var(--light-line); }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--anthrazit); font-weight: 600; }
.form-row input, .form-row textarea { border: 1px solid var(--light-line); background: white; padding: 15px 18px; font-family: var(--font-body); font-size: 16px; color: var(--anthrazit); transition: border-color .2s; font-weight: 400; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--mint); }
.form-row input::placeholder, .form-row textarea::placeholder { color: #a8a8a8; font-weight: 300; }
.form-row textarea { resize: vertical; min-height: 140px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.two-col > div { display: flex; flex-direction: column; gap: 8px; }
.form-disclaimer { font-size: 13px; color: var(--mid); line-height: 1.65; font-weight: 300; margin-top: 6px; }
.form-consent { display: flex; align-items: flex-start; gap: 12px; }
.form-consent input { margin-top: 3px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--mint); cursor: pointer; }
.form-consent label { font-size: 13px; line-height: 1.6; color: var(--mid); font-weight: 300; text-transform: none; letter-spacing: normal; }
.form-consent a { color: var(--mint); text-decoration: underline; }

/* KUNDENBEREICH */
.kundenbereich-box { max-width: 540px; margin: 0 auto; background: var(--warm-white); border: 1px solid var(--light-line); padding: 56px 56px 48px; text-align: center; }
.kundenbereich-box h2 { font-family: var(--font-display); font-size: 32px; font-weight: 300; color: var(--anthrazit); margin-bottom: 18px; line-height: 1.2; }
.kundenbereich-box p { font-size: 15px; color: var(--mid); line-height: 1.75; font-weight: 300; margin-bottom: 28px; }
.code-input { width: 100%; border: 1px solid var(--light-line); background: var(--offwhite); padding: 16px 18px; font-family: var(--font-body); font-size: 16px; letter-spacing: 0.1em; color: var(--anthrazit); text-align: center; text-transform: uppercase; margin-bottom: 16px; transition: border-color .2s; }
.code-input:focus { outline: none; border-color: var(--mint); }
.kb-hint { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.6; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--light-line); }
.kb-hint a { color: var(--anthrazit); border-bottom: 1px solid var(--mint); }
.kb-hint a:hover { color: var(--mint); }

/* DANKE */
.danke-hero { margin-top: var(--nav-h); background: var(--mint-pale); padding: 120px 24px 96px; text-align: center; }
.danke-hero .section-label { justify-content: center; }
.danke-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 300; color: var(--anthrazit); line-height: 1.15; margin-bottom: 24px; }
.danke-hero h1 em { font-style: italic; color: var(--mint); }
.danke-hero p { font-size: 18px; color: var(--mid); line-height: 1.7; font-weight: 300; max-width: 600px; margin: 0 auto; }
.danke-blocks { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 56px; }
.danke-block h2 { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--anthrazit); margin-bottom: 14px; line-height: 1.3; }
.danke-block p { font-size: 15px; color: var(--mid); line-height: 1.8; font-weight: 300; }
.danke-quotes { background: var(--offwhite); padding: 40px; border-left: 2px solid var(--mint); display: flex; flex-direction: column; gap: 14px; }
.danke-quotes blockquote { font-family: var(--font-display); font-size: 18px; font-weight: 400; font-style: italic; color: var(--anthrazit); line-height: 1.5; }
.danke-quotes-folge { font-size: 15px; color: var(--mid); line-height: 1.75; font-weight: 300; margin-top: 16px; }

/* FOOTER */
.footer { background: var(--anthrazit); color: rgba(255,255,255,0.5); padding: 72px 80px 40px; }
.footer-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.footer-logo { height: 60px; width: auto; margin-bottom: 14px; display: block; }
.footer-brand h4 { font-size: 13px; letter-spacing: 0.13em; text-transform: uppercase; color: white; font-weight: 600; margin-bottom: 6px; }
.footer-brand .sub { font-size: 11px; color: var(--mint-lt); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: white; font-weight: 600; margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul li a:hover { color: white; }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.footer-col p a { color: rgba(255,255,255,0.78); transition: color .2s; }
.footer-col p a:hover { color: white; }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color .2s; }
.footer-legal a:hover { color: white; }

/* ARTIKEL */
.artikel-hero { margin-top: var(--nav-h); background: var(--offwhite); padding: 72px 80px 0; }
.artikel-hero-inner { max-width: 820px; margin: 0 auto; }
.artikel-zurueck { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 36px; transition: color .2s; }
.artikel-zurueck:hover { color: var(--anthrazit); }
.artikel-zurueck svg { transition: transform .2s; }
.artikel-zurueck:hover svg { transform: translateX(-3px); }
.artikel-meta { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mint); font-weight: 600; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.artikel-meta::before { content: ''; display: block; width: 28px; height: 1px; background: var(--mint); }
.artikel-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 3.6vw, 52px); font-weight: 300; line-height: 1.12; color: var(--anthrazit); letter-spacing: -0.01em; margin-bottom: 18px; }
.artikel-untertitel { font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); font-weight: 300; font-style: italic; color: var(--mint); line-height: 1.4; margin-bottom: 48px; }
.artikel-headerbild { max-width: 1080px; margin: 0 auto; height: clamp(280px, 42vw, 520px); overflow: hidden; }
.artikel-headerbild img { width: 100%; height: 100%; object-fit: cover; }
.artikel-body { padding: 72px 80px 96px; }
.artikel-prosa { max-width: 720px; margin: 0 auto; }
.artikel-prosa h2 { font-family: var(--font-display); font-size: clamp(26px, 2.4vw, 34px); font-weight: 400; color: var(--anthrazit); line-height: 1.25; margin: 48px 0 18px; }
.artikel-prosa h2:first-child { margin-top: 0; }
.artikel-prosa p { font-size: 18px; color: var(--text-body); line-height: 1.85; font-weight: 300; margin-bottom: 22px; }
.artikel-prosa p.artikel-lead { font-size: 21px; color: var(--anthrazit); line-height: 1.7; font-weight: 300; margin-bottom: 28px; }
.artikel-cta { max-width: 720px; margin: 56px auto 0; background: var(--mint-pale); border-left: 3px solid var(--mint); padding: 40px 44px; }
.artikel-cta p { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 28px); font-weight: 300; font-style: italic; color: var(--anthrazit); line-height: 1.45; margin-bottom: 28px; }
.artikel-cta .btn-anthrazit { font-style: normal; }
.artikel-weiter { padding: 0 80px 96px; }
.artikel-weiter-inner { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--light-line); padding-top: 48px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .artikel-hero { padding: 56px 40px 0; }
  .artikel-body { padding: 56px 40px 72px; }
  .artikel-weiter { padding: 0 40px 72px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-card { padding: 56px 40px; border-left: 0; order: 2; }
  .hero-img { min-height: 360px; order: 1; }
  .subhero { grid-template-columns: 1fr; }
  .subhero-text { padding: 64px 40px; }
  .subhero-img { min-height: 320px; }
  .usp-bar { padding: 40px; }
  .split-section { grid-template-columns: 1fr; }
  .split-img { height: 360px; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .kundenstimme { padding: 56px 40px; }
  .kundenstimme-grid { grid-template-columns: 1fr; gap: 32px; }
  .partner-section { padding: 48px 40px; }
  .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-section { padding: 64px 40px; }
  .themen-grid { grid-template-columns: 1fr; gap: 24px; }
  .praxis-grid { grid-template-columns: 1fr; }
  .stimmen-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-eintrag { grid-template-columns: 1fr; gap: 12px; }
  .blog-eintrag .blog-link { justify-self: start; }
  .kontakt-zwei-spalten { grid-template-columns: 1fr !important; gap: 48px !important; }
}
@media (max-width: 768px) {
  :root { --nav-h: 96px; }
  .nav { border-bottom: 1px solid var(--light-line); }
  .nav-top { padding: 18px 70px 18px 20px; justify-content: flex-start; }
  .nav-logo { align-items: flex-start; gap: 8px; }
  .nav-logo img { height: 36px; }
  .nav-logo-sub { font-size: 9px; letter-spacing: 0.18em; margin-top: 2px; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-bottom { position: absolute; top: 100%; left: 0; right: 0; max-height: 0; overflow: hidden; transition: max-height .35s ease; background: var(--warm-white); border-top: 0; }
  .nav.is-open .nav-bottom { max-height: 480px; box-shadow: 0 8px 24px rgba(44,44,44,0.10); border-top: 1px solid var(--light-line); }
  .nav-links { flex-direction: column; align-items: stretch; padding: 8px 0; }
  .nav-links a { font-size: 16px; padding: 16px 24px; }
  .nav-links a::after { display: none; }
  .nav-links li { border-bottom: 1px solid var(--light-line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav.is-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero-card { padding: 32px 24px 40px; }
  .hero-img { min-height: 280px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.18em; gap: 8px; margin-bottom: 14px; }
  .hero-eyebrow::before { width: 16px; }
  .hero h1 { font-size: 30px; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-actions { gap: 12px; }
  .leistung-num { font-size: 56px; }
  .kontaktformular { padding: 28px 20px; }
  .subhero-text { padding: 48px 24px; }
  .usp-bar, .section { padding: 56px 24px; }
  .usp-grid { grid-template-columns: 1fr; gap: 28px; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .split-text { padding: 56px 24px; }
  .partner-section { padding: 40px 24px; }
  .partner-header { flex-direction: column; gap: 4px; }
  .kundenstimme { padding: 56px 24px; }
  .cta-text { padding: 56px 24px; }
  .footer { padding: 56px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .zitat-section { padding: 64px 24px; }
  .form-section { padding: 48px 20px; }
  .danke-hero { padding: 80px 20px 64px; }
  .kundenbereich-box { padding: 36px 24px 32px; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .artikel-hero { padding: 40px 24px 0; }
  .artikel-untertitel { margin-bottom: 32px; }
  .artikel-body { padding: 48px 24px 64px; }
  .artikel-prosa p { font-size: 17px; }
  .artikel-prosa p.artikel-lead { font-size: 19px; }
  .artikel-cta { padding: 32px 24px; }
  .artikel-weiter { padding: 0 24px 64px; }
}
