/* ================================================
   KFO Roloff – MicroAnimation Design
   Inspired by drsmile.de: clean white, Georgia
   serif headlines, Inter body, heavy micro-anim
   ================================================ */

/* --- Back Button ---------------------------------------------------- */
.back-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; font-weight: 700;
  color: #438136;
  text-decoration: none;
  padding: 5px 10px 5px 6px;
  border-radius: 20px;
  border: 1px solid rgba(67,129,54,0.25);
  background: rgba(67,129,54,0.05);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.back-btn:hover { background: rgba(67,129,54,0.12); border-color: rgba(67,129,54,0.5); transform: translateX(-2px); }

/* ---------- Custom Properties -------------------- */
:root {
  --green:   #438136;
  --green-dk:#2e5c24;
  --blue:    #3b82c4;
  --white:   #ffffff;
  --off:     #f7f9f7;
  --dark:    #111111;
  --mid:     #555555;
  --light:   #999999;
  --border:  #e4e4e4;

  --radius:  14px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Scroll Progress Bar ------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), #7cba6e);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---------- Container ----------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Reveal Animations --------------------- */
.reveal-child {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease) var(--d, 0ms),
              transform 0.65s var(--ease) var(--d, 0ms);
}
.reveal-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero-specific slide-up (CSS only) */
.anim-slide-up {
  animation: slideUp 0.8s var(--spring) both;
  animation-delay: var(--d, 0ms);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Section Labels / Headings ------------- */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-label--light { color: #9de08a; }

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}
.section-heading--light { color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-heading { max-width: 540px; margin-inline: auto; }

/* ---------- Buttons ------------------------------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 50px;
  transition: background 0.25s var(--ease), transform 0.2s var(--spring), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-cta:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67,129,54,0.28);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta--nav   { font-size: 0.85rem; padding: 10px 22px; }
.btn-cta--hero  { background: var(--white); color: var(--dark); font-size: 1rem; padding: 16px 36px; }
.btn-cta--hero:hover { background: var(--off); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.btn-cta--full  { width: 100%; justify-content: center; margin-top: 4px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.45);
  padding: 14px 28px;
  border-radius: 50px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--spring);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* Ripple effect */
.ripple { overflow: hidden; }
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: ripple-anim 0.55s linear;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ---------- Header / Nav -------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--spring);
}
.logo-mark:hover { transform: rotate(-6deg) scale(1.08); }
.logo-mark--sm { width: 32px; height: 32px; font-size: 0.7rem; border-radius: 8px; }
.logo-name { font-weight: 700; font-size: 1.05rem; display: block; }
.logo-sub  { font-size: 0.72rem; color: var(--light); display: block; }

.main-nav { display: flex; gap: 4px; }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  color: var(--mid);
  transition: color 0.2s, background 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.25s var(--spring);
  border-radius: 2px;
}
.nav-link:hover { color: var(--dark); background: var(--off); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--green); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--off); }
.hamburger {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  position: relative;
  transition: background 0.2s;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease), bottom 0.3s var(--ease);
}
.hamburger::before { top: -7px; }
.hamburger::after  { bottom: -7px; }

/* Animated hamburger → X */
.hamburger.open { background: transparent; }
.hamburger.open::before { top: 0; transform: rotate(45deg); }
.hamburger.open::after  { bottom: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-nav.open { max-height: 400px; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--green); padding-left: 6px; }
.mobile-cta {
  margin-top: 8px;
  border-bottom: none !important;
  text-align: center;
  padding: 12px !important;
}

/* ---------- Hero ---------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 72px;
  overflow: hidden;
}
.hero-slider-wrap {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 8s linear;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 70%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  max-width: 640px;
}
.hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-heading em { font-style: normal; color: #9de08a; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero word swap animation */
#heroWord { display: inline-block; transition: opacity 0.4s, transform 0.4s var(--spring); }
#heroWord.swap { opacity: 0; transform: translateY(10px); }

/* Slider controls */
.hero-slider-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hsc-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s var(--spring);
}
.hsc-btn:hover { background: rgba(255,255,255,0.38); transform: scale(1.12); }
.hsc-dots { display: flex; gap: 8px; }
.hsc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--spring), width 0.3s var(--ease);
}
.hsc-dot.active { background: var(--white); width: 24px; border-radius: 4px; }

/* ---------- Stats Bar ----------------------------- */
.stats-bar {
  background: var(--dark);
  padding: 40px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 16px 24px;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #9de08a;
  line-height: 1;
  margin-bottom: 6px;
  /* counter animation handled by JS */
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ---------- Intro / Praxis ----------------------- */
.intro-section { padding: 100px 0; background: var(--white); }
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.intro-text p { color: var(--mid); margin-bottom: 16px; }
.intro-text .btn-cta { margin-top: 8px; }
.intro-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value-card {
  background: var(--off);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
  transform-style: preserve-3d;
}
.value-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: inline-block;
}
.pulse-icon { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12); }
}
.value-card strong { display: block; font-size: 0.95rem; margin-bottom: 6px; }
.value-card p { font-size: 0.85rem; color: var(--mid); }

/* ---------- Leistungen --------------------------- */
.leistungen-section { padding: 100px 0; background: var(--off); }
.leistungen-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.l-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--spring), box-shadow 0.35s var(--ease);
}
.l-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.l-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.l-card:hover::before { transform: scaleX(1); }
.l-card-num {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.l-card-icon { font-size: 2rem; margin-bottom: 16px; }
.l-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.l-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; margin-bottom: 20px; }
.l-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s var(--ease);
}
.l-card:hover .l-card-link { gap: 10px; }

/* ---------- Prozess ------------------------------ */
.prozess-section { padding: 100px 0; background: var(--white); }
.prozess-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--green);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
}
.step:hover .step-num {
  transform: scale(1.12);
  box-shadow: 0 8px 20px rgba(67,129,54,0.3);
}
.step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0 6px, transparent 6px 12px);
  opacity: 0.4;
}
.step-connector.last { display: none; }
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }

/* ---------- Awards ------------------------------- */
.awards-section { padding: 100px 0; background: var(--off); }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.award-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.35s var(--spring), box-shadow 0.35s var(--ease);
  transform-style: preserve-3d;
}
.award-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}
.award-img { max-height: 80px; margin: 0 auto 24px; object-fit: contain; }
.award-badge {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 24px;
}
.focus-badge {
  background: #1a1a1a;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.barrier-badge { background: var(--green); color: var(--white); font-size: 1.8rem; }
.award-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.award-card p  { font-size: 0.88rem; color: var(--mid); line-height: 1.65; }

/* Tilt card 3D hover (JS-driven, fallback to CSS) */
.tilt-card { will-change: transform; }

/* ---------- FAQ ---------------------------------- */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list  { display: flex; flex-direction: column; gap: 0; }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--dark);
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--green);
  transition: transform 0.35s var(--spring);
  flex-shrink: 0;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.35s var(--ease);
}
.faq-a.open { padding-bottom: 20px; }
.faq-a p { font-size: 0.92rem; color: var(--mid); line-height: 1.75; }

/* ---------- Contact ------------------------------ */
.contact-section { padding: 100px 0; background: var(--green-dk); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-sub { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 1.05rem; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: background 0.25s, transform 0.25s var(--spring);
}
.contact-detail-item:hover { background: rgba(255,255,255,0.15); transform: translateX(4px); }
.cd-icon { font-size: 1.4rem; }
.contact-detail-item strong { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.contact-detail-item span  { color: var(--white); font-size: 0.97rem; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

/* Floating label inputs */
.floating-field {
  position: relative;
  margin-bottom: 20px;
}
.floating-field input,
.floating-field textarea {
  width: 100%;
  padding: 20px 16px 8px;
  font-size: 0.97rem;
  font-family: inherit;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  resize: vertical;
}
.floating-field input:focus,
.floating-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(67,129,54,0.12);
}
.floating-field label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 0.97rem;
  color: var(--light);
  pointer-events: none;
  transition: transform 0.2s var(--ease), font-size 0.2s var(--ease), color 0.2s;
}
.floating-field input:focus ~ label,
.floating-field input:not(:placeholder-shown) ~ label,
.floating-field textarea:focus ~ label,
.floating-field textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-9px);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Form success */
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #f0faf0;
  border-radius: 12px;
  border: 1px solid #c5e8c2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--spring);
  pointer-events: none;
}
.form-success.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.success-check {
  width: 36px; height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  animation: pop 0.5s var(--spring) 0.1s both;
}
@keyframes pop {
  from { transform: scale(0) rotate(-30deg); }
  to   { transform: scale(1) rotate(0); }
}
.form-success p { font-size: 0.9rem; color: var(--dark); font-weight: 500; }

/* ---------- Footer ------------------------------- */
.site-footer {
  background: var(--dark);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-copy  { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ---------- Responsive --------------------------- */
@media (max-width: 960px) {
  .main-nav, .btn-cta--nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .intro-inner    { grid-template-columns: 1fr; gap: 40px; }
  .intro-values   { grid-template-columns: repeat(2, 1fr); }
  .leistungen-cards { grid-template-columns: repeat(2, 1fr); }
  .prozess-steps  { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step-connector { display: none; }
  .awards-grid    { grid-template-columns: 1fr 1fr; }
  .contact-inner  { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .stats-inner        { flex-direction: column; gap: 0; }
  .stat-divider       { width: 60px; height: 1px; }
  .leistungen-cards   { grid-template-columns: 1fr; }
  .prozess-steps      { grid-template-columns: 1fr; }
  .awards-grid        { grid-template-columns: 1fr; }
  .contact-form-wrap  { padding: 28px 20px; }
  .footer-inner       { flex-direction: column; text-align: center; }
  .hero-actions       { flex-direction: column; }
}
