/* ============================================================
   Finanzberatung Sinsheim — Direction B "Nah am Menschen"
   Warm cream + forest green, Bricolage Grotesque / Manrope
   ============================================================ */

:root {
  --cream:      #f5efe5;
  --cream-2:    #efe6d6;
  --paper:      #fffdf9;
  --green:      #1c4634;
  --green-2:    #2f6b4f;
  --green-ink:  #15291f;
  --ink:        #20302a;
  --muted:      #5d6f66;
  --muted-2:    #84938b;
  --accent:     #d98a4e;
  --accent-deep:#bf6f35;
  --line:       rgba(28,70,52,.13);
  --line-soft:  rgba(28,70,52,.08);
  --shadow-sm:  0 4px 18px -8px rgba(28,41,31,.25);
  --shadow-md:  0 18px 44px -22px rgba(28,41,31,.40);
  --shadow-lg:  0 40px 80px -36px rgba(21,41,31,.45);
  --radius:     20px;
  --maxw:       1180px;
  --display:    'Bricolage Grotesque', sans-serif;
  --body:       'Manrope', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; color: var(--green-ink); line-height: 1.05; letter-spacing: -.02em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-2);
}
.eyebrow::before { content:''; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }

.section { padding: 110px 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 52px); margin: 18px 0 16px; }
.section-head p { font-size: 18px; color: var(--muted); max-width: 560px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 15.5px; border-radius: 12px; padding: 15px 26px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 16px 28px -12px rgba(217,138,78,.65); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 20px 32px -12px rgba(217,138,78,.7); }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { background: var(--green-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--green); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--green); background: rgba(28,70,52,.04); }
.btn-lg { padding: 18px 32px; font-size: 16.5px; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 12px 0;
}
.header.scrolled { background: rgba(245,239,229,.88); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 42px; height: 42px; border-radius: 13px; background: var(--green); color: var(--cream); display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 21px; flex-shrink: 0; }
.logo-txt b { font-family: var(--display); font-weight: 700; font-size: 16.5px; color: var(--green-ink); display: block; line-height: 1; letter-spacing: -.01em; }
.logo-txt span { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: 15px; font-weight: 600; color: var(--ink); transition: color .15s; position: relative; }
.nav a::after { content:''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s; border-radius: 2px; }
.nav a:hover { color: var(--green); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--green); }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 11px; background: var(--green); color: var(--cream); place-items: center; }
.menu-btn svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(2px); z-index: 0; }
.hero-blob.b1 { width: 620px; height: 620px; background: radial-gradient(circle at 30% 30%, rgba(47,107,79,.16), rgba(47,107,79,0)); top: -180px; right: -160px; }
.hero-blob.b2 { width: 380px; height: 380px; background: radial-gradient(circle at 40% 40%, rgba(217,138,78,.14), rgba(217,138,78,0)); bottom: -120px; left: -120px; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-pill { display: inline-flex; align-items: center; gap: 9px; background: var(--cream-2); border: 1px solid var(--line); color: var(--green); font-weight: 700; font-size: 13.5px; padding: 9px 16px; border-radius: 999px; margin-bottom: 26px; }
.hero-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(217,138,78,.18); }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero h1 { font-size: clamp(42px, 5.4vw, 66px); font-weight: 800; margin-bottom: 28px; line-height: 1.07; text-wrap: balance; }
.hero h1 u { text-decoration: none; position: relative; white-space: nowrap; }
.hero h1 u::after { content:''; position: absolute; left: -2px; right: -2px; bottom: 8px; height: 14px; background: var(--accent); opacity: .42; border-radius: 5px; z-index: -1; }
.hero-lead { font-size: 19px; line-height: 1.62; color: var(--muted); max-width: 480px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-photo { border-radius: 230px 230px 28px 28px; overflow: hidden; aspect-ratio: .9/1; box-shadow: var(--shadow-lg); position: relative; }
.portrait { width: 100%; height: 100%; display: grid; place-items: center; position: relative; background: linear-gradient(165deg,#dfe7e0,#cbd8ce); }
.portrait-img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.portrait svg { width: 42%; opacity: .9; }
.portrait .ph-label { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #5e7468; font-weight: 800; }
.float-chip { position: absolute; background: var(--paper); border-radius: 16px; padding: 13px 17px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; z-index: 2; }
.float-chip .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(28,70,52,.08); display: grid; place-items: center; color: var(--green); flex-shrink: 0; }
.float-chip .ic svg { width: 20px; height: 20px; }
.float-chip > span:last-child { display: block; }
.float-chip b { font-size: 14.5px; font-weight: 800; color: var(--green-ink); display: block; line-height: 1.2; white-space: nowrap; }
.float-chip > span:last-child > span { font-size: 12px; color: var(--muted-2); white-space: nowrap; }
.float-chip.c1 { top: 38px; left: -36px; }
.float-chip.c2 { bottom: 44px; right: -32px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; position: relative; z-index: 1; }
.stat { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; padding: 22px 24px; }
.stat b { font-family: var(--display); font-weight: 800; font-size: 30px; color: var(--green); display: block; line-height: 1; }
.stat span { font-size: 13.5px; color: var(--muted); display: block; margin-top: 8px; }

/* ---------- Fachbereiche ---------- */
.bereiche { background: var(--cream-2); }
.bereiche-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bcard {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 28px 26px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  position: relative; overflow: hidden; cursor: pointer;
}
.bcard::after { content:''; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--accent); transition: width .25s ease; }
.bcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line); }
.bcard:hover::after { width: 100%; }
.bcard:hover .bcard-ic { background: var(--green); color: var(--cream); }
.bcard-ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(28,70,52,.07); color: var(--green); display: grid; place-items: center; margin-bottom: 20px; transition: background .2s, color .2s; }
.bcard-ic svg { width: 26px; height: 26px; }
.bcard h3 { font-size: 19px; margin-bottom: 8px; }
.bcard p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.bcard .more { margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 6px; }
.bcard.cta-card { background: var(--green); color: var(--cream); display: flex; flex-direction: column; justify-content: center; cursor: default; }
.bcard.cta-card::after { display: none; }
.bcard.cta-card:hover { transform: translateY(-5px); }
.bcard.cta-card h3 { color: var(--cream); font-size: 21px; }
.bcard.cta-card p { color: rgba(245,239,229,.78); margin-bottom: 18px; }

/* ---------- About / Denis ---------- */
.about-inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; align-items: center; }
.about-photo { position: relative; }
.about-photo .hero-photo { border-radius: 28px 28px 200px 28px; aspect-ratio: .82/1; }
.about-quote { position: absolute; right: -24px; bottom: 36px; background: var(--green); color: var(--cream); border-radius: 16px; padding: 18px 22px; max-width: 250px; box-shadow: var(--shadow-md); }
.about-quote p { font-family: var(--display); font-size: 16px; font-weight: 500; line-height: 1.35; }
.about-role { font-size: 13px; font-weight: 800; letter-spacing: .04em; color: var(--accent-deep); text-transform: uppercase; margin-bottom: 12px; }
.about-lead { font-size: 21px; line-height: 1.55; color: var(--ink); font-weight: 500; margin-bottom: 20px; }
.about-text p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; margin: 30px 0 32px; }
.about-feat { display: flex; gap: 13px; align-items: flex-start; }
.about-feat > span:last-child { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.about-feat .fic { width: 34px; height: 34px; border-radius: 9px; background: rgba(217,138,78,.14); color: var(--accent-deep); display: grid; place-items: center; flex-shrink: 0; }
.about-feat .fic svg { width: 18px; height: 18px; }
.about-feat b { font-size: 15px; font-weight: 800; color: var(--green-ink); display: block; line-height: 1.25; }
.about-feat > span:last-child > span { font-size: 13.5px; color: var(--muted); display: block; line-height: 1.35; }
.about-contact { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Process ---------- */
.process { background: var(--green); color: var(--cream); }
.process h2 { color: var(--cream); }
.process .section-head p { color: rgba(245,239,229,.74); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; }
.step-num { font-family: var(--display); font-weight: 800; font-size: 15px; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(245,239,229,.3); display: grid; place-items: center; color: var(--accent); margin-bottom: 22px; }
.step h3 { color: var(--cream); font-size: 20px; margin-bottom: 10px; }
.step p { color: rgba(245,239,229,.72); font-size: 14.5px; line-height: 1.55; }
.step:not(:last-child)::before { content:''; position: absolute; top: 20px; left: 52px; right: -12px; height: 1.5px; background: repeating-linear-gradient(90deg, rgba(245,239,229,.3) 0 6px, transparent 6px 12px); }

/* ---------- Values band ---------- */
.values { background: var(--cream-2); text-align: center; }
.values .eyebrow { justify-content: center; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 54px; }
.value { padding: 0 12px; }
.value .vk { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); font-weight: 800; margin-bottom: 10px; }
.value h3 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.value p { color: var(--muted); font-size: 15.5px; max-width: 300px; margin: 0 auto; }
.value .vline { width: 38px; height: 3px; background: var(--accent); border-radius: 2px; margin: 0 auto 22px; }

/* ---------- Contact ---------- */
.contact-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--green-ink); margin-bottom: 7px; }
.field label .req { color: var(--accent-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 11px;
  padding: 13px 15px; transition: border-color .15s, box-shadow .15s, background .15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-2); background: var(--paper); box-shadow: 0 0 0 4px rgba(47,107,79,.12); }
.field input.invalid, .field textarea.invalid, .field select.invalid { border-color: #c0533c; box-shadow: 0 0 0 4px rgba(192,83,60,.1); }
.field .err { font-size: 12.5px; color: #c0533c; margin-top: 6px; display: none; font-weight: 600; }
.field.show-err .err { display: block; }
.consent { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 22px; }
.consent input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; }
.consent label { font-size: 13px; color: var(--muted); line-height: 1.5; font-weight: 500; }
.consent a { color: var(--green); text-decoration: underline; }
.form-submit { width: 100%; }
.form-note { text-align: center; font-size: 13px; color: var(--muted-2); margin-top: 16px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; animation: pop .4s ease; }
.form-success .succ-ic { width: 72px; height: 72px; border-radius: 50%; background: rgba(47,107,79,.12); color: var(--green); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .succ-ic svg { width: 36px; height: 36px; }
.form-success h3 { font-size: 26px; margin-bottom: 12px; }
.form-success p { color: var(--muted); font-size: 16px; max-width: 360px; margin: 0 auto; }
@keyframes pop { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }

.contact-aside { display: flex; flex-direction: column; gap: 18px; }
.cinfo { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 18px; padding: 26px 28px; }
.cinfo h3 { font-size: 18px; margin-bottom: 18px; }
.cinfo-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.cinfo-row:last-child { margin-bottom: 0; }
.cinfo-row .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(28,70,52,.07); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.cinfo-row .ic svg { width: 19px; height: 19px; }
.cinfo-row .lbl { display: block; font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: 2px; }
.cinfo-row .val { display: block; font-size: 15.5px; font-weight: 700; color: var(--green-ink); }
.cinfo-row a.val:hover { color: var(--accent-deep); }
.map { border-radius: 18px; overflow: hidden; border: 1px solid var(--line-soft); position: relative; height: 230px; background: linear-gradient(135deg,#e8e9e0,#dfe2d8); }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(28,70,52,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(28,70,52,.07) 1px, transparent 1px); background-size: 38px 38px; }
.map-road { position: absolute; background: rgba(255,255,255,.7); }
.map-road.r1 { height: 12px; left: -5%; right: -5%; top: 44%; transform: rotate(-7deg); }
.map-road.r2 { width: 12px; top: -5%; bottom: -5%; left: 58%; transform: rotate(4deg); }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-100%); z-index: 2; color: var(--accent-deep); filter: drop-shadow(0 6px 8px rgba(0,0,0,.25)); }
.map-pin svg { width: 42px; height: 42px; }
.map-tag { position: absolute; bottom: 14px; left: 14px; background: var(--paper); border-radius: 10px; padding: 8px 13px; font-size: 12.5px; font-weight: 700; color: var(--green-ink); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 7px; }
.map-tag::before { content:''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ---------- Footer ---------- */
.footer { background: var(--green-ink); color: rgba(245,239,229,.7); padding: 70px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(245,239,229,.12); }
.footer .logo-txt b { color: var(--cream); }
.footer-about { font-size: 14.5px; line-height: 1.6; margin: 20px 0 14px; max-width: 300px; }
.footer-addr { font-size: 13.5px; line-height: 1.6; color: rgba(245,239,229,.55); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(245,239,229,.08); display: grid; place-items: center; color: var(--cream); transition: background .15s; }
.footer-social a:hover { background: var(--accent); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: var(--cream); font-size: 14px; letter-spacing: .04em; margin-bottom: 18px; font-family: var(--body); font-weight: 800; }
.footer-col a { display: block; font-size: 14.5px; margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom .legal { display: flex; gap: 22px; }

/* ---------- Sticky CTA bar ---------- */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--green); color: var(--cream);
  transform: translateY(110%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -12px 36px -18px rgba(0,0,0,.45);
}
.cta-bar.show { transform: translateY(0); }
body.no-cta-bar .cta-bar { display: none !important; }
.cta-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 15px 0; }
.cta-bar-msg { display: flex; align-items: center; gap: 15px; }
.cta-bar-msg .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(217,138,78,.25); flex-shrink: 0; }
.cta-bar-msg b { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--cream); }
.cta-bar-msg span { font-size: 14px; color: rgba(245,239,229,.72); }
.cta-bar-actions { display: flex; align-items: center; gap: 16px; }
.cta-bar-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--cream); }
.cta-bar-close { width: 34px; height: 34px; border-radius: 9px; color: rgba(245,239,229,.7); display: grid; place-items: center; transition: background .15s; }
.cta-bar-close:hover { background: rgba(245,239,229,.1); color: var(--cream); }
.cta-bar-close svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Mobile nav drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-bg { position: absolute; inset: 0; background: rgba(21,41,31,.45); opacity: 0; transition: opacity .3s; }
.drawer.open .drawer-bg { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 340px); background: var(--cream); padding: 28px 26px; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.drawer.open .drawer-panel { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.drawer-close { width: 44px; height: 44px; border-radius: 11px; background: rgba(28,70,52,.07); color: var(--green); display: grid; place-items: center; }
.drawer-close svg { width: 22px; height: 22px; }
.drawer-nav a { display: block; font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--green-ink); padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.drawer-foot { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .bereiche-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 22px; }
  .step:not(:last-child)::before { display: none; }
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .about-photo { max-width: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav, .header-phone { display: none; }
  .menu-btn { display: grid; }
}
@media (max-width: 860px) {
  .section { padding: 76px 0; }
  .hero { padding: 124px 0 60px; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-bar-msg span { display: none; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .bereiche-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
  .about-feats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .float-chip.c1 { left: -8px; } .float-chip.c2 { right: -8px; }
  .cta-bar-msg b { font-size: 15px; }
  .cta-bar-phone span { display: none; }
}
