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

:root {
  --navy: #0B2647;
  --navy-light: #1a3a6b;
  --green: #6AA22E;
  --green-dark: #4d7a1f;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --gray: #8a9bb5;
  --gray-light: #dce6f0;
  --text: #1a2a3a;
}

html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,38,71,0.97); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 68px; border-bottom: 1px solid rgba(106,162,46,0.25);
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
/* Vollständiges Logo (Schriftzug + Radar-Symbol rechts), weiß/grün auf Navy */
.nav-wordmark { height: 42px; width: auto; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--gray); text-decoration: none; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green); color: var(--white) !important; padding: 0.45rem 1.1rem;
  border-radius: 4px; font-weight: 700 !important; letter-spacing: 0.04em !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }
.nav-phone {
  display: inline-flex !important; align-items: center; gap: 0.45rem;
  color: var(--white) !important; text-transform: none !important; letter-spacing: 0.02em !important;
  font-size: 0.92rem !important; font-weight: 700 !important;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.nav-phone:hover { color: var(--green) !important; }
.nav-phone:hover svg { color: var(--green); }

/* HERO */
#hero {
  min-height: 620px; background: var(--navy); display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: calc(68px + 4rem) 4rem 4.5rem; gap: 4rem; position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(106,162,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block; background: rgba(106,162,46,0.15); border: 1px solid rgba(106,162,46,0.4);
  color: var(--green); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 2px; margin-bottom: 1.5rem;
}
.hero-title { font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 900; line-height: 1.05; color: var(--white); margin-bottom: 1.5rem; }
.hero-title em { font-style: normal; color: var(--green); }
.hero-sub { color: var(--gray); font-size: 1.05rem; font-weight: 400; max-width: 480px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--green); color: var(--white); padding: 0.85rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none; letter-spacing: 0.04em;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); padding: 0.85rem 2rem; border-radius: 4px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none; letter-spacing: 0.04em;
  transition: border-color .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }

/* HERO ICON */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; z-index: 1; }
.geo-icon { width: 340px; height: 340px; }
.ground-line { stroke: var(--white); stroke-width: 2.5; }
.ring-up { fill: none; stroke: var(--white); stroke-width: 1.8; opacity: 0; animation: ringUp 3s ease-out infinite; }
@keyframes ringUp { 0%{opacity:0;stroke-width:2.5;} 15%{opacity:0.9;} 80%{opacity:0.2;stroke-width:1;} 100%{opacity:0;} }
.ring-down { fill: none; stroke: var(--green); stroke-width: 2; opacity: 0; animation: ringDown 3s ease-out infinite; }
@keyframes ringDown { 0%{opacity:0;} 20%{opacity:0.85;} 80%{opacity:0.2;} 100%{opacity:0;} }
.geo-icon circle { fill: rgba(106,162,46,0.25); }

/* STATS */
.stats-bar { background: var(--off-white); padding: 2.2rem 4rem; display: flex; justify-content: space-around; border-bottom: 1px solid var(--gray-light); flex-wrap: wrap; gap: 1.5rem; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 900; color: var(--navy); letter-spacing: -1px; }
.stat-label { font-size: 0.78rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }

/* SECTION COMMON */
section { padding: 5.5rem 4rem; }
.section-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 1rem; }
.section-sub { color: var(--gray); font-size: 1rem; max-width: 560px; line-height: 1.7; margin-bottom: 3rem; }

/* SERVICES */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1rem; }
.service-card { border: 1.5px solid var(--gray-light); border-radius: 8px; padding: 2rem; transition: border-color .2s, box-shadow .2s, transform .2s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { border-color: var(--green); box-shadow: 0 4px 24px rgba(106,162,46,0.12); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; background: rgba(106,162,46,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.service-icon svg { width: 26px; height: 26px; }
.service-name { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.87rem; color: #5a6a7a; line-height: 1.65; }

/* ABOUT */
/* BILDBAND FELD */
#feldband {
  padding: 0; position: relative; min-height: 520px;
  display: flex; align-items: flex-end; overflow: hidden; background: var(--navy);
}
.feldband-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
#feldband::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(11,26,42,0.94) 0%, rgba(11,26,42,0.55) 40%, rgba(11,26,42,0.12) 75%, rgba(11,26,42,0.05) 100%);
}
.feldband-inner { position: relative; z-index: 1; padding: 3rem 4rem; max-width: 660px; }
.feldband-claim { color: var(--white); font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 900; line-height: 1.2; margin-bottom: 0.6rem; }
.feldband-caption { color: rgba(255,255,255,0.72); font-size: 0.88rem; line-height: 1.6; }

/* ABOUT */
#about { background: var(--navy); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
#about .section-title { color: var(--white); }
#about .section-sub { color: var(--gray); }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.about-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.55; }
.about-list li::before { content: '\25B8'; color: var(--green); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.15rem; }
.about-portrait { background: transparent; border: 1.5px solid rgba(106,162,46,0.3); border-radius: 12px; padding: 2.5rem; text-align: center; }
.portrait-symbol { width: 110px; height: 110px; object-fit: contain; margin: 0 auto 1.5rem; display: block; }
.portrait-photo {
  width: 100%; max-width: 280px; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 10px; border: 1px solid rgba(106,162,46,0.3);
  margin: 0 auto 1.5rem; display: block;
}
.portrait-name { color: var(--white); font-size: 1.25rem; font-weight: 800; margin-bottom: 0.25rem; }
.portrait-role { color: var(--green); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0; }
.portrait-bio { color: var(--gray); font-size: 0.87rem; line-height: 1.65; }

/* CONTACT */
#kontakt { background: var(--off-white); }

/* Zwei Wege: Anruf (Neukunde) + Formular (Bestandskunde/Detail) */
.contact-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 0 1rem; }
.contact-way { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 12px; padding: 2rem; display: flex; flex-direction: column; align-items: flex-start; }
.contact-way--call { border-color: rgba(106,162,46,0.45); box-shadow: 0 4px 24px rgba(106,162,46,0.08); }
.contact-way-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.6rem; }
.contact-way-title { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 0.6rem; }
.contact-way-text { font-size: 0.9rem; color: #5a6a7a; line-height: 1.6; margin-bottom: 1.4rem; }
.contact-way--form .contact-way-text { flex: 1; }
.contact-call-number {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem); font-weight: 900; color: var(--navy);
  text-decoration: none; letter-spacing: -0.5px; margin-bottom: 0.7rem;
}
.contact-call-number svg { width: 26px; height: 26px; color: var(--green); flex-shrink: 0; }
.contact-call-number:hover { color: var(--green); }
.contact-call-mail { font-size: 0.9rem; font-weight: 600; color: var(--green); text-decoration: none; }
.contact-call-mail:hover { text-decoration: underline; }
.contact-form-open { border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; }
.contact-way-alt { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--gray-light); width: 100%; }
.contact-way-alt-text { font-size: 0.82rem; color: #5a6a7a; line-height: 1.5; margin-bottom: 0.75rem; }
.contact-alt-open { background: var(--green); border: none; color: var(--white); padding: 0.85rem 2rem; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; cursor: pointer; transition: background .2s, transform .15s; }
.contact-alt-open:hover { background: var(--green-dark); transform: translateY(-1px); }
.contact-way.is-open .contact-form-open { opacity: 0.55; }
#wizardWrap { max-width: 900px; margin-top: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.field { margin-bottom: 1.1rem; }
label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.4rem; }
input, textarea, select { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--gray-light); border-radius: 5px; font-family: 'Montserrat', sans-serif; font-size: 0.92rem; color: var(--text); background: var(--white); transition: border-color .2s, box-shadow .2s; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(106,162,46,0.12); }
textarea { resize: vertical; min-height: 90px; }
.form-footer { margin-top: 1.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.btn-submit { background: var(--green); color: var(--white); border: none; padding: 0.9rem 2.4rem; border-radius: 5px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em; cursor: pointer; transition: background .2s, transform .15s; }
.btn-submit:hover:not(:disabled) { background: var(--green-dark); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { font-size: 0.76rem; color: var(--gray); }
.form-status { margin-top: 1.5rem; padding: 1rem 1.2rem; border-radius: 6px; font-size: 0.9rem; font-weight: 600; display: none; }
.form-status.success { background: rgba(106,162,46,0.12); color: var(--green-dark); border: 1px solid rgba(106,162,46,0.4); }
.form-status.error { background: rgba(200,50,50,0.08); color: #b23030; border: 1px solid rgba(200,50,50,0.3); }
.form-status a { color: inherit; }

/* FOOTER */
footer { background: var(--navy); color: var(--gray); }
.footer-main { padding: 3rem 4rem 2rem; display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-img { height: 40px; width: auto; margin-bottom: 0.8rem; }
.footer-tagline { font-size: 0.85rem; max-width: 320px; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.88rem; }
.footer-contact a { color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-contact a:hover { color: var(--green); }
.footer-bottom { padding: 1.2rem 4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
.footer-copy { font-size: 0.78rem; color: var(--gray); }
.footer-legal { list-style: none; display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--gray); text-decoration: none; font-size: 0.78rem; transition: color .2s; }
.footer-legal a:hover { color: var(--green); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 1.2rem; }
  .nav-links { gap: 0.9rem; }
  .nav-section-link { display: none; }
  .nav-phone span { display: none; }
  .nav-phone svg { width: 20px; height: 20px; }
  #hero { grid-template-columns: 1fr; padding: 0 1.5rem; padding-top: 100px; gap: 2rem; text-align: center; min-height: auto; padding-bottom: 4rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { order: -1; }
  .geo-icon { width: 240px; height: 240px; }
  section { padding: 3.5rem 1.5rem; }
  #feldband { min-height: 380px; }
  .feldband-img { object-position: 55% 45%; }
  .feldband-inner { padding: 2rem 1.5rem; }
  #about { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-lead { grid-template-columns: 1fr; }
  .contact-way { padding: 1.6rem; }
  .stats-bar { padding: 2rem 1.5rem; }
  .footer-main, .footer-bottom { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 820px) { .form-grid { grid-template-columns: 1fr; } }

/* === WIZARD KONTAKTFORMULAR === */

/* Honeypot – für Menschen unsichtbar, nur Bots füllen es aus (kein display:none,
   das manche Bots erkennen → off-screen + nicht fokussierbar) */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* Fortschritt */
.wizard-progress { margin-bottom: 2rem; }
.wizard-progress-track { height: 6px; background: var(--gray-light); border-radius: 4px; overflow: hidden; }
.wizard-progress-track > span { display: block; height: 100%; width: 25%; background: var(--green); border-radius: 4px; transition: width .35s ease; }
.wizard-progress-label { margin-top: 0.6rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }

/* Schritte */
.wizard-step { display: none; }
.wizard-step.is-active { display: block; animation: wizardFade .35s ease; }
@keyframes wizardFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.wizard-heading { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.wizard-hint { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.5; }
.label-hint { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--gray); }

/* Wechsel zwischen ausführlichem Formular und formloser Nachricht */
.wizard-switch { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--gray-light); }
.link-btn { background: none; border: none; padding: 0; font: inherit; color: var(--green-dark); font-weight: 700; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.link-btn:hover { color: var(--green); }

/* Branch-Sichtbarkeit */
.branch { display: none; }
.branch.is-active { display: block; }

/* Auswahl-Kacheln */
.choice-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.choice-card { display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem; text-align: left; background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 10px; padding: 1.4rem; cursor: pointer; font-family: inherit; transition: border-color .2s, box-shadow .2s, transform .15s; }
.choice-card:hover { border-color: var(--green); box-shadow: 0 4px 20px rgba(106,162,46,0.12); transform: translateY(-2px); }
.choice-card.selected { border-color: var(--green); box-shadow: 0 0 0 3px rgba(106,162,46,0.18); background: rgba(106,162,46,0.04); }
.choice-icon { width: 44px; height: 44px; background: rgba(106,162,46,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.4rem; }
.choice-icon svg { width: 24px; height: 24px; }
.choice-title { font-size: 0.98rem; font-weight: 800; color: var(--navy); line-height: 1.25; }
.choice-desc { font-size: 0.8rem; color: #5a6a7a; line-height: 1.5; }

/* Pill-Toggles */
.toggle-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.toggle-pill { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 999px; padding: 0.7rem 1.5rem; font-family: inherit; font-size: 0.9rem; font-weight: 600; color: var(--navy); cursor: pointer; transition: border-color .2s, background .2s, color .2s; }
.toggle-pill strong { color: var(--green); font-weight: 800; }
.toggle-pill:hover { border-color: var(--green); }
.toggle-pill.selected { background: var(--green); border-color: var(--green); color: var(--white); }
.toggle-pill.selected strong { color: var(--white); }
.toggle-lg .toggle-pill { padding: 0.9rem 2rem; font-size: 0.95rem; }

/* Checkbox-Liste (Leistungen) */
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.6rem; }
.check-item { display: flex; align-items: center; gap: 0.6rem; border: 1.5px solid var(--gray-light); border-radius: 6px; padding: 0.7rem 0.9rem; cursor: pointer; font-size: 0.88rem; font-weight: 500; color: var(--text); text-transform: none; letter-spacing: 0; transition: border-color .2s, background .2s; margin: 0; }
.check-item:hover { border-color: var(--green); }
.check-item input { width: 18px; height: 18px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; }
.check-item:has(input:checked) { border-color: var(--green); background: rgba(106,162,46,0.06); }

/* Hinweise / Datei-Input / Maps */
.field-note { display: block; margin-top: 0.5rem; font-size: 0.76rem; color: var(--gray); line-height: 1.4; }
.file-input { padding: 0.55rem 0.6rem; font-size: 0.85rem; }
.file-input::file-selector-button { font-family: inherit; font-size: 0.8rem; font-weight: 600; color: var(--navy); background: var(--off-white); border: 1px solid var(--gray-light); border-radius: 4px; padding: 0.4rem 0.8rem; margin-right: 0.8rem; cursor: pointer; }
.maps-preview { display: inline-block; margin-top: 0.5rem; font-size: 0.8rem; font-weight: 600; color: var(--green); text-decoration: none; }
.maps-preview:hover { text-decoration: underline; }

/* Drag-and-Drop Upload Zone */
.drop-zone { border: 2px dashed var(--gray-light); border-radius: 6px; padding: 1.5rem 1rem; text-align: center; color: var(--gray); cursor: pointer; transition: border-color .2s, background .2s; }
.drop-zone:hover, .drop-zone.drag-over { border-color: var(--green); background: rgba(106,162,46,0.04); }
.drop-zone svg { color: var(--gray-light); margin-bottom: 0.5rem; }
.drop-zone-text { font-size: 0.88rem; font-weight: 500; color: var(--text); margin: 0 0 0.2rem; }
.drop-zone-link { color: var(--green); font-weight: 700; cursor: pointer; text-decoration: underline; }
.drop-zone-hint { font-size: 0.76rem; color: var(--gray); margin: 0 0 0.75rem; }
.file-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.3rem; text-align: left; }
.file-list li { font-size: 0.8rem; color: var(--navy); background: rgba(106,162,46,0.06); border: 1px solid rgba(106,162,46,0.2); border-radius: 4px; padding: 0.3rem 0.6rem; }

/* OneDrive-Upload */
.upload-box { display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-start; }
.upload-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--navy); color: var(--white); padding: 0.8rem 1.4rem; border-radius: 6px; font-size: 0.88rem; font-weight: 700; text-decoration: none; transition: background .2s, transform .15s; }
.upload-btn svg { width: 18px; height: 18px; }
.upload-btn:hover { background: var(--navy-light); transform: translateY(-1px); }
.upload-confirm { width: 100%; }

/* Ansprechpartner */
.contact-row { display: flex; gap: 0.6rem; align-items: center; margin-bottom: 0.6rem; }
.contact-row .contact-name { flex: 1 1 50%; }
.contact-row .contact-phone { flex: 1 1 40%; }
.contact-remove { flex-shrink: 0; width: 42px; height: 42px; border: 1.5px solid var(--gray-light); background: var(--white); border-radius: 6px; color: var(--gray); font-size: 1.3rem; line-height: 1; cursor: pointer; transition: border-color .2s, color .2s; }
.contact-remove:hover { border-color: #c83232; color: #c83232; }
.add-contact { margin-top: 0.3rem; background: none; border: none; color: var(--green); font-family: inherit; font-size: 0.85rem; font-weight: 700; cursor: pointer; padding: 0.3rem 0; }
.add-contact:hover { color: var(--green-dark); }

/* Zusammenfassung */
.summary { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 8px; padding: 0.5rem 1.2rem; margin-bottom: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid #edf2f7; }
.summary-row:last-child { border-bottom: none; }
.summary-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gray); flex-shrink: 0; }
.summary-value { font-size: 0.9rem; color: var(--navy); font-weight: 500; text-align: right; word-break: break-word; }

/* Einwilligung */
.consent { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.85rem; font-weight: 400; color: #4a5568; text-transform: none; letter-spacing: 0; line-height: 1.5; cursor: pointer; }
.consent input { width: 18px; height: 18px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; margin-top: 0.1rem; }
.consent a { color: var(--navy); font-weight: 600; }

/* Navigation */
.wizard-nav { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.btn-back { background: none; border: 1.5px solid var(--gray-light); color: var(--navy); padding: 0.85rem 1.8rem; border-radius: 5px; font-family: inherit; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: border-color .2s; }
.btn-back:hover { border-color: var(--green); color: var(--green); }
.btn-next { background: var(--green); color: var(--white); border: none; padding: 0.9rem 2.4rem; border-radius: 5px; font-family: inherit; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em; cursor: pointer; transition: background .2s, transform .15s; margin-left: auto; }
.btn-next:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-submit { margin-left: auto; }
.nav-note { flex: 1; text-align: center; min-width: 120px; }

/* Validierung */
.invalid { border-color: #c83232 !important; box-shadow: 0 0 0 3px rgba(200,50,50,0.1); }
.check-grid.invalid, .toggle-pills.invalid, .upload-box.invalid, .consent.invalid { outline: 2px solid rgba(200,50,50,0.5); outline-offset: 4px; border-radius: 8px; box-shadow: none; border-color: transparent !important; }

@media (max-width: 900px) {
  .check-grid { grid-template-columns: 1fr; }
  .wizard-nav { gap: 0.75rem; }
  .nav-note { order: 3; flex-basis: 100%; text-align: center; }
  .btn-next, .btn-submit { margin-left: auto; }
}
