/* ═══════════════════════════════════════
   DESIGN TOKENS  (exakt von zebresel.com)
═══════════════════════════════════════ */
:root {
  --green:      #9ac43c;   /* nav-bg, accent           */
  --green-90:   rgba(154,196,60,.9);
  --teal:       #2e4954;   /* headings, footer-bg      */
  --teal2:      #339a98;   /* secondary accent / icons */
  --white:      #ffffff;
  --offwhite:   #f7f7f7;
  --mid-gray:   #9b9b9b;
  --dark:       #222222;
  --overlay:    rgba(46,73,84,.95);
  --font:       'Raleway', Arial, sans-serif;
  --max:        1290px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 19px; line-height: 1.5; background: var(--white); color: var(--teal); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--green); color: #fff; }

/* ─── Layout helpers ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 30px; }
.clearfix::after { content: ''; display: table; clear: both; }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  border: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-teal { background: var(--teal); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }

/* ─── Section label ─── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 0.6rem;
}

/* ════════════════════════════════
   HEADER + NAV  (slide-up nav – zebresel-Stil)
════════════════════════════════ */

/* Kein padding-top nötig – Toggle-Button fährt mit der Nav */
body { padding-top: 0; }

header {
  /* kein sticky – Nav ist separat fixed */
}

/* ── Menü/Close-Button – hängt unten an der Nav ── */
.nav-toggle {
  position: absolute;
  top: 100%;          /* direkt unter der Nav-Bar */
  left: 90px;
  z-index: 210;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 12px 22px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
  border: none;
  border-radius: 0 0 8px 8px;
}
.nav-toggle:hover { background: rgba(154,196,60,.82); }

/* ── Nav-Bar: versteckt sich nach oben ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--green);
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
  transform: translateY(-100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
}
nav.expanded { transform: translateY(0); }

/* Top bar: logo left, tagline right */
.header-top {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.header-top-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 88px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 14px;
  /* Logo auf dunklem Footer-Hintergrund aufhellen */
  filter: brightness(0) invert(1);
}
.header-claim { font-size: 0.82rem; color: var(--mid-gray); font-weight: 500; }

/* Nav-Innenstruktur */
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: stretch;
  height: 52px;
}
.nav-inner > ul {
  display: flex;
  align-items: stretch;
  flex: 1;
}
.nav-inner > ul > li { position: relative; }
.nav-inner > ul > li > a {
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  transition: background .2s;
  height: 100%;
}
.nav-inner > ul > li > a:hover,
.nav-inner > ul > li > a.active { background: rgba(0,0,0,.12); }

/* Dropdown */
.subnav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--green-90);
  min-width: 200px;
  padding: 8px 0;
  z-index: 10;
}
.nav-inner > ul > li:hover .subnav { display: block; }
.subnav li a {
  display: block;
  padding: 10px 22px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white);
  transition: background .15s;
  white-space: nowrap;
}
.subnav li a:hover { background: rgba(0,0,0,.15); }

/* Nav CTA rechts */
.nav-cta-wrap {
  display: flex;
  align-items: center;
  padding-left: 16px;
  flex-shrink: 0;
}
.nav-cta-wrap .btn {
  background: var(--teal);
  font-size: 0.78rem;
  padding: 10px 22px;
  white-space: nowrap;
}

/* Mobile burger (nur auf kleinen Screens) */
.burger { display: none; cursor: pointer; padding: 14px; margin-left: auto; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ════════════════════════════════
   HERO  (section-1) – full-bleed background, text left
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--offwhite);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 30px;
  width: 100%;
}
.hero-text {
  max-width: 530px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 32px 36px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  color: #222222;
  margin-bottom: 1.5rem;
}
.hero h1 strong { font-weight: 800; color: #ffffff; }
.hero-sub {
  font-size: 1.05rem;
  color: #000;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Floating icon bubbles */
.hero-bubbles {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(2, 120px);
  gap: 16px;
  z-index: 2;
}
.bubble {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  color: var(--white);
  transition: background .2s, transform .2s;
}
.bubble:hover { background: rgba(154,196,60,.3); transform: translateY(-3px); }
.bubble-icon { font-size: 2rem; margin-bottom: 8px; }
.bubble-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

/* ════════════════════════════════
   SECTION 2 – "Alles aus einer Hand"
   (horizontal steps row)
════════════════════════════════ */
.s-alles { padding: 80px 0; background: var(--white); }
.s-alles-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 30px;
}
.s-alles-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 2rem;
  flex-wrap: wrap;
}
.s-alles h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--teal);
}
.s-alles-desc { max-width: 480px; color: var(--mid-gray); line-height: 1.8; }

/* Horizontal process steps */
.steps-row {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.step {
  flex: 1;
  position: relative;
  padding: 36px 28px;
  background: var(--offwhite);
  border-right: 1px solid #e0e0e0;
  transition: background .2s;
}
.step:last-child { border-right: none; }
.step:hover { background: #edf7d2; }
.step-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(154,196,60,.25);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}
.step-text { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.7; }
.step-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  z-index: 2;
}
.step:last-child .step-arrow { display: none; }

/* ════════════════════════════════
   SECTION 3 – Services grid
════════════════════════════════ */
.s-services { padding: 80px 0; background: var(--teal); }
.s-services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 2rem;
  flex-wrap: wrap;
}
.s-services h2 { font-size: 52px; font-weight: 700; color: var(--white); line-height: 1.15; }
.s-services .section-label { color: var(--green); }
.s-services-desc { color: rgba(255,255,255,.7); max-width: 420px; line-height: 1.8; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-tile {
  background: rgba(255,255,255,.05);
  padding: 40px 32px;
  position: relative;
  transition: background .25s;
  cursor: default;
}
.service-tile:hover { background: rgba(154,196,60,.15); }
.service-tile-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.service-tile h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-tile p { font-size: 0.88rem; color: rgba(255,255,255,.65); line-height: 1.8; }
.service-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: gap .2s;
}
.service-tile-link:hover { gap: 12px; }

/* ════════════════════════════════
   PRODUCTS  (horizontal cards)
════════════════════════════════ */
.s-products { padding: 80px 0; background: var(--offwhite); }
.s-products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 2rem;
  flex-wrap: wrap;
}
.s-products h2 { font-size: 48px; font-weight: 700; color: var(--teal); line-height: 1.15; }
.s-products-desc { max-width: 420px; color: var(--mid-gray); line-height: 1.8; }

.products-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,.12); }
.product-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.product-card-img.green { background: var(--green); }
.product-card-img.teal  { background: var(--teal); }
.product-card-img.teal2 { background: var(--teal2); }
.product-card-body { padding: 28px; }
.product-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.product-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.product-card p { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.8; }
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal2);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: gap .2s;
}
.product-card-link:hover { gap: 12px; }

/* ════════════════════════════════
   CUSTOMERS – horizontal slider style
════════════════════════════════ */
.s-customers { padding: 80px 0; background: var(--white); }
.s-customers h2 { font-size: 48px; font-weight: 700; color: var(--teal); margin-bottom: 48px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--offwhite);
  border-left: 4px solid var(--green);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .2s;
}
.testi:hover { box-shadow: 0 6px 30px rgba(0,0,0,.09); }
.testi-text {
  font-size: 0.9rem;
  color: var(--teal);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-text::before { content: '„'; color: var(--green); font-size: 2rem; line-height: 0; vertical-align: -.4em; margin-right: 4px; }
.testi-author { font-size: 0.82rem; font-weight: 700; color: var(--teal2); }
.testi-role { font-size: 0.78rem; color: var(--mid-gray); margin-top: 2px; }

/* ════════════════════════════════
   PROJECTS
════════════════════════════════ */
.s-projects { padding: 80px 0; background: var(--offwhite); }
.s-projects-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 2rem;
  flex-wrap: wrap;
}
.s-projects h2 { font-size: 48px; font-weight: 700; color: var(--teal); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proj-card {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.proj-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  position: relative;
}
.proj-img.c1 { background: linear-gradient(135deg, var(--teal), var(--teal2)); }
.proj-img.c2 { background: linear-gradient(135deg, var(--teal2), var(--green)); }
.proj-img.c3 { background: linear-gradient(135deg, var(--green), #5aad3c); }
.proj-img.c4 { background: linear-gradient(135deg, #1a3a45, var(--teal)); }
.proj-img.c5 { background: linear-gradient(135deg, var(--teal2), #1a5e5d); }
.proj-img.c6 { background: linear-gradient(135deg, #6a8a3c, var(--green)); }
.proj-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  gap: 8px;
}
.proj-card:hover .proj-overlay { opacity: 1; }
.proj-info { padding: 16px 20px; background: var(--white); }
.proj-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.proj-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  background: var(--green);
  color: #fff;
  border-radius: 2px;
}
.proj-title { font-size: 0.95rem; font-weight: 700; color: var(--teal); }
.proj-client { font-size: 0.8rem; color: var(--mid-gray); margin-top: 2px; }

/* ════════════════════════════════
   JOBS
════════════════════════════════ */
.s-jobs { padding: 80px 0; background: var(--teal2); }
.s-jobs-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.s-jobs h2 { font-size: 48px; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.s-jobs p { color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 28px; }
.s-jobs .section-label { color: rgba(255,255,255,.6); }

.jobs-list { display: flex; flex-direction: column; gap: 12px; }
.job-row {
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
  cursor: pointer;
}
.job-row:hover { background: rgba(255,255,255,.18); }
.job-title { font-size: 1rem; font-weight: 700; color: var(--white); }
.job-meta { font-size: 0.8rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.job-arrow { color: var(--green); font-size: 1.3rem; font-weight: 700; }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.s-contact { padding: 80px 0; background: var(--white); }
.s-contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.s-contact h2 { font-size: 48px; font-weight: 700; color: var(--teal); margin-bottom: 20px; }
.s-contact .contact-info { margin-top: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--teal2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item-text { padding-top: 6px; color: var(--teal); }

/* Paper-style form */
.paper {
  background: var(--offwhite);
  padding: 40px;
  border-radius: 4px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--teal); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.7);
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--teal);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}
.form-check input { accent-color: var(--green); margin-top: 2px; flex-shrink: 0; }
.form-check a { color: var(--teal2); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--teal);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  max-width: var(--max);
  margin: 0 auto;
}
.footer-wrap { padding: 0 30px; }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--green); }
.footer-about { font-size: 0.88rem; color: rgba(255,255,255,.6); line-height: 1.8; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--green); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-socials { display: flex; gap: 10px; }
.soc {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 0.78rem;
  font-weight: 700;
  transition: border-color .2s, color .2s;
}
.soc:hover { border-color: var(--green); color: var(--green); }

/* ════════════════════════════════
   MOBILE NAV
════════════════════════════════ */
/* ── Mobile Header Bar ─────────────────────────────────── */
.mobile-header {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 60px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}
.mobile-header-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.mobile-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--teal);
  border-radius: 2px;
}
.mobile-burger .burger-green { background: var(--green); }

/* ── Mobile Nav Overlay ─────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: var(--white);
  z-index: 400;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .35s cubic-bezier(.4,0,.2,1), visibility 0s linear .35s;
}
.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .35s cubic-bezier(.4,0,.2,1), visibility 0s linear 0s;
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #ebebeb;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.mobile-nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-nav-close:hover { background: var(--offwhite); }

/* Nav-Liste – kein Flex, einfach Block */
.mobile-nav-list {
  display: block;
  padding: 8px 0 0;
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
  background: none;
  width: 100%;
  box-sizing: border-box;
}
.mni-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mni-label {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal);
  flex: 1;
}
.mni-arrow {
  font-size: 1.4rem;
  color: var(--mid-gray);
  line-height: 1;
  transition: transform .22s;
  flex-shrink: 0;
}
/* Untermenü */
.mobile-sub {
  display: none;
  background: var(--offwhite);
  border-bottom: 1px solid #e8e8e8;
}
.mobile-sub.open { display: block; }
.mobile-sub-item {
  display: block;
  padding: 11px 22px 11px 82px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid #ebebeb;
}
.mobile-sub-item:last-child { border-bottom: none; }
/* CTA am Ende */
.mobile-nav-cta {
  display: block;
  margin: 24px 22px 36px;
  text-align: center;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-bubbles { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .products-row { grid-template-columns: repeat(2, 1fr); }
  .s-jobs-inner { grid-template-columns: 1fr; gap: 40px; }
  .s-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  /* Desktop-Nav verstecken, Mobile Header zeigen */
  nav#mainNav { display: none; }
  .mobile-header { display: flex; }
  /* Seite hat Mobile Header → Abstand oben */
  body { padding-top: 60px; }

  .steps-row { flex-direction: column; }
  .step { border-right: none; border-bottom: 1px solid #e0e0e0; }
  .step-arrow { right: auto; bottom: -14px; top: auto; left: 50%; transform: translateX(-50%); }
  .services-grid, .projects-grid, .testimonials-grid, .products-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .s-alles h2, .s-services h2, .s-products h2, .s-projects h2, .s-contact h2, .s-jobs h2 { font-size: 34px; }
  .header-claim { display: none; }
}
